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

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --gold: #D4AF37;
    --gold-light: #E8C94A;
    --cream: #FAFAF8;
    --cream-dark: #F2F2EE;
    --white: #FFFFFF;
    --text: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background var(--ease) 0.4s, backdrop-filter var(--ease) 0.4s;
}

.nav.scrolled {
    background: rgba(250, 250, 248, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--navy);
}

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

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--navy) !important;
    border: 1px solid var(--navy);
    padding: 8px 20px;
    text-decoration: none;
    transition: background 0.3s var(--ease), color 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(15, 23, 42, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        var(--cream);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.hero-accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 0;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
}

/* ─── SECTIONS ─── */
.section {
    padding: 120px 0;
}

.section-light {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy);
}

/* ─── PRODUCTS ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    text-decoration: none;
    color: inherit;
    group: card;
}

.product-card-image {
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/2;
    background: var(--cream-dark);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.product-card-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-top: 16px;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    aspect-ratio: 7/9;
    background: var(--cream-dark);
}

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

.about-content {
    padding: 24px 0;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 32px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-line {
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.feature span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
}

/* ─── VISIT ─── */
.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
    background: var(--navy);
    overflow: hidden;
}

.visit-info {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.visit-info .section-eyebrow {
    color: var(--gold);
    margin-bottom: 16px;
}

.visit-info .section-title {
    color: var(--white);
    margin-bottom: 48px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visit-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.visit-detail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.visit-detail a:hover {
    color: var(--gold);
}

.visit-info .btn-primary {
    align-self: flex-start;
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 500;
}

.visit-info .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.visit-map {
    min-height: 400px;
    filter: saturate(0.6) brightness(0.9);
    transition: filter 0.5s var(--ease);
}

.visit-map:hover {
    filter: saturate(0.8) brightness(0.95);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    padding: 48px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-brand .nav-logo-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.8;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-copy a:hover {
    color: var(--gold);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        z-index: 101;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.3);
        backdrop-filter: blur(4px);
        z-index: 100;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.active .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-line:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        aspect-ratio: 4/3;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .visit-info {
        padding: 64px 32px;
    }

    .visit-map {
        min-height: 300px;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .visit-info {
        padding: 48px 24px;
    }
}
