/* ==========================================================================
   Feliz Marketing Limited — "warm paper" theme
   Warm off-white canvas, ink serif display type, vermilion accent,
   deep-green inverted bands. Flat colour, soft shadows, no photography.
   ========================================================================== */

:root {
  color-scheme: light;

  /* Surfaces */
  --paper:     #fbf6ef;
  --paper-2:   #f3e9dc;
  --card:      #ffffff;
  --rule:      #e6d8c6;
  --rule-soft: #efe4d5;

  /* Ink */
  --ink:       #1b1512;
  --ink-2:     #574a40;
  --ink-3:     #7a6857;

  /* Brand */
  --flame:      #d6421f;  /* display accent, large type, decorative only */
  --flame-ink:  #b33517;  /* links, buttons, anything below 24px */
  --sun:        #f2a93b;
  --forest:     #13453e;  /* inverted bands */
  --forest-2:   #0c302b;
  --forest-3:   #2d6a60;

  --font-body:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --r-sm:    8px;
  --r-card:  18px;
  --r-panel: 28px;
  --r-pill:  999px;

  --shadow-sm: 0 1px 2px rgba(27, 21, 18, .06), 0 2px 8px rgba(27, 21, 18, .04);
  --shadow-md: 0 2px 4px rgba(27, 21, 18, .05), 0 12px 28px rgba(27, 21, 18, .08);
  --shadow-lg: 0 4px 10px rgba(27, 21, 18, .06), 0 28px 60px rgba(27, 21, 18, .12);

  --wrap:    1180px;
  --gutter:  clamp(20px, 4vw, 48px);
  --section: clamp(64px, 9vw, 112px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
  font-weight: 400;
}

h1 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.022em;
}

h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.012em;
}

h4 { font-size: 17px; line-height: 1.4; font-weight: 600; }

p { margin: 0 0 16px; max-width: 64ch; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
}

strong { color: var(--ink); font-weight: 600; }

a { color: var(--flame-ink); text-decoration: none; transition: color 150ms ease-out; }
a:hover { color: var(--flame); }

p a, .legal a, .address a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(179, 53, 23, .4);
}
p a:hover { text-decoration-color: currentColor; }

ul, ol { padding-left: 1.15em; }
li { margin-bottom: 8px; }

:focus-visible {
  outline: 2px solid var(--flame-ink);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 50%; top: 8px;
  transform: translate(-50%, -150%);
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; z-index: 100;
  transition: transform 150ms ease-out;
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--paper); }

