/* =========================================================================
   BAHAR DÖNER UND PIZZAHAUS — warm minimal · brand orange
   Type: Fraunces (variable, opsz) · Inter
   Palette: warm cream + deep charcoal + brand orange (#EF7D04)
   ========================================================================= */

:root {
  --bg:           #FAF7F2;
  --bg-elev:      #FFFFFF;
  --bg-soft:      #F2EBE0;
  --ink:          #1B1714;
  --ink-soft:     #5A4F47;
  --ink-mute:     #8C7E73;
  --line:         #E8E0D6;
  --line-soft:    #EFE9DF;
  --accent:       #EF7D04;
  --accent-hover: #C76800;
  --accent-soft:  #FCE8D1;
  --ok:           #5A7D3B;
  --shadow-sm:    0 1px 2px rgba(27,23,20,.04), 0 4px 12px rgba(27,23,20,.04);
  --shadow:       0 1px 2px rgba(27,23,20,.04), 0 12px 32px rgba(27,23,20,.07);
  --shadow-lg:    0 2px 4px rgba(27,23,20,.05), 0 24px 60px rgba(27,23,20,.10);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-display: clamp(2.5rem, 5.5vw + 1rem, 5rem);
  --fs-h1:      clamp(2.25rem, 4vw + 1rem, 4rem);
  --fs-h2:      clamp(1.75rem, 2.4vw + 1rem, 2.75rem);
  --fs-h3:      1.375rem;
  --fs-body:    1.0625rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.75rem;
  --lh-tight:   1.05;
  --lh-body:    1.6;

  --max:  1180px;
  --max-narrow: 880px;
  --pad:  clamp(20px, 4vw, 40px);
  --section-y: clamp(4rem, 8vw, 7rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, iframe, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container--narrow { max-width: var(--max-narrow); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--bg);
  padding: 12px 16px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 999; }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.display__accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  max-width: 18ch;
}
.h1__accent { font-style: italic; font-weight: 400; color: var(--accent); }

.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}

.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--ink { color: var(--accent-soft); }
.eyebrow--ink::before { background: var(--accent-soft); }
.eyebrow--soft { color: var(--ink-soft); }
.eyebrow--soft::before { background: var(--ink-soft); }

.lede {
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 16px;
}
.lede--ink { color: #d6c9b9; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-align: center;
  border-radius: 0;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(154, 51, 10, 0.20);
}
.btn--solid:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 10px 24px rgba(154, 51, 10, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--sm { padding: 9px 16px; font-size: 0.8125rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--xl { padding: 20px 36px; font-size: 1.0625rem; }

.btn__arrow { transition: transform .25s ease; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.header__cta { padding: 11px 20px; font-size: 0.875rem; }

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 96px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo__img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}
@media (min-width: 768px) {
  .logo__img { height: 80px; }
}
.logo:hover { color: var(--ink); }

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 36px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.nav a, .nav__trigger {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  background: transparent;
  border: 0;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.nav__trigger { color: var(--accent); }
.nav__trigger:hover { color: var(--accent-hover); }
.nav__trigger::after { background: var(--accent); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header__right {
  display: flex; align-items: center; gap: 14px;
  flex: 0 0 auto;
  margin-left: auto;
}

.header__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
}
.dot--closed { background: var(--accent); }

/* =========================================================================
   HERO — editorial split layout
   ========================================================================= */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(ellipse at 80% 20%, var(--accent-soft) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__inner { max-width: 620px; }
.hero__lede {
  font-size: clamp(1.0625rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 52ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero__note {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  margin-top: 48px;
  max-width: 540px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__stat {
  padding: 18px 28px 18px 0;
  border-right: 1px solid var(--line);
}
.hero__stat:nth-child(n+2) { padding-left: 28px; }
.hero__stat:last-child { border-right: 0; }
.hero__stat dt {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero__stat dd {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,23,20,0.18) 100%);
  pointer-events: none;
}

/* =========================================================================
   TRUST STRIP
   ========================================================================= */
.trust {
  background: var(--bg-elev);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
}
.trust__item:first-child { padding-left: 0; }
.trust__item:last-child { border-right: 0; padding-right: 0; }
.trust__text { display: flex; flex-direction: column; gap: 6px; }
.trust__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.trust__value {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: var(--section-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--ink {
  background: var(--ink);
  color: var(--bg);
}
.section--ink .h2 { color: var(--bg); }

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section__head--ink .lede { color: #d6c9b9; }

.section__cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.section__more {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* =========================================================================
   CATEGORY CARDS — editorial photo-led tiles
   ========================================================================= */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--ink);
  text-align: left;
  padding: 0;
  font: inherit;
  cursor: pointer;
  width: 100%;
}
.cat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--line);
  color: var(--ink);
}
.cat__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.cat__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cat:hover .cat__media img { transform: scale(1.04); }
.cat__body {
  padding: 0 18px 20px;
}
.cat__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.cat__meta {
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}

/* =========================================================================
   SERVICES GRID
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  color: var(--ink);
}
.service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.service-card__arrow {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform .2s ease;
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }
.service-card__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}
.service-card__intro {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =========================================================================
   HOURS
   ========================================================================= */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.hours-col {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 32px 32px;
}
.hours-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-variation-settings: "opsz" 36;
}
.hours-title::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex: 0 0 auto;
}
.hours { display: flex; flex-direction: column; }
.hours > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hours > div:last-child { border-bottom: 0; }
.hours dt { color: var(--ink-mute); font-weight: 500; font-size: 0.9375rem; }
.hours dd {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
  font-feature-settings: "tnum";
  font-variation-settings: "opsz" 24;
}

/* =========================================================================
   ZONES
   ========================================================================= */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.zone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 130px;
  padding: 22px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--ink);
}
.zone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  color: var(--ink);
}
.zone::after {
  content: "→";
  position: absolute;
  top: 22px; right: 22px;
  color: var(--accent);
  font-size: 1.125rem;
  transition: transform .2s ease;
}
.zone:hover::after { transform: translateX(4px); }
.zone__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
  padding-right: 28px;
}
.zone__meta {
  font-size: 0.8125rem;
  color: var(--ink-mute);
  margin-top: auto;
}

