@charset "utf-8";

/* ==========================================================================
   Romany Ri Campsite
   Plain CSS. No build step, no framework. Edit it directly.

   The palette is taken from traditional bow-top wagon paintwork: a deep
   body green, madder red, and the gilt of the lining and scrollwork on a
   tilt-canvas ground.
   ========================================================================== */

:root {
  /* --- ink and ground ---------------------------------------------------- */
  --ink:        #1A1714;   /* body text. 15.6:1 on --canvas */
  --canvas:     #F4EFE4;   /* the wagon tilt canvas, page ground */
  --canvas-2:   #E8DFCC;   /* section tint */
  --harness:    #4A3B2A;   /* leather brown, secondary text. 9.4:1 on --canvas */

  /* --- paint ------------------------------------------------------------- */
  --wagon-green: #24483A;  /* the classic vardo body green, dark sections */
  --madder:      #9E3B2C;  /* traditional wagon red. 5.9:1 on --canvas */

  /* --- gilt --------------------------------------------------------------
     --ochre is DECORATION ONLY. It measures 2.4:1 on --canvas and 3.7:1 on
     --wagon-green, so it must never carry text. Use it for ornament, rules
     and hairlines. For gold *text* on a dark ground use --gilt-text, which
     is 5.3:1 on --wagon-green.                                             */
  --ochre:      #C8912F;
  --gilt-text:  #E0B45E;

  /* --- derived ----------------------------------------------------------- */
  --rule:        rgba(74, 59, 42, .26);
  --rule-strong: rgba(74, 59, 42, .46);
  --rule-dark:   rgba(224, 180, 94, .30);
  --canvas-dim:  rgba(244, 239, 228, .78);

  /* --- type -------------------------------------------------------------- */
  --display: "Zodiak", "Iowan Old Style", "Palatino Linotype", Palatino,
             "Book Antiqua", Georgia, "Times New Roman", serif;
  --body: "Synonym", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* --- measure and rhythm ------------------------------------------------ */
  --shell: 1280px;
  --gutter: clamp(1.25rem, 4.2vw, 3.25rem);
  --gap: clamp(1.25rem, 2.6vw, 2.25rem);
  --band-y: clamp(3.5rem, 8vw, 7rem);
}

/* --------------------------------------------------------------- reset-ish */

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

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p, ul, ol, dl { margin: 0 0 1.15em; }
p:last-child, ul:last-child, ol:last-child, dl:last-child { margin-bottom: 0; }

a { color: var(--madder); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

strong, b { font-weight: 600; }

/* ------------------------------------------------------------------- focus */

:focus-visible {
  outline: 3px solid var(--madder);
  outline-offset: 3px;
  border-radius: 2px;
}
.band--dark :focus-visible { outline-color: var(--gilt-text); }

.skip {
  position: absolute;
  left: 1rem;
  top: -6rem;
  z-index: 200;
  background: var(--madder);
  color: var(--canvas);
  padding: .8rem 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip:focus { top: 1rem; color: var(--canvas); }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}

.band { padding-block: var(--band-y); position: relative; }
.band--tint { background: var(--canvas-2); }
.band--dark { background: var(--wagon-green); color: var(--canvas); }
.band--dark h1, .band--dark h2, .band--dark h3 { color: var(--canvas); }
.band--dark a { color: var(--gilt-text); }
.band--dark a:hover { color: var(--canvas); }
.band--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ------------------------------------------------------------------- type */

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--madder);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  line-height: 1.4;
}
.eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--rule);
  max-width: 5.5rem;
}
.band--dark .eyebrow { color: var(--gilt-text); }
.band--dark .eyebrow::after { background: var(--rule-dark); }

