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

:root {
    --gold:      #C8A45D;
    --gold-lt:   #DFC08A;
    --cream:     #FAF7F2;
    --dark:      #0E0B08;
    --dark-mid:  #1A140E;
    --dark-card: #140F09;
    --muted:     rgba(250,247,242,0.45);
    --border:    rgba(200,164,93,0.18);
}

html, body {
    height: 100%;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
}

/* ── NAV ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,8,5,0.90), transparent);
}

nav {
    display: flex;
    justify-content: flex-end;
    padding: 22px 60px;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-list li {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-list li:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200,164,93,0.4);
    margin: 0 24px;
    display: inline-block;
    flex-shrink: 0;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: rgba(250,247,242,0.7);
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

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

.nav-list a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.7;
    flex-shrink: 0;
}

/* ── HERO SECTION ── */
.contact-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--dark);
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(200,164,93,0.05) 0%, transparent 65%);
    pointer-events: none;
}

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

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 120px);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--cream);
    line-height: 1;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.45s;
}

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

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250,247,242,0.35);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.3s;
}

.scroll-hint::after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* ── CONTACT SECTION ── */
.contact-section {
    min-height: 100vh;
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 80px;
}

.container {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Section label */
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--cream);
    margin-bottom: 16px;
}

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto 0;
}

.intro-text {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 52px;
}

/* ── INFO CARDS ── */
.info-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.info-item:hover {
    border-color: rgba(200,164,93,0.5);
    transform: translateY(-2px);
}

.icon-wrapper {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(200,164,93,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}

.info-item:hover .icon-wrapper {
    border-color: var(--gold);
    background: rgba(200,164,93,0.08);
}

.icon-wrapper svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.info-text h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.info-text p,
.info-text a {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(250,247,242,0.65);
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--gold-lt);
}

/* ── 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; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav { padding: 16px 24px; justify-content: center; }
    .nav-list li:not(:last-child)::after { margin: 0 14px; }

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

    .page-title { letter-spacing: 4px; }
    .contact-section { padding: 80px 24px 60px; }

    .info-item { padding: 20px; }
}

@media (max-width: 480px) {
    nav { padding: 14px 16px; }
    .nav-list li:not(:last-child)::after { margin: 0 10px; }
    .nav-list a { font-size: 9px; letter-spacing: 2px; gap: 5px; }
    .nav-list a svg { width: 12px; height: 12px; }

    .page-title { letter-spacing: 2px; }
    .contact-section { padding: 70px 16px 50px; }

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

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }
}