/* ============================================================
   Czech Drinks — shared design system
   Editorial · warm · curated. Paper + ink base,
   amber (beer) / burgundy (wine) / bottle (events) accents.
   ============================================================ */

/* Fonts loaded via /assets/fonts/fonts.css — no external requests */

:root {
  /* base */
  --paper:        #F4EFE6;
  --paper-deep:   #EBE3D4;   /* slightly deeper paper for panels */
  --paper-card:   #FBF8F1;   /* near-white card surface */
  --ink:          #1C1A17;
  --ink-soft:     rgba(28,26,23,0.62);
  --ink-70:       rgba(28,26,23,0.70);
  --ink-55:       rgba(28,26,23,0.55);
  --ink-40:       rgba(28,26,23,0.40);
  --ink-15:       rgba(28,26,23,0.15);
  --ink-08:       rgba(28,26,23,0.08);

  /* accents */
  --amber:        #C8932E;   /* beer */
  --amber-deep:   #A9781F;
  --burgundy:     #6E2433;   /* wine */
  --burgundy-deep:#591B28;
  --bottle:       #23443A;   /* events */
  --bottle-deep:  #19322B;

  /* tints */
  --amber-tint:   #F0E4CB;
  --burgundy-tint:#EBDAD9;
  --bottle-tint:  #DCE4DF;

  /* type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --radius-lg: 8px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root { --ink-soft: rgba(28,26,23,0.62); }

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}

.display-xl {
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  font-weight: 380;
}
.display-l { font-size: clamp(36px, 4.6vw, 62px); line-height: 1.0; letter-spacing: -0.018em; }
.display-m { font-size: clamp(28px, 3.2vw, 42px); }
.display-s { font-size: clamp(22px, 2.2vw, 30px); }

.serif-italic { font-style: italic; font-weight: 380; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin: 0;
}
.eyebrow.amber   { color: var(--amber-deep); }
.eyebrow.burgundy{ color: var(--burgundy); }
.eyebrow.bottle  { color: var(--bottle); }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-70);
  text-wrap: pretty;
}

p { text-wrap: pretty; }

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 132px); }
.section-pad-sm { padding-block: clamp(48px, 6vw, 84px); }

.rule { height: 1px; background: var(--ink-15); border: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

.btn-amber    { background: var(--amber); color: #fff; }
.btn-amber:hover    { background: var(--amber-deep); }
.btn-burgundy { background: var(--burgundy); color: #fff; }
.btn-burgundy:hover { background: var(--burgundy-deep); }
.btn-bottle   { background: var(--bottle); color: #fff; }
.btn-bottle:hover   { background: var(--bottle-deep); }
.btn-ink      { background: var(--ink); color: var(--paper); }
.btn-ink:hover      { background: #000; }

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

.btn-ghost { background: transparent; color: var(--ink); padding-inline: 6px; }
.btn-ghost:hover { color: var(--amber-deep); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap .3s var(--ease), color .25s var(--ease);
}
.btn-text:hover { gap: 14px; }

/* arrow that nudges on hover (use inside .btn / .btn-text via .nudge) */
.lnk-arrow { transition: transform .3s var(--ease); }
.btn:hover .lnk-arrow, a:hover .lnk-arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--ink-08);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex; align-items: center; gap: 32px;
}
.header-utility-top { display: none; }

.wordmark {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--display);
  font-weight: 430;
  font-size: 25px;
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--ink);
}
.wordmark .wm-c { color: var(--amber-deep); }
.wordmark .wm-dot { color: var(--burgundy); }

/* Main nav */
.nav-main { display: flex; align-items: center; gap: 2px; margin-left: 10px; }

/* Plain nav links */
.nav-link {
  display: inline-flex; align-items: center;
  padding: 7px 10px; border-radius: var(--radius);
  font-size: 15.5px; font-weight: 500; color: var(--ink-70);
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--ink-08); }
.nav-link.is-active { color: var(--ink); background: var(--ink-08); }

/* Dropdown wrapper + trigger */
.nav-drop { position: relative; flex-shrink: 0; }
.nav-drop-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 10px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 15.5px; font-weight: 500;
  color: var(--ink-70); background: none; border: 0; cursor: pointer;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-drop-trigger:hover,
