* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0d0908;
    --bg-strong: #15100f;
    --surface: rgba(24, 18, 16, 0.92);
    --surface-soft: rgba(31, 24, 22, 0.78);
    --text: #f4ede5;
    --muted: #d1c4b6;
    --soft: #a79584;
    --accent: #d0a36f;
    --accent-deep: #9f6f44;
    --line: rgba(244, 237, 229, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(208, 163, 111, 0.16), transparent 24%),
        radial-gradient(circle at 100% 0, rgba(84, 49, 39, 0.22), transparent 22%),
        linear-gradient(180deg, #171110 0%, #0d0908 44%, #090706 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 140px);
    opacity: 0.3;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0, rgba(208, 163, 111, 0.08), transparent 40%);
}

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

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

iframe {
    width: 100%;
    border: 0;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0.01em;
}

p {
    color: var(--muted);
    line-height: 1.8;
    text-wrap: pretty;
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 56px;
}

.site-header,
.site-footer,
.section-heading,
.compact-heading,
.actions-row,
.social-row,
.contact-actions,
.social-list,
.site-nav {
    display: flex;
    align-items: center;
}

.site-header {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(19, 14, 13, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    min-width: max-content;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.56rem;
    color: var(--text);
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--soft);
}

.site-nav {
    flex: 1;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--text);
    border-color: rgba(208, 163, 111, 0.4);
    background: rgba(208, 163, 111, 0.1);
    outline: none;
}

.lang-switch {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-btn.active {
    color: var(--text);
    border-color: rgba(208, 163, 111, 0.45);
    background: rgba(208, 163, 111, 0.12);
    outline: none;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.page-main {
    display: grid;
    gap: 22px;
}

.section-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(24, 18, 16, 0.9) 0%, rgba(14, 10, 10, 0.96) 100%);
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-home,
.split-section,
.cards-grid,
.video-grid,
.gallery-preview-grid,
.gallery-grid {
    display: grid;
}

.hero-home {
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
    align-items: stretch;
    overflow: hidden;
    padding: 0;
}

.hero-copy {
    padding: 38px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    min-height: 100%;
}

.hero-visual img,
.framed-visual img,
.media-card img,
.gallery-preview-grid img,
.gallery-grid img {
    height: 100%;
    object-fit: cover;
}

.hero-visual img {
    min-height: 100%;
    filter: saturate(0.92) brightness(0.92);
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

h1 {
    font-size: clamp(3.3rem, 6vw, 5.5rem);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 10px;
}

.lead {
    font-size: 1rem;
    max-width: 64ch;
}

.actions-row,
.contact-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button,
.text-link,
.social-row a,
.social-list a {
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.button-primary {
    background: var(--accent);
    color: #21160f;
}

.button-secondary {
    border-color: rgba(208, 163, 111, 0.3);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.social-row a:hover,
.social-row a:focus-visible,
.social-list a:hover,
.social-list a:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.social-row {
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-row a {
    width: 46px;
    height: 46px;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.social-row a:hover,
.social-row a:focus-visible {
    color: var(--text);
    border-color: rgba(208, 163, 111, 0.45);
}

.split-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: stretch;
    gap: 22px;
}

.split-section.reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.section-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-copy p + p {
    margin-top: 12px;
}

.framed-visual {
    overflow: hidden;
    border-radius: var(--radius-md);
    min-height: 360px;
}

.section-heading {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.compact-heading {
    align-items: flex-end;
}

.text-link {
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cards-grid {
    gap: 16px;
}

.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.media-card,
.empty-state-card,
.contact-card-large,
.video-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
}

.info-card,
.contact-card-large,
.empty-state-card {
    padding: 22px;
}

.large-card {
    min-height: 100%;
}

.empty-state-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.empty-state-lead,
.contact-mail {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
}

.media-card {
    overflow: hidden;
}

.media-card img {
    aspect-ratio: 1.08 / 0.9;
}

.media-card-body {
    padding: 18px;
}

.video-frame {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #000;
}

.video-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.gallery-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gallery-preview-grid img,
.gallery-grid img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.gallery-preview-grid img {
    aspect-ratio: 1 / 1.18;
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gallery-grid img {
    aspect-ratio: 1 / 1.14;
}

.contact-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.page-hero {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-section {
    min-height: 420px;
}

.social-list {
    margin-top: 18px;
    gap: 12px;
    flex-wrap: wrap;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(208, 163, 111, 0.22);
    background: rgba(255, 255, 255, 0.02);
}

.site-footer {
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding: 10px 8px 0;
    color: var(--soft);
    font-size: 0.86rem;
}

@media (max-width: 1080px) {
    .site-header {
        border-radius: 28px;
        padding: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-nav {
        order: 3;
        width: 100%;
    }

    .hero-home,
    .split-section,
    .split-section.reverse,
    .contact-banner,
    .two-cols,
    .three-cols,
    .gallery-grid,
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 16px, 1240px);
        padding-top: 12px;
        padding-bottom: 36px;
    }

    .site-header {
        padding: 14px;
        gap: 14px;
    }

    .brand {
        width: 100%;
        align-items: center;
    }

    .site-nav {
        justify-content: center;
    }

    .nav-link {
        width: calc(50% - 8px);
        text-align: center;
    }

    .lang-switch {
        width: 100%;
        justify-content: center;
    }

    .lang-btn {
        flex: 1;
        justify-content: center;
    }

    .section-card,
    .hero-copy,
    .media-card-body,
    .video-card,
    .info-card,
    .contact-card-large,
    .empty-state-card {
        padding: 20px 18px;
    }

    .hero-home {
        padding: 0;
    }

    h1 {
        font-size: clamp(2.9rem, 12vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-visual img,
    .framed-visual {
        min-height: 300px;
    }

    .actions-row,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .social-row {
        justify-content: center;
    }

    .compact-heading {
        align-items: flex-start;
    }

    .site-footer {
        flex-direction: column;
    }
}