/* ============================================================
   King Döner & Pizzahaus — styles.css
   Warm editorial döner house · Fraunces + Hanken Grotesk
   Brand orange (#F07E09) · charcoal · cream · eckig buttons
   ============================================================ */
:root {
  --bg:        #FBF7F0;
  --bg-elev:   #FFFFFF;
  --bg-soft:   #F4ECDF;
  --dark:      #171210;
  --dark-2:    #211A14;
  --dark-soft: #2C231B;
  --ink:       #1A1410;
  --ink-soft:  #5C5046;
  --ink-mute:  #93887A;
  --line:      #E9E0D3;
  --line-soft: #F1EADF;
  --accent:      #F07E09;
  --accent-2:    #C9650A;
  --accent-deep: #9A4D07;
  --accent-soft: #FBE6CC;
  --on-accent:   #FFFFFF;
  --ok:        #5E7D3A;
  --cream-d:   #D8CDBE;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1200px;
  --radius: 0;
  --shadow: 0 1px 2px rgba(26,20,16,.06), 0 10px 30px rgba(26,20,16,.07);
  --shadow-lg: 0 24px 60px rgba(26,20,16,.20);
  --ease: cubic-bezier(.22,.7,.25,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* subtle film grain for atmosphere */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.04; font-weight: 800; letter-spacing: -.015em; }
strong { font-weight: 700; }
::selection { background: var(--accent); color: #fff; }
svg { width: 1em; height: 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--bg-soft); }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--accent); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: .5rem; top: .5rem; }

