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

:root {
    --brown:        #8B4F3A;
    --brown-light:  #F5EDE9;
    --green:        #6B9B5E;
    --green-light:  #EEF5EB;
    --orange:       #E8832A;
    --orange-light: #FEF3E7;
    --cream:        #FDF8F3;
    --dark:         #2A1F1A;
    --text:         #3D2E28;
    --muted:        #7A6260;
    --radius:       16px;
    --radius-lg:    24px;
    --shadow:       0 4px 24px rgba(139,79,58,.1);
    --shadow-lg:    0 10px 48px rgba(139,79,58,.18);
    --ease:         cubic-bezier(.4,0,.2,1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

/* ===== DEMO BANNER ===== */
.demo-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: #F5C400;
    color: #1a1100;
    text-align: center;
    padding: .45rem 1rem;
    font-size: .78rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4;
    border-bottom: 2px solid #c49b00;
}
.demo-banner strong { font-weight: 800; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--dark);
}

a {
    color: var(--brown);
    text-decoration: none;
    transition: color .25s var(--ease);
}
a:hover { color: var(--orange); }

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

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SECTION COMMONS ===== */
.section { padding: 5.5rem 0; }
.section--tinted { background: var(--green-light); }

.section__eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .6rem;
}
.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: .75rem;
}
.section__sub {
    font-size: 1rem;
    color: var(--muted);
}
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__header--left { text-align: left; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .28s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--brown);
    color: #fff;
    box-shadow: 0 4px 18px rgba(139,79,58,.28);
}
.btn--primary:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232,131,42,.35);
}
.btn--outline {
    border-color: var(--brown);
    color: var(--brown);
}
.btn--outline:hover {
    background: var(--brown);
    color: #fff;
}
.btn--nav {
    padding: .45rem 1.2rem;
    font-size: .82rem;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: all .25s var(--ease);
}
.btn--nav:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 34px; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    transition: all .35s var(--ease);
}
.nav--scrolled {
    background: rgba(253,248,243,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(139,79,58,.1);
    padding: .8rem 0;
}
.nav__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}
.nav__logo { width: 38px; height: 38px; object-fit: contain; }
.nav__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, var(--brown-light) 0%, var(--cream) 50%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 7rem 1.5rem 5rem;
}

/* ===== HERO FOOD ORBS ===== */
.hero__orbs {
    flex-shrink: 0;
    position: relative;
    width: 240px;
    height: 320px;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,.75);
    box-shadow: 0 12px 40px rgba(139,79,58,.22);
}
.hero__orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
.hero__orb--bowl {
    width: 190px; height: 190px;
    top: 0; right: 0;
    animation: float 8s ease-in-out infinite;
}
.hero__orb--bowl img { object-position: center 30%; }

.hero__orb--wrap {
    width: 140px; height: 140px;
    bottom: 0; left: 0;
    animation: float 7s ease-in-out infinite .8s;
}
.hero__orb--wrap img { object-position: center center; }

.hero__orb--bagel {
    width: 110px; height: 110px;
    bottom: 30px; right: 15px;
    animation: float 9s ease-in-out infinite 1.6s;
}
.hero__orb--bagel img { object-position: center 40%; }

.hero__content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1060px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__logo-wrap { flex-shrink: 0; }
.hero__logo {
    width: 230px;
    height: 230px;
    object-fit: contain;
    animation: float 7s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(139,79,58,.22));
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
}

.hero__eyebrow {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .8rem;
}
.hero__title {
    font-size: clamp(3.2rem, 7.5vw, 5.8rem);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.02;
    margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: italic;
    color: var(--brown);
}
.hero__sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2.2rem;
    line-height: 1.6;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero__wave svg { width: 100%; display: block; }

/* ===== WAVE DIVIDERS ===== */
.wave { line-height: 0; }
.wave svg { width: 100%; display: block; }
.wave--to-tinted  { background: var(--cream); }
.wave--from-tinted { background: var(--green-light); }

