:root {
    --bg: #f8f2df;
    --bg-strong: #f1dc8b;
    --surface: rgba(255, 252, 245, 0.9);
    --surface-strong: #fffdf8;
    --text: #2d2a26;
    --muted: #6d675f;
    --line: rgba(45, 42, 38, 0.12);
    --gold: #c7992a;
    --shadow: 0 22px 60px rgba(94, 74, 29, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, #f9f6ee 0%, #f6edd7 48%, #f2d564 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 18px 0 64px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 252, 245, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(111, 90, 38, 0.1);
    position: sticky;
    top: 14px;
    backdrop-filter: blur(14px);
    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2cb56, #c48e16);
    box-shadow: 0 0 0 8px rgba(242, 203, 86, 0.2);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.brand-copy span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
    color: var(--muted);
}

.site-nav a:hover,
.language-button:hover {
    color: var(--text);
}

.language-switcher {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(45, 42, 38, 0.06);
}

.language-button {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.language-button.is-active {
    background: var(--surface-strong);
    color: var(--text);
    box-shadow: 0 6px 18px rgba(45, 42, 38, 0.08);
}

.hero,
.section-block,
.cta-panel {
    margin-top: 34px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.hero-note,
.section-block,
.cta-panel,
.featured-card,
.social-panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
}

.hero-copy,
.hero-note,
.section-block,
.cta-panel,
.social-panel {
    padding: 28px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.95;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    max-width: none;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.hero-text,
.section-intro,
.hero-note-list,
.featured-copy p,
.lightbox-meta,
.cta-panel {
    color: var(--muted);
}

.hero-text,
.section-intro,
.featured-copy p {
    font-size: 1rem;
    line-height: 1.7;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
}

.button-primary {
    background: #23201d;
    color: white;
    border-color: #23201d;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.6);
}

.hero-note {
    display: grid;
    align-content: start;
    gap: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 235, 206, 0.92));
}

.hero-note-label {
    margin: 0;
    font-weight: 700;
    color: var(--text);
}

.hero-note-list {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 22px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-tile {
    position: relative;
    padding: 0;
    border: 0;
    background: #201c18;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
    transform: scale(1.05);
    opacity: 0.9;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 2px;
    padding: 18px;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76));
    text-align: left;
}

.gallery-overlay strong {
    font-size: 1rem;
}

.gallery-overlay span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.gallery-tile--hero,
.gallery-tile--portrait,
.gallery-tile--landscape,
.gallery-tile--square {
    grid-column: span 1;
    grid-row: span 1;
}

.featured-list {
    display: grid;
    gap: 24px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 22px;
    padding: 22px;
}

.featured-card--reverse {
    grid-template-columns: 1.6fr 1fr;
}

.featured-card--reverse .featured-copy {
    order: 2;
}

.featured-card--reverse .featured-media {
    order: 1;
}

.featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 12px 8px;
    overflow: hidden;
}

.featured-number {
    margin: 0;
    color: var(--gold);
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.featured-video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(35, 32, 29, 0.08);
    color: var(--text);
    font-weight: 700;
}

.featured-media {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr;
    gap: 12px;
    overflow: hidden;
    height: 420px;
}

.featured-primary-image {
    grid-row: 1;
    grid-column: 1;
    min-height: 0;
    min-width: 0;
}

.featured-primary-image,
.featured-secondary-image,
.featured-video-frame {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #171411;
}

.featured-primary-image,
.featured-secondary-image {
    cursor: pointer;
}

.featured-primary-image img,
.featured-secondary-image img,
.featured-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.featured-primary-image img,
.featured-secondary-image img {
    object-fit: cover;
}

.featured-secondary-grid {
    grid-row: 1;
    grid-column: 2;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}

.featured-secondary-image {
    min-height: 0;
    overflow: hidden;
}

.featured-secondary-grid > * {
    min-height: 0;
    min-width: 0;
}

.featured-secondary-grid .featured-video-frame {
    min-height: 0;
    aspect-ratio: auto;
}

.featured-video-frame {
    aspect-ratio: 16 / 9;
}

.featured-video-frame iframe {
    border: 0;
}

.featured-card--gold {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(247, 236, 197, 0.92));
}

.featured-card--terracotta {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(244, 230, 214, 0.92));
}

