/* ============================================================
   HOZNAR — 4. PAGE SECTIONS
   One block per section, in the same order as index.html.

   Contents:
     1. Hero        (.hero)        — dark split, bottle + swallow
     2. Trust strip (.trust)       — 3 value columns
     3. Story       (.story)       — #zgodba
     4. Wines       (.dark-section)— #vina, numbered list
     5. Experiences (.exp)         — #dozivetja
     6. Gifts       (.gifts)       — #darila
     7. Purchase    (.purchase)    — #nakup
     8. Reservation (.reserve)     — #rezervacija, form + confirm
     9. Visit       (.visit)       — #obisk, dark contact grid
   ============================================================ */

/* ============================================================
   1. HERO — dark split layout (text left, bottle + character right)
   ============================================================ */
.hero {
  padding: 0;
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.hero-shell {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 540px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--slab);
  font-weight: 600;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.hero-lede {
  font-family: var(--slab);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(244, 223, 194, 0.78);
  margin: 0 0 36px;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* right-side bottle + character — anchored to the hero's bottom edge
   like the mockup (also hides the bird cutout's flat bottom edge) */
.hero-art {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  margin-bottom: -90px; /* cancels .hero-shell bottom padding */
}
/* cutouts from the client mockup (new_design.png); bottle is low-res —
   swap for a real product photo when the client sends them */
.hero-bottle {
  position: relative;
  width: 118px; /* image is 111x524 — sized so the bottle stands ~557px tall */
  margin-right: 46%;
  z-index: 1;
}
.hero-bottle img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}
.hero-character {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(370px, 62%);
  z-index: 2;
}
.hero-character .character-art {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* clustered around the bird / right side, like the mockup — text side stays clean */
.hero .splatter.s1 { top: 8%;  left: 47%;  width: 110px; height: 42px; transform: rotate(-8deg); opacity: 0.9; }
.hero .splatter.s2 { top: 15%; right: 20%; width: 88px;  height: 32px; transform: rotate(5deg);  opacity: 0.85; }
.hero .splatter.s3 { top: 52%; right: 3%;  width: 122px; height: 44px; transform: rotate(-5deg); opacity: 0.95; }
.hero .splatter.s4 { top: 5%;  right: 31%; width: 120px; height: 31px; transform: rotate(7deg);  opacity: 0.8; }
.hero .splatter.s5 { top: 38%; left: 52%;  width: 80px;  height: 29px; transform: rotate(-9deg); opacity: 0.8; }
.hero .splatter.s6 { top: 26%; right: 5%;  width: 92px;  height: 33px; transform: rotate(4deg);  opacity: 0.85; }

@media (max-width: 900px) {
  .hero-shell { padding: 110px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 380px; }
  .hero-bottle { width: 90px; margin-right: 40%; }
  .hero-character { width: min(280px, 60%); }
}

/* ============================================================
   2. TRUST STRIP — 3 value columns under hero
   ============================================================ */
.trust {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 64px; height: 64px;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-title {
  font-family: var(--slab);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.trust-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 0;
  max-width: 260px;
}

@media (max-width: 760px) {
  .trust { padding: 44px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   3. STORY — #zgodba
   ============================================================ */
.story {
  padding: 80px 0;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.story .splatter { z-index: 0; }
.story .splatter.ss1 { top: 4%;  left: 1.5%;  width: 102px; height: 39px; transform: rotate(-8deg); opacity: 0.85; }
.story .splatter.ss2 { top: 45%; right: 4%; width: 118px; height: 43px; transform: rotate(8deg);  opacity: 0.85; }
.story .splatter.ss3 { bottom: 18%; left: 30%; width: 86px; height: 31px; transform: rotate(-5deg); opacity: 0.8; }
.story .wrap { position: relative; z-index: 1; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.story p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 520px;
}
.story p strong { color: var(--coral-deep); font-weight: 600; }
.story p em { font-style: italic; color: var(--olive-deep); }
.story .story-lede {
  font-family: var(--slab);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--olive-deep);
  margin: 0 0 28px;
  max-width: 520px;
}

.story-continued {
  max-width: 720px;
  margin: 40px auto 0;
}
.story-continued p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: none;
}
.story-continued p strong { color: var(--coral-deep); font-weight: 600; }

.story-img {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 14px;
  aspect-ratio: 4/5;
  width: 100%;
}
.story-img .ph {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* pull quote band */
.pull-band {
  margin: 56px 0 32px;
  padding: 40px 32px;
  border-top: 1px solid rgba(26,22,20,0.15);
  border-bottom: 1px solid rgba(26,22,20,0.15);
  position: relative;
  text-align: center;
}
.pull-band .swallow-pull {
  width: 52px; height: 52px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
.pull-band .quote {
  font-family: var(--slab);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--gold-deep);
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  text-wrap: balance;
}
.pull-band .attr {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.65;
  text-align: center;
}

/* Vinska trta song */
.story-song {
  margin: 56px auto 0;
  max-width: 820px;
  padding: 32px 0;
  border-top: 1px solid rgba(26, 22, 20, 0.15);
  border-bottom: 1px solid rgba(26, 22, 20, 0.15);
  position: relative;
}
.story-song .song-head {
  text-align: center;
  margin-bottom: 24px;
}
.story-song .song-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.story-song .song-title {
  font-family: var(--slab);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 4px;
}
.story-song .song-attr {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.65;
}
.story-song .song-verses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
}
.story-song .verse {
  font-family: var(--slab);
  font-style: italic;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
  opacity: 0.85;
}
.story-song .verse:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: calc(50% - 24px);
}

@media (max-width: 760px) {
  .story-song { padding: 40px 24px; margin-top: 60px; }
  .story-song .song-verses { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================================
   4. WINES — #vina, dark numbered list
   ============================================================ */
.dark-section {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.dark-section .splatter { z-index: 0; opacity: 0.9; }
.dark-section .splatter.s1 { top: 5%;  left: 1.5%;  width: 105px; height: 40px; transform: rotate(-8deg); }
.dark-section .splatter.s2 { top: 38%; right: 6%; width: 92px;  height: 33px; transform: rotate(9deg); }
.dark-section .splatter.s3 { bottom: 12%; left: 14%; width: 126px; height: 45px; transform: rotate(-5deg); }
.dark-section .wrap { position: relative; z-index: 1; }

.dark-head-block { text-align: left; margin-bottom: 56px; max-width: 720px; }

.wine-list {
  max-width: 1080px;
  margin: 0 auto;
}
.wine-row {
  display: grid;
  grid-template-columns: 48px 1fr 1.3fr 140px 90px;
  gap: 24px;
  align-items: start;
  padding: 22px 16px;
  border-top: 1px solid rgba(244,232,208,0.18);
  transition: background 0.25s;
  cursor: pointer;
}
.wine-row:last-child { border-bottom: 1px solid rgba(244,232,208,0.18); }
.wine-row:hover { background: rgba(228,118,89,0.06); }
.wine-row .num {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 38px;
  color: var(--coral);
  line-height: 1;
  padding-top: 4px;
}
.wine-row .name-block { padding-top: 4px; }
.wine-row .name {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
}
.wine-row .name .yr {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--coral);
  font-size: 30px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.wine-row .type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-top: 10px;
}
.wine-row .tasting {
  font-family: var(--slab);
  font-style: italic;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(244,232,208,0.85);
  padding-top: 8px;
}
.wine-row .specs {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  padding-top: 14px;
  line-height: 1.9;
}
.wine-row .price {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 28px;
  text-align: right;
  color: var(--coral);
  padding-top: 6px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .wine-row {
    grid-template-columns: 40px 1fr 70px;
    gap: 14px;
    padding: 24px 8px;
  }
  .wine-row .tasting, .wine-row .specs { grid-column: 2 / 4; padding-top: 0; }
  .wine-row .name { font-size: 20px; }
  .wine-row .num { font-size: 28px; }
  .wine-row .price { font-size: 22px; }
}

/* ============================================================
   5. EXPERIENCES — #dozivetja
   ============================================================ */
.exp {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.exp .splatter { z-index: 0; }
.exp .splatter.ss1 { top: 3%; left: 1.5%; width: 110px; height: 42px; transform: rotate(-9deg); opacity: 0.85; }
.exp .splatter.ss2 { bottom: 14%; right: 8%; width: 96px; height: 35px; transform: rotate(8deg); opacity: 0.8; }
.exp .splatter.ss3 { top: 38%; right: 32%; width: 78px; height: 28px; transform: rotate(-5deg); opacity: 0.8; }
.exp .wrap { position: relative; z-index: 1; }

.exp-head { max-width: 720px; margin-bottom: 56px; }

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.exp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.exp-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.exp-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(26, 22, 20, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  background: var(--paper);
}
.exp-icon svg { width: 32px; height: 32px; }
.exp-feature h3 {
  font-family: var(--slab);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 4px 0 10px;
}
.exp-feature p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  opacity: 0.78;
  margin: 0;
  max-width: 460px;
}
.exp-feature p a { color: var(--gold-deep); border-bottom: 1px dotted var(--gold-deep); }
.exp-photo {
  position: relative;
  min-height: 460px;
}
.exp-photo .ph {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(26, 22, 20, 0.18);
}

@media (max-width: 900px) {
  .exp-layout { grid-template-columns: 1fr; gap: 36px; }
  .exp-photo { min-height: 320px; }
  .exp-photo .ph { min-height: 300px; }
}

/* ============================================================
   6. GIFTS — #darila
   ============================================================ */
.gifts {
  padding: 80px 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.gifts .splatter { z-index: 0; }
.gifts .splatter.ss1 { top: 8%; right: 6%; width: 110px; height: 42px; transform: rotate(7deg); opacity: 0.85; }
.gifts .splatter.ss2 { bottom: 10%; left: 8%; width: 96px; height: 35px; transform: rotate(-7deg); opacity: 0.85; }
.gifts .wrap { position: relative; z-index: 1; }
.gifts-head { max-width: 720px; margin-bottom: 56px; }
.gifts h2 {
  font-family: var(--slab);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.gift-card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--ink);
  position: relative;
  transition: transform 0.3s ease;
}
.gift-card:hover { transform: translateY(-6px); }
.gift-card.featured {
  background: var(--ink);
  color: var(--cream);
}
.gift-card.featured:hover { transform: translateY(-6px); }
.gift-card .gift-art {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  border: 1px solid rgba(26,22,20,0.15);
  overflow: hidden;
}
.gift-card.featured .gift-art {
  background: var(--ink-soft);
  border-color: var(--coral);
}
.gift-card .gift-art svg { height: 130px; width: auto; }
.gift-card .gift-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gift-card h3 {
  font-family: var(--slab);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--coral-deep);
}
.gift-card.featured h3 { color: var(--coral); }
.gift-card .price {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 36px;
  color: var(--coral-deep);
  letter-spacing: 0.01em;
}
.gift-card.featured .price { color: var(--cream); }
.gift-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.gift-card ul li {
  padding-left: 22px;
  position: relative;
}
.gift-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--coral-deep);
}
.gift-card.featured ul li::before { background: var(--coral); }

.gift-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 900px) {
  .gift-grid { grid-template-columns: 1fr; }
  .gift-card.featured { transform: none; }
  .gift-card.featured:hover { transform: translateY(-6px); }
}

/* ============================================================
   7. PURCHASE — #nakup
   ============================================================ */
.purchase {
  padding: 64px 0;
  background: var(--cream-soft);
  position: relative;
}
.purchase-head { max-width: 720px; margin-bottom: 36px; }
.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.purchase-cell {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 20, 0.15);
  padding: 22px 22px;
  border-radius: 4px;
}
.purchase-cell .lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.purchase-cell .v {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}
.purchase-cell .v strong { color: var(--gold-deep); font-weight: 600; }
.purchase-cell .v a { color: var(--gold-deep); border-bottom: 1px dotted var(--gold-deep); }
.purchase-cell .v a:hover { color: var(--ink); border-bottom-color: var(--ink); }

@media (max-width: 900px) {
  .purchase-grid { grid-template-columns: 1fr; }
  .purchase { padding: 60px 0 80px; }
}

/* ============================================================
   8. RESERVATION — #rezervacija, form + confirmation
   ============================================================ */
.reserve {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.reserve-inner {
  max-width: 760px;
  margin: 0 auto;
}
.reserve-head { max-width: 720px; margin: 0 auto 40px; text-align: left; }

/* cellar photo above the form — "degustacija med cisternami" */
.reserve-photo { margin: 0 0 36px; }
.reserve-photo .ph {
  aspect-ratio: 16 / 8;
  background-size: cover;
  background-position: center 60%;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(26, 22, 20, 0.16);
}
.reserve-photo .caption {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 21px;
  color: var(--olive-deep);
  text-align: right;
  margin: 10px 2px 0;
}

.form-shell {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 20, 0.18);
  padding: 36px;
  position: relative;
}

#reservation-form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--ink);
  padding: 10px 0;
  font-family: var(--slab);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--coral-deep);
}
.field textarea { resize: vertical; min-height: 80px; font-size: 16px; font-style: italic; }