.nav-drop-trigger[aria-expanded="true"] { color: var(--ink); background: var(--ink-08); }
.nav-chev {
  width: 10px; height: 10px; flex-shrink: 0;
  transition: transform .22s var(--ease);
}
.nav-drop-trigger[aria-expanded="true"] .nav-chev,
.mm-acc-trigger[aria-expanded="true"] .nav-chev { transform: rotate(180deg); }

/* Dropdown panel */
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  z-index: 300; min-width: 240px;
  background: var(--paper-card);
  border: 1px solid var(--ink-08);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  box-shadow: 0 18px 52px -8px rgba(28,26,23,.14), 0 2px 8px rgba(28,26,23,.06);
  overflow: hidden;
  animation: ndmEnter .18s var(--ease) both;
}
.nav-drop-menu[hidden] { display: none; }
@keyframes ndmEnter {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ndm-bar { height: 3px; }
.ndm-bar--amber    { background: var(--amber); }
.ndm-bar--burgundy { background: var(--burgundy); }
.ndm-eyebrow {
  padding: 11px 18px 9px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-40);
  border-bottom: 1px solid var(--ink-08);
}
.nav-drop-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-drop-menu li { border-bottom: 1px solid var(--ink-08); }
.nav-drop-menu li:last-child { border-bottom: 0; }
.nav-drop-menu li a {
  display: flex; align-items: center;
  padding: 11px 18px; gap: 12px;
  font-size: 14.5px; font-weight: 400; color: var(--ink-70);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-drop-menu li a:hover { background: var(--paper); color: var(--ink); }
.ndm-featured a {
  font-size: 15px !important; font-weight: 600 !important;
  color: var(--ink) !important; padding: 13px 18px !important;
}
.ndm-bier .ndm-featured { background: var(--amber-tint); }
.ndm-wein .ndm-featured { background: var(--burgundy-tint); }
.ndm-bier .ndm-featured a:hover { background: color-mix(in srgb, var(--amber-tint) 75%, var(--paper)); }
.ndm-wein .ndm-featured a:hover { background: color-mix(in srgb, var(--burgundy-tint) 75%, var(--paper)); }

/* Dropdown backdrop */
.nav-drop-backdrop {
  display: none; position: fixed; inset: 76px 0 0 0; z-index: 200;
  background: rgba(28,26,23,.18);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.nav-drop-backdrop.open { display: block; }

/* Für Gastro CTA */
.nav-gastro-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius);
  background: var(--bottle); color: #fff;
  border: 1.5px solid var(--bottle);
  font-size: 14px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
  transition: background .22s var(--ease), box-shadow .22s var(--ease);
  box-shadow: 0 2px 10px rgba(35,68,58,.22);
}
.nav-gastro-cta svg { width: 13px; height: 13px; flex-shrink: 0; }
.nav-gastro-cta:hover {
  background: color-mix(in srgb, var(--bottle) 85%, #000);
  box-shadow: 0 4px 18px rgba(35,68,58,.32);
}

/* Header right */
.header-right { margin-left: auto; display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; }
.lang-switch button { background: none; border: 0; padding: 3px 5px; color: var(--ink-40); font-weight: 600; font-size: 13.5px; cursor: pointer; transition: color .2s; }
.lang-switch button.on { color: var(--ink); }
.lang-switch .sep { color: var(--ink-15); }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; text-decoration: none; }
.phone-link svg { width: 16px; height: 16px; }

