:root {
    --bg: #0c0c0b;
    --surface: #141412;
    --surface-2: #1a1916;
    --text: #f1ede5;
    --muted: #aaa59c;
    --gold: #b79052;
    --gold-soft: #d4b77d;
    --border: rgba(212, 183, 125, .24);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 12, 11, .92);
    border-bottom: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
}

.navigation {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.logo span {
    color: var(--gold-soft);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #d2cec7;
    font-size: .92rem;
}

nav a:hover {
    color: var(--gold-soft);
}

.hero {
    min-height: 720px;
    position: relative;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.20)),
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=2000&q=90") center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow {
    color: var(--gold-soft);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

h1 {
    margin: 16px 0 24px;
    font-size: clamp(3.8rem, 8vw, 7.4rem);
    line-height: .92;
    letter-spacing: -.045em;
}

h2 {
    margin: 8px 0 24px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
}

h3 {
    font-size: 1.75rem;
}

.hero-text {
    max-width: 610px;
    margin-bottom: 34px;
    color: #d8d3ca;
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.button:hover {
    background: var(--gold);
    color: #0d0c0a;
}

.gallery-section {
    padding: 95px 0 110px;
}

.section-heading {
    margin-bottom: 45px;
}

.centered {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 190px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(n+5) { grid-column: span 3; }

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
    opacity: 0;
    transform: translateY(16px);
    transition: .3s ease;
}

.gallery-caption span {
    color: var(--gold-soft);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(.74);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.section {
    padding: 110px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.about-photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(.78);
}

.about p:not(.eyebrow),
.contact p {
    max-width: 700px;
    color: var(--muted);
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold-soft);
    font-weight: 600;
}

.offer {
    background: #0f0f0d;
}

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

.offer-card {
    border: 1px solid var(--border);
    background: var(--surface);
}

.offer-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: brightness(.8) saturate(.8);
}

.offer-card div {
    padding: 26px;
}

.offer-card p {
    min-height: 82px;
    margin: 10px 0 18px;
    color: var(--muted);
}

.offer-card strong {
    color: var(--gold-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-data {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: #d2cdc4;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: #cec9c0;
    font-size: .86rem;
}

input, textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.13);
    background: var(--surface-2);
    color: var(--text);
    padding: 14px 16px;
    font: inherit;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--gold);
}

textarea {
    resize: vertical;
}

.alert {
    padding: 13px 15px;
    border: 1px solid var(--border);
}

.alert.success { color: #b8d8bd; }
.alert.error { color: #e8a6a6; }

.instagram-strip {
    padding: 52px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.instagram-grid {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 40px;
    align-items: center;
}

.instagram-grid h2 {
    font-size: 2.4rem;
}

.instagram-grid p {
    color: var(--muted);
}

.instagram-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.instagram-photos img {
    aspect-ratio: 1;
    object-fit: cover;
    filter: brightness(.82) saturate(.75);
}

.footer {
    padding: 28px 0;
    color: #817d75;
    text-align: center;
    font-size: .85rem;
}

@media (max-width: 900px) {
    nav {
        display: none;
    }

    .hero {
        min-height: 620px;
    }

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

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .about-grid,
    .contact-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .navigation {
        min-height: 68px;
    }

    .logo {
        font-size: 1.45rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero {
        min-height: 560px;
        background-position: 62% center;
    }

    .gallery-grid,
    .form-row,
    .instagram-photos {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 330px;
    }

    .instagram-photos img:nth-child(n+3) {
        display: none;
    }

    .section,
    .gallery-section {
        padding: 78px 0;
    }
}
