/* ============================================================
   FARHOLM — farholm.com
   Brand direction: "The horizon."
   Far (distant) + holm (small island) — the mark is a small
   island rising over a horizon line. Sea-ink, fog, and a
   horizon-gold accent. Type: Young Serif + Albert Sans.
   All color pairings verified WCAG 2.1 AA.
   ============================================================ */

:root {
  --ink:   #10393F;   /* deep north-sea — headings, dark sections */
  --ink-2: #0C2E33;   /* darker ink — hero gradient base */
  --sea:   #1F5C5F;   /* links, secondary accents */
  --fog:   #F4F7F5;   /* page background */
  --mist:  #E4EDE9;   /* alternate section background */
  --gold:  #E3A845;   /* horizon gold — primary CTA, the rising sun */
  --gold-2:#D2962F;   /* gold hover */
  --slate: #46605F;   /* muted text, captions */
  --white: #FFFFFF;

  --font-display: "Young Serif", Georgia, serif;
  --font-body: "Albert Sans", -apple-system, "Segoe UI", sans-serif;

  --size-hero: clamp(2.4rem, 5.5vw, 4.2rem);
  --size-h1:   clamp(2.1rem, 4.5vw, 3.4rem);
  --size-h2:   clamp(1.6rem, 3vw, 2.25rem);
  --size-h3:   1.3rem;
  --size-body: 1.0625rem;
  --size-small: 0.9rem;

  --space-section: clamp(4rem, 9vw, 7.5rem);
  --width-content: 70rem;
  --width-prose: 44rem;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 57, 63, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--fog);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }

p + p { margin-top: 1em; }

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.prose { max-width: var(--width-prose); }
.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.9rem;
}

.section { padding: var(--space-section) 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: var(--fog); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink a { color: var(--gold); }
.section--ink a:hover { color: var(--white); }
.section--ink .eyebrow { color: var(--gold); }

/* ---- The signature: horizon divider --------------------- */
.horizon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin: 0 auto 1.4rem;
  width: 110px;
  height: 16px;
  position: relative;
}
.horizon::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: currentColor;
  opacity: 0.35;
}
.horizon::after {
  content: "";
  width: 22px;
  height: 11px;
  border-radius: 11px 11px 0 0;
  background: var(--gold);
}
.horizon--left { margin-left: 0; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-2); color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-2); color: var(--white); }
.btn--ghost { background: transparent; color: var(--fog); border-color: rgba(244,247,245,0.5); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Navigation ------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 57, 63, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand svg { width: 30px; height: 30px; }
.nav__wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav__links a:not(.btn):hover,
.nav__links a[aria-current="page"]:not(.btn) {
  border-bottom-color: var(--gold);
}
.nav__links .btn { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}
.nav__toggle svg { width: 26px; height: 26px; }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--fog);
    border-bottom: 1px solid rgba(16, 57, 63, 0.1);
    padding: 0.5rem 0 1rem;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { padding: 0 1.5rem; }
  .nav__links a:not(.btn) {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(16, 57, 63, 0.07);
    font-size: 1.05rem;
  }
  .nav__links .btn {
    display: block;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
  }
}

/* ---- Hero (home) ------------------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 46%, #1A4A50 72%, #235B5C 100%);
  color: var(--fog);
  overflow: hidden;
  text-align: center;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(11rem, 22vw, 15rem);
  max-width: 52rem;
  margin: 0 auto;
}
.hero h1 {
  font-size: var(--size-hero);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  color: rgba(244, 247, 245, 0.92);
}
.hero__scene {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.hero__sun {
  animation: sunrise 2.4s cubic-bezier(0.22, 0.8, 0.3, 1) both;
  transform-origin: center;
}
@keyframes sunrise {
  from { transform: translateY(46px); }
  to   { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__sun { animation: none; }
}

/* ---- Page hero (interior pages) --------------------------- */
.page-hero {
  background: var(--ink);
  color: var(--fog);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; }
.page-hero p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(244, 247, 245, 0.9);
}
.page-hero .horizon { color: var(--fog); }

/* ---- Steps (How It Works) --------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.step p { font-size: 0.97rem; color: var(--slate); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; gap: 2.25rem; } }

/* ---- Cards ------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 57, 63, 0.13);
}
.card svg { width: 36px; height: 36px; color: var(--sea); margin-bottom: 1.1rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--slate); font-size: 0.97rem; flex: 1; }
.card a {
  margin-top: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.card a:hover { text-decoration: underline; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* ---- Alternating service blocks ---------------------------- */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: var(--space-section) 0;
}
.service:nth-of-type(even) .service__art { order: 2; }
.service__art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.service__art svg, .service__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service h2 { margin-bottom: 1.1rem; }
.service ul {
  margin-top: 1.4rem;
  list-style: none;
}
.service li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.55rem;
  font-size: 0.97rem;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 2px;
  background: var(--gold);
}
.service .list-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
  margin-top: 1.6rem;
}
@media (max-width: 860px) {
  .service { grid-template-columns: 1fr; }
  .service:nth-of-type(even) .service__art { order: 0; }
}

/* ---- Callout box ------------------------------------------- */
.callout {
  background: var(--ink);
  color: var(--fog);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.callout h2, .callout h3 { color: var(--white); margin-bottom: 0.9rem; }
.callout a { color: var(--gold); }
.callout--gold-edge { border-left: 6px solid var(--gold); }

/* ---- Pull quote (About — the name) -------------------------- */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 40rem;
  margin: 0 auto;
  color: var(--ink);
}
.pullquote em { color: var(--sea); font-style: italic; }