/* ── Kicker overline ──────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--body); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .22em; color: var(--accent-2);
  margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.kicker--light { color: var(--accent-soft); }
.kicker--light::before { background: var(--accent); }

/* ── Buttons (eckig) ──────────────────────────────────────── */
.btn {
  --b: var(--accent);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem; line-height: 1; letter-spacing: .01em;
  padding: 1rem 1.6rem; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .2s, border-color .2s;
}
.btn > span { position: relative; z-index: 1; }
.btn--solid { background: var(--accent); color: var(--on-accent); box-shadow: 0 6px 18px rgba(240,126,9,.30); }
.btn--solid::before { content: ""; position: absolute; inset: 0; background: var(--accent-2); transform: translateY(101%); transition: transform .3s var(--ease); }
.btn--solid:hover { box-shadow: 0 10px 26px rgba(240,126,9,.40); transform: translateY(-2px); }
.btn--solid:hover::before { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn--sm { padding: .62rem 1.05rem; font-size: .92rem; }
.btn--block { width: 100%; }

/* ── Topbar ───────────────────────────────────────────────── */
.topbar { background: var(--dark); color: var(--cream-d); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; gap: .8rem; min-height: 38px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { color: var(--accent); font-size: .95rem; }
.topbar__dot { width: 3px; height: 3px; border-radius: 50%; background: #ffffff44; }
.status { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: #f3ece2; }
.status__dot { width: .55em; height: .55em; border-radius: 50%; box-shadow: 0 0 0 3px currentColor; opacity: 1; }

/* ── Header ───────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(23,18,16,.96); backdrop-filter: blur(8px); border-bottom: 1px solid #ffffff14; }
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.logo__img { height: 52px; width: auto; }
.nav { display: flex; gap: 1.75rem; margin-left: auto; }
.nav__link { color: #e9e1d6; font-weight: 600; font-size: .96rem; padding: .4rem 0; position: relative; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: #fff; }
.header__cta { margin-left: .25rem; }
.burger { display: none; width: 48px; height: 48px; padding: 0; margin-left: auto; background: var(--accent); border: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 22px; height: 2.5px; background: #fff; transition: .25s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--dark-2); padding: 1rem 1.25rem 1.4rem; }
.mobile-nav__link { color: #e9e1d6; font-weight: 600; padding: .95rem .25rem; border-bottom: 1px solid #ffffff12; }
.mobile-nav__link:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 1rem; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero { position: relative; min-height: clamp(540px, 80vh, 780px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(90deg, rgba(15,11,9,.92) 0%, rgba(15,11,9,.72) 42%, rgba(15,11,9,.32) 78%, rgba(15,11,9,.10) 100%),
  linear-gradient(0deg, rgba(15,11,9,.88) 0%, rgba(15,11,9,.42) 30%, transparent 62%); }
.hero__inner { padding-block: clamp(3rem, 9vh, 6rem); max-width: 660px; }
.hero__title { font-size: clamp(2.9rem, 8.5vw, 5.6rem); font-weight: 800; line-height: .96; text-wrap: balance; text-shadow: 0 2px 30px rgba(8,5,3,.55); animation: heroUp .8s var(--ease) .05s both; }
.hero__lead { font-size: clamp(1.08rem, 2.4vw, 1.45rem); color: #efe6db; margin-top: 1.25rem; max-width: 34ch; font-weight: 400; text-shadow: 0 1px 18px rgba(8,5,3,.5); animation: heroUp .8s var(--ease) .18s both; }
.hero__cta { margin-top: 2rem; animation: heroUp .8s var(--ease) .3s both; }
@keyframes heroUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__cta .btn { box-shadow: 0 12px 32px rgba(240,126,9,.45); }

/* ── Section heads ────────────────────────────────────────── */
.section__head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__head .kicker { display: inline-flex; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.85rem, 4.4vw, 2.9rem); }
.section__sub { font-family: var(--display); font-size: 1.35rem; margin: 2.25rem 0 1rem; }
.section__lead { color: var(--ink-soft); margin-top: 1rem; font-size: 1.06rem; }
.section--dark .section__lead { color: #cabfb0; }
.section__cta { text-align: center; margin-top: 2.75rem; }

/* ── Value props ──────────────────────────────────────────── */
.value { padding-top: clamp(2.75rem, 6vw, 4.5rem); }
.value__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value__card { padding: 1.75rem 1.5rem; background: var(--bg-elev); border: 1px solid var(--line); }
.value__ico { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--accent-soft); color: var(--accent-2); margin-bottom: 1rem; }
.value__ico svg { font-size: 1.5rem; }
.value__title { font-size: 1.22rem; font-weight: 600; margin-bottom: .45rem; }
.value__body { color: var(--ink-soft); font-size: .95rem; }

/* ── Category grid (editorial) ────────────────────────────── */
.section--menu { background: var(--bg); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-card { position: relative; display: block; background: var(--bg-elev); border: 1px solid var(--line); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cream-d); }
.cat-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--dark-2); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__body { padding: 1.4rem 1.6rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cat-card__text { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.cat-card__name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1.12; }
.cat-card__arrow { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--line); border-radius: 50%; color: var(--accent-2); flex: 0 0 auto; transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease); }
.cat-card:hover .cat-card__arrow { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateX(3px); }
.cat-card__arrow svg { font-size: 1.05rem; }
.cat-card__tag { color: var(--ink-mute); font-size: .95rem; }
.pill { position: absolute; top: .85rem; left: .85rem; z-index: 2; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .35rem .65rem; }

/* ── Zones (dark) ─────────────────────────────────────────── */
.section--dark { background: var(--dark); color: #f1e9de; position: relative; isolation: isolate; }
.section--dark::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 500px at 85% -10%, rgba(240,126,9,.16), transparent 60%); }
.section--dark .section__title { color: #fff; }
.zone-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; margin-top: .5rem; }
.zone-card { display: flex; flex-direction: column; gap: .25rem; padding: 1.15rem 1.3rem; background: #ffffff08; border: 1px solid #ffffff1f; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.section--dark .zone-card:hover { border-color: var(--accent); background: #ffffff12; transform: translateY(-3px); }
.zone-card__name { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.zone-card__meta { color: #b3a795; font-size: .84rem; }
.zone-card__info { color: var(--accent); font-weight: 600; font-size: .9rem; margin-top: .4rem; }
/* zones on light service page */
.section--alt .zone-card, .section .zone-card:not(.section--dark .zone-card) { }

/* ── Services ─────────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { position: relative; padding: 2rem 1.75rem 1.75rem; background: var(--bg-elev); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 4px; background: var(--accent); transition: width .35s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { width: 100%; }
.service-card__num { font-family: var(--display); font-size: 2.4rem; font-weight: 800; color: var(--accent-soft); -webkit-text-stroke: 1px var(--accent); line-height: 1; display: block; margin-bottom: .75rem; }
.service-card__name { font-size: 1.5rem; }
.service-card__intro { color: var(--ink-soft); font-size: .98rem; margin: .6rem 0 1.1rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent-2); font-weight: 700; font-size: .94rem; }
.link-arrow svg { transition: transform .25s var(--ease); }
.service-card:hover .link-arrow svg { transform: translateX(4px); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--bg-elev); border: 1px solid var(--line); margin-bottom: .75rem; transition: border-color .2s; }
.faq__item[open] { border-color: var(--cream-d); }
.faq__q { cursor: pointer; padding: 1.2rem 1.4rem; font-weight: 600; font-size: 1.06rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q::after { content: "+"; color: var(--accent); font-size: 1.7rem; font-weight: 300; line-height: 1; transition: transform .25s var(--ease); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q::-webkit-details-marker { display: none; }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ── Contact + map ────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: center; }
.contact__line { display: flex; align-items: center; gap: .6rem; font-size: 1.06rem; margin-top: .7rem; }
.contact__line svg { color: var(--accent-2); font-size: 1.15rem; }
.contact__cta { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.map { position: relative; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 380px; border: 0; display: block; }
.map__link { position: absolute; bottom: .85rem; right: .85rem; display: inline-flex; align-items: center; gap: .4rem; background: var(--ink); color: #fff; font-size: .85rem; font-weight: 600; padding: .55rem .9rem; box-shadow: var(--shadow); transition: background .2s; }
.map__link:hover { background: var(--accent); }
.map__link svg { font-size: .95rem; }

/* ── Breadcrumb / page heads / detail hero ────────────────── */
.crumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: .85rem; color: var(--ink-mute); }
.crumb .wrap { padding: .85rem 0; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--accent-2); }
.crumb__sep { margin: 0 .5rem; color: var(--cream-d); }
.page-head { padding-top: clamp(2rem, 4vw, 3.25rem); }
.page-title { font-size: clamp(2rem, 5.2vw, 3.2rem); }
.page-title--light { color: #fff; }
.page-lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 62ch; margin-top: 1rem; }
.page-lead--light { color: #efe6db; }
.page-head__cta { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .8rem; }

.detail-hero { position: relative; color: #fff; isolation: isolate; padding: clamp(3rem, 9vw, 6rem) 0; overflow: hidden; }
.detail-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--cat-img); background-size: cover; background-position: center; transform: scale(1.05); }
.detail-hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(15,11,9,.92), rgba(15,11,9,.55) 75%, rgba(15,11,9,.3)); }
.detail-hero__inner { max-width: 680px; }
.detail-hero__stat { margin-top: 1.1rem; font-weight: 600; color: var(--accent-soft); }

