/* ========================================
   Coastal Nutrition — Stylesheet
   Fresh, airy, pastel tones · Forest green + off-white
   ======================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #1A3A25;
    --green-800: #2D5A3D;
    --green-700: #3D7A52;
    --green-600: #4A9462;
    --green-500: #5BA874;
    --green-400: #7EC093;
    --green-300: #A8D4B5;
    --green-200: #CDE6D5;
    --green-100: #E8F3EC;
    --green-50:  #F2F7F4;

    --cream-900: #3D3830;
    --cream-800: #5C554A;
    --cream-700: #7A7267;
    --cream-600: #9A9185;
    --cream-500: #B8AF A3;
    --cream-400: #D4CCC2;
    --cream-300: #E8E2D8;
    --cream-200: #F0EBE2;
    --cream-100: #F5F0E8;
    --cream-50:  #FAF7F2;
    --cream-25:  #FCFAF6;

    --white: #FFFFFF;
    --black: #1A1A1A;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06), 0 1px 2px rgba(45, 90, 61, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.08), 0 2px 6px rgba(45, 90, 61, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 90, 61, 0.12), 0 4px 12px rgba(45, 90, 61, 0.06);
    --shadow-xl: 0 24px 60px rgba(45, 90, 61, 0.14), 0 8px 20px rgba(45, 90, 61, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--cream-900);
    background-color: var(--cream-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ---- Section Labels & Titles ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-900);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--cream-800);
    max-width: 560px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn-primary:hover {
    background: var(--green-700);
    box-shadow: 0 6px 24px rgba(45, 90, 61, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--green-800);
    border: 1.5px solid var(--green-200);
}

.btn-secondary:hover {
    border-color: var(--green-500);
    background: var(--green-50);
    transform: translateY(-2px);
}

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

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.06);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--green-900);
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--cream-800);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--green-800);
    background: var(--green-50);
}

.nav-cta {
    margin-left: 8px;
    background: var(--green-800);
    color: var(--white) !important;
    font-weight: 500;
}

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

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--green-800);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--green-50);
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 58, 37, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

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

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    background: var(--cream-50);
}

.nav-overlay-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--green-900);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-overlay-link:hover {
    background: var(--green-100);
}

.nav-overlay-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--green-800);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 32px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--green-50) 50%, var(--cream-100) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(168, 212, 181, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 24px 120px;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--green-200);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-800);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge svg {
    color: var(--green-600);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--green-900);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline br {
    display: none;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--cream-800);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green-800);
    line-height: 1;
}

.hero-stat-label,
.hero-stat-value {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cream-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--green-200);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
}

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

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

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

.hero-img-main {
    width: 380px;
    height: 520px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 260px;
    height: 180px;
    bottom: 140px;
    left: -30px;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero-img-small {
    width: 200px;
    height: 140px;
    bottom: 20px;
    right: 40px;
    z-index: 1;
    border: 4px solid var(--white);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---- About Section ---- */
.section {
    padding: 100px 0;
}

.about {
    background: var(--cream-50);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}

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

.about-content-col {
    padding: 20px 0;
}

.about-content-col .section-lead {
    margin-bottom: 20px;
}

.about-content-col p {
    color: var(--cream-800);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--green-900);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.92rem;
    color: var(--cream-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- Products Section ---- */
.products {
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 64px;
}

.products-header .section-lead {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(45, 90, 61, 0.06);
}

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

.product-card-image {
    overflow: hidden;
    height: 240px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-900);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 0.95rem;
    color: var(--cream-700);
    line-height: 1.7;
}

/* ---- Story Section ---- */
.story {
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--green-50) 100%);
}

.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-col {
    position: relative;
}

.story-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.story-quote-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 340px;
    z-index: 2;
}

.story-quote-icon {
    color: var(--green-400);
    margin-bottom: 12px;
}

.story-quote-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--green-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

.story-quote-location {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.story-content-col {
    padding: 20px 0;
}

.story-content-col .section-lead {
    margin-bottom: 20px;
}

.story-content-col p {
    color: var(--cream-800);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-values {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.story-value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.story-value-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--green-200);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.story-value h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--green-900);
    margin-bottom: 6px;
}

.story-value p {
    font-size: 0.92rem;
    color: var(--cream-700);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ---- Visit Section ---- */
.visit {
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info {
    padding: 40px 0;
}

.visit-info .section-lead {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.visit-detail strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green-800);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 1rem;
    color: var(--cream-800);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

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

.visit-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ---- Contact Section ---- */
.contact {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    padding: 100px 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text .section-label {
    color: var(--green-400);
}

.contact-text .section-label::before {
    background: var(--green-500);
}

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

.contact-text .section-lead {
    color: var(--green-300);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream-900);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream-900);
    background: var(--cream-50);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(91, 168, 116, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--cream-500);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-md);
    color: var(--green-800);
    font-size: 0.95rem;
    margin-top: 16px;
}

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

/* ---- Footer ---- */
.footer {
    background: var(--green-900);
    color: var(--green-300);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--green-400);
    margin-top: 16px;
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    transition: opacity var(--transition-fast);
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: var(--green-400);
    padding: 6px 0;
    transition: color var(--transition-fast);
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(168, 212, 181, 0.15);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--green-500);
}

.footer-bottom a {
    color: var(--green-400);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ---- Scroll Reveal (progressive enhancement) ---- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        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-layout {
        gap: 40px;
    }

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

    .hero-img-main {
        width: 300px;
        height: 420px;
    }

    .hero-img-accent {
        width: 200px;
        height: 140px;
    }

    .hero-img-small {
        width: 160px;
        height: 110px;
    }

    .about-layout,
    .story-split {
        gap: 48px;
    }

    .about-image img,
    .story-image-main img {
        height: 420px;
    }
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

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

    .about-image-col {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .story-split {
        grid-template-columns: 1fr;
    }

    .story-image-col {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
    }

    .story-image-main img {
        height: 400px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .hero-inner {
        padding: 40px 24px 80px;
    }

    .hero-headline {
        font-size: clamp(2.6rem, 10vw, 3.6rem);
    }

    .hero-headline br {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .story-quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