/* --- Eyebrow / pill ----------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flame-ink);
  margin: 0 0 16px;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  background: var(--card);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 3px rgba(214, 66, 31, .16);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border: 1px solid var(--flame-ink);
  border-radius: var(--r-pill);
  background: var(--flame-ink);
  color: #fff;
  font-size: 15px; font-weight: 600; font-family: inherit;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 160ms ease-out, border-color 160ms ease-out,
              transform 160ms ease-out, box-shadow 160ms ease-out;
}
.btn:hover {
  background: var(--flame); border-color: var(--flame); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(179, 53, 23, .26);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border-color: var(--rule);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--card); border-color: var(--ink-3); color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn--light {
  background: var(--sun); border-color: var(--sun); color: var(--forest-2);
}
.btn--light:hover {
  background: #ffc262; border-color: #ffc262; color: var(--forest-2);
  box-shadow: 0 6px 18px rgba(242, 169, 59, .3);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15px;
  color: var(--flame-ink);
}
.link::after {
  content: "→";
  transition: transform 160ms ease-out;
}
.link:hover::after { transform: translateX(3px); }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 239, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 12px rgba(27, 21, 18, .04);
}
.site-header > .wrap {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 40;
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-right: auto;
}
.logo:hover { color: var(--ink); }
.logo svg { width: 28px; height: 28px; flex: none; }
.logo .logo-sub {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  border-left: 1px solid var(--rule);
  padding-left: 10px; margin-left: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  transition: background 150ms ease-out, color 150ms ease-out;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav .btn { margin-left: 8px; color: #fff; }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 100% 0 auto;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px var(--gutter) 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 16px; }
  .nav .btn { margin: 8px 0 0; }
  .logo .logo-sub { display: none; }
}

/* --- Hero --------------------------------------------------------------- */
.hero { padding: clamp(52px, 8vw, 92px) 0 clamp(44px, 6vw, 72px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero--inner { padding-bottom: clamp(32px, 4vw, 48px); }
.hero--inner h1 { font-size: clamp(38px, 5.4vw, 66px); }
.hero--inner .lead { max-width: 60ch; }

/* Rotating headline word. Words are chosen without descenders so the
   1.1em clipping window never cuts a letter. Keep it that way. */
.rotator {
  display: block;
  height: 1.1em;
  overflow: hidden;
  color: var(--flame);
}
.rotator-track { display: block; animation: roll 16s infinite; }
.rotator-track b { display: block; height: 1.1em; line-height: 1.1em; font-weight: 400; }

@keyframes roll {
  0%, 17%    { transform: translateY(0); }
  22%, 42%   { transform: translateY(-1.1em); }
  47%, 67%   { transform: translateY(-2.2em); }
  72%, 92%   { transform: translateY(-3.3em); }
  97%, 100%  { transform: translateY(-4.4em); }
}

/* Hero visual: fanned poster stack */
.posters {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
/* The three cards deliberately overlap, so only the front one has room for a
   full message. The back two are top-aligned and kept short, because their
   lower halves sit underneath .poster-3. */
.poster {
  position: absolute;
  width: 54%; aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 9s ease-in-out infinite;
}
.poster--back .poster-line { font-size: clamp(16px, 1.9vw, 21px); }

.poster-1 {
  left: 0; top: 4%;
  background: var(--forest); color: #fff;
  transform: rotate(-11deg);
  animation-delay: -1.2s;
}
.poster-2 {
  right: 0; top: 0;
  background: var(--sun); color: var(--forest-2);
  transform: rotate(9deg);
  animation-delay: -4s;
  align-items: flex-end;
  text-align: right;
}
.poster-3 {
  left: 23%; bottom: 2%;
  background: var(--flame); color: #fff;
  transform: rotate(-2deg);
  z-index: 2;
  justify-content: space-between;
  animation-delay: -6.5s;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}

.poster .poster-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: .82;
}
.poster .poster-line {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48;
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.poster .sunburst { width: 52px; height: 52px; }
.sunburst .rays { animation: spin 26s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { rotate: 360deg; } }

@media (max-width: 940px) {
  .posters { max-width: 380px; }
}

/* On a phone the cards are only ~180px wide, so the back two have to give up
   type size or their text slides under .poster-3. */
@media (max-width: 660px) {
  .posters { max-width: 330px; }
  .poster { padding: 15px; gap: 8px; }
  .poster .poster-tag { font-size: 9.5px; letter-spacing: 0.1em; }
  .poster .poster-line { font-size: 17px; }
  .poster--back .poster-line { font-size: 13px; }
  .poster .sunburst { width: 36px; height: 36px; }
}

/* --- Sections ----------------------------------------------------------- */
.section { padding-block: var(--section); }
.section--rule { border-top: 1px solid var(--rule); }
.section--tint { background: var(--paper-2); }

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 4.5vw, 56px); }
.section-head p { color: var(--ink-2); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }

.sticky { position: sticky; top: 104px; }
@media (max-width: 940px) { .sticky { position: static; } }

/* --- Facts strip (verifiable register data only) ------------------------ */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  list-style: none; margin: 0; padding: 0;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  overflow: hidden;
}
.facts li {
  margin: 0; padding: 26px 24px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 6px;
}
.facts strong {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.facts strong span { font-size: inherit; color: inherit; }
.facts > li > span { font-size: 14px; color: var(--ink-3); max-width: 30ch; }
@media (max-width: 720px) { .facts { grid-template-columns: 1fr; } }

/* --- Cards -------------------------------------------------------------- */
.cards {
  display: grid; gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 940px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) {
  .cards--3, .cards--2 { grid-template-columns: 1fr; }
}

.card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out,
              border-color 200ms ease-out;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 0; color: var(--ink-2); }