/* ── Prose / facts / chips / legend ───────────────────────── */
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose--legal { max-width: 820px; }
.prose--legal h2 { font-size: 1.35rem; margin: 2rem 0 .65rem; }
.prose--legal a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.tel-plain, .prose--legal a.tel-plain { color: inherit; text-decoration: none; font-weight: inherit; }
.facts { display: grid; gap: .5rem; margin: 1.5rem 0; max-width: 640px; }
.facts li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; background: var(--bg-elev); border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: .9rem 1.2rem; }
.facts li strong { font-weight: 600; }
.facts li span { color: var(--accent-2); font-weight: 700; text-align: right; }
.facts--list li { display: list-item; border-left: 3px solid var(--accent); color: var(--ink-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.chip { display: inline-flex; align-items: center; gap: .35rem; background: var(--bg-elev); border: 1px solid var(--line); padding: .6rem 1rem; font-size: .92rem; font-weight: 500; transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease); }
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip--cat { font-weight: 600; }
.chip--accent { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }
.chip--accent:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.legend { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .5rem; margin: .85rem 0 1.5rem; }
.legend li { background: var(--bg-elev); border: 1px solid var(--line); padding: .65rem .9rem; font-size: .95rem; }
.legend b { display: inline-block; min-width: 1.6em; color: var(--accent-2); font-weight: 700; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #cabfb0; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__logo { height: 58px; width: auto; margin-bottom: 1.1rem; }
.footer__tag { color: #b3a795; max-width: 34ch; margin-bottom: 1.1rem; font-size: .95rem; }
.footer__addr, .footer__hours { font-size: .94rem; margin-bottom: 1rem; color: #cabfb0; }
.footer__hours-l { color: #fff; font-weight: 600; }
.footer__order { margin-top: .25rem; }
.footer__h { font-family: var(--body); font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 1rem; }
.footer__h--mt { margin-top: 1.6rem; }
.footer__col ul li { margin-bottom: .55rem; }
.footer__col ul a { font-size: .94rem; color: #cabfb0; transition: color .2s; }
.footer__col ul a:hover { color: var(--accent); }
.footer__pay { color: #93887a; font-size: .85rem; padding: 1.4rem 0; border-top: 1px solid #ffffff14; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: 1.3rem 0 1.6rem; border-top: 1px solid #ffffff10; font-size: .84rem; color: #8b8073; }
.footer__credit a { color: var(--accent); font-weight: 600; }
.footer__credit a:hover { color: #fff; }

/* ── Sticky order bar (mobile) ────────────────────────────── */
.sticky-order { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; background: var(--dark); padding: .7rem .85rem; gap: .6rem; align-items: center; box-shadow: 0 -6px 24px rgba(0,0,0,.28); border-top: 1px solid #ffffff14; }
.sticky-order__call { flex: 0 0 auto; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: #ffffff14; color: #fff; }
.sticky-order__call svg { font-size: 1.3rem; }

/* ── Cookie banner ────────────────────────────────────────── */
.cookie { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 80; max-width: 470px; margin-left: auto; background: var(--bg-elev); border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 1.2rem 1.35rem; }
.cookie__txt { font-size: .88rem; color: var(--ink-soft); margin-bottom: .9rem; }
.cookie__txt a { color: var(--accent-2); text-decoration: underline; }
.cookie__btns { display: flex; gap: .6rem; justify-content: flex-end; }

/* ── Reveal on scroll ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cat-grid .cat-card:nth-child(2), .value__card:nth-child(2), .zone-card:nth-child(2) { transition-delay: .06s; }
.cat-grid .cat-card:nth-child(3), .value__card:nth-child(3), .zone-card:nth-child(3) { transition-delay: .12s; }
.cat-grid .cat-card:nth-child(4), .value__card:nth-child(4) { transition-delay: .18s; }
.cat-grid .cat-card:nth-child(5) { transition-delay: .24s; }
.cat-grid .cat-card:nth-child(6) { transition-delay: .3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 980px) {
  .value__grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr; }
  .topbar__item--hide, .topbar__dot--hide { display: none; }
}
@media (max-width: 760px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .mobile-nav.is-open { display: flex; }
  .sticky-order { display: flex; }
  body { padding-bottom: 74px; }
  .hero { min-height: clamp(440px, 66vh, 600px); }
  .hero__cta { display: none; }      /* CTA lives in the sticky bar on mobile */
  .section__head--left { text-align: left; }
}
@media (max-width: 540px) {
  .contact__cta, .page-head__cta { flex-direction: column; align-items: stretch; }
  .contact__cta .btn, .page-head__cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  .value__grid, .cat-grid, .footer__grid { grid-template-columns: 1fr; }
  .cat-card__media { aspect-ratio: 16/10; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