h1 { font-size: clamp(2.5rem, 5.9vw, 4.35rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.95rem, 3.5vw, 2.9rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 1.75vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

.lede {
  font-size: clamp(1.14rem, 1.5vw, 1.38rem);
  line-height: 1.55;
  color: var(--harness);
  max-width: 34ch;
}
.band--dark .lede { color: var(--canvas-dim); }

.prose { max-width: 62ch; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2.1rem; margin-bottom: .55rem; }
.prose h2 + p, .prose h2 + .terms { margin-top: .85rem; }
.prose > p:first-child { margin-top: 0; }

.measure { max-width: 58ch; }
.dim { color: var(--harness); }
.band--dark .dim { color: var(--canvas-dim); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.5rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn svg { flex: none; }

.btn--call {
  background: var(--madder);
  color: var(--canvas);
  font-size: 1.08rem;
  padding: 1.05rem 1.7rem;
  letter-spacing: .01em;
}
.btn--call:hover { background: var(--ink); color: var(--canvas); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--ghost:hover { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.band--dark .btn--ghost { color: var(--canvas); border-color: var(--rule-dark); }
.band--dark .btn--ghost:hover { background: var(--canvas); color: var(--wagon-green); border-color: var(--canvas); }

/* The phone number is the one primary action on every page. */
.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.callout__note {
  font-size: .92rem;
  color: var(--harness);
  max-width: 26ch;
  line-height: 1.5;
}
.band--dark .callout__note { color: var(--canvas-dim); }

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

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--rule);
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.5rem;
  padding-block: .6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  flex: none;
}
.brand img { width: 44px; height: 44px; flex: none; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: -0.015em;
  display: block;
}
.brand__sub {
  font-size: .655rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--harness);
  display: block;
  margin-top: .3rem;
  line-height: 1;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.7vw, 1.65rem);
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  display: block;
}
.nav a:hover { border-bottom-color: var(--ochre); }
.nav a[aria-current="page"] { border-bottom-color: var(--madder); font-weight: 600; }

.masthead .btn--call { padding: .72rem 1.05rem; font-size: .97rem; }

.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: none;
    border: 1.5px solid var(--rule-strong);
    color: var(--ink);
    font-family: var(--body);
    font-size: .9rem;
    font-weight: 600;
    padding: .6rem .9rem;
    cursor: pointer;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--canvas);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 14px 30px rgba(26, 23, 20, .1);
  }
  .nav[data-open="true"] { display: block; }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--gutter) 1.25rem;
    max-width: var(--shell);
    margin-inline: auto;
  }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1.02rem;
  }
  .nav a:hover { border-bottom-color: var(--rule); color: var(--madder); }
  .nav a[aria-current="page"] { color: var(--madder); }
  .masthead .btn--call span { display: none; }
}

@media (max-width: 460px) {
  .brand__sub { display: none; }
  .brand img { width: 38px; height: 38px; }
  .nav-toggle span { display: none; }
}

/* -------------------------------------------------------------------- hero */

.hero { padding-block: clamp(2.75rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5.5rem); }
.hero__grid { align-items: center; }
.hero__copy { grid-column: 1 / span 7; }
.hero__panel { grid-column: 9 / span 4; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lede { max-width: 40ch; margin-bottom: 2rem; }

@media (max-width: 900px) {
  .hero__copy { grid-column: 1 / -1; }
  .hero__panel { grid-column: 1 / -1; max-width: 26rem; margin-inline: auto; }
}

/* ------------------------------------------------------------------- slabs */

.slab { grid-column: 1 / span 6; }
.slab--wide { grid-column: 1 / span 7; }
.slab--side { grid-column: 8 / span 5; }
.slab--lead { grid-column: 1 / span 5; }
.slab--body { grid-column: 7 / span 6; }
.slab--full { grid-column: 1 / -1; }
.slab--main { grid-column: 1 / span 8; }
.slab--rail { grid-column: 10 / span 3; }

@media (max-width: 1000px) {
  .slab, .slab--wide, .slab--side, .slab--lead, .slab--body,
  .slab--main, .slab--rail { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------- key answers */

.answers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.answers > li {
  border-bottom: 1px solid var(--rule);
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: .4rem 2rem;
  align-items: baseline;
}
.answers dt, .answers .answers__q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.answers .answers__a { color: var(--harness); margin: 0; }
.band--dark .answers { border-color: var(--rule-dark); }
.band--dark .answers > li { border-color: var(--rule-dark); }
.band--dark .answers .answers__a { color: var(--canvas-dim); }

@media (max-width: 720px) {
  .answers > li { grid-template-columns: 1fr; gap: .25rem; }
}

/* --------------------------------------------------------------- stay list
   Three ways to stay, as a staggered editorial list rather than three
   identical cards. The numeral does the ordering work.                      */

.stay { list-style: none; margin: 0; padding: 0; }
.stay > li { border-top: 1px solid var(--rule); }
.stay > li:last-child { border-bottom: 1px solid var(--rule); }

.stay__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1rem 2.5rem;
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.5rem) 0;
}
.stay__num {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: .9;
  color: var(--ochre);
  font-weight: 700;
}
.stay__head h3 { margin-bottom: .5rem; }
.stay__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .9rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ochre);
  padding-bottom: .15rem;
}
.stay__more:hover { border-bottom-color: var(--ink); }
.stay__more svg { transition: transform .18s ease; }
.stay__more:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .stay__row { grid-template-columns: 3rem minmax(0, 1fr); }
  .stay__body { grid-column: 2; }
}