.icon-btn {
  position: relative; background: none; border: 0; padding: 6px;
  color: var(--ink); display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--amber); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 17px; text-align: center;
  border-radius: 999px;
}
.cart-total-label { display: none; }
.burger { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.burger svg { width: 26px; height: 26px; }

/* ---------- image placeholders ---------- */
.ph {
  position: relative;
  background-color: var(--paper-deep);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 11px,
    rgba(28,26,23,0.045) 11px, rgba(28,26,23,0.045) 12px
  );
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-40);
}
.ph::after {
  content: attr(data-label);
  font-family: 'SFMono-Regular', ui-monospace, 'Menlo', monospace;
  font-size: 11px; letter-spacing: .04em; text-transform: lowercase;
  padding: 5px 9px; border: 1px solid var(--ink-15);
  background: color-mix(in srgb, var(--paper-card) 70%, transparent);
  border-radius: 3px;
}
.tone-amber    { background-color: var(--amber-tint); }
.tone-burgundy { background-color: var(--burgundy-tint); }
.tone-bottle   { background-color: var(--bottle-tint); }
.ph.on-dark { color: rgba(255,255,255,.6); }
.ph.on-dark::after { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-inner { max-width: 1480px; margin: 0 auto; padding: clamp(56px,7vw,88px) var(--gutter) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-col h4 { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,230,.5); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(244,239,230,.82); font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-brand .wordmark { color: var(--paper); font-size: 28px; }
.footer-brand .wordmark .wm-c { color: var(--amber); }
.footer-brand .wordmark .wm-dot { color: var(--burgundy); }
.footer-brand p { color: rgba(244,239,230,.6); font-size: 14.5px; max-width: 30ch; margin: 16px 0 0; }
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.pay-chip { font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 6px 10px; border: 1px solid rgba(244,239,230,.2); border-radius: 4px; color: rgba(244,239,230,.85); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(244,239,230,.14);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(244,239,230,.5);
}
.age-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: rgba(244,239,230,.7); }
.age-badge .ring { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(244,239,230,.45); display: grid; place-items: center; font-size: 11px; font-weight: 700; }

/* ---------- trust strip ---------- */
.trust-strip { border-block: 1px solid var(--ink-15); background: var(--paper-card); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px var(--gutter); }
.trust-item + .trust-item { border-left: 1px solid var(--ink-08); }
.trust-item svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--amber-deep); }
.trust-item .t-title { font-weight: 600; font-size: 15px; line-height: 1.25; }
.trust-item .t-sub { font-size: 13px; color: var(--ink-55); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }
.pc-rating--empty .stars { color: var(--ink-15); }
.pc-rating__none { font-size: 12px; color: var(--ink-40); }

/* ---------- reveal / load entrance ----------
   Resting state is the final, visible state. Once JS confirms a painted
   frame it adds .cd-ready, which runs a one-time TRANSFORM-ONLY rise.
   Transform-only is deliberate: if a capture/compositor freezes the
   animation, content is at most a few px offset — never invisible. */
@media (prefers-reduced-motion: no-preference) {
  html.cd-ready .reveal { animation: cdRise .7s var(--ease) both; }
}
@keyframes cdRise {
  from { transform: translateY(20px); }
  to   { transform: translateY(0); }
}

/* ---------- newsletter ---------- */
.news-form { display: flex; gap: 10px; max-width: 460px; }
.news-form input {
  flex: 1; font-family: var(--sans); font-size: 16px;
  padding: 14px 16px; border: 1.5px solid var(--ink-15);
  border-radius: var(--radius); background: var(--paper-card); color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--ink); }

/* ---------- mobile menu — right drawer ---------- */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(28,26,23,0.42);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.menu-backdrop.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 200;
  width: min(340px, 88vw);
  background: var(--paper-card);
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -14px 0 56px rgba(28,26,23,.18);
  overflow: hidden;
}
.mobile-menu.open { transform: none; }

.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 18px 0 24px; flex-shrink: 0;
  border-bottom: 1px solid var(--ink-08);
}
.mm-close { background: none; border: 0; padding: 8px; color: var(--ink-70); cursor: pointer; }
.mm-close svg { width: 24px; height: 24px; display: block; }

.mm-nav { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* Accordion */
.mm-acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px;
  background: none; border: 0; border-bottom: 1px solid var(--ink-08);
  cursor: pointer; text-align: left;
  font-family: var(--display); font-size: 22px; font-weight: 430; color: var(--ink);
  transition: background .18s, color .18s;
}
.mm-acc-trigger[aria-expanded="true"] { background: var(--paper); }
.mm-acc[data-acc="shop"] .mm-acc-trigger[aria-expanded="true"] { border-left: 3px solid var(--amber); color: var(--amber-deep); }
.mm-acc[data-acc="events"] .mm-acc-trigger[aria-expanded="true"] { border-left: 3px solid var(--bottle); color: var(--bottle); }

.mm-acc-body {
  list-style: none; margin: 0; padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease);
}
.mm-acc-body.open { max-height: 1200px; }
.mm-acc[data-acc="shop"] .mm-acc-body { background: var(--paper); }
.mm-acc[data-acc="events"] .mm-acc-body { background: var(--bottle-tint); }
.mm-acc-body li { border-bottom: 1px solid var(--ink-08); }
.mm-acc-body li:last-child { border-bottom: 0; }

