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

:root {
    --midnight: #0a1628;
    --midnight-light: #132240;
    --midnight-mid: #1a3058;
    --mint: #98d4c8;
    --mint-light: #b8e6dc;
    --mint-dark: #6fb5a8;
    --surface: #f7f5f2;
    --surface-warm: #f0ece6;
    --cream: #faf8f5;
    --text-primary: #0a1628;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --line: rgba(10, 22, 40, 0.08);
    --line-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-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -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: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grain overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.4s var(--ease-out), background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.95);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--midnight);
}

.logo--light {
    color: var(--cream);
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav 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 ease;
}

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

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

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

.header-cta {
    display: none;
}

/* Menu toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--midnight);
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--midnight);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--mint-dark);
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 72px 0 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero-left {
    padding-right: 2rem;
}

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

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--mint);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--midnight);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-headline .accent-line {
    display: block;
    font-size: 0.55em;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    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;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border-radius: 0;
}

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

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

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

.btn-ghost:hover {
    border-color: var(--midnight);
    transform: translateY(-2px);
}

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

.btn-map {
    margin-top: 1rem;
}

/* Hero image stack */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 700px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
}

.hero-img--primary {
    top: 0;
    right: 0;
    width: 85%;
    height: 82%;
}

.hero-img--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-img--primary:hover img {
    transform: scale(1.03);
}

.hero-img--accent {
    bottom: 8%;
    left: 0;
    width: 55%;
    height: 38%;
    border: 6px solid var(--cream);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-img--accent:hover img {
    transform: scale(1.05);
}

.hero-img--caption {
    bottom: 0;
    right: 5%;
    background: var(--midnight);
    padding: 1rem 1.5rem;
}

.hero-img--caption span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint-light);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll-indicator span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--line-strong);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--mint);
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Divider section */
.divider-section {
    padding: 6rem 2rem;
    background: var(--midnight);
    text-align: center;
}

.divider-content {
    max-width: 720px;
    margin: 0 auto;
}

.divider-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream);
    opacity: 0.9;
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--cream);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--mint);
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 2.5rem;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--midnight);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-img {
    overflow: hidden;
    margin-top: 1rem;
}

.feature-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

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

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

.about-image-col {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 100%;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    overflow: hidden;
    border: 6px solid var(--surface);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-col {
    padding: 2rem 0;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.stat {
    flex: 1;
}

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

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    background: var(--line-strong);
    align-self: stretch;
}

/* Gallery strip */
.gallery-strip {
    padding: 4rem 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    animation: galleryScroll 40s linear infinite;
}

.gallery-scroll:hover {
    animation-play-state: paused;
}

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

.gallery-item {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    overflow: hidden;
}

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

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

/* Visit */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

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

.visit-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

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

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--midnight);
    line-height: 1.5;
}

.detail-link {
    font-size: 1.0625rem;
    color: var(--midnight);
    text-decoration: none;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.detail-link:hover {
    color: var(--mint-dark);
    border-color: var(--mint-dark);
}

.hours-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--midnight);
    margin-bottom: 1rem;
}

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

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

.hours-row span:last-child {
    color: var(--midnight);
    font-weight: 400;
}

.visit-map {
    background: var(--surface);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-placeholder svg {
    color: var(--mint);
}

.map-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--midnight);
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--midnight);
    color: var(--cream);
}

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

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

.contact .label-line {
    background: var(--mint);
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-body {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(250, 248, 245, 0.1);
    transition: all 0.3s var(--ease-out);
}

.contact-direct-item:hover {
    border-color: var(--mint);
    background: rgba(152, 212, 200, 0.05);
    transform: translateX(4px);
}

.contact-direct-item svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(250, 248, 245, 0.12);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 248, 245, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: rgba(152, 212, 200, 0.05);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--midnight);
    color: var(--cream);
}

.form-group--textarea textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(152, 212, 200, 0.1);
    border: 1px solid var(--mint);
    color: var(--mint-light);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--mint);
}

/* Footer */
.footer {
    background: var(--midnight);
    color: var(--cream);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(250, 248, 245, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.5);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

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

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours p {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.06);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .hero-left {
        padding-right: 0;
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-image-stack {
        height: 400px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

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

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

    .about-image-col {
        height: 400px;
        order: -1;
    }

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

    .visit-map {
        aspect-ratio: 16/9;
        min-height: 250px;
    }

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

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

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

    .gallery-item {
        width: 320px;
        height: 220px;
    }

    .divider-section {
        padding: 4rem 1.5rem;
    }

    .features,
    .about,
    .visit,
    .contact {
        padding: 5rem 0;
    }
}

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

    .header-inner {
        padding: 0 1.25rem;
    }

    .hero-image-stack {
        height: 320px;
    }

    .hero-img--accent {
        width: 60%;
        height: 35%;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
    }
}
