/* ============================================
   Country Apron Bakery — Styles
   Palette: Midnight Blue (#0A2540) + Mint (#34D399)
   Fonts: Playfair Display (headlines) + Inter (body)
   ============================================ */

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

:root {
    --color-midnight: #0A2540;
    --color-midnight-light: #123A5E;
    --color-midnight-dark: #061A2E;
    --color-mint: #34D399;
    --color-mint-light: #A7F3D0;
    --color-mint-dark: #059669;
    --color-cream: #FAF8F5;
    --color-warm-white: #F5F0EB;
    --color-warm-gray: #E8E2DA;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-text-muted: #6B6B6B;
    --color-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: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-midnight);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ============================================
   Typography
   ============================================ */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-midnight);
    letter-spacing: -0.02em;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.7;
}

.text-mint {
    color: var(--color-mint-dark);
}

.eyebrow-text {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mint-dark);
    margin-bottom: var(--space-sm);
}

.eyebrow-line {
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--color-mint);
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--color-midnight-light);
    border-color: var(--color-midnight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.25);
}

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

.btn--light:hover {
    background: var(--color-mint-light);
    border-color: var(--color-mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: var(--color-white);
    color: var(--color-midnight);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(10, 37, 64, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-midnight);
}

.logo em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-text-light);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-midnight);
    color: var(--color-mint-light);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mint);
    transition: width var(--transition);
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-midnight);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-midnight);
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-midnight);
    padding: 6rem var(--space-md) var(--space-lg);
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    color: var(--color-white);
    padding-right: var(--space-md);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

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

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

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

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero-img--primary {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
}

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

.hero-img--accent {
    width: 240px;
    height: 180px;
    bottom: 40px;
    left: 0;
    border: 4px solid var(--color-midnight);
}

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

.hero-badge {
    position: absolute;
    bottom: 280px;
    left: 40px;
    background: var(--color-mint);
    color: var(--color-midnight);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============================================
   Section Divider
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
    color: var(--color-midnight);
    opacity: 0.3;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

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

.about-eyebrow {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
}

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

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

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

.about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-warm-gray);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-warm-gray);
}

/* ============================================
   Specialties
   ============================================ */
.specialties {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.specialties-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.specialty-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-cream);
    transition: all var(--transition);
    display: block;
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
}

.specialty-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/4;
}

.specialty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.specialty-card-overlay {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
}

.specialty-card-tag {
    display: inline-block;
    background: var(--color-mint);
    color: var(--color-midnight);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.specialty-card-content {
    padding: var(--space-md);
}

.specialty-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-midnight);
    margin-bottom: 0.5rem;
}

.specialty-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-light);
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

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

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

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

.gallery-item--tall {
    grid-column: span 4;
    aspect-ratio: 5/7;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 3;
    aspect-ratio: 5/4;
}

.gallery-item--wide {
    grid-column: span 6;
    aspect-ratio: 9/4;
}

/* ============================================
   Visit
   ============================================ */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--color-midnight);
    color: var(--color-white);
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.visit-content .section-title {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.visit-content .eyebrow-text {
    color: var(--color-mint);
}

.visit-content .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-mint);
    margin-top: 0.125rem;
}

.visit-detail h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.visit-detail p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--color-mint-light);
    transition: color var(--transition);
}

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

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

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

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

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-warm-white);
}

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

.contact-content {
    text-align: center;
}

.contact-content .section-title {
    margin-bottom: var(--space-sm);
}

.contact-form {
    margin-top: var(--space-lg);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-warm-gray);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-mint-dark);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

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

.form-success {
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-midnight);
}

.form-success svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-mint-dark);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--color-midnight);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-midnight-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0 var(--space-sm);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand .logo-text em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

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

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

.footer-bottom {
    padding-top: var(--space-md);
}

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

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

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-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.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.specialties-grid .reveal {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

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

    .hero-content {
        padding-right: 0;
        order: 1;
    }

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

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

    .hero-visual {
        order: 0;
        display: flex;
        justify-content: center;
    }

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

    .hero-img--primary {
        width: 260px;
        height: 340px;
    }

    .hero-img--accent {
        width: 180px;
        height: 135px;
    }

    .hero-badge {
        bottom: 200px;
        left: 20px;
        font-size: 0.875rem;
    }

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

    .about-image {
        order: -1;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: span 3;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: var(--space-lg);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right var(--transition);
        z-index: 99;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.125rem;
        color: var(--color-midnight);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 98;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 8rem var(--space-md) var(--space-lg);
    }

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

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

    .hero-img--primary {
        width: 200px;
        height: 260px;
    }

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

    .hero-badge {
        bottom: 140px;
        left: 10px;
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

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

    .gallery-item--tall,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide),
    .gallery-item--wide {
        grid-column: span 12;
        aspect-ratio: 4/3;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .stat-divider {
        display: none;
    }

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

    .hero-img--primary {
        width: 160px;
        height: 210px;
    }

    .hero-img--accent {
        width: 120px;
        height: 90px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal[data-reveal] {
        opacity: 1;
        transform: none;
    }

    .scroll-line {
        animation: none;
        opacity: 0.5;
    }
}