.featured-card--wood {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(237, 226, 207, 0.92));
}

.featured-card--sand {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(239, 234, 219, 0.92));
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-panel h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

/* Hero social icons */
.hero-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.hero-social a {
    display: flex;
    width: 44px;
    height: 44px;
}

.hero-social svg {
    width: 100%;
    height: 100%;
}

/* Featured card accents */
.featured-card--ebony {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(220, 218, 215, 0.92));
}

.featured-card--birch {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(245, 238, 220, 0.92));
}

/* Compositions section */
.compositions-description2 {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 22px;
}

.compositions-grid {
    display: grid;
    grid-template-columns: auto 1fr 1.2fr;
    gap: 22px;
    align-items: stretch;
}

.compositions-links {
    display: grid;
    gap: 10px;
}

.compositions-link {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface-strong);
    padding: 8px;
    transition: transform 0.2s ease;
}

.compositions-link:hover {
    transform: scale(1.03);
}

.compositions-link img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.compositions-album {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #171411;
}

.compositions-album a {
    display: block;
}

.compositions-album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compositions-video-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #171411;
}

.compositions-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    margin-top: 22px;
}

.testimonials-reviews {
    display: grid;
    gap: 12px;
}

.testimonial-review {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface-strong);
}

.testimonial-review img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-video-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #171411;
}

.testimonial-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Social section */
.social-panel {
    margin-top: 34px;
    text-align: center;
}

.social-heading {
    margin-bottom: 22px;
}

.social-subtitle {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 10px 0 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(45, 42, 38, 0.06);
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: rgba(45, 42, 38, 0.12);
    transform: scale(1.08);
}

.social-link svg {
    width: 48px;
    height: 48px;
}

/* Footer */
.site-footer {
    margin-top: 34px;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    width: 30px;
    height: 30px;
}

.footer-social svg {
    width: 100%;
    height: 100%;
}

.lightbox {
    width: min(92vw, 1100px);
    border: 0;
    border-radius: 26px;
    padding: 0;
    background: rgba(22, 18, 16, 0.96);
    color: white;
}

.lightbox::backdrop {
    background: rgba(13, 11, 10, 0.84);
    backdrop-filter: blur(8px);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    z-index: 2;
}

.lightbox-frame {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.lightbox-frame img {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 18px;
}

.lightbox-meta {
    display: grid;
    gap: 4px;
}

.lightbox-meta p {
    margin: 0;
}

@media (max-width: 980px) {
    .site-header,
    .header-actions,
    .hero,
    .section-heading,
    .featured-card,
    .featured-card--reverse,
    .featured-media,
    .cta-panel,
    .footer-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-header {
        border-radius: 28px;
        padding: 18px;
    }

    .header-actions {
        width: 100%;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-tile--hero,
    .gallery-tile--portrait,
    .gallery-tile--landscape,
    .gallery-tile--square {
        grid-column: span 1;
        grid-row: span 1;
    }

    .featured-card {
        min-height: auto;
    }

    .featured-media {
        height: auto;
    }

    .featured-card--reverse .featured-copy,
    .featured-card--reverse .featured-media {
        order: initial;
    }

    .compositions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .compositions-links {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 1fr);
    }

    .compositions-link img {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-video-frame {
        aspect-ratio: 16 / 9;
    }

    .footer-inner {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--max-width));
        padding-top: 12px;
    }

    .hero-copy,
    .hero-note,
    .section-block,
    .cta-panel,
    .featured-card,
    .social-panel {
        border-radius: 24px;
    }

    .hero-copy,
    .hero-note,
    .section-block,
    .cta-panel,
    .social-panel,
    .featured-card {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tile--hero,
    .gallery-tile--portrait,
    .gallery-tile--landscape,
    .gallery-tile--square {
        aspect-ratio: 4 / 3;
    }

    .featured-media {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .featured-primary-image {
        grid-row: auto;
        min-height: 280px;
    }

    .featured-secondary-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .featured-video-frame {
        grid-column: 1 / -1;
    }

    .compositions-grid {
        grid-template-columns: 1fr;
    }

    .compositions-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-link {
        width: 56px;
        height: 56px;
    }

    .social-link svg {
        width: 36px;
        height: 36px;
    }
}