/* ============================================================
   Czech Drinks — Gastro page styles
   ============================================================ */

/* ── Form notices ─────────────────────────────────────────── */
.gf-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
}
.gf-ok  { background: rgba(35,68,58,.08); color: var(--bottle); border-bottom: 2px solid var(--bottle); }
.gf-err { background: rgba(180,40,40,.07); color: #b42828; border-bottom: 2px solid #b42828; }

/* ── Hero ─────────────────────────────────────────────────── */
.g-hero {
  background: var(--bottle);
  color: var(--paper);
  overflow: hidden;
  position: relative;
}
.g-hero::after {
  content: "";
  position: absolute;
  right: -10%; top: -30%;
  width: 55%; height: 160%;
  background: radial-gradient(closest-side, rgba(200,147,46,.22), transparent 70%);
  pointer-events: none;
}
.g-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 104px);
  position: relative;
  z-index: 1;
}
.g-hero .eyebrow { color: var(--amber); }
.g-hero h1 { color: #fff; margin: 18px 0 22px; }
.g-hero .lead { color: rgba(244,239,230,.85); max-width: 42ch; }

.g-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.g-hero .btn-outline { border-color: rgba(244,239,230,.55); color: var(--paper); }
.g-hero .btn-outline:hover { background: var(--paper); color: var(--bottle); }
.g-hero .btn-ghost { color: var(--paper); }
.g-hero .btn-ghost:hover { color: var(--amber); }

.g-hero-img .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.g-hero-img .g-hero-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }

.g-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(244,239,230,.18);
  padding-top: 22px;
}
.g-stat { padding-right: 32px; }
.g-stat + .g-stat { padding-left: 32px; border-left: 1px solid rgba(244,239,230,.18); }
.g-stat .num { font-family: var(--display); font-size: 30px; line-height: 1; }
.g-stat .lab { font-size: 13px; color: rgba(244,239,230,.7); margin-top: 6px; }

/* ── Packages ─────────────────────────────────────────────── */
.pkg-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(40px, 5vw, 60px); }
.pkg-head h2 { margin: 14px 0 14px; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.pkg {
  display: flex;
  flex-direction: column;
  background: var(--paper-card);
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  padding: 30px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 28px 52px -30px rgba(28,26,23,.45); }
.pkg .pkg-top-rule { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.pkg.anchor    { border-color: color-mix(in srgb, var(--amber) 40%, var(--ink-15)); }
.pkg.anchor .pkg-top-rule    { background: var(--amber); }
.pkg.anchor .pkg-eyebrow     { color: var(--amber-deep); }
.pkg.discovery .pkg-top-rule { background: var(--burgundy); }
.pkg.discovery .pkg-eyebrow  { color: var(--burgundy); }
.pkg.event .pkg-top-rule     { background: var(--bottle); }
.pkg.event .pkg-eyebrow      { color: var(--bottle); }

.pkg-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pkg h3 { font-size: 28px; margin: 12px 0 8px; }
.pkg .pkg-desc { color: var(--ink-70); font-size: 15.5px; margin: 0 0 22px; }
.pkg ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pkg li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.pkg .pkg-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; text-decoration: none; }

/* ── How it works ─────────────────────────────────────────── */
.how { background: var(--paper-deep); border-block: 1px solid var(--ink-08); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: clamp(36px, 4vw, 52px); }
.step { position: relative; }
.step .step-num {
  font-family: var(--display);
  font-size: 17px;
  color: var(--amber-deep);
  border: 1.5px solid var(--amber);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 21px; margin: 0 0 8px; }
.step p { font-size: 14.5px; color: var(--ink-70); margin: 0; }
.step .step-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-55);
  padding: 8px 11px;
  background: var(--paper-card);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius);
}

/* ── Zapf + Staff Tasting ─────────────────────────────────── */
.zapf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.zapf-card {
  border: 1px solid var(--ink-15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-card);
  display: flex;
  flex-direction: column;
}
.zapf-card .ph { aspect-ratio: 16/9; }
.zapf-card .zc-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.zapf-card .pkg-eyebrow { color: var(--bottle); }
.zapf-card h3 { font-size: 24px; margin: 10px 0 8px; }
.zapf-card p { color: var(--ink-70); font-size: 15px; margin: 0 0 20px; }
.zapf-card .btn-text { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; text-decoration: none; }

/* ── Where we are ─────────────────────────────────────────── */
.where-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.map-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--ink-15); }
.map-frame .ph { aspect-ratio: 5/4; }
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--paper-card);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.where-venues { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; margin-top: 26px; }
.where-venues .wv { padding: 12px 0; border-bottom: 1px solid var(--ink-08); display: flex; align-items: baseline; gap: 10px; }
.where-venues .wv .wv-name { font-weight: 600; font-size: 15.5px; }
.where-venues .wv .wv-area { font-size: 13px; color: var(--ink-55); margin-left: auto; white-space: nowrap; }

/* ── Final CTA band ───────────────────────────────────────── */
.cta-band { background: var(--ink); color: var(--paper); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.cta-band h2 { color: #fff; margin: 14px 0 18px; }
.cta-band .eyebrow { color: var(--amber); }
.cta-band p { color: rgba(244,239,230,.78); }
.cta-band .btn-outline { border-color: rgba(244,239,230,.5); color: var(--paper); }
.cta-band .btn-outline:hover { background: var(--paper); color: var(--ink); }
.cta-band .btn-ghost { color: var(--paper); }
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--amber);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  text-decoration: none;
}
.pdf-link svg { width: 18px; height: 18px; }

/* ── Contact form ─────────────────────────────────────────── */
.g-form {
  background: rgba(244,239,230,.05);
  border: 1px solid rgba(244,239,230,.16);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.g-form .fld { margin-bottom: 16px; }
.g-form label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .03em; color: rgba(244,239,230,.7); margin-bottom: 7px; }
.g-form input,
.g-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--paper);
  background: rgba(244,239,230,.06);
  border: 1.5px solid rgba(244,239,230,.2);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-sizing: border-box;
}
.g-form input::placeholder,
.g-form textarea::placeholder { color: rgba(244,239,230,.4); }
.g-form input:focus,
.g-form textarea:focus { outline: none; border-color: var(--amber); }
.g-form textarea { resize: vertical; min-height: 92px; }
.g-form .fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.g-form .form-note { color: var(--amber) !important; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--paper-deep); }
.faq-list { border-top: 1px solid var(--ink-08); }
.faq-item {
  border-bottom: 1px solid var(--ink-08);
  padding: 0;
}
.faq-item summary {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--amber-deep);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-ans {
  padding: 0 0 20px;
  color: var(--ink-60);
  font-size: clamp(14px, 1.6vw, 15.5px);
  line-height: 1.65;
}
.faq-ans p { margin: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 880px) {
  .g-hero-grid { grid-template-columns: 1fr; }
  .g-hero-img { display: none; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .how-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .zapf-grid { grid-template-columns: 1fr; }
  .where-grid { grid-template-columns: 1fr; }
  .where-venues { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
  .g-form .fld-row { grid-template-columns: 1fr; }
}
