/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold:    #C8A45D;
    --gold-lt: #DFC08A;
    --cream:   #FAF7F2;
    --dark-mid:  #1A140E;
    --border:    rgba(200,164,93,0.18);
}

html, body {
    height: 100%;
    background-color: #1A140E;
}

/* ── BACKGROUND ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("../images/bckg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* deep vignette overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse at center, transparent 30%, rgba(5,4,3,0.72) 100%),
            linear-gradient(to bottom,
            rgba(5,4,3,0.70) 0%,
            rgba(5,4,3,0.30) 25%,
            rgba(5,4,3,0.30) 70%,
            rgba(5,4,3,0.80) 100%
            );
    z-index: 1;
}

/* ── TOP NAV ── */
.top-nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 60px;
}

/* Equal-width sides keep the logo perfectly centred */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(250,247,242,0.75);
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

/* nav dots */
.nav-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200,164,93,0.45);
    display: inline-block;
    flex-shrink: 0;
}

/* monogram logo */
.logo-mark {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(200,164,93,0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    transition: border-color 0.3s, color 0.3s;
    cursor: default;
    flex-shrink: 0;
}

.logo-mark:hover {
    border-color: var(--gold);
    color: var(--gold-lt);
}

/* ── HERO CENTRE ── */
.hero-body {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
}

.eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 11vw, 148px);
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 0.9;
    color: var(--cream);
    margin-top: 18px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.45s;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(250,247,242,0.65);
}

.gold-rule {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 36px auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.9s;
}

.sub-label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(250,247,242,0.55);
    white-space: nowrap;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: 1.1s;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    width: 100%;
    padding: 20px 40px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(8px, 2.5vw, 10px);
    letter-spacing: clamp(1px, 0.5vw, 3px);
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(250,247,242,0.28);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
    .hero {
        background-image: url("../images/bckg_mobile.png");
        background-position: center top;
    }

    .site-footer {
        padding: 16px 12px; /* reduce side gaps */
    }

    /* Keep 3-column nav, just tighten padding and gaps */
    .top-nav {
        padding: 22px 32px;
    }

    .nav-links {
        gap: 28px;
    }

    .nav-dot {
        display: none;
    }

    .hero-body {
        padding: 0 32px;
    }

    .sub-label {
        letter-spacing: 4px;
    }
}

/* ── Large mobile / small tablet (≤ 640px) ── */
@media (max-width: 640px) {
    /* Still 3-column, keep shrinking */
    .top-nav {
        padding: 18px 28px;
    }

    .nav-links {
        gap: 20px;
    }

    .site-footer {
        padding: 16px 12px; /* reduce side gaps */
    }

    .nav-links a {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hero-body {
        padding: 0 28px;
        gap: 22px;
    }

    .eyebrow {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: clamp(40px, 9vw, 72px);
        letter-spacing: 3px;
    }

    .gold-rule {
        height: 44px;
        margin: 34px auto;
    }

    .sub-label {
        font-size: 12px;
        letter-spacing: 3px;
        margin-top: 8px;
    }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    /* Still 3-column: left links | logo | right links — never stacked */
    .top-nav {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 14px;
    }

    .site-footer {
        padding: 16px 12px; /* reduce side gaps */
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .nav-dot {
        display: none;
    }

    .hero-body {
        gap: 20px;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: clamp(32px, 9.5vw, 52px);
        letter-spacing: 2px;
        line-height: 1;
        margin-top: 8px;
    }

    .gold-rule {
        height: 38px;
        margin: 26px auto;
    }

    .sub-label {
        font-size: 11px;
        letter-spacing: 3px;
        margin-top: 8px;
    }
}

/* ── Very small screens (≤ 360px) ── */
@media (max-width: 360px) {
    .top-nav {
        padding: 14px 14px;
    }

    .nav-links {
        gap: 10px;
    }

    .site-footer {
        padding: 16px 12px; /* reduce side gaps */
    }

    .nav-links a {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .sub-label {
        font-size: 8px;
        letter-spacing: 2px;
    }
}