/* ========================================
   SWS Wine & Smoothies — Styles
   Bold editorial · Deep navy + warm gold
======================================== */

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

:root {
    --navy-950: #0A1628;
    --navy-900: #0F2137;
    --navy-800: #152C4A;
    --navy-700: #1B365C;
    --navy-600: #244472;
    --gold-500: #C5A059;
    --gold-400: #D4B06A;
    --gold-300: #E8D5A3;
    --gold-200: #F2E8C4;
    --gold-100: #F9F3E0;
    --cream-50: #FAFAF8;
    --cream-100: #F5F4F0;
    --cream-200: #EDEBE6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #5A5A5A;
    --text-light: #8A8A8A;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.06);
    --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.16);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    line-height: 1.6;
    -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;
}

ul {
    list-style: none;
}

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

/* ── Skip Link ────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 16px;
}

/* ── Typography ───────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-950);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
    border: 2px solid var(--gold-500);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy-950);
    border: 2px solid var(--navy-950);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--navy-950);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--gold-500);
    border: 2px solid var(--gold-500);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: var(--gold-500);
    color: var(--navy-950);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ── Header ───────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: 0.04em;
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-950);
    letter-spacing: 0.02em;
}

.primary-nav {
    z-index: 101;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--navy-950);
    background: rgba(10, 22, 40, 0.04);
}

.nav-cta {
    background: var(--navy-950);
    color: var(--white) !important;
    margin-left: 8px;
}

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

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    z-index: 101;
}

.nav-toggle:hover {
    background: rgba(10, 22, 40, 0.04);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy-950);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ── Hero ─────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream-50);
    display: flex;
    align-items: center;
}

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

.hero-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.hero-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

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

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

.hero-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

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

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

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

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

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

.about-img-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

/* ── Menu ─────────────────────────────── */
.menu {
    padding: 120px 0;
    background: var(--cream-50);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.menu-header .section-headline {
    margin-bottom: 16px;
}

.menu-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

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

.menu-card--featured {
    background: var(--navy-950);
    border-color: transparent;
}

.menu-card--featured .menu-card-title,
.menu-card--featured .menu-card-list li {
    color: var(--white);
}

.menu-card--featured .menu-card-list li::before {
    color: var(--gold-400);
}

.menu-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    color: var(--gold-500);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.menu-card--featured .menu-card-icon {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-400);
}

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

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-950);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.menu-card > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.menu-card--featured > p {
    color: rgba(255, 255, 255, 0.65);
}

.menu-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-card-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.menu-card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-size: 0.75rem;
}

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

.gallery-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

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

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

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

.gallery-item--tall {
    grid-column: span 3;
    grid-row: span 2;
}

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

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

/* ── Visit ────────────────────────────── */
.visit {
    padding: 120px 0;
    background: var(--navy-950);
    color: var(--white);
}

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

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

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

.visit-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-info-item {
    display: flex;
    gap: 20px;
}

.visit-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold-400);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.visit-info-icon svg {
    width: 22px;
    height: 22px;
}

.visit-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 4px;
}

.visit-info-value {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.visit-info-value a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.visit-info-value a:hover {
    color: var(--gold-400);
}

.visit-map {
    background: var(--navy-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 48px;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.map-icon {
    width: 48px;
    height: 48px;
    color: var(--gold-500);
    margin-bottom: 20px;
    opacity: 0.7;
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ── Contact ──────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.contact-content .section-headline {
    margin-bottom: 16px;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.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.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

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

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

.form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 12px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.06);
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: #22C55E;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy-950);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Footer ───────────────────────────── */
.site-footer {
    background: var(--navy-950);
    color: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-mark {
    background: var(--gold-500);
    color: var(--navy-950);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 320px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-col span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Scroll Reveal (progressive enh.) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    
    .about-inner,
    .visit-inner,
    .contact-inner {
        gap: 48px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        inset: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .primary-nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 12px 24px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 0 60px;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-inner {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--tall {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        height: 200px;
    }
    
    .visit-inner {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        order: -1;
    }
    
    .contact-inner {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.875rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .about-img-float {
        width: 140px;
        height: 140px;
        left: -16px;
        bottom: -16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        height: 220px;
    }
}
