/* ============================================================================
   JOH'S BECKER CONFISERIE — Design-Entwurf von AEVUM
   Traditionsgeschäft für Schokolade, Pralinen und Tee, Augsburger Altstadt.
   Editorial, warm, viel Weißraum, sanftes Scroll-Einblenden.
   Schriften: Cormorant Garamond (Headlines) + DM Sans (Fließtext),
   selbst gehostet — siehe fonts.css / tools/fetch_fonts.py.
   ============================================================================ */

/* ─────────────────────────────────────────────── Tokens */
:root {
  /* Flächen */
  --creme:    #F6F0E7;
  --creme-2:  #EFE5D6;
  --white:    #FFFFFF;

  /* Tiefen */
  --kakao:    #2A1712;
  --ink-2:    #4A342B;
  --ink-3:    #6E5A4F;
  --line:     rgba(42,23,18,.14);
  --line-2:   rgba(42,23,18,.26);

  /* Akzente */
  --karamell:    #B98152;
  --karamell-lt: #EDE0CD;
  --salbei:      #77806B;
  --salbei-lt:   #E7E9E0;
  --himbeer:     #9A3E45;
  --himbeer-dk:  #7E2F35;
  --himbeer-lt:  #F3DEDD;

  --ok: #4E7A54;
  --danger: #9A3E45;

  /* Typografie */
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Raster */
  --wrap-w: 1220px;
  --wrap-narrow-w: 760px;
  --radius: 6px;
  --radius-lg: 14px;

  /* Bewegung */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 380ms;

  --shadow-sm: 0 1px 3px rgba(42,23,18,.08), 0 1px 2px rgba(42,23,18,.06);
  --shadow-md: 0 10px 28px rgba(42,23,18,.12), 0 2px 8px rgba(42,23,18,.06);
  --shadow-lg: 0 24px 60px rgba(42,23,18,.20), 0 6px 18px rgba(42,23,18,.10);
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 1ms; }
}

/* ─────────────────────────────────────────────── Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--kakao);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; color: var(--kakao); }
p { text-wrap: pretty; }
strong, b { font-weight: 600; }
:focus-visible { outline: 2px solid var(--himbeer); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--kakao); color: var(--creme); padding: 12px 20px; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

/* ─────────────────────────────────────────────── Layout */
.wrap { max-width: var(--wrap-w); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow-w); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
}

.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }
.section--dark { background: var(--kakao); color: var(--creme-2); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--white { background: var(--white); }
.section--creme2 { background: var(--creme-2); }
@media (max-width: 780px) {
  .section { padding: 60px 0; }
  .section--tight { padding: 40px 0; }
}

.section__head { max-width: 680px; margin-bottom: 48px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-style: italic; font-size: 17px;
  color: var(--himbeer); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--karamell); display: inline-block; }
.section--dark .eyebrow { color: var(--karamell); }
.section__head--center .eyebrow::before { display: none; }
.section__head--center .eyebrow { justify-content: center; }

h1 { font-size: 38px; }
h2 { font-size: 32px; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 8px; }
.lead { font-size: 18px; color: var(--ink-3); max-width: 58ch; }
.section--dark .lead { color: rgba(246,240,231,.78); }
@media (min-width: 780px) {
  h1 { font-size: 62px; }
  h2 { font-size: 42px; }
  h3 { font-size: 24px; }
}

.text-block { max-width: 68ch; color: var(--ink-2); }
.text-block p + p { margin-top: 14px; }
.text-block--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─────────────────────────────────────────────── Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 15px 28px; border-radius: 999px; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97); }

.btn--himbeer { background: var(--himbeer); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--himbeer:hover { background: var(--himbeer-dk); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; color: var(--kakao); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--kakao); background: var(--white); }

.btn--on-dark { background: transparent; color: var(--creme); border-color: rgba(246,240,231,.35); }
.btn--on-dark:hover { border-color: var(--creme); background: rgba(246,240,231,.08); }

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink-3); border: 0; padding: 8px 4px; text-decoration: underline; text-underline-offset: 3px; border-radius: 2px; }
.btn--ghost:hover { color: var(--kakao); }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ─────────────────────────────────────────────── Header / Nav */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,240,231,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hdr.is-stuck { border-color: var(--line); background: rgba(246,240,231,.97); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 24px; }

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo__mark { font-family: var(--display); font-weight: 700; font-style: italic; font-size: 23px; letter-spacing: -.01em; color: var(--kakao); }
.logo__sub { font-weight: 500; font-size: 11.5px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 480px) { .logo__sub { display: none; } }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a { font-weight: 600; font-size: 15px; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--himbeer);
  transition: right var(--dur) var(--ease);
}
.nav > a:hover::after, .nav > a.is-active::after { right: 0; }
.nav__cta { display: none; }
.nav__meta { display: none; }
.hdr__cta { display: none; }
@media (min-width: 1000px) { .hdr__cta { display: inline-flex; } }