/* ===== ANGEBOT ===== */
.angebot__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
.card:nth-child(1) { transition-delay: .05s; }
.card:nth-child(2) { transition-delay: .15s; }
.card:nth-child(3) { transition-delay: .25s; }
.card:hover {
    transform: translateY(-7px) !important;
    box-shadow: var(--shadow-lg);
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card--bowl::before   { background: var(--green); }
.card--wrap::before   { background: var(--orange); }
.card--bagel::before  { background: var(--brown); }

.card__icon  { font-size: 3.2rem; margin-bottom: 1rem; }
.card__title { font-size: 1.7rem; font-weight: 600; margin-bottom: .7rem; }
.card__desc  { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem; }

.card__tags  { display: flex; gap: .45rem; flex-wrap: wrap; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .28rem .7rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
}
.tag--vegan  { background: var(--green-light);  color: var(--green);  }
.tag--veggie { background: var(--orange-light); color: var(--orange); }
.tag--meat   { background: var(--brown-light);  color: var(--brown);  }

.price-note {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--orange-light);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: .95rem;
}
.price-note strong { color: var(--orange); }

/* ===== ÖFFNUNGSZEITEN ===== */
.hours__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.hours-table {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 1.5rem;
    border-bottom: 1px solid rgba(107,155,94,.12);
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), background .2s;
}
.hours-row.visible { opacity: 1; transform: translateX(0); }
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(107,155,94,.08); }
.hours-row:nth-child(1) { transition-delay: .0s; }
.hours-row:nth-child(2) { transition-delay: .05s; }
.hours-row:nth-child(3) { transition-delay: .1s; }
.hours-row:nth-child(4) { transition-delay: .15s; }
.hours-row:nth-child(5) { transition-delay: .2s; }
.hours-row:nth-child(6) { transition-delay: .25s; }
.hours-row:nth-child(7) { transition-delay: .3s; }

.hours-row--closed .hours-time { color: #c0a0a0; font-style: italic; }
.hours-row--open .hours-time   { color: var(--green); font-weight: 700; }
.hours-day { font-weight: 500; }

.catering-box {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: #fff;
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
}
.catering-box__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.catering-box strong { display: block; color: var(--dark); margin-bottom: .3rem; }
.catering-box p  { font-size: .9rem; color: var(--muted); }
.catering-box a  { color: var(--orange); font-weight: 700; }
.catering-box a:hover { color: var(--brown); }

/* ===== KONTAKT ===== */
.kontakt__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}
.kontakt__info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.info-card.visible { opacity: 1; transform: translateX(0); }
.info-card:nth-child(1) { transition-delay: .0s; }
.info-card:nth-child(2) { transition-delay: .1s; }
.info-card:nth-child(3) { transition-delay: .2s; }

.info-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card__label {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .2rem;
}
.info-card__value { color: var(--dark); font-size: .95rem; }
.info-card__value a { color: var(--brown); font-weight: 600; }
.info-card__value a:hover { color: var(--orange); }

.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1.2rem;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 700;
    transition: all .25s var(--ease);
    text-decoration: none;
}
.social-btn svg { flex-shrink: 0; }
.social-btn--fb  { background: #1877F2; color: #fff; }
.social-btn--fb:hover  { background: #0c60d4; color: #fff; transform: translateY(-2px); }
.social-btn--ig  {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}
.social-btn--ig:hover  { opacity: .88; color: #fff; transform: translateY(-2px); }

.kontakt__map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    padding: 3rem 0 1.75rem;
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1.5rem;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.footer__logo { width: 38px; height: 38px; object-fit: contain; }
.footer__name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}
.footer__tagline { font-size: .78rem; color: var(--orange); font-weight: 600; }
.footer__rating  { font-size: .84rem; }
.footer__bottom  { text-align: center; font-size: .78rem; }
.footer__bottom a { color: var(--orange); font-weight: 700; }
.footer__bottom a:hover { color: #fff; }

/* ===== ACCORDION ===== */
.speisekarte { background: var(--cream); }

.accordion { display: flex; flex-direction: column; gap: .75rem; }

.accordion__item {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow .25s var(--ease);
}
.accordion__item.is-open { box-shadow: var(--shadow-lg); }

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background .2s;
}
.accordion__trigger:hover { background: rgba(139,79,58,.04); }

.accordion__icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.accordion__meta { flex: 1; min-width: 0; }
.accordion__title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}
.accordion__sub {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    margin-top: .15rem;
}
.accordion__price {
    flex-shrink: 0;
    font-size: .82rem;
    font-weight: 800;
    color: var(--orange);
    background: var(--orange-light);
    padding: .3rem .7rem;
    border-radius: 50px;
    white-space: nowrap;
}
.accordion__chevron {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--muted);
    transition: transform .3s var(--ease);
    line-height: 1;
}
.accordion__item.is-open .accordion__chevron { transform: rotate(90deg); }

