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

:root {
    --midnight: #0a1628;
    --midnight-light: #132038;
    --midnight-mid: #1a2d4a;
    --mint: #b8e6d0;
    --mint-light: #d4f5e4;
    --mint-dark: #7fbfa0;
    --cream: #f8f7f4;
    --cream-dark: #efecea;
    --white: #ffffff;
    --text-primary: #0a1628;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --border: rgba(10, 22, 40, 0.08);
    --border-strong: rgba(10, 22, 40, 0.15);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ─── Header ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 247, 244, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
}

header.scrolled {
    background: rgba(248, 247, 244, 0.97);
    box-shadow: 0 1px 0 var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
    text-decoration: none;
    color: var(--midnight);
}

.logo-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
}

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

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

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

.nav-links a:hover {
    color: var(--midnight);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--midnight) !important;
    border: 1px solid var(--border-strong);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth) !important;
}

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

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

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.menu-btn.active span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(184, 230, 208, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-card {
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-tag-line {
    width: 32px;
    height: 1px;
    background: var(--mint-dark);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-headline em {
    font-style: italic;
    color: var(--mint-dark);
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--midnight-mid);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--midnight);
    border: 1px solid var(--border-strong);
}

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

/* ─── Stat Cards ─── */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 8rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    transition: all 0.4s var(--ease-out);
}

.stat-card:hover {
    border-color: var(--mint);
    transform: translateX(-4px);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--midnight);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.stat-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--mint);
    margin-top: 0.75rem;
    transition: width 0.3s var(--ease-out);
}

.stat-card:hover .stat-line {
    width: 48px;
}

/* ─── Section Labels & Titles ─── */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--mint-dark);
}

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: var(--mint);
    border-radius: 16px;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(184, 230, 208, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-dark);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* ─── Products ─── */
.products {
    padding: 8rem 0;
    background: var(--cream);
}

.products .container {
    text-align: center;
}

.products .section-label {
    margin-bottom: 0.75rem;
}

.products .section-title {
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out);
    text-align: left;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.08);
    border-color: transparent;
}

.product-image {
    overflow: hidden;
    aspect-ratio: 5/4;
}

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

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

.product-info {
    padding: 1.75rem;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── Gallery ─── */
.gallery {
    padding: 8rem 0;
    background: var(--white);
}

.gallery .container {
    text-align: center;
}

.gallery .section-label {
    margin-bottom: 0.75rem;
}

.gallery .section-title {
    margin-bottom: 4rem;
}

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item--wide {
    grid-column: span 12;
}

.gallery-item--wide img {
    aspect-ratio: 2/1;
}

.gallery-item:nth-child(2) {
    grid-column: span 6;
}

.gallery-item:nth-child(3) {
    grid-column: span 6;
}

.gallery-item:nth-child(4) {
    grid-column: span 6;
}

.gallery-item:nth-child(5) {
    grid-column: span 6;
}

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

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--midnight);
    color: var(--white);
}

.visit .section-label {
    color: var(--mint);
}

.visit .section-title {
    color: var(--white);
}

.visit .section-title em {
    color: var(--mint);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(184, 230, 208, 0.1);
    border: 1px solid rgba(184, 230, 208, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    display: block;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--midnight-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 2rem;
}

.map-placeholder p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.map-link {
    margin-top: 0.5rem;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    font-size: 0.75rem !important;
    padding: 0.625rem 1.25rem !important;
}

.map-link:hover {
    border-color: var(--mint) !important;
    background: rgba(184, 230, 208, 0.1) !important;
    color: var(--mint) !important;
}

/* ─── Footer ─── */
footer {
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s var(--ease-smooth);
}

.footer-link:hover {
    color: var(--mint);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Mobile Menu ─── */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
    animation: slideDown 0.3s var(--ease-out);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        position: static;
        gap: 1rem;
    }

    .stat-card {
        flex: 1;
    }

    .stat-card:hover {
        transform: translateY(-2px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 500px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
    }

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

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 12;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .about-image-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }
}
