/* ============================================================
   CupBibino — Wilhelmsburg
   Modern skandinavisch · helles Off-White, Holz, Schwarz
   Farben aus dem echten Innenraum extrahiert
   ============================================================ */

/* =================== DESIGN TOKENS =================== */
:root {
    /* Aus dem echten Café extrahiert */
    --bg-primary: #f5f0e6;        /* Off-White wie die Wände */
    --bg-secondary: #ebe4d6;      /* leicht dunkleres Off-White */
    --bg-card: #ffffff;           /* reines Weiß für Cards */
    --bg-elevated: #faf6ec;       /* Hover-States */

    --text-primary: #1a1714;      /* mattes Schwarz wie die Stühle */
    --text-secondary: #3d3530;    /* warmes Dunkelgrau wie Polster */
    --text-muted: #7a6f64;        /* gedämpftes Mittelgrau */

    --wood-light: #d4b896;        /* Eichenholz wie Tische */
    --wood-mid: #a8743c;          /* mittlerer Holzton wie Boden */
    --wood-dark: #6b4a26;         /* dunkles Holz für tiefe Akzente */

    --logo-green: #2d5e3a;        /* tiefes Logo-Grün (Markenfarbe) */
    --logo-green-bright: #3d7a4a; /* helleres Grün für Hover/Highlight */
    --logo-green-soft: rgba(45, 94, 58, 0.08);  /* sehr helles Grün für Backgrounds */

    --border: #e6dccc;            /* helle Holz-Borders */
    --border-strong: #c9b89b;     /* stärkere Borders */

    /* Typographie */
    --font-display: 'Manrope', -apple-system, 'Helvetica Neue', sans-serif;
    --font-sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    --font-script: 'Caveat', cursive;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-xxl: 8rem;

    /* Layout */
    --container: 1180px;
    --container-narrow: 840px;
    --radius: 4px;
    --radius-lg: 12px;             /* sanftere runde Ecken */

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--wood-light);
    transition: all var(--transition);
}

a:hover {
    color: var(--wood-mid);
    border-bottom-color: var(--wood-mid);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: var(--space-sm); }

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

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

section { padding: var(--space-xxl) 0; }

@media (max-width: 768px) {
    section { padding: var(--space-xl) 0; }
}