.card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--paper-2);
  color: var(--flame-ink);
  margin-bottom: 20px;
}
.card .icon svg {
  width: 23px; height: 23px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card .num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--flame-ink);
  letter-spacing: 0.08em;
  display: block; margin-bottom: 12px;
}

/* --- Platform tags (inside cards) --------------------------------------- */
.tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; margin: 20px 0 0; padding: 0;
}
.tags li {
  margin: 0;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  background: var(--paper-2);
  color: var(--ink-2);
}
.band .tags li { background: rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .82); }

/* --- Sectors ------------------------------------------------------------ */
.sectors {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.sectors li {
  margin: 0;
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  background: var(--card);
  font-size: 15px; font-weight: 500;
  color: var(--ink);
}

/* --- Budget planner (illustrative, no performance claims) --------------- */
.planner {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-panel);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.planner-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.planner-head h3 { margin: 0; }
.planner-total {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 48;
  font-size: 30px; letter-spacing: -0.02em;
  color: var(--ink);
}
.planner-body { padding: 24px 26px 8px; }

.planner-bar {
  display: flex; height: 14px;
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--paper-2);
}
.planner-bar span {
  display: block; height: 100%;
  transition: flex-basis 260ms cubic-bezier(.4, 0, .2, 1);
}

.planner-rows { list-style: none; margin: 0; padding: 0; }
.planner-rows li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center; gap: 12px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.planner-rows li:last-child { border-bottom: 0; }
.planner-rows .swatch { width: 12px; height: 12px; border-radius: 4px; }
.planner-rows .label { color: var(--ink-2); }
.planner-rows .label b { color: var(--ink); font-weight: 600; display: block; }
.planner-rows .label i {
  font-style: normal; font-size: 13px; color: var(--ink-3);
}
.planner-rows .amount {
  font-variant-numeric: tabular-nums;
  font-weight: 600; color: var(--ink);
  transition: opacity 120ms ease-out;
}
.planner-rows .amount.is-updating { opacity: .45; }

.planner-foot {
  padding: 20px 26px 26px;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper);
}
.planner-foot label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--ink-3); margin-bottom: 12px;
}
.planner-note {
  margin: 14px 0 0; font-size: 13px; line-height: 1.5;
  color: var(--ink-3); max-width: none;
}

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: var(--r-pill);
  background: var(--rule);
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--flame-ink);
  border: 3px solid var(--card);
  box-shadow: var(--shadow-sm);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--flame-ink);
  border: 3px solid var(--card);
  box-shadow: var(--shadow-sm);
  cursor: grab;
}

/* --- Steps -------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  margin: 0;
  padding: 0 0 32px 62px;
  counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--card);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--flame-ink);
}
.steps li::after {
  content: "";
  position: absolute; left: 21px; top: 48px; bottom: 6px;
  width: 1px; background: var(--rule);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: 6px; }
.steps p { font-size: 15px; margin: 0; }

/* --- Checklist ---------------------------------------------------------- */
.checklist { list-style: none; margin: 0 0 22px; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--ink-2);
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.checklist li::after {
  content: "";
  position: absolute; left: 6px; top: 11px;
  width: 6px; height: 3px;
  border-left: 1.8px solid var(--flame-ink);
  border-bottom: 1.8px solid var(--flame-ink);
  rotate: -45deg;
}