.burger {
  display: flex; flex-direction: column; gap: 5px; padding: 10px; margin: -10px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.burger span { width: 22px; height: 2px; background: var(--kakao); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.hdr.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr.is-open .burger span:nth-child(2) { opacity: 0; }
.hdr.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }

@media (max-width: 999px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); height: 100dvh;
    background: var(--white); flex-direction: column; align-items: stretch; gap: 0;
    padding: 96px 28px 32px; transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    box-shadow: -20px 0 50px rgba(42,23,18,.18);
    overflow-y: auto;
  }
  .hdr.is-open .nav { transform: translateX(0); }
  .nav > a { font-size: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--display); }
  .nav > a::after { display: none; }
  .nav__cta { display: block; margin-top: 20px; }
  .nav__meta { display: block; margin-top: 18px; font-size: 14px; color: var(--ink-3); }
  .nav__meta a { color: var(--ink-2); font-weight: 600; }
}

/* ─────────────────────────────────────────────── Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,23,18,.38) 0%, rgba(42,23,18,.48) 45%, rgba(42,23,18,.90) 100%);
}
.hero__in { position: relative; z-index: 1; padding: 64px 0 56px; color: var(--white); width: 100%; }
.hero__label { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 17px; color: var(--karamell); display: block; margin-bottom: 16px; text-shadow: 0 1px 4px rgba(0,0,0,.45); }
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 15ch; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.hero__lead { font-size: 18px; color: rgba(246,240,231,.94); max-width: 52ch; margin-bottom: 32px; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__note { font-size: 14px; color: rgba(246,240,231,.75); display: flex; align-items: center; gap: 8px; }
.hero__note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--karamell); flex: none; }

@media (min-width: 780px) {
  .hero__in { padding: 64px 0 84px; }
}

.symbol {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(42,23,18,.78); color: var(--white); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); display: inline-flex; align-items: center; gap: 6px;
}
.symbol svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────── Markenbotschaft (split) */
.split { display: grid; gap: 44px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 68px; } }
.split--rev .split__media { order: -1; }
@media (min-width: 900px) { .split--rev .split__media { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.values { display: grid; gap: 22px; margin-top: 32px; }
@media (min-width: 560px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { display: flex; flex-direction: column; gap: 10px; }
.value .ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--salbei-lt); color: var(--salbei);
  display: flex; align-items: center; justify-content: center;
}
.value .ico svg { width: 20px; height: 20px; }
.value h3 { font-size: 18px; margin-bottom: 2px; }
.value p { color: var(--ink-3); font-size: 14.5px; }

/* ─────────────────────────────────────────────── Cards (Genusswelt) */
.cards { display: grid; gap: 26px; }
.cards--4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 620px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card--genuss {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.card--genuss:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card--genuss .card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.card--genuss .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease); }
.card--genuss:hover .card__media img { transform: scale(1.05); }
.card--genuss .card__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card--genuss .card__body p { color: var(--ink-3); font-size: 14.5px; flex: 1; }

/* ─────────────────────────────────────────────── Besonderes — horizontal scroll */
.hscroll {
  display: flex; gap: 20px; overflow-x: auto; padding: 6px 4px 28px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--karamell) transparent;
}
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--karamell); border-radius: 999px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.moment {
  flex: 0 0 auto; width: 240px; scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--white); position: relative;
}
@media (min-width: 620px) { .moment { width: 268px; } }
.moment__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.moment__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease); }
.moment:hover .moment__media img { transform: scale(1.06); }
.moment__label {
  padding: 16px 18px 18px; font-family: var(--display); font-weight: 600; font-size: 19px;
}
.hscroll__hint { font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; margin-top: -10px; margin-bottom: 32px; }
.hscroll__hint svg { width: 16px; height: 16px; color: var(--karamell); }

/* ─────────────────────────────────────────────── Infokachel */
.infokachel {
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  background: var(--karamell-lt); border-radius: var(--radius-lg); padding: 22px 26px; margin-top: 32px;
}
.infokachel span { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); }
.infokachel span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--himbeer); flex: none; }

/* ─────────────────────────────────────────────── Geschenke CTA band */
.ctaband { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 52px 32px; text-align: center; }
.ctaband h2 { margin-bottom: 12px; }
.ctaband p { color: var(--ink-3); max-width: 52ch; margin: 0 auto 28px; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (min-width: 780px) { .ctaband { padding: 68px 60px; } }

/* ─────────────────────────────────────────────── Besuch / Kontakt */
.contact-grid { display: grid; gap: 44px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .95fr 1.05fr; } }
.contact-info__item { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(246,240,231,.14); }
.contact-info__item:first-child { border-top: 0; }
.contact-info__item .ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: rgba(246,240,231,.1); display: flex; align-items: center; justify-content: center; }
.contact-info__item .ico svg { width: 19px; height: 19px; color: var(--karamell); }
.contact-info__item b { display: block; font-size: 14.5px; color: var(--white); }
.contact-info__item a, .contact-info__item span { color: rgba(246,240,231,.82); font-size: 14.5px; }
.contact-info__item a:hover { color: var(--karamell); }