/* Section labels inside shop accordion */
.mm-acc-section-label { border-bottom: 0 !important; padding: 0; }
.mm-acc-section-label span {
  display: block;
  padding: 10px 24px 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-40);
}
.mm-acc-section-label + li.ndm-featured a {
  background: transparent;
  font-weight: 600 !important; color: var(--ink) !important;
  padding: 10px 24px 10px 30px !important; font-size: 14.5px !important;
}
.mm-acc-body li.ndm-featured a { font-weight: 600; color: var(--ink); }
.mm-acc-body li a {
  display: block; padding: 11px 24px 11px 30px;
  font-size: 15px; font-weight: 400; color: var(--ink-70);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mm-acc-body li:first-child a { font-weight: 600; color: var(--ink); }
.mm-acc-body li a:hover { color: var(--ink); background: rgba(28,26,23,.04); }

.mm-link {
  display: block; padding: 14px 24px;
  font-family: var(--display); font-size: 22px; font-weight: 430; color: var(--ink);
  border-bottom: 1px solid var(--ink-08); text-decoration: none;
  transition: color .15s;
}
.mm-link:hover { color: var(--amber-deep); }
.mm-link--dim { font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--ink-55); }
.mm-link--dim:hover { color: var(--ink); }

.mm-foot {
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-08); flex-shrink: 0;
  background: var(--paper-card);
}
.mm-gastro-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px; border-radius: var(--radius);
  background: var(--bottle); color: #fff;
  font-size: 14.5px; font-weight: 600; text-decoration: none;
  transition: background .22s var(--ease);
}
.mm-gastro-cta svg { width: 14px; height: 14px; }
.mm-gastro-cta:hover { background: var(--bottle-deep); }

@media (max-width: 480px) {
  .mobile-menu { inset: 0; width: 100%; }
  .menu-backdrop { display: none; }
}

/* ---------- background utilities ---------- */
/* Use these instead of inline style="background:..." on sections */
.bg-paper      { background: var(--paper); }
.bg-paper-card { background: var(--paper-card); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-bottle     { background: var(--bottle); }
.bg-bottle-deep{ background: var(--bottle-deep); }

/* ---------- event card state modifiers ---------- */
/* Date box — muted (sold-out) */
.ev-date-box.is-muted { border-color: var(--ink-40); background: var(--paper-deep); }
.ev-date-box.is-muted .ev-day { color: var(--ink-55); }
.ev-date-box.is-muted .ev-mon { color: var(--ink-40); }

/* Price — muted (sold-out) */
.ev-price.is-muted { color: var(--ink-55); }

/* Price — free (Eintritt frei / Kostenlos) */
.ev-price.is-free { color: var(--bottle); }
.ev-price.is-free .ev-price-amount { display: none; }

/* Card CTA — disabled (non-interactive, ARIA on element) */
.ev-card-cta.is-disabled { color: var(--ink-40); pointer-events: none; cursor: default; }

/* ---------- accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- form helpers (shared) ---------- */
/* Inline error message — visible only when .visible is added by JS */
.fld-err {
  display: none;
  font-size: 12.5px;
  color: var(--burgundy);
  font-weight: 500;
}
.fld-err.visible { display: block; }

/* Hint text below a field */
.fld-hint { font-size: 12.5px; color: var(--ink-55); }

/* Required marker */
.fld-req { font-size: 12px; font-weight: 400; color: var(--ink-40); margin-left: 2px; }

/* On-dark form variants */
.fld-hint.on-dark { color: rgba(244,239,230,.48); }
.fld-req.on-dark  { color: rgba(244,239,230,.38); }
.fld-err.on-dark  { color: #e8c9cd; }

/* Honeypot — visually hidden, not display:none (bots detect that) */
.fhoneypot {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  opacity: 0; overflow: hidden; pointer-events: none;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-main { display: none; }
  .nav-gastro-cta { display: none; }
  .burger { display: inline-flex; }
  .header-right .phone-link span { display: none; }
}
@media (max-width: 900px) {
  .header-inner { height: 60px; gap: 16px; }
  .nav-drop-backdrop { inset-top: 60px; }

  /* Footer + content */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--ink-08); }
  .trust-item { border-top: 1px solid var(--ink-08); }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .header-right .lang-switch { display: none; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; }
  .news-form { flex-direction: column; }
}