/* ------------------------------------------------------------- fact ledger */

.ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.ledger > li {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.4rem 1.5rem;
}
.ledger dt, .ledger .ledger__k {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--madder);
  font-weight: 600;
  margin-bottom: .5rem;
  display: block;
}
.ledger dd, .ledger .ledger__v {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.ledger__note { display: block; font-family: var(--body); font-size: .86rem; font-weight: 400; color: var(--harness); margin-top: .3rem; line-height: 1.45; letter-spacing: 0; }
.band--dark .ledger, .band--dark .ledger > li { border-color: var(--rule-dark); }
.band--dark .ledger dt, .band--dark .ledger .ledger__k { color: var(--gilt-text); }
.band--dark .ledger__note { color: var(--canvas-dim); }

/* ------------------------------------------------------------------- facts */

.spec { margin: 0; }
.spec > div {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: .35rem 2rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--rule);
}
.spec > div:first-child { border-top: 1px solid var(--rule); }
.spec dt { font-weight: 600; }
.spec dd { margin: 0; color: var(--harness); }
@media (max-width: 640px) {
  .spec > div { grid-template-columns: 1fr; gap: .1rem; }
}

/* ------------------------------------------------------- ticked fact lists */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ticks > li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
}
.ticks svg { margin-top: .38rem; color: var(--madder); }
.band--dark .ticks svg { color: var(--gilt-text); }

.cols-2 { columns: 2; column-gap: 2.5rem; }
.cols-2 > li { break-inside: avoid; }
@media (max-width: 700px) { .cols-2 { columns: 1; } }

/* ---------------------------------------------------------- glossary terms */

.terms { margin: 0; }
.terms > div {
  padding: 1rem 0 1rem 1.35rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.terms > div:first-child { border-top: 1px solid var(--rule); }
.terms > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 6px;
  height: 6px;
  background: var(--madder);
  transform: rotate(45deg);
}
.terms dt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: .2rem;
}
.terms dd { margin: 0; color: var(--harness); }
.band--dark .terms > div { border-color: var(--rule-dark); }
.band--dark .terms > div::before { background: var(--gilt-text); }
.band--dark .terms dd { color: var(--canvas-dim); }

/* ------------------------------------------------------------ wagon types */

