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

:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-dark: #0D1F17;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --warm: #D4A574;
    --warm-light: #E8C9A0;
    --warm-dark: #B8864E;
    --text: #1A1A1A;
    --text-light: #4A4A4A;
    --text-muted: #7A7A7A;
    --white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
    --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.1);
    --shadow-lg: 0 16px 64px rgba(27, 67, 50, 0.12);
    --shadow-xl: 0 24px 80px rgba(27, 67, 50, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream-light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── NAV ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--forest);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--forest);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.nav-cta {
    background: var(--forest) !important;
    color: var(--cream-light) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
    transition: all 0.3s !important;
}

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

.nav-cta:hover {
    background: var(--forest-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero-greeting-line {
    width: 40px;
    height: 2px;
    background: var(--warm);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--forest-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream-light);
}

.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--cream-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--cream-light);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-dark:hover {
    background: var(--cream-light);
    color: var(--forest);
    border-color: var(--cream-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ─── HERO VISUAL ─────────────────────────────── */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card-main {
    width: 320px;
    height: 420px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-badge {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ─── STAT CARDS ──────────────────────────────── */
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.stat-card-1 {
    top: 5%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 15%;
    left: 0;
    animation: float 6s ease-in-out infinite 2s;
}

.stat-card-3 {
    bottom: 5%;
    right: 5%;
    animation: float 6s ease-in-out infinite 4s;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── HERO SCROLL ─────────────────────────────── */
.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee-section {
    background: var(--forest);
    padding: var(--space-sm) 0;
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.8);
    padding: 0 var(--space-sm);
    letter-spacing: 0.04em;
}

.marquee-sep {
    color: var(--warm) !important;
    opacity: 0.6;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ──────────────────────────── */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--forest-dark);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.section-title .accent {
    font-style: italic;
    font-weight: 400;
    color: var(--warm-dark);
}

/* ─── FEATURES ────────────────────────────────── */
.features {
    padding: var(--space-2xl) 0;
    background: var(--cream-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--forest);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ─── GALLERY ─────────────────────────────────── */
.gallery-strip {
    padding: 0 0 var(--space-2xl);
    background: var(--cream-light);
}

.gallery-strip .container {
    padding-left: 0;
    padding-right: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item--tall {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    min-height: 520px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 6;
    min-height: 240px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    min-height: 240px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: linear-gradient(transparent, rgba(13, 31, 23, 0.7));
    color: var(--cream-light);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ─── ABOUT ───────────────────────────────────── */
.about {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--warm);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    margin-bottom: var(--space-md);
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.value-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm);
    min-width: 40px;
}

.value-text {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

/* ─── CTA BANNER ──────────────────────────────── */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--cream-light);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-headline .accent {
    font-style: italic;
    font-weight: 400;
    color: var(--warm-light);
}

.cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ─── VISIT ───────────────────────────────────── */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--cream-light);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-info {
    padding-right: var(--space-md);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 67, 50, 0.06);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--warm-dark);
    text-decoration: underline;
}

.hours-block h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: var(--space-sm);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9375rem;
}

.hours-row span:first-child {
    color: var(--text);
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--text-light);
}

.hours-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cream-light);
    text-decoration: none;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--warm);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--warm-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

/* ─── REVEAL ANIMATIONS ───────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }

/* ─── MOBILE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-visual {
        height: 480px;
    }
    
    .hero-card-main {
        width: 260px;
        height: 340px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-height: 400px;
    }
    
    .about-image img {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-greeting {
        justify-content: center;
    }
    
    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide),
    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }
    
    .visit-layout {
        grid-template-columns: 1fr;
    }
    
    .visit-info {
        padding-right: 0;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding: var(--space-lg) var(--space-sm) var(--space-md);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
    }
}

/* ─── MOBILE OVERLAY ──────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 23, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

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