/* Arteolin — Hungarian landing page
 *
 * Direction: Budapest thermal baths. Zsolnay ceramic teal and warm ochre are
 * the packaging's own colours and a cultural code the 45+ Hungarian audience
 * reads instantly — heat, water, and looking after the body.
 *
 * Signature: the hero is deep water, and warmth radiates outward from the jar.
 * Everything else stays quiet so that one moment carries the page.
 *
 * All colour pairs verified against WCAG AA before use.
 */

:root {
  /* water & ceramic */
  --deep:       #16323A;   /* pool at depth — hero, footer */
  --deep-2:     #1E4550;   /* raised surfaces on deep */
  --tile:       #2A6B63;   /* Zsolnay teal — links, accents on light */
  --tile-pale:  #DCE8E6;   /* glazed tile — alternating sections */
  --mist:       #F3F7F6;   /* steam — default section tint */

  /* heat */
  --amber:      #1F6F64;   /* ochre — buttons, 6.0:1 on white */
  --amber-lit:  #7ED4C7;   /* the glow — only ever on deep */

  --ink:        #122226;
  --ink-soft:   #4A6468;
  --line:       #C5D6D4;   /* decorative dividers */
  --line-strong:#6E8A86;   /* borders of interactive controls, 3.3:1 */
  --white:      #FFFFFF;

  --focus:      var(--tile);   /* re-pointed to --amber-lit on dark sections */

  --wrap:   1100px;
  --radius: 2px;               /* tile edge, not a pill */
  --gap:    clamp(2rem, 5vw, 4.5rem);

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

/* Palatino over Georgia: humanist, calligraphic, warmer — and not the serif
   every other landing page reaches for. Full Latin Extended-A, so ő and ű
   render correctly. */
h1, h2, h3 {
  font-family: "Source Serif 4", Palatino, Georgia, serif;
  line-height: 1.15; margin: 0 0 .6em; font-weight: 700; text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.5rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; letter-spacing: 0; }

p { margin: 0 0 1em; }
a { color: var(--tile); text-underline-offset: .18em; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

a, button, input, summary, label, [tabindex] {
  scroll-margin-top: 1.5rem;
  scroll-margin-bottom: 110px;   /* clear the fixed mobile CTA — WCAG 2.4.11 */
}
a, button, summary, label, input[type="checkbox"], input[type="radio"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(26, 98, 115, .18);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; z-index: 100;
  background: var(--amber); color: #fff; padding: .8rem 1.2rem;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- layout ---------- */

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap.narrow > * { max-width: 730px; }

.section { padding: var(--gap) 0; }
.section-soft { background: var(--mist); }
.section-tile { background: var(--tile-pale); }
.section-note { color: var(--ink-soft); margin-top: -.4em; }
.on-deep .section-note { color: #A9C3CA; }

/* Sections on deep water: invert text and the focus ring. */
.on-deep {
  background: var(--deep);
  color: var(--tile-pale);
  --focus: var(--amber-lit);
}
.on-deep h1, .on-deep h2, .on-deep h3 { color: var(--white); }
.on-deep a { color: var(--amber-lit); }

/* ---------- header ---------- */

.site-header { background: var(--deep); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.logo {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  letter-spacing: .02em;
}
.header-cta {
  display: none;
  padding: .6rem 1.2rem; border-radius: var(--radius);
  background: var(--amber); color: #fff; text-decoration: none; font-weight: 600;
}
.header-cta:hover { background: #86400B; }

/* ---------- section nav ---------- */

.section-nav {
  background: var(--deep-2);
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.section-nav .wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.section-nav ul {
  list-style: none; display: flex; gap: 1.6rem;
  margin: 0; padding: .85rem 0; white-space: nowrap;
}
.section-nav a {
  color: #D6E7EB; text-decoration: none;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.section-nav a:hover { color: #fff; border-bottom-color: var(--amber-lit); }
.section-nav a:focus-visible { outline-color: var(--amber-lit); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block; text-align: center; text-decoration: none;
  font: inherit; font-weight: 600; cursor: pointer; letter-spacing: .01em;
  padding: 1rem 1.8rem; min-height: 54px;
  border-radius: var(--radius); border: 2px solid transparent;
}
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: #86400B; }
.btn-outline {
  background: transparent; color: var(--tile); border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--tile); background: var(--white); }
.btn-lg { width: 100%; font-size: 1.15rem; }

.cta-block { margin: 1.75rem 0; }
.cta-note { font-size: .95rem; color: var(--ink-soft); margin: .8rem 0 0; }
.on-deep .cta-note, .hero .cta-note { color: #A9C3CA; }

/* ---------- hero: deep water + radiating warmth ---------- */

.hero {
  position: relative; overflow: hidden;
  background: var(--deep);
  color: var(--tile-pale);
  --focus: var(--amber-lit);
  padding: var(--gap) 0 calc(var(--gap) + .5rem);
}

/* THE SIGNATURE — warmth spreading from the jar into cold water.
   `screen` is essential: painting ochre normally over deep teal muddies into
   olive. Screen adds light instead of mixing pigment, so the teal stays teal
   and only the temperature shifts. */
.hero::before {
  content: "";
  position: absolute; z-index: 0;
  /* Sized from the hero's own width, not the viewport: vmax made the glow
     scale with window height, washing the whole section out on tall screens. */
  width: 125%; aspect-ratio: 1;
  top: 46%; left: 74%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  background:
    radial-gradient(circle closest-side,
      rgba(196, 104, 28, .58) 0%,
      rgba(178, 88, 26, .30) 34%,
      rgba(150, 74, 24, .12) 58%,
      transparent 76%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .hero::before { top: 66%; left: 52%; width: 165%; }
}

.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: var(--gap); align-items: center; }
.hero h1 { color: var(--white); }
.hero .lead { font-size: 1.2rem; color: #C4DBE1; max-width: 34em; }

.trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: .55rem;
  padding: 0; margin: 1.75rem 0 0;
}
.trust li {
  border: 1px solid rgba(240, 163, 86, .45);
  color: var(--amber-lit);
  padding: .45rem .9rem; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .55);
}

/* ---------- content ---------- */

.big { font-size: 1.22rem; }
.accent { color: var(--amber); font-weight: 700; }

.split { display: grid; gap: var(--gap); align-items: center; }
.split img { border-radius: var(--radius); }

/* Tile grid — the bath wall. Structural, barely visible, never decorative. */
.pillars {
  list-style: none; padding: 0; margin: var(--gap) 0 0;
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.pillars li { background: var(--white); padding: 1.6rem 1.4rem; }
.section-soft .pillars li { background: var(--mist); }
.section-tile .pillars li { background: var(--tile-pale); }
.pillars h3 { color: var(--tile); margin-bottom: .45em; }
.pillars p { margin: 0; color: var(--ink-soft); }

.ingredients { border-collapse: collapse; width: 100%; }
.ingredients tr { display: block; border-bottom: 1px solid var(--line); padding: .75rem 0; }
.ingredients th, .ingredients td { display: block; text-align: left; padding: 0; }
.ingredients th { font-weight: 700; color: var(--tile); }
.ingredients td { color: var(--ink-soft); }

@media (min-width: 560px) {
  .ingredients tr { display: table-row; border-bottom: 0; padding: 0; }
  .ingredients th, .ingredients td {
    display: table-cell; padding: .8rem .5rem;
    border-bottom: 1px solid var(--line); vertical-align: top;
  }
  .ingredients th { width: 45%; }
}

details {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.2rem; margin-bottom: .7rem; background: var(--white);
}
details summary { cursor: pointer; font-weight: 600; min-height: 32px; }
details[open] summary { margin-bottom: .7rem; }
details p { margin: 0; color: var(--ink-soft); }
.inci { margin-top: var(--gap); }
.inci p { font-size: .88rem; line-height: 1.65; }

.steps { padding-left: 1.3rem; }
.steps li { margin-bottom: .6rem; }
.steps::marker { color: var(--tile); }

.warning {
  margin-top: var(--gap);
  background: var(--white);
  border-left: 4px solid var(--amber);
  padding: 1.3rem 1.5rem;
}
.section-soft .warning, .section-tile .warning { background: var(--white); }
.warning h3 { margin-bottom: .5em; color: var(--amber); }
.warning p { font-size: .97rem; color: var(--ink-soft); }
.warning p:last-child { margin-bottom: 0; }

/* Numbered because it genuinely is a sequence the reader must follow. */
.process { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.process li {
  display: grid; grid-template-columns: 52px 1fr; gap: .25rem 1.15rem;
  align-items: start;
}
.process .num {
  grid-row: span 2;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--deep); color: var(--amber-lit);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700; font-size: 1.35rem;
}
.on-deep .process .num { background: var(--amber); color: #fff; }
.process strong { align-self: center; font-size: 1.05rem; }
.process span:not(.num) { color: var(--ink-soft); font-size: .97rem; }
.on-deep .process span:not(.num) { color: #A9C3CA; }

/* ---------- packages ---------- */

.packages {
  list-style: none; padding: 0; margin: var(--gap) 0 0;
  display: grid; gap: 1.25rem;
}
.pkg {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center; background: var(--white);
  display: flex; flex-direction: column; position: relative;
}
.pkg h3 { margin-bottom: .35em; }
.pkg .unit { color: var(--ink-soft); font-size: .96rem; margin-bottom: .5em; }
.pkg .total {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 2.15rem; font-weight: 700; color: var(--ink); margin: 0 0 .25em;
}
.pkg .detail {
  font-size: .9rem; color: var(--ink-soft);
  margin-bottom: 1.35rem; line-height: 1.6;
}
.pkg .detail strong { color: var(--amber); }
.pkg-best .detail strong { color: var(--amber-lit); }
.pkg .total, .pkg .unit, .pkg .detail { font-variant-numeric: tabular-nums; }
.pkg .btn { margin-top: auto; }

/* The recommended pack is the deep one — weight, not just a border. */
.pkg-best { background: var(--deep); border-color: var(--deep); color: var(--tile-pale); }
.pkg-best h3, .pkg-best .total { color: var(--white); }
.pkg-best .unit, .pkg-best .detail { color: #A9C3CA; }
.pkg-best .btn-primary { background: var(--amber); }
.badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--amber); color: #fff;
  padding: .3rem 1rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; margin: 0; white-space: nowrap;
}

/* ---------- form ---------- */

.order-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.35rem, 3vw, 2.25rem);
  margin-top: 1.75rem;
}
.on-deep .order-form { color: var(--ink); }
.on-deep .order-form a { color: var(--tile); }
.field { margin-bottom: 1.35rem; border: 0; padding: 0; }
.field label, .field legend {
  display: block; font-weight: 700; margin-bottom: .5rem; padding: 0;
}
.field input[type="text"],
.field input[type="tel"] {
  width: 100%; font: inherit; color: var(--ink);
  padding: .9rem 1rem; min-height: 54px;
  border: 2px solid var(--line-strong); border-radius: var(--radius);
  background: var(--white);
}
.field input:focus { border-color: var(--tile); }
.field input[aria-invalid="true"] { border-color: #9B2412; }

.radio {
  display: flex; align-items: center; gap: .75rem;
  font-weight: 400; margin-bottom: .55rem;
  padding: .75rem .95rem; border: 2px solid var(--line-strong);
  border-radius: var(--radius); cursor: pointer; min-height: 54px;
}
.radio:has(input:checked) { border-color: var(--tile); background: var(--mist); }
.radio input { width: 24px; height: 24px; accent-color: var(--tile); flex: none; }

.consent {
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.6rem;
}
.consent input { width: 24px; height: 24px; flex: none; margin-top: .15rem; accent-color: var(--tile); }

.hp { position: absolute; left: -9999px; }

.form-error {
  background: #FCEDEA; border-left: 4px solid #9B2412; color: #7C1D0E;
  padding: .95rem 1.15rem; margin-bottom: 1.35rem; border-radius: var(--radius);
}

/* ---------- legal pages ---------- */

.legal { padding: var(--gap) 0 calc(var(--gap) * 1.2); }
.legal .wrap > * { max-width: 760px; }
.legal h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: .35em; }
.legal .updated {
  color: var(--ink-soft); font-size: .95rem; margin-bottom: 2.5rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: .7em;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal p, .legal li { font-size: 1rem; line-height: 1.75; }
.legal ul, .legal ol { padding-left: 1.4rem; }
.legal li { margin-bottom: .5rem; }
.legal dl { margin: 0 0 1.5rem; }
.legal dt { font-weight: 700; margin-top: .9rem; }
.legal dd { margin: .15rem 0 0; color: var(--ink-soft); }

.legal table {
  border-collapse: collapse; width: 100%; margin: 1.2rem 0 1.8rem;
  font-size: .96rem;
}
.legal th, .legal td {
  text-align: left; padding: .7rem .6rem; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.legal th { font-weight: 700; width: 38%; }
.legal td { color: var(--ink-soft); }

.legal .box {
  background: var(--mist); border-left: 4px solid var(--tile);
  padding: 1.2rem 1.4rem; margin: 1.5rem 0;
}
.legal .box p:last-child { margin-bottom: 0; }

/* Unfilled data — deliberately loud so it cannot ship unnoticed. */
.todo {
  background: #FDF0D8; border-left: 4px solid var(--amber);
  padding: 1rem 1.2rem; margin: 1.2rem 0; font-size: .95rem;
}
.todo strong { color: var(--amber); }
mark.todo-inline {
  background: #FCE4A6; color: #6B3500; padding: .1em .35em;
  border-radius: 2px; font-weight: 600;
}

.legal-back { margin-top: 3rem; }

/* ---------- footer ---------- */

.site-footer { background: var(--deep); color: #A9C3CA; padding: var(--gap) 0; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: .65rem 1.6rem;
  padding-bottom: 1.6rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid #235162;
}
.footer-nav a { color: var(--white); text-decoration: underline; font-size: .97rem; }
.footer-legal p { font-size: .92rem; line-height: 1.75; }
.footer-legal strong { color: var(--white); }
.disclaimer {
  margin-top: 1.35rem; padding-top: 1.35rem;
  border-top: 1px solid #235162; color: var(--white); font-weight: 600;
}

/* ---------- sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(11, 53, 64, .97);
  border-top: 1px solid #235162;
}
.sticky-cta .btn { width: 100%; }
body { padding-bottom: 94px; }

/* ---------- line art ---------- */

.pillar-icon, .botany svg {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.pillar-icon { width: 40px; height: 40px; color: var(--tile); margin-bottom: .9rem; }

/* ---------- audience ---------- */

.audience {
  list-style: none; padding: 0; margin: var(--gap) 0 0;
  display: grid; gap: 1.5rem;
}
.audience li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
}
.audience svg {
  width: 36px; height: 36px; color: var(--tile); margin-bottom: .85rem;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.audience h3 { margin-bottom: .4em; font-size: 1.08rem; }
.audience p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- warnings ---------- */

.warn-list { list-style: none; padding: 0; margin: 0; }
.warn-list li {
  position: relative; padding-left: 1.35rem; margin-bottom: .8rem;
  font-size: .97rem; color: var(--ink-soft); line-height: 1.6;
}
.warn-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
}
.warn-list li:last-child { margin-bottom: 0; }
.warn-list strong { color: var(--ink); }

/* ---------- contact hours ---------- */

.hours {
  background: var(--white); border-left: 4px solid var(--tile);
  padding: .9rem 1.15rem; margin: 1.5rem 0 0;
  font-size: .96rem; color: var(--ink);
}
.hours span { color: var(--ink-soft); }

/* ---------- botany ---------- */

.botany-title {
  margin: 0 0 1.25rem;
  font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft); font-family: inherit; font-weight: 700;
}
.botany {
  list-style: none; padding: 0; margin: 0 0 var(--gap);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem;
}
.botany li { text-align: center; }
.botany svg { width: 48px; height: 48px; color: var(--tile); margin: 0 auto .55rem; }
.botany strong { display: block; font-size: 1rem; }
.botany em {
  display: block; font-size: .82rem; font-style: italic;
  color: var(--ink-soft); line-height: 1.35; margin-top: .15rem;
}

/* ---------- heat timeline ---------- */

.heat { margin-top: var(--gap); }
.heat h3 {
  color: var(--white); font-size: 1.05rem; letter-spacing: .06em;
  text-transform: uppercase; font-family: inherit; margin-bottom: 1.1rem;
}
.heat-bar {
  height: 6px; border-radius: 3px; margin-bottom: 1.4rem;
  background: linear-gradient(90deg,
    #2E6E7E 0%, #6C7E6E 28%, #B08236 62%, var(--amber-lit) 100%);
}
.heat-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.4rem;
  counter-reset: heat;
}
.heat-steps li { position: relative; padding-left: 1.4rem; }
.heat-steps li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber-lit);
}
.heat-when {
  display: block; font-weight: 700; color: var(--white); margin-bottom: .15rem;
}
.heat-what { display: block; color: #A9C3CA; font-size: .97rem; }

/* ---------- gallery ---------- */

.gallery {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem;
}
.gallery img {
  border-radius: var(--radius); width: 100%;
  border: 1px solid rgba(11, 53, 64, .08);
}
.gallery span {
  display: block; margin-top: .55rem;
  font-size: .9rem; color: var(--ink-soft); text-align: center;
}

/* ---------- cookie banner ---------- */

.cookiebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--deep); color: var(--tile-pale);
  border-top: 3px solid var(--amber);
  padding: 1.1rem 1rem calc(1.1rem + env(safe-area-inset-bottom));
  --focus: var(--amber-lit);
}
.cookiebar-inner {
  width: min(var(--wrap), 100% - 2rem); margin-inline: auto;
  display: grid; gap: 1rem;
}
.cookiebar p { margin: 0; font-size: .95rem; line-height: 1.6; }
.cookiebar a { color: var(--amber-lit); }
.cookiebar-actions { display: grid; gap: .6rem; }
/* Refusing must be exactly as easy as accepting — same size, same weight. */
.cookiebar-actions .btn { width: 100%; min-height: 50px; padding: .8rem 1.4rem; }
.cookiebar .btn-outline { color: var(--tile-pale); border-color: #4A7A88; }
.cookiebar .btn-outline:hover { background: var(--deep-2); border-color: var(--tile-pale); }

/* The sticky CTA would sit under the banner — hide it until a choice is made. */
body:has(.cookiebar) .sticky-cta { display: none; }

@media (min-width: 700px) {
  .cookiebar-inner {
    grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  }
  .cookiebar-actions { grid-auto-flow: column; }
  .cookiebar-actions .btn { width: auto; min-width: 150px; }
}

/* ---------- breakpoints ---------- */

@media (min-width: 700px) {
  .pillars    { grid-template-columns: repeat(3, 1fr); }
  .packages   { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .process    { grid-template-columns: repeat(2, 1fr); gap: 2rem 2.75rem; }
  .botany     { grid-template-columns: repeat(5, 1fr); gap: 1rem .75rem; }
  .gallery    { grid-template-columns: repeat(4, 1fr); }
  .heat-steps { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .audience   { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .audience { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 861px) {
  .hero-grid  { grid-template-columns: 1fr 500px; }
  .split      { grid-template-columns: 1fr 1fr; }
  .header-cta { display: inline-block; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
  .btn-lg { width: auto; min-width: 300px; }
}

.logo, .pkg .total, .process .num {
  font-family: "Source Serif 4", Palatino, Georgia, serif;
}
.hero::before { left:48%;top:8%;width:70%; }
.form-error { background: #3b1010; color: #fff; padding: .9rem 1rem; border-radius: var(--radius); }