/* ---- Feature blocks (What Makes Us Different) ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1rem; }
.feature h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.feature p { font-size: 0.96rem; color: var(--slate); }
.section--ink .feature p { color: rgba(244,247,245,0.85); }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* ---- Badges ------------------------------------------------- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.badge {
  border: 2px solid var(--sea);
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  text-align: center;
  min-width: 140px;
}
.badge strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}
.badge span { font-size: 0.78rem; color: var(--slate); }
.section--ink .badge { border-color: rgba(244,247,245,0.4); }
.section--ink .badge span { color: rgba(244,247,245,0.75); }

/* ---- Accordion (Why Us) -------------------------------------- */
.faq { max-width: 46rem; margin: 0 auto; }
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3.5rem 1.4rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--sea);
  border-bottom: 2px solid var(--sea);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details[open] summary { border-bottom: 1px solid var(--mist); }
.faq .faq__body { padding: 1.4rem 1.75rem 1.6rem; color: var(--slate); }

/* ---- Contact ------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form { background: var(--white); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow); }
.form__row { margin-bottom: 1.25rem; }
.form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.form label .opt { font-weight: 400; color: var(--slate); }
.form input, .form select, .form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #C6D4D0;
  border-radius: 8px;
  background: var(--fog);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--sea);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; margin-top: 0.25rem; }
.form__note { font-size: var(--size-small); color: var(--slate); margin-top: 1.1rem; }
.form__success {
  display: none;
  background: var(--mist);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
}
.form__success.is-visible { display: block; }

.channels { list-style: none; margin-top: 1.75rem; }
.channels li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(16, 57, 63, 0.1);
}
.channels svg { width: 22px; height: 22px; color: var(--sea); flex-shrink: 0; }
.channels a { font-weight: 500; }

/* ---- CTA band ------------------------------------------------ */
.cta-band {
  background: linear-gradient(135deg, var(--ink-2), var(--ink) 60%, #1A4A50);
  color: var(--fog);
  text-align: center;
  padding: var(--space-section) 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { max-width: 36rem; margin: 0 auto 2rem; color: rgba(244,247,245,0.9); }

/* ---- Footer --------------------------------------------------- */
.footer {
  background: var(--ink-2);
  color: rgba(244, 247, 245, 0.85);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.93rem;
}
.footer a { color: rgba(244, 247, 245, 0.85); }
.footer a:hover { color: var(--gold); }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(244, 247, 245, 0.15);
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); text-decoration: none; }
.footer__brand svg { width: 28px; height: 28px; }
.footer__brand span { font-weight: 700; letter-spacing: 0.22em; }
.footer__tagline { margin-top: 0.8rem; max-width: 22rem; color: rgba(244,247,245,0.7); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.84rem;
  color: rgba(244, 247, 245, 0.6);
}

/* ---- Scroll reveal -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- 404 ------------------------------------------------------- */
.lost {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-section) 1.5rem;
}
.lost h1 { margin: 1.5rem 0 1rem; }
.lost p { max-width: 30rem; color: var(--slate); margin-bottom: 2rem; }

/* ---- Utility ---------------------------------------------------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- Recently planned strip ---------- */
.recent-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 54rem;
  margin: 2.25rem auto 0;
}
.recent-strip span {
  background: var(--white);
  color: var(--sea);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.92rem;
  box-shadow: 0 2px 10px rgba(16, 57, 63, 0.08);
  white-space: nowrap;
}
.recent-strip strong { color: var(--ink); font-weight: 600; }
.recent-note {
  text-align: center;
  color: var(--sea);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  font-style: italic;
}
@media (max-width: 480px) {
  .recent-strip span { white-space: normal; text-align: center; }
}

/* ---------- Travels map page ---------- */
.map-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 2rem);
}
.world-map { width: 100%; height: auto; display: block; }
.map-land { fill: var(--mist); stroke: none; }
.dot {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 1.5;
  cursor: pointer;
  transition: r 0.15s ease;
}
.dot:hover, .dot:focus { r: 7; stroke: var(--ink); outline: none; }
.dot--home { fill: var(--ink); stroke: var(--gold); stroke-width: 2; }
.route { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.route--air { stroke: var(--gold); stroke-dasharray: 6 5; }
.route--sea { stroke: var(--sea); }
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--sea);
}
.map-legend .key {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 0.4rem;
}
.key--dot { background: var(--gold); }
.key--home { background: var(--ink); box-shadow: 0 0 0 2px var(--gold) inset; }
.key--air, .key--sea { width: 22px; height: 0; border-radius: 0; border-top: 3px dashed var(--gold); vertical-align: 3px; }
.key--sea { border-top: 3px solid var(--sea); }
.map-inset-row {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 3rem;
}
.map-inset svg { width: 100%; height: auto; display: block; border: 2px solid var(--mist); border-radius: 10px; background: var(--white); }
.map-inset__caption { font-size: 0.88rem; color: var(--sea); margin-top: 0.75rem; }
.region-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 60rem;
  margin: 2.5rem auto 0;
}
.region-cols h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.region-cols h3 + p { color: var(--sea); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
@media (max-width: 800px) {
  .map-inset-row { grid-template-columns: 1fr; }
  .region-cols { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Horizon motif extensions ---------- */
.footer { position: relative; }
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  opacity: 0.65;
}
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  top: -110px; right: 6%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 168, 69, 0.30), transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; }

/* ---------- Guided intake form ---------- */
.form-step { border: none; padding: 0; margin: 0 0 2.25rem; }
.form-step__title {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  margin-right: 0.65rem;
  flex: none;
}
.form-step__hint { font-size: 0.9rem; color: var(--sea); margin-bottom: 1rem; }
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group label {
  border: 1.5px solid var(--mist);
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  cursor: pointer;
  font-size: 0.93rem;
  color: var(--sea);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pill-group label:hover { border-color: var(--sea); }
.pill-group input:checked + label {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pill-group input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.group-label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; font-size: 0.95rem; }