.honeypot { position: absolute; left: -9999px; top: -9999px; }

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-group label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(26, 22, 20, 0.25);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: var(--cream-soft);
  border-radius: 4px;
}
.radio-group label:hover { background: var(--cream-deep); }
.radio-group label.checked {
  background: var(--coral-deep);
  color: var(--cream);
  border-color: var(--coral-deep);
}
.radio-group input { display: none; }
.radio-group .rg-name {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.radio-group .rg-price {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-group label {
  padding: 9px 16px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s;
  background: var(--cream-soft);
  border-radius: 999px;
}
.pill-group label:hover { background: var(--cream-deep); }
.pill-group label.checked {
  background: var(--coral-deep);
  color: var(--cream);
  border-color: var(--coral-deep);
}
.pill-group input { display: none; }

.field-note {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.75;
  margin: 6px 0 0;
}
.field-note a { color: var(--gold-deep); border-bottom: 1px dotted var(--gold-deep); }

.form-foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.form-error {
  background: rgba(200, 91, 64, 0.1);
  border: 1px solid var(--coral-deep);
  color: var(--coral-deep);
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}

/* confirmation screen — injected by app.js after successful submit */
.confirm {
  text-align: center;
  padding: 56px 28px;
  border: 1px solid var(--ink);
  background: var(--blush);
}
.confirm svg { margin: 0 auto 20px; display: block; }
.confirm h3 {
  font-family: var(--slab);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--coral-deep);
  margin: 0 0 16px;
}
.confirm h3 .hw {
  font-family: var(--hand);
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  color: var(--olive-deep);
  text-transform: none;
  letter-spacing: -0.02em;
}
.confirm p { font-family: var(--slab); font-size: 18px; color: var(--ink-soft); line-height: 1.5; }
.confirm .closer {
  margin-top: 24px;
  font-family: var(--hand);
  font-size: 28px;
  color: var(--coral-deep);
  font-style: normal;
}

@media (max-width: 760px) {
  .field-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .form-shell { padding: 28px 20px; }
}

/* ============================================================
   9. VISIT — #obisk, dark contact grid
   ============================================================ */
.visit {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.visit .splatter { z-index: 0; }
.visit .splatter.ss1 { top: 8%; left: 1.5%; width: 96px; height: 36px; transform: rotate(-8deg); opacity: 0.85; }
.visit .splatter.ss2 { bottom: 14%; right: 8%; width: 88px; height: 32px; transform: rotate(8deg); opacity: 0.85; }
.visit .wrap { position: relative; z-index: 1; }
.visit-h-block { text-align: left; margin-bottom: 48px; max-width: 720px; }
.visit-h {
  font-family: var(--slab);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--cream);
  margin: 0;
}
.visit-h .amp {
  font-family: var(--hand);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  text-transform: none;
  font-size: 1em;
  letter-spacing: -0.02em;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.visit-cell {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(244,232,208,0.2);
  background: rgba(244,232,208,0.04);
}
.visit-cell .lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.visit-cell .v {
  font-family: var(--slab);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.visit-cell .v a { transition: color 0.2s; }
.visit-cell .v a:hover { color: var(--coral); }
.visit-cell .v.small {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 22px;
  color: var(--cream-deep);
  margin-top: 8px;
}

.visit-cta {
  margin-top: 48px;
  max-width: 900px;
  text-align: left;
}
.visit-cta .big {
  font-family: var(--slab);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--gold-soft);
  margin: 0 0 18px;
  max-width: 540px;
}
.visit-cta .actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

/* ghost button on the dark visit background */
.visit .btn.ghost { color: var(--coral); border-color: var(--coral); }
.visit .btn.ghost:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); }

@media (max-width: 760px) {
  .visit-grid { grid-template-columns: 1fr; }
}