/* =========================================================================
   MENU LIST — editorial, dotted leader, hairline rows
   ========================================================================= */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 0;
  list-style: none;
  margin-top: 24px;
  counter-reset: menu;
}
.menu--compact { grid-template-columns: 1fr; }

.menu__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  break-inside: avoid;
}
.menu__no {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--accent);
  min-width: 28px;
  font-feature-settings: "tnum";
  font-variation-settings: "opsz" 24;
  padding-top: 4px;
}
.menu__main { min-width: 0; }
.menu__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.menu__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
  flex: 0 1 auto;
}
.menu__tag {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--ink-soft);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: 2px;
}
.menu__tag--hot {
  background: var(--accent-soft);
  color: var(--accent);
}
.menu__leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 4px 6px;
  min-width: 12px;
}
.menu__price {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9375rem;
  font-feature-settings: "tnum";
  color: var(--ink);
  white-space: nowrap;
  flex: 0 0 auto;
}
.menu__desc {
  margin-top: 6px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.menu__allergens {
  margin-top: 6px;
  font-size: 0.6875rem;
  color: var(--ink-mute);
}
.menu__allergens a { color: var(--ink-mute); }
.menu__allergens a:hover { color: var(--accent); }
.menu__allergens sup {
  font-size: 0.625rem;
  margin-right: 2px;
  letter-spacing: 0.04em;
}

/* =========================================================================
   SPEISEKARTE INDEX (full menu page)
   ========================================================================= */
.toc {
  position: sticky; top: 76px; z-index: 30;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.toc__inner {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  white-space: nowrap;
}
.toc a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  flex: 0 0 auto;
}
.toc a:hover { color: var(--accent); }
.speisekarte__section { margin-bottom: 64px; }
.speisekarte__section:last-child { margin-bottom: 0; }
.speisekarte__head { margin-bottom: 12px; }
.speisekarte__head .lede { margin-top: 12px; max-width: 70ch; }

/* =========================================================================
   PAGE HEAD (sub-pages)
   ========================================================================= */
.page-head {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse at 90% 10%, var(--accent-soft) 0%, transparent 50%),
    var(--bg);
}
.page-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-head__eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}
.page-head .h1 {
  max-width: 22ch;
}
.page-head__lede {
  margin-top: 20px;
  max-width: 62ch;
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.1875rem);
  line-height: 1.65;
  color: var(--ink-soft);
}
.page-head__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-head__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  margin-top: 40px;
  max-width: 600px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-head__stats > div {
  padding: 16px 24px 16px 0;
  border-right: 1px solid var(--line);
}
.page-head__stats > div:nth-child(n+2) { padding-left: 24px; }
.page-head__stats > div:last-child { border-right: 0; }
.page-head__stats dt {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.page-head__stats dd {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
  font-feature-settings: "tnum";
}

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.backlink::before { content: "←"; color: var(--accent); }
.backlink:hover { color: var(--ink); }

/* =========================================================================
   CTA BLOCK (on sub-pages)
   ========================================================================= */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: clamp(28px, 4vw, 44px);
  min-height: clamp(180px, 22vw, 240px);
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(154, 51, 10, 0.25);
  color: #fff;
}
.cta-card--alt {
  background: transparent;
  color: var(--bg);
  border: 1.5px solid rgba(250, 247, 242, 0.30);
}
.cta-card--alt:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: var(--bg);
  color: var(--bg);
  box-shadow: none;
}
.cta-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}
.cta-card__meta {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.cta-card__arrow {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  font-size: 1.5rem;
  transition: transform .2s ease;
}
.cta-card:hover .cta-card__arrow { transform: translateX(4px); }

/* =========================================================================
   BIG CTA — primary order conversion block
   ========================================================================= */
.big-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(135deg, #221c18 0%, var(--ink) 100%);
  padding: clamp(40px, 6vw, 64px);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(154, 51, 10, 0.55) 0%, transparent 55%);
  pointer-events: none;
}
.big-cta__text { position: relative; z-index: 1; }
.big-cta__text .h2 { color: var(--bg); margin-bottom: 8px; }
.big-cta__text .lede--ink { margin-top: 0; }
.big-cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.big-cta__sub {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(216, 205, 191, 0.75);
  text-align: center;
  margin: 0;
}
.big-cta__primary {
  width: 100%;
  font-size: 1.125rem;
  padding: 22px 32px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(154, 51, 10, 0.40);
}
.big-cta__primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 16px 40px rgba(154, 51, 10, 0.50);
}
.big-cta__alt {
  width: 100%;
  color: var(--bg);
  border-color: rgba(250, 247, 242, 0.30);
}
.big-cta__alt:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: var(--bg);
  color: var(--bg);
}
@media (max-width: 768px) {
  .big-cta { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* =========================================================================
   CROSS LINKS
   ========================================================================= */
.cross-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.cross-links a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  min-height: 110px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--ink);
}
.cross-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
  color: var(--ink);
}
.cross-links__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
  padding-right: 24px;
}
.cross-links__meta { font-size: 0.8125rem; color: var(--ink-mute); }
.cross-links__arrow {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--accent);
  transition: transform .2s ease;
}
.cross-links a:hover .cross-links__arrow { transform: translateX(4px); }