/* Caveat Schreibschrift für persönliche Akzente */
.script {
    font-family: var(--font-script);
    font-weight: 500;
    color: var(--logo-green);
    font-size: 1.4em;
    line-height: 1;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none !important;
    border-bottom: 2px solid transparent !important;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--wood-mid);
    border-color: var(--wood-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(168, 116, 60, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-ghost:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Holzhaltige Akzentlinie */
.accent-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--wood-mid);
    margin: var(--space-sm) 0 var(--space-md);
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* =================== HEADER / NAV =================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 0;
    background: rgba(245, 240, 230, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* SVG Fahrrad-Icon im Logo */
.logo-bike {
    width: 32px;
    height: 24px;
    stroke: var(--logo-green);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

.logo small {
    display: block;
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--logo-green);
    font-weight: 500;
    margin-top: 0.2rem;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    border-bottom-color: var(--logo-green);
}

.nav-cta {
    padding: 0.65rem 1.4rem;
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    border-radius: var(--radius);
    font-weight: 600;
    border-bottom: none !important;
}

.nav-cta:hover {
    background: var(--wood-mid);
    border-bottom-color: transparent !important;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-secondary);
        padding: var(--space-xl) var(--space-md);
        transition: right var(--transition);
        border-left: 4px solid var(--wood-mid);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: block; }
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 7rem var(--space-md) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(245, 240, 230, 0.97) 0%,
        rgba(245, 240, 230, 0.85) 40%,
        rgba(245, 240, 230, 0.55) 70%,
        rgba(245, 240, 230, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 720px;
    animation: fadeUp 1.1s ease-out;
}

.hero-greeting {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--logo-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero h1 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 0 var(--space-lg);
    line-height: 1.55;
}

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

.hero-mini {
    min-height: 55vh;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.hero-mini .hero-content {
    max-width: 720px;
    text-align: center;
}

.hero-mini .hero-overlay {
    background: linear-gradient(180deg,
        rgba(245, 240, 230, 0.55) 0%,
        rgba(245, 240, 230, 0.85) 60%,
        rgba(245, 240, 230, 0.95) 100%);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =================== OPENING HOURS BANNER =================== */
.opening-banner {
    background: var(--bg-secondary);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.opening-banner .label {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--logo-green);
    display: block;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.opening-banner .hours {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 700;
}

.opening-banner .closed {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    display: block;
    margin-top: 0.3rem;
}

/* =================== SECTION HEADER =================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-xl);
}

.section-kicker {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--logo-green);
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
}

.section-header h2 { margin-bottom: var(--space-sm); }

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* =================== ABOUT (Bibis Geschichte) =================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text h2 { margin-bottom: var(--space-sm); }

.about-text p {
    color: var(--text-secondary);
    font-size: 1.06rem;
    margin-bottom: var(--space-sm);
}

.about-signature {
    font-family: var(--font-script);
    color: var(--logo-green);
    margin-top: var(--space-sm);
    font-size: 1.7rem;
    line-height: 1;
}

.about-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(26, 23, 20, 0.12);
}

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

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .about-image { max-width: 420px; margin: 0 auto; }
}

/* =================== STORY-BOX (Geschichte hinterm Namen) =================== */
.story-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 5px solid var(--logo-green);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 820px;
    margin: var(--space-lg) auto 0;
    box-shadow: 0 10px 30px rgba(26, 23, 20, 0.06);
}

.story-box .story-title {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--logo-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.story-box h3 {
    margin-bottom: var(--space-sm);
}

.story-box p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.story-box p:last-child { margin-bottom: 0; }

/* =================== SPECIALTIES =================== */
.section-specialties {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.specialty-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: 0 6px 16px rgba(26, 23, 20, 0.05);
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 23, 20, 0.12);
    border-color: var(--wood-light);
}

.specialty-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

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

.specialty-body h3 {
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
}

.specialty-body p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* =================== TODAY'S SPECIAL (Tafel-Look) =================== */
.todays-special {
    background: var(--bg-card);
    border: 2px dashed var(--wood-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 620px;
    margin: var(--space-lg) auto 0;
    text-align: center;
    transform: rotate(-0.5deg);
}

.todays-special .label {
    font-family: var(--font-script);
    color: var(--logo-green);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.todays-special h3 {
    margin-bottom: 0.5rem;
}

.todays-special .price {
    font-family: var(--font-script);
    color: var(--text-primary);
    font-size: 2.5rem;
    line-height: 1;
    margin-top: var(--space-sm);
}

/* =================== MENU =================== */
.menu-category {
    margin-bottom: var(--space-xl);
}

.menu-category:last-child { margin-bottom: 0; }

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

.menu-category-header h2 {
    margin-bottom: var(--space-xs);
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px dotted var(--border-strong);
    align-items: baseline;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 0.25rem;
    line-height: 1.55;
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--wood-mid);
    white-space: nowrap;
    padding-left: var(--space-sm);
    font-weight: 700;
}

.menu-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 5px solid var(--logo-green);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 760px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    box-shadow: 0 6px 16px rgba(26, 23, 20, 0.05);
}

.menu-highlight .kicker {
    font-family: var(--font-script);
    color: var(--logo-green);
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.menu-highlight h3 {
    margin-bottom: 0.6rem;
}

.menu-highlight p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.allergens-legend {
    max-width: 760px;
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.allergens-legend h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.allergens-legend p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.8;
}

/* =================== CONTACT INFO =================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

.contact-info {
    padding: var(--space-md);
}

.contact-info h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.contact-info-row {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm) 0;
    border-bottom: 1px dotted var(--border-strong);
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-row svg {
    width: 22px;
    height: 22px;
    color: var(--wood-mid);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-row .label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-info-row .value {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info-row .value a {
    color: var(--text-primary);
    border-bottom: 1px solid var(--wood-light);
}

.contact-info-row .value a:hover {
    color: var(--wood-mid);
    border-bottom-color: var(--wood-mid);
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-sm);
}

.hours-table td {
    padding: 0.65rem 0;
    color: var(--text-secondary);
    border-bottom: 1px dotted var(--border-strong);
    font-size: 0.98rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
}

.hours-table tr:last-child td { border-bottom: none; }

.hours-table .closed {
    color: var(--wood-mid);
    font-style: italic;
}

/* =================== MAP =================== */
.map-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(26, 23, 20, 0.08);
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background-image: url('../assets/map-placeholder.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 230, 0.85);
}

.map-consent {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-md);
    max-width: 360px;
}

.map-consent svg {
    width: 40px;
    height: 40px;
    color: var(--wood-mid);
    margin-bottom: var(--space-xs);
}

.map-consent h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.map-consent p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.map-consent .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.map-wrapper.loaded .map-placeholder { display: none; }
.map-wrapper.loaded .map-iframe { display: block; }

/* =================== CTA BANNER =================== */
.cta-banner {
    background: var(--bg-secondary);
    padding: var(--space-xl) 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner h2 { margin-bottom: var(--space-sm); }

.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

/* =================== FOOTER =================== */
.site-footer {
    padding: var(--space-lg) 0 var(--space-md);
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

@media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); text-align: center; }
}

.footer-col h5 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col li { padding: 0.3rem 0; }

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: none;
}

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

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    max-width: 320px;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    margin: 0 0.5rem;
    border-bottom: none;
}

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

.made-by {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.made-by a { color: var(--wood-mid); }

/* =================== FORM (kontakt) =================== */
.reservation-form {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-width: 620px;
    margin: var(--space-lg) auto 0;
    box-shadow: 0 10px 30px rgba(26, 23, 20, 0.06);
}

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

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

@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--wood-mid);
}

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

.form-submit { width: 100%; margin-top: var(--space-sm); }

.form-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.form-note a { color: var(--wood-mid); border-bottom-color: var(--wood-mid); }

/* =================== FADE-IN =================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================== MOBILE TWEAKS =================== */
@media (max-width: 640px) {
    body { font-size: 16px; }
    .hero { min-height: 88vh; padding-top: 6rem; text-align: center; align-items: center; justify-content: center; }
    .hero-content { text-align: center; }
    .hero-tagline { font-size: 1.1rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .menu-item { grid-template-columns: 1fr; }
    .menu-price { padding-left: 0; padding-top: 0.4rem; }
}