.mapbox { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(246,240,231,.16); background: rgba(246,240,231,.06); margin-top: 26px; }
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; }
.mapbox__gate {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(180deg, rgba(246,240,231,.03), rgba(246,240,231,.08));
  text-align: center; padding: 24px;
}
.mapbox__gate svg { width: 32px; height: 32px; color: var(--karamell); }
.mapbox__gate p { font-size: 13.5px; color: rgba(246,240,231,.78); max-width: 40ch; }

.formcard { background: var(--creme); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; color: var(--kakao); }
/* Formkarte hat einen hellen Hintergrund, auch wenn sie in einer dunklen
   Sektion (.section--dark) liegt — Überschriften müssen dunkel bleiben,
   sonst verschwindet weißer Text auf der cremefarbenen Karte. */
.formcard h3, .formcard h2, .success h3, .success h2 { color: var(--kakao); }
.formcard__body { padding: 30px 26px; }
@media (min-width: 620px) { .formcard__body { padding: 40px; } }
.formcard h3 { margin-bottom: 6px; }
.formcard .lead-sm { font-size: 14.5px; color: var(--ink-3); margin-bottom: 24px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-2); border-radius: var(--radius);
  background: var(--white); font-size: 15px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--himbeer); box-shadow: 0 0 0 4px var(--himbeer-lt); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field__error { display: none; color: var(--danger); font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.field.has-error .field__error { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--ink-3); margin-bottom: 22px; }
.consent input { margin-top: 3px; flex: none; width: 17px; height: 17px; accent-color: var(--himbeer); }
.consent a { text-decoration: underline; color: var(--ink-2); }

.success { text-align: center; padding: 20px 0; }
.success__ico {
  width: 68px; height: 68px; border-radius: 50%; background: var(--ok); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  animation: popIn 420ms var(--ease);
}
.success__ico svg { width: 32px; height: 32px; }
@keyframes popIn { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success h3 { margin-bottom: 10px; }
.success p { color: var(--ink-3); max-width: 44ch; margin: 0 auto 24px; }

.besuch__outro { margin-top: 44px; font-family: var(--display); font-style: italic; font-size: 22px; color: var(--karamell-lt); text-align: center; max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────── Footer */
.ft { background: var(--kakao); color: rgba(246,240,231,.72); padding: 64px 0 0; margin-top: 0; }
.ft__grid { display: grid; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(246,240,231,.12); }
@media (min-width: 780px) { .ft__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.ft__brand .logo__mark { color: var(--white); }
.ft__brand .logo__sub { color: rgba(246,240,231,.6); }
.ft__brand p { margin-top: 14px; font-size: 14px; max-width: 34ch; color: rgba(246,240,231,.62); }
.ft__col h3 { font-family: var(--sans); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: rgba(246,240,231,.55); margin-bottom: 16px; }
.ft__col a, .ft__col span { display: block; font-size: 14.5px; margin-bottom: 10px; color: rgba(246,240,231,.78); }
.ft__col a:hover { color: var(--white); }
.ft__banner {
  margin: 28px 0; padding: 16px 20px; border: 1px dashed rgba(185,129,82,.5); border-radius: var(--radius);
  font-size: 13.5px; color: rgba(246,240,231,.78); background: rgba(185,129,82,.08);
}
.ft__banner strong { color: var(--karamell); }
.ft__btm { display: flex; flex-direction: column; gap: 10px; padding: 24px 0 32px; font-size: 13px; color: rgba(246,240,231,.55); }
@media (min-width: 620px) { .ft__btm { flex-direction: row; align-items: center; justify-content: space-between; } }
.ft__btm a { color: rgba(246,240,231,.78); }
.ft__btm a:hover { color: var(--white); }
.ft__btm span:last-child a { margin: 0 4px; }

/* ─────────────────────────────────────────────── Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ─────────────────────────────────────────────── Legal pages */
.legal-hdr { border-bottom: 1px solid var(--line); background: var(--creme); }
.legal-hdr .wrap { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.legal-back { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.legal-back:hover { color: var(--himbeer); }
.legal { padding: 56px 0 88px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 { font-size: 21px; margin-top: 38px; margin-bottom: 12px; }
.legal p { color: var(--ink-2); margin-bottom: 4px; }
.legal p + h2 { margin-top: 34px; }
.legal ul { list-style: disc; padding-left: 22px; color: var(--ink-2); }
.legal ul li { margin-bottom: 6px; }
.legal a { text-decoration: underline; text-underline-offset: 2px; color: var(--kakao); }
.legal__note {
  background: var(--karamell-lt); border: 1px solid rgba(185,129,82,.4); border-radius: var(--radius);
  padding: 18px 20px; font-size: 14.5px; margin-bottom: 8px; color: var(--ink-2);
}

@media print { .hdr, .ft, .burger { display: none; } }