/* =========================================================================
   DETAILS LIST (service pages)
   ========================================================================= */
.details-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.details-list li {
  padding: 18px 0 18px 32px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.details-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 18px;
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================================
   KONTAKT
   ========================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-lines { margin-top: 28px; }
.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  color: var(--bg);
}
.contact-line:last-of-type { border-bottom: 1px solid rgba(250, 247, 242, 0.14); }
.contact-line > span:first-child {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a89b8a;
  font-weight: 600;
}
.contact-line__val {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  font-variation-settings: "opsz" 24;
}
.contact-line:hover .contact-line__val { color: var(--accent-soft); }

.map-card {
  overflow: hidden;
  border-radius: 8px;
  height: min(60vh, 480px);
  background: var(--bg-soft);
  border: 1px solid rgba(250, 247, 242, 0.14);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================================
   STICKY ORDER BAR (mobile)
   ========================================================================= */
.sticky-order {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink);
  color: var(--bg);
  display: none;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--accent);
}
.sticky-order__info {
  flex: 1;
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.sticky-order__info strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9375rem;
  font-variation-settings: "opsz" 24;
}
.sticky-order__info span {
  font-size: 0.6875rem;
  color: #a89b8a;
  letter-spacing: 0.04em;
}
.sticky-order__btn {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 22px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0;
  cursor: pointer;
  transition: background .15s ease;
  white-space: nowrap;
}
.sticky-order__btn:hover { background: var(--accent-hover); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--ink);
  color: #a89b8a;
  padding: 72px 0 28px;
}
.footer a { color: #d8cdbf; }
.footer a:hover { color: var(--accent-soft); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.10);
}
.footer__logo {
  display: block;
  height: 120px;
  width: auto;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--bg);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 36;
}
.footer__addr {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #a89b8a;
}
.footer__phone {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  font-variation-settings: "opsz" 24;
}
.footer__phone a { color: var(--bg); }
.footer__cta { margin-top: 20px; }
.footer__cta .btn--solid { background: var(--accent); border-color: var(--accent); }
.footer__cta .btn--solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__h {
  font-family: var(--body);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer ul li { padding: 5px 0; font-size: 0.9375rem; }

.footer__seo {
  padding: 24px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.10);
  font-size: 0.75rem;
  color: #6c604f;
  line-height: 1.8;
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #6c604f;
}
.footer__sep { color: #3a322a; }
.footer__spacer { flex: 1; }
.footer__muted { color: #6c604f; }

/* =========================================================================
   COOKIE CONSENT
   ========================================================================= */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 95;
  background: var(--ink);
  color: #d8cdbf;
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
  transform: translateY(150%);
  transition: transform .35s ease;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
body:has(.cookie[aria-hidden="false"]) .sticky-order { display: none; }
.cookie[aria-hidden="false"] { transform: translateY(0); }
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie__text { flex: 1 1 280px; font-size: 0.8125rem; line-height: 1.55; }
.cookie__text strong {
  color: var(--bg);
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 24;
}
.cookie__text a { color: var(--accent-soft); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn--ghost { color: var(--bg); border-color: rgba(250, 247, 242, 0.30); }
.cookie .btn--ghost:hover { background: rgba(250, 247, 242, 0.08); border-color: var(--bg); color: var(--bg); }

.consent-blocked { opacity: 0.7; cursor: not-allowed !important; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .18s ease;
}
.faq__item[open] { border-color: var(--accent); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
  position: relative;
  font-variation-settings: "opsz" 24;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  transition: transform .25s ease;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.legal { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 96px); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 96;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  margin-top: 36px;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 48;
}
.legal h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.legal p + p, .legal p + ul, .legal ul + p { margin-top: 12px; }
.legal ul { margin-left: 20px; list-style: disc; }
.legal ul li { margin-top: 6px; }
.legal__fill {
  background: var(--accent-soft);
  padding: 1px 6px;
  border: 1px dashed var(--accent);
  font-family: monospace;
  font-size: 0.8125rem;
}
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.875rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.legal th, .legal td {
  text-align: left;
  padding: 10px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
}
.legal th {
  font-family: var(--body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  background: var(--bg-soft);
  color: var(--ink-soft);
}
.legal td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 80px;
}

/* =========================================================================
   MOBILE NAV / HAMBURGER
   ========================================================================= */
.burger {
  display: none;
  width: 48px; height: 48px;
  background: var(--accent);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: background .18s ease, transform .12s ease;
}
.burger:hover { background: var(--accent-hover); }
.burger:active { transform: translateY(1px); }
.burger span, .burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease, opacity .15s ease;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger span::before { top: -8px; }
.burger span::after  { top: 8px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  color: var(--ink);
  z-index: 100;
  display: none;
  padding: 80px var(--pad) 100px;
  overflow-y: auto;
}
.mobile-nav[aria-hidden="false"] { display: flex; flex-direction: column; }
.mobile-nav__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}
.mobile-nav ul {
  display: flex; flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a, .mobile-nav button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  text-align: left;
  background: transparent;
  color: var(--ink);
  border: 0;
  cursor: pointer;
  font-variation-settings: "opsz" 48;
}
.mobile-nav a::after, .mobile-nav button::after {
  content: "→";
  color: var(--accent);
}
.mobile-nav__meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

body.is-locked { overflow: hidden; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { aspect-ratio: 16 / 10; max-height: 480px; }
  .grid-cats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: 0; padding-right: 0; }
  .trust__item:nth-child(3) { padding-left: 0; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--line-soft); }
  .footer__top { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .menu { grid-template-columns: 1fr; column-gap: 0; }
}

@media (max-width: 768px) {
  .nav, .header__status, .header__cta { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .header__inner { gap: 16px; min-height: 80px; }
  .footer__logo { height: 96px; max-width: 200px; }
  html { scroll-padding-top: 70px; }
  .toc { top: 64px; }
  .grid-cats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat__body { padding: 0 14px 16px; }
  .cat__name { font-size: 1.0625rem; }
  .hours-grid { grid-template-columns: 1fr; gap: 12px; }
  .hours-col { padding: 22px 24px 24px; }
  .cross-links { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .sticky-order { display: flex; }
  body.has-sticky-order { padding-bottom: 84px; }
  .hero__stats { grid-template-columns: 1fr; max-width: 100%; }
  .hero__stat { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__stat:last-child { border-bottom: 0; }
  .hero__stat:nth-child(n+2) { padding-left: 0; }
  .page-head__stats { grid-template-columns: 1fr; max-width: 100%; }
  .page-head__stats > div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-head__stats > div:last-child { border-bottom: 0; }
  .page-head__stats > div:nth-child(n+2) { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero { padding-top: 32px; }
  .display { font-size: clamp(2.25rem, 9vw, 3rem); }
  .h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .h2 { font-size: clamp(1.625rem, 6vw, 2.125rem); }
  .btn--xl { padding: 16px 26px; font-size: 1rem; }
  .menu__item { gap: 12px; padding: 16px 0; }
  .menu__no { min-width: 22px; }
  .cookie { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
