/* ============================================
   Herrmann Brewthers Bierwerks
   Classic & Elegant — Terracotta + Sand Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Palette: Terracotta + Sand */
    --color-terracotta-50: #FFF5F0;
    --color-terracotta-100: #FDE8DD;
    --color-terracotta-200: #F9CCBB;
    --color-terracotta-300: #F2A893;
    --color-terracotta-400: #E87860;
    --color-terracotta-500: #B85C38;
    --color-terracotta-600: #9A4B2E;
    --color-terracotta-700: #7D3D25;
    --color-terracotta-800: #5E2E1C;
    --color-terracotta-900: #3D1D11;
    
    --color-sand-50: #FDFCFA;
    --color-sand-100: #FAF7F2;
    --color-sand-200: #F3EDE3;
    --color-sand-300: #E8DFD0;
    --color-sand-400: #D4C4AD;
    --color-sand-500: #B8A48A;
    --color-sand-600: #968066;
    --color-sand-700: #74624C;
    --color-sand-800: #544738;
    --color-sand-900: #362E24;
    
    --color-dark: #1E1510;
    --color-dark-soft: #2C2019;
    --color-text: #3D2B22;
    --color-text-light: #6B5244;
    --color-text-muted: #8A7060;
    --color-white: #FDFCFA;
    --color-border: rgba(184, 92, 56, 0.15);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Georgia', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Layout */
    --container-max: 1200px;
    --nav-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-sand-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-terracotta-600);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-family: var(--font-ui);
    font-size: 0.875rem;
}

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta-500);
    margin-bottom: var(--space-md);
}

.section-eyebrow.light {
    color: var(--color-terracotta-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
}

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

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

.lead {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-terracotta-500);
    color: var(--color-white);
    border: 2px solid var(--color-terracotta-500);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: var(--color-terracotta-600);
    border-color: var(--color-terracotta-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 92, 56, 0.3);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(253, 252, 250, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background-color: rgba(253, 252, 250, 0.1);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--color-terracotta-600);
    border: 2px solid var(--color-terracotta-500);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
    background-color: var(--color-terracotta-500);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background-color: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(30, 21, 16, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-dark);
    font-family: var(--font-display);
}

.nav-logo:hover {
    color: var(--color-terracotta-500);
}

.nav-logo-icon {
    color: var(--color-terracotta-500);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.nav-logo-sub {
    font-size: 0.6875rem;
    font-family: var(--font-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text);
}

.nav-links a {
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-terracotta-500);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    font-weight: 500 !important;
    color: var(--color-terracotta-600) !important;
    border: 1.5px solid var(--color-terracotta-500);
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base) !important;
}

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

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

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 21, 16, 0.6) 0%,
        rgba(30, 21, 16, 0.4) 40%,
        rgba(30, 21, 16, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding-top: var(--nav-height);
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-terracotta-300);
    margin-bottom: var(--space-xl);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.hero-headline br {
    display: none;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(253, 252, 250, 0.8);
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(253, 252, 250, 0.5);
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- About --- */
.about {
    padding: var(--space-5xl) 0;
    background-color: var(--color-sand-50);
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    background-color: var(--color-terracotta-100);
    border-radius: var(--radius-md);
    z-index: -1;
}

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

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

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-terracotta-600);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--color-border);
}

/* --- Brews --- */
.brews {
    padding: var(--space-5xl) 0;
    background-color: var(--color-sand-100);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.brews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.brew-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.brew-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta-400), var(--color-terracotta-600));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.brew-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 21, 16, 0.1);
    border-color: transparent;
}

.brew-card:hover::before {
    opacity: 1;
}

.brew-card-icon {
    color: var(--color-terracotta-500);
    margin-bottom: var(--space-lg);
    opacity: 0.8;
}

.brew-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
}

.brew-style {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-terracotta-600);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.brew-desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.brew-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background-color: var(--color-sand-200);
    padding: 0.3125rem 0.75rem;
    border-radius: 100px;
}

.brews-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* --- Bakery --- */
.bakery {
    padding: var(--space-5xl) 0;
    background-color: var(--color-white);
}

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

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

.bakery-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.bakery-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.bakery-list-icon {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-terracotta-500);
}

.bakery-note {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.bakery-image-stack {
    position: relative;
    padding-top: var(--space-2xl);
}

.bakery-img-main {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bakery-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bakery-img-secondary {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 32px rgba(30, 21, 16, 0.12);
}

.bakery-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* --- Visit --- */
.visit {
    padding: var(--space-5xl) 0;
    background-color: var(--color-sand-100);
}

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

.visit-info .section-title {
    margin-bottom: var(--space-2xl);
}

.hours-block,
.contact-block {
    margin-bottom: var(--space-2xl);
}

.hours-title,
.contact-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-terracotta-500);
    display: inline-block;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-day {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.hours-time {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

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

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

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-terracotta-500);
}

.contact-details a {
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--color-terracotta-600);
    text-decoration: underline;
    text-decoration-color: var(--color-terracotta-300);
    text-underline-offset: 3px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 21, 16, 0.1);
}

.map-placeholder {
    position: relative;
    padding-bottom: 75%;
    height: 0;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 21, 16, 0.85) 0%,
        rgba(62, 35, 22, 0.8) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(253, 252, 250, 0.8);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-dark);
    color: rgba(253, 252, 250, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(253, 252, 250, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-family: var(--font-display);
    margin-bottom: var(--space-lg);
}

.footer-logo-icon {
    color: var(--color-terracotta-400);
}

.footer-logo-name {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-logo-sub {
    font-size: 0.6875rem;
    font-family: var(--font-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 252, 250, 0.5);
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(253, 252, 250, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 252, 250, 0.4);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    color: rgba(253, 252, 250, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(253, 252, 250, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: rgba(253, 252, 250, 0.35);
}

.footer-legal {
    color: rgba(253, 252, 250, 0.3);
}

/* --- Scroll Animations (progressive enhancement) --- */
@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);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .brews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .bakery-layout,
    .visit-grid {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background-color: var(--color-sand-50);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: -8px 0 32px rgba(30, 21, 16, 0.15);
        z-index: 100;
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: var(--space-sm) 0;
    }
    
    .nav-cta {
        margin-top: var(--space-md);
    }
    
    /* Mobile menu overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(30, 21, 16, 0.5);
        z-index: 99;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero-headline br {
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    .about,
    .brews,
    .bakery,
    .visit {
        padding: var(--space-3xl) 0;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap img {
        height: 350px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    /* Brews */
    .brews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Bakery */
    .bakery-layout {
        grid-template-columns: 1fr;
    }
    
    .bakery-image-stack {
        order: -1;
    }
    
    .bakery-img-main img {
        height: 300px;
    }
    
    .bakery-img-secondary {
        width: 60%;
        left: -10px;
    }
    
    .bakery-img-secondary img {
        height: 160px;
    }
    
    /* Visit */
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .brew-card {
        padding: var(--space-lg);
    }
}