/* --- Inverted band ------------------------------------------------------ */
.band {
  background: var(--forest);
  color: rgba(255, 255, 255, .82);
}
.band h2, .band h3, .band strong { color: #fff; }
.band .eyebrow { color: var(--sun); }
.band p { color: rgba(255, 255, 255, .8); }
.band a:not(.btn) { color: var(--sun); }
.band-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 48px;
  align-items: end;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.band-head > div { max-width: 60ch; }
.band .big-stat {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144;
  font-size: clamp(72px, 12vw, 164px);
  line-height: .85;
  letter-spacing: -0.045em;
  color: var(--sun);
  margin: 0;
  max-width: none;
}
@media (max-width: 760px) {
  .band-head { grid-template-columns: 1fr; }
  .band-head .big-stat { order: -1; }
}

/* Cards sitting on the green band go translucent instead of white. */
.band .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}
.band .card:hover {
  border-color: rgba(255, 255, 255, .26);
  box-shadow: none;
}
.band .card p { color: rgba(255, 255, 255, .78); }
.band .card .icon { background: rgba(242, 169, 59, .14); color: var(--sun); }

.band .facts {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .14);
}
.band .facts li { background: var(--forest); }
.band .facts strong { color: #fff; }
.band .facts span { color: rgba(255, 255, 255, .64); }

/* --- CTA ---------------------------------------------------------------- */
.cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--r-panel);
  background: var(--forest);
  color: rgba(255, 255, 255, .82);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -90px; top: -90px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 59, .28), transparent 68%);
  pointer-events: none;
}
.cta > div { position: relative; z-index: 1; max-width: 46ch; }
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: rgba(255, 255, 255, .8); margin: 0; }
.cta .btn { position: relative; z-index: 1; }

/* --- Contact ------------------------------------------------------------ */
.address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink-2);
}

.form { display: grid; gap: 18px; max-width: 560px; }
.form > div { display: grid; gap: 7px; }
.form label { font-size: 14px; font-weight: 600; color: var(--ink); }
.form input, .form textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}
.form textarea { min-height: 150px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--ink-3); }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--flame-ink);
  box-shadow: 0 0 0 3px rgba(179, 53, 23, .13);
}
.form .hint { font-size: 13px; color: var(--ink-3); margin: 0; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  padding-block: 48px;
  font-size: 14px;
  color: var(--ink-3);
}
.site-footer > .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.site-footer h4 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.site-footer nav { display: grid; gap: 9px; justify-items: start; }
.site-footer nav a { color: var(--ink-2); font-weight: 500; }
.site-footer nav a:hover { color: var(--flame-ink); }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between;
}
.site-footer .logo { font-size: 19px; margin-bottom: 14px; }
.footer-tagline { max-width: 36ch; margin: 0 0 12px; color: var(--ink-3); }
.site-footer address { margin-bottom: 4px; }
@media (max-width: 760px) {
  .site-footer > .wrap { grid-template-columns: 1fr 1fr; }
  .site-footer > .wrap > :first-child { grid-column: 1 / -1; }
}

/* --- Legal pages -------------------------------------------------------- */
/* .legal nests inside .wrap rather than sharing its element, so the measure is
   capped without the column drifting away from the page heading above it. */
.legal { max-width: 74ch; margin-inline: 0; }
.legal h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 44px;
}
.legal h3 { margin-top: 26px; margin-bottom: 8px; font-size: 17px; }
.legal p, .legal li { color: var(--ink-2); max-width: none; }
.updated {
  font-size: 13px; color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* --- Reveal on scroll -----------------------------------------------------
   Only ever hidden once the inline head script has added .js to <html>, so a
   visitor with scripts blocked sees the whole page rather than a blank hero. */
.reveal {
  transition: opacity 600ms ease-out, translate 600ms cubic-bezier(.2, .6, .2, 1);
}
.js .reveal { opacity: 0; translate: 0 16px; }
.js .reveal.is-visible { opacity: 1; translate: 0 0; }

/* --- Motion preferences ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rotator-track { animation: none; transform: none; }
  .poster { animation: none; }
  .reveal, .js .reveal { opacity: 1; translate: none; }
}

/* --- Print -------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .cta, .planner-foot, .posters { display: none; }
  body { background: #fff; color: #000; }
}
