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

/* ── Page hero (shared with lieferung/faq) ────────────────── */
.page-hero { border-bottom: 1px solid var(--ink-15); padding-block: clamp(48px, 6.5vw, 88px); }
.page-hero h1 { max-width: 22ch; margin-top: 14px; }
.page-hero .lead { max-width: 52ch; margin-top: 16px; }

/* ── Layout ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(36px, 5vw, 72px); align-items: start; }

/* ── Light form ───────────────────────────────────────────── */
.form-light .fld { margin-bottom: 18px; }
.form-light label {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-55); margin-bottom: 8px;
}
.form-light input,
.form-light textarea,
.form-light select {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--paper-card); border: 1.5px solid var(--ink-15);
  border-radius: var(--radius); padding: 13px 15px;
  transition: border-color .2s; appearance: none; -webkit-appearance: none;
  box-sizing: border-box;
}
.form-light select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231C1A17' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
.form-light input:focus,
.form-light textarea:focus,
.form-light select:focus { outline: none; border-color: var(--ink); }
.form-light textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.form-light .fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact info sidebar ─────────────────────────────────── */
.contact-info { position: sticky; top: 96px; }
.contact-block { padding: 28px 26px; background: var(--paper-card); border: 1px solid var(--ink-15); border-radius: var(--radius-lg); }
.contact-block + .contact-block { margin-top: 16px; }
.contact-block h3 { font-size: 18px; margin: 0 0 18px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--ink-08); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--amber-deep); }
.contact-row .cr-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 3px; }
.contact-row .cr-val { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.contact-row .cr-val a { color: var(--amber-deep); }
.contact-row .cr-sub { font-size: 13px; color: var(--ink-55); margin-top: 2px; }

/* ── Form notice ──────────────────────────────────────────── */
.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; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}
@media (max-width: 560px) {
  .form-light .fld-row { grid-template-columns: 1fr; }
}