/* Panel */
.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.accordion__panel-inner {
    padding: 0 1.5rem 1.75rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.accordion__img {
    flex-shrink: 0;
    width: 180px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}
.accordion__note {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    padding-top: .25rem;
}
.accordion__note strong { color: var(--dark); }

.accordion__dishes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex: 1;
}
.dish-group {
    flex: 1;
    min-width: 160px;
}
.dish-group__label {
    display: block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.dish {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .35rem 0;
    font-size: .88rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.05);
    gap: .5rem;
}
.dish span:last-child {
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
}

/* ===== CYO (Create Your Own) ===== */
.cyo { flex-direction: column; gap: 0; padding: .25rem 1.5rem 1.75rem; }
.cyo__steps { display: flex; flex-direction: column; gap: 1.1rem; }

.cyo__step {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}
.cyo__step-head {
    display: flex;
    align-items: baseline;
    gap: .6rem;
    margin-bottom: .65rem;
}
.cyo__num {
    width: 24px; height: 24px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cyo__label {
    font-weight: 700;
    font-size: .9rem;
    color: var(--dark);
}
.cyo__hint {
    font-size: .75rem;
    color: var(--orange);
    font-weight: 700;
    margin-left: auto;
}

.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .28rem .7rem;
    border-radius: 50px;
    background: #fff;
    border: 1.5px solid rgba(139,79,58,.15);
    font-size: .8rem;
    color: var(--text);
    white-space: nowrap;
}
.chip em { font-style: normal; color: var(--orange); font-weight: 700; margin-left: .15rem; }
.chip--vegan   { background: var(--green-light);  border-color: rgba(107,155,94,.3);  color: var(--green); }
.chip--premium { background: var(--orange-light); border-color: rgba(232,131,42,.3);  color: var(--orange); font-weight: 600; }
.chip--extra   { background: var(--brown-light);  border-color: rgba(139,79,58,.25);  color: var(--brown); }
.chip--side    { background: var(--cream); border-color: rgba(139,79,58,.2); }

.cyo__beilagen {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.07);
}
.cyo__beilagen-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: .25rem;
}

/* ===== FAVORITES / SPECIALS GRID ===== */
.fav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}
.fav-col__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .3rem;
}
.fav-col__note {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .9rem;
    line-height: 1.5;
}
.fav-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    margin-bottom: .6rem;
}
.fav-card--pump {
    background: var(--orange-light);
    border: 1.5px dashed rgba(232,131,42,.4);
}
.fav-card__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .3rem;
}
.fav-card__name { font-weight: 700; font-size: .92rem; color: var(--dark); }
.fav-card__price { font-weight: 800; font-size: .88rem; color: var(--orange); white-space: nowrap; }
.fav-card__ing { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.fav-card__sauce {
    display: inline-block;
    margin-top: .4rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--brown);
    background: var(--brown-light);
    padding: .15rem .55rem;
    border-radius: 50px;
}

/* ===== INSTAGRAM TEASER ===== */
.insta-teaser {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fdf0f8, #fff0f5);
    border: 1.5px solid rgba(220,39,67,.15);
    text-decoration: none;
    transition: all .25s var(--ease);
    flex-wrap: wrap;
}
.insta-teaser:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220,39,67,.15);
    border-color: rgba(220,39,67,.3);
}
.insta-teaser__icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.insta-teaser__text {
    flex: 1;
    min-width: 0;
}
.insta-teaser__text strong {
    display: block;
    font-size: .95rem;
    color: var(--dark);
    margin-bottom: .2rem;
}
.insta-teaser__text span {
    font-size: .83rem;
    color: var(--muted);
}
.insta-teaser__handle {
    font-size: .88rem;
    font-weight: 700;
    color: #cc2366;
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero__orbs { display: none; }
    .angebot__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .hours__layout  { grid-template-columns: 1fr; }
    .kontakt__grid  { grid-template-columns: 1fr; }
    .kontakt__map iframe { height: 300px; }
    .fav-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .hero__content { flex-direction: column; text-align: center; gap: 2.5rem; }
    .hero__actions { justify-content: center; }
    .hero__logo { width: 160px; height: 160px; }
    .hero__title { font-size: 3rem; }
    .section { padding: 4rem 0; }
    .footer__top { flex-direction: column; align-items: flex-start; }
    .accordion__trigger { gap: .75rem; }
    .accordion__price { display: none; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.6rem; }
    .btn { padding: .7rem 1.5rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hours-row { padding: .8rem 1.1rem; }
}