.types { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.types > article {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: 1rem 2.5rem;
  align-items: center;
  padding-block: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid var(--rule);
}
.types > article:last-child { border-bottom: 1px solid var(--rule); }
.types figure { margin: 0; background: var(--canvas-2); padding: .5rem; }
.types .orn-wagon { width: 100%; height: auto; }
.types h3 { margin-bottom: .5rem; }
@media (max-width: 860px) {
  .types > article { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ photo slots
   Every slot below is a real, correctly proportioned home for a photograph
   that does not exist yet. The ornament is the current occupant. When the
   owner supplies files, drop an <img> in beside the comment and delete the
   .slot__orn element. Nothing else needs to change.                         */

.slot { margin: 0; position: relative; }
.slot__orn {
  display: block;
  width: 100%;
  height: auto;
  background: var(--canvas-2);
}
.band--tint .slot__orn { background: var(--canvas); }
.slot img { width: 100%; height: auto; }

.slot--3x2 .slot__orn { aspect-ratio: 3 / 2; }
.slot--4x3 .slot__orn { aspect-ratio: 4 / 3; }
.slot--3x4 .slot__orn { aspect-ratio: 3 / 4; }
.slot--4x5 .slot__orn { aspect-ratio: 4 / 5; }
.slot--1x1 .slot__orn { aspect-ratio: 1 / 1; }
.slot--16x9 .slot__orn { aspect-ratio: 16 / 9; }

/* ---------------------------------------------------------------- ornament */

.orn { display: block; }
.orn-panel { width: 100%; height: auto; }
.orn-wide { width: 100%; height: auto; }
.orn-chamfer { width: 100%; height: 16px; }
.orn-divider { width: 100%; height: 26px; max-width: 20rem; margin-block: 2rem; }

.rule-band { display: block; width: 100%; height: 14px; }

.panel {
  background: var(--wagon-green);
  padding: clamp(1rem, 2vw, 1.5rem);
}
.panel .orn-panel { width: 100%; height: auto; }

/* -------------------------------------------------------------- pull quote */

.pull {
  border-top: 2px solid var(--ochre);
  padding-top: 1.5rem;
  margin: 0;
}
.pull blockquote {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  line-height: 1.34;
  letter-spacing: -0.015em;
}
.pull figcaption { font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; color: var(--harness); }
.band--dark .pull figcaption { color: var(--gilt-text); }

/* ------------------------------------------------------------ linked cards
   Sibling links at the foot of every page. No orphans.                      */

.onward {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.onward > li { background: var(--canvas); }
.band--tint .onward > li { background: var(--canvas-2); }
.onward a {
  display: block;
  padding: 1.5rem;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
  transition: background-color .16s ease;
}
.onward a:hover { background: var(--canvas-2); }
.band--tint .onward a:hover { background: var(--canvas); }
.onward__k {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--madder);
  font-weight: 600;
  display: block;
  margin-bottom: .6rem;
}
.onward__t {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: .4rem;
}
.onward__d { font-size: .95rem; color: var(--harness); display: block; line-height: 1.5; }

/* --------------------------------------------------------------- map / iframe */

.map {
  border: 1px solid var(--rule-strong);
  background: var(--canvas-2);
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
}
@media (max-width: 700px) { .map { aspect-ratio: 4 / 3; } }

/* --------------------------------------------------------------- breadcrumb */

.crumbs { padding-block: 1.1rem; border-bottom: 1px solid var(--rule); }
.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
  color: var(--harness);
}
.crumbs li { display: flex; gap: .5rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--rule-strong); }
.crumbs a { color: var(--harness); text-decoration: none; border-bottom: 1px solid var(--rule); }
.crumbs a:hover { color: var(--madder); border-bottom-color: var(--madder); }
.crumbs [aria-current="page"] { color: var(--ink); }

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

.foot { background: var(--wagon-green); color: var(--canvas); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.foot a { color: var(--gilt-text); }
.foot h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 1rem; }
.foot__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gap); align-items: start; }
.foot__brand { grid-column: 1 / span 4; }
.foot__nav { grid-column: 6 / span 3; }
.foot__find { grid-column: 9 / span 4; }
@media (max-width: 900px) {
  .foot__brand, .foot__nav, .foot__find { grid-column: 1 / -1; }
}
.foot__label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gilt-text);
  font-weight: 600;
  margin: 0 0 1rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.foot__nav a { text-decoration: none; }
.foot__nav a:hover { text-decoration: underline; }
.foot address { font-style: normal; color: var(--canvas-dim); line-height: 1.7; }
.foot__legal {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  font-size: .85rem;
  color: var(--canvas-dim);
}
.foot__wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin: 0 0 .35rem;
  color: var(--canvas);
}
.foot__strap { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gilt-text); margin: 0 0 1.25rem; }

/* ------------------------------------------------------------------ motion
   One reveal, and it is the signwriter's: the gilded linework draws itself
   on once as the panel arrives. Nothing else on the page moves.             */

.draw path, .draw circle { }

@media (prefers-reduced-motion: no-preference) {
  .draw { opacity: 0; }
  .draw.is-in { animation: paint-in 1.15s cubic-bezier(.22, .61, .36, 1) forwards; }
  @keyframes paint-in {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to   { opacity: 1; transform: none; }
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ------------------------------------------------------------------ utils */

.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.75rem; }
.stack-lg > * + * { margin-top: clamp(2rem, 4vw, 3.25rem); }
.mt-lg { margin-top: clamp(2rem, 4vw, 3.25rem); }
.mt-md { margin-top: clamp(1.5rem, 2.6vw, 2.25rem); }
.mb-md { margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem); }
.vh {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
