/* ==========================================================================
   THE SHOOT GUIDE — gallery-minimal design system
   Cool gallery-white walls, generous whitespace, hairline rules, small-caps
   captions. Playfair Display over Karla. Plain CSS, no framework.

   PALETTE SOURCE: sampled from images/logo.png (the real brand mark, now
   installed). The compass rose and the wordmark are deep indigo / navy-violet
   (#121055, #0C0A47, deepest #08063A); the arrow and the camera-frame
   brackets are coral / rose-red (#E7637C). Nothing outside that indigo/coral
   family appears below. Every text/background pair has been checked for WCAG
   AA (>= 4.5:1) — see the contrast notes beside each token.

   Coral #E7637C is a light tone: it is used for fills, rules, icon strokes and
   text ON indigo only. Wherever an accent has to carry text on a light ground,
   use --coral-deep (#B8405A), which clears 4.5:1 on every light surface here.
   ========================================================================== */

:root {
  /* ---- ground: cool, neutral gallery white ---- */
  --paper: #F7F8FB;
  /* cool gallery white — page ground */
  --paper-raised: #FFFFFF;
  /* pure gallery white — cards */
  --paper-deep: #EAEDF7;
  /* palest indigo wash — footer band, logo sits on this */

  /* ---- ink / primary: the logo indigo ---- */
  --ink: #1A1836;
  /* indigo-ink — body text (16.1:1 on --paper) */
  --indigo: #121055;
  /* logo indigo — display type, primary (16.1:1 on --paper) */
  --indigo-deep: #08063A;
  /* deepest indigo — dark bands, hover states (19.1:1 vs white) */
  --indigo-mid: #3A3775;
  /* mid indigo (derived) — secondary text, captions (10.0:1 on --paper) */

  /* ---- accent: the logo coral ---- */
  --coral: #E7637C;
  /* logo coral — fills, marks, rules, underlines. NEVER body text on light. */
  --coral-deep: #B8405A;
  /* coral-deep (derived) — accent text (5.1:1 on --paper, 4.7:1 on washes) */

  /* ---- tinted bands ---- */
  --wash-indigo: #EEF0F8;
  /* pale indigo wash */
  --wash-coral: #FBEEF1;
  /* pale coral wash */

  /* ---- structure ---- */
  --rule: #DCDFEC;
  --rule-strong: #C2C6DD;

  /* ---- type ---- */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;

  /* ---- metrics ---- */
  --wrap: 74rem;
  --gutter: clamp(1rem, 4vw, 2.75rem);
  --band-gap: clamp(3.25rem, 8vw, 7rem);
  --hairline: 1px solid var(--rule);
}


/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .97rem + .18vw, 1.0625rem);
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--indigo);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 1.5rem + 3.6vw, 4.35rem);
}

h2 {
  font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.35rem);
}

h3 {
  font-size: clamp(1.17rem, 1.06rem + .42vw, 1.4rem);
  line-height: 1.24;
}

p {
  margin: 0 0 1.15em;
}

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

a:hover {
  color: var(--coral-deep);
  text-decoration-color: var(--coral-deep);
}

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

code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .88em;
  background: var(--wash-indigo);
  padding: .1em .38em;
  border-radius: 2px;
  color: var(--indigo);
  word-break: break-word;
}

b,
strong {
  font-weight: 700;
  color: var(--indigo);
}

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

/* small-caps caption device, used throughout */
.caps {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--indigo-mid);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.rule-caps {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}

.rule-caps::after {
  content: "";
  width: clamp(2.5rem, 9vw, 5.5rem);
  height: 1px;
  background: var(--rule-strong);
}

.fineprint {
  font-size: .83rem;
  line-height: 1.62;
  color: var(--indigo-mid);
}

svg.i {
  width: 1em;
  height: 1em;
  flex: none;
}

/* --------------------------------------------------------------------------
   TOPBAR
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--indigo);
  color: var(--paper);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  min-height: 2.6rem;
  padding-block: .55rem;
}

.topbar-brand {
  font-family: var(--display);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .95rem;
  color: var(--coral);
}

.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #DCDDF0;
}

.topbar-note svg.i {
  width: .95rem;
  height: .95rem;
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   HEADER — static, no nav menu. Logo sits directly on paper.
   -------------------------------------------------------------------------- */

.site-header {
  position: static;
  background: var(--paper);
  border-bottom: var(--hairline);
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: clamp(1.1rem, 2.5vw, 1.75rem);
}

.logo {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.header-tag {
  margin: 0;
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.75;
  color: var(--indigo-mid);
  text-align: right;
}

@media (max-width: 560px) {
  .header-tag {
    text-align: left;
    font-size: .68rem;
  }

  .logo img {
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   HERO — asymmetric split with an offset image card overlapping the copy
   -------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
  border-bottom: var(--hairline);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 1.5rem;
}

.eyebrow svg.i {
  width: 1.05rem;
  height: 1.05rem;
}

.hero-dek {
  font-size: clamp(1.06rem, 1rem + .45vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 34em;
  margin-bottom: 1.9rem;
}

.hero-list {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
  border-top: var(--hairline);
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .78rem 0;
  border-bottom: var(--hairline);
  font-size: .93rem;
  line-height: 1.55;
  color: var(--indigo-mid);
}

.hero-list svg.i {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .22rem;
  color: var(--coral-deep);
}

.hero-meta {
  margin: 0;
  font-size: .8rem;
  color: var(--indigo-mid);
}

.hero-meta .caps {
  display: inline;
  font-size: .66rem;
  margin: 0 .35rem 0 0;
  color: var(--indigo);
}

.hero-figure {
  margin: 0;
}

.hero-card {
  background: var(--paper-raised);
  padding: clamp(.65rem, 1.6vw, 1rem);
  border: var(--hairline);
  box-shadow: 0 26px 60px -38px rgba(18, 16, 85, .40);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-figure figcaption {
  margin-top: 1rem;
  font-size: .78rem;
  line-height: 1.62;
  color: var(--indigo-mid);
  max-width: 30em;
}

.fig-no {
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-right: .55rem;
}

/* the asymmetric split + overlap only above the stacking breakpoint */
@media (min-width: 920px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .68fr);
    column-gap: 0;
    align-items: center;
  }

  .hero-copy {
    grid-column: 1 / 2;
    grid-row: 1;
    position: relative;
    z-index: 1;
    background: var(--paper-raised);
    border: var(--hairline);
    padding: clamp(2.25rem, 4vw, 3.5rem);
    padding-right: clamp(5rem, 11vw, 9rem);
  }

  /* image card breaks out of its column and overlaps the copy block */
  .hero-figure {
    grid-column: 2 / 3;
    grid-row: 1;
    position: relative;
    z-index: 2;
    margin-left: calc(-1 * clamp(3.5rem, 8vw, 7rem));
    margin-top: clamp(2rem, 5vw, 4rem);
  }

  .hero-card {
    box-shadow: 0 34px 70px -40px rgba(18, 16, 85, .45);
  }
}

/* --------------------------------------------------------------------------
   ARTICLE — drop cap lead + varying column rhythm
   -------------------------------------------------------------------------- */

.article {
  padding-block: var(--band-gap);
}

.article-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.article-head h2 {
  font-size: clamp(1.75rem, 1.25rem + 2.1vw, 2.9rem);
  font-style: italic;
  font-weight: 400;
}

.article-body {
  border-top: var(--hairline);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.lede {
  font-size: clamp(1.1rem, 1.02rem + .5vw, 1.32rem);
  line-height: 1.62;
  color: var(--ink);
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lede::first-letter {
  float: left;
  font-family: var(--display);
  font-weight: 600;
  font-size: 4.1em;
  line-height: .78;
  color: var(--indigo);
  padding: .08em .12em 0 0;
  margin-right: .04em;
}

.band {
  margin-bottom: clamp(2rem, 4.5vw, 3.4rem);
  column-gap: clamp(1.75rem, 4vw, 3rem);
  column-rule: var(--hairline);
}

.band>h2 {
  column-span: all;
  -webkit-column-span: all;
  margin-top: 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule-strong);
  font-size: clamp(1.45rem, 1.2rem + 1.1vw, 2rem);
}

.band>*:last-child {
  margin-bottom: 0;
}

.band-1 {
  columns: 1;
  max-width: 48rem;
}

@media (min-width: 760px) {
  .band-2 {
    columns: 2;
  }
}

@media (min-width: 760px) {
  .band-3 {
    columns: 2;
  }
}

@media (min-width: 1060px) {
  .band-3 {
    columns: 3;
    font-size: .95rem;
  }
}

.tick-list,
.num-list {
  margin: 0 0 1.15em;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding: 0 0 .85rem 1.5rem;
  margin-bottom: .85rem;
  border-bottom: var(--hairline);
  break-inside: avoid;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: .5rem;
  height: .5rem;
  background: var(--coral);
  border: 1px solid var(--coral-deep);
  transform: rotate(45deg);
}

.tick-list li:last-child {
  border-bottom: 0;
}

.num-list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: var(--hairline);
  break-inside: avoid;
}

.num-list li:first-child {
  border-top: var(--hairline);
}

.num-mark {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-strong);
  background: var(--wash-indigo);
  color: var(--indigo);
  margin-top: .15rem;
}

.num-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.inline-figure {
  margin: clamp(2.25rem, 5vw, 3.5rem) 0;
  padding: clamp(.65rem, 1.6vw, 1rem);
  background: var(--paper-raised);
  border: var(--hairline);
}

.inline-figure img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.inline-figure figcaption {
  margin-top: 1rem;
  padding: 0 .25rem .25rem;
  font-size: .78rem;
  line-height: 1.62;
  color: var(--indigo-mid);
  max-width: 46em;
}

/* editorial note */
.ed-note {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--wash-coral);
  border: 1px solid var(--rule-strong);
}

.ed-icon {
  flex: none;
  color: var(--coral-deep);
}

.ed-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.ed-title {
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: .5rem;
}

.ed-note p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.68;
  color: var(--ink);
}

@media (max-width: 520px) {
  .ed-note {
    flex-direction: column;
    gap: .85rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION HEADS
   -------------------------------------------------------------------------- */

.sec-head {
  max-width: 46rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.sec-dek {
  margin: 0;
  color: var(--indigo-mid);
  font-size: 1rem;
  max-width: 38em;
}

/* --------------------------------------------------------------------------
   FEATURES — alternating left/right zigzag rows
   -------------------------------------------------------------------------- */

.features {
  padding-block: var(--band-gap);
  border-top: var(--hairline);
  background: linear-gradient(180deg, var(--paper-raised), var(--paper));
}

.zig {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.zig-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  border-bottom: var(--hairline);
}

.zig-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zig-panel {
  position: relative;
  overflow: hidden;
  min-height: 11rem;
  display: grid;
  place-items: center;
  background: var(--wash-indigo);
  border: var(--hairline);
  color: var(--indigo);
}

.zig-panel .wm {
  position: absolute;
  width: 17rem;
  height: 17rem;
  max-width: none;
  right: -3.5rem;
  bottom: -4rem;
  color: var(--indigo);
  opacity: .085;
  pointer-events: none;
}

.zig-panel .fg {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--coral-deep);
}

.zig-body h3 {
  margin-bottom: .55rem;
}

.zig-body p {
  margin: 0;
  color: var(--ink);
  font-size: .96rem;
}

.zig-body .caps {
  margin-bottom: .6rem;
  color: var(--coral-deep);
}

@media (min-width: 820px) {
  .zig-row {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .zig-panel {
    min-height: 13.5rem;
  }

  /* alternate: even rows put the panel on the right */
  .zig-row:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  }

  .zig-row:nth-child(even) .zig-panel {
    grid-column: 2;
    grid-row: 1;
  }

  .zig-row:nth-child(even) .zig-body {
    grid-column: 1;
    grid-row: 1;
  }

  .zig-row:nth-child(even) .zig-panel .wm {
    right: auto;
    left: -3.5rem;
  }
}

/* --------------------------------------------------------------------------
   STEPS — diagonal step ladder
   -------------------------------------------------------------------------- */

.steps {
  padding-block: var(--band-gap);
  border-top: var(--hairline);
}

.ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  --stagger: 0rem;
}

.ladder-step {
  position: relative;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-left: calc(var(--i) * var(--stagger));
  padding: clamp(1.15rem, 2.6vw, 1.6rem);
  background: var(--paper-raised);
  border: var(--hairline);
  border-left: 3px solid var(--coral);
}

.ladder-step:hover {
  border-left-color: var(--coral-deep);
}

.step-mark {
  position: relative;
  flex: none;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  background: var(--wash-indigo);
}

.step-mark .wm {
  position: absolute;
  width: 5.6rem;
  height: 5.6rem;
  max-width: none;
  right: -1.7rem;
  bottom: -1.7rem;
  color: var(--indigo);
  opacity: .12;
  pointer-events: none;
}

.step-mark .fg {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--indigo);
}

.step-body h3 {
  margin-bottom: .45rem;
}

.step-body .caps {
  margin-bottom: .5rem;
  color: var(--coral-deep);
}

.step-body p {
  margin: 0;
  font-size: .94rem;
  color: var(--ink);
}

@media (min-width: 900px) {
  .ladder {
    /* progressive offset; 6 steps x 2.6rem = 15.6rem max, inside the wrap */
    --stagger: clamp(1rem, 2.2vw, 2.6rem);
  }

  .ladder-step {
    max-width: 52rem;
  }
}

/* --------------------------------------------------------------------------
   FAQ — bordered grid
   -------------------------------------------------------------------------- */

.faq {
  padding-block: var(--band-gap);
  border-top: var(--hairline);
  background: var(--paper-raised);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: var(--hairline);
}

@media (min-width: 860px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item {
  background: var(--paper);
  min-width: 0;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  list-style: none;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  font-family: var(--display);
  font-size: clamp(1.02rem, .98rem + .25vw, 1.16rem);
  line-height: 1.32;
  color: var(--indigo);
  transition: background .18s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--wash-indigo);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: -3px;
}

.chev {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-strong);
  color: var(--coral-deep);
  margin-top: .12rem;
  transition: transform .22s ease, background .22s ease;
}

.chev svg {
  width: .85rem;
  height: .85rem;
}

.faq-item[open] .chev {
  transform: rotate(135deg);
  background: var(--coral);
  color: var(--indigo);
}

.faq-a {
  padding: 0 clamp(1.1rem, 2.4vw, 1.5rem) clamp(1.1rem, 2.4vw, 1.5rem);
}

.faq-a p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink);
  border-top: var(--hairline);
  padding-top: .95rem;
}

/* --------------------------------------------------------------------------
   NEWSLETTER — centered stack on a tinted band
   -------------------------------------------------------------------------- */

.news {
  padding-block: var(--band-gap);
  background: var(--wash-coral);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}

.news-stack {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.news-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  background: var(--paper-raised);
  margin-bottom: 1.5rem;
}

.news-icon .wm {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  max-width: none;
  right: -2.3rem;
  bottom: -2.3rem;
  color: var(--indigo);
  opacity: .12;
}

.news-icon .fg {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--indigo);
}

.news-stack .caps {
  color: var(--coral-deep);
}

.news-dek {
  color: var(--ink);
  max-width: 34em;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.news-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: .75rem;
  text-align: left;
}

.field {
  flex: 1 1 17rem;
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: .4rem;
}

.field input {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-raised);
  border: 1px solid var(--rule-strong);
  padding: .8rem .9rem;
  border-radius: 0;
}

.field input::placeholder {
  color: #6E7191;
}

.field.is-bad input {
  border-color: var(--coral-deep);
}

.btn {
  flex: 0 0 auto;
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--indigo);
  border: 1px solid var(--indigo);
  padding: .95rem 1.6rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.btn:hover {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
}

.err {
  flex: 1 1 100%;
  margin: 0;
  font-size: .83rem;
  color: var(--coral-deep);
  font-weight: 700;
}

.news-form .fineprint {
  flex: 1 1 100%;
  margin: .35rem 0 0;
  text-align: center;
}

.news-done {
  border: 1px solid var(--rule-strong);
  background: var(--paper-raised);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.news-done p {
  margin: 0 0 .5rem;
}

.news-done p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   FOOTER — light band so the logo sits on it directly
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--paper-deep);
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 2.5rem);
  border-top: 3px solid var(--indigo);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.15rem;
}

.footer-brand p {
  margin: 0;
  font-size: .88rem;
  color: var(--indigo-mid);
  max-width: 30em;
}

.footer-col h3 {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--rule-strong);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  font-size: .9rem;
  color: var(--indigo-mid);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.pending-flag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  border: 1px dashed var(--coral-deep);
  padding: .3rem .55rem;
  display: inline-block;
  margin: 0 0 .9rem;
}

.site-footer address {
  font-style: normal;
  font-size: .88rem;
  line-height: 1.65;
  color: var(--indigo-mid);
  display: grid;
  gap: .5rem;
}

.site-footer address b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--indigo);
}

.site-footer address a {
  color: var(--indigo-mid);
}

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule-strong);
}

.cprt {
  margin: 0 0 .5rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
}

.footer-bottom .fineprint {
  margin: 0;
  max-width: 60em;
}

/* --------------------------------------------------------------------------
   SUBPAGES (about / contact / disclaimer / privacy / terms)
   -------------------------------------------------------------------------- */

.page-hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: var(--hairline);
}

.page-hero h1 {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  margin-bottom: .45em;
}

.page-hero p {
  margin: 0;
  max-width: 42em;
  font-size: clamp(1rem, .96rem + .3vw, 1.15rem);
  color: var(--indigo-mid);
}

.prose {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.prose .wrap {
  max-width: 52rem;
}

.prose h2 {
  font-size: clamp(1.35rem, 1.15rem + .9vw, 1.8rem);
  margin-top: 2.2em;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-strong);
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.8em;
}

.prose ul,
.prose ol {
  padding-left: 1.15rem;
  margin: 0 0 1.15em;
}

.prose li {
  margin-bottom: .55em;
}

.prose li::marker {
  color: var(--coral-deep);
}

.contact-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: var(--hairline);
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ccard {
  background: var(--paper-raised);
  padding: clamp(1.15rem, 2.6vw, 1.6rem);
}

.ccard h3 {
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 .75rem;
}

.ccard p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink);
}

.last-updated {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo-mid);
  border-bottom: var(--hairline);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   CONTACT FORM — contact.html only. Scoped to .cform-* so the newsletter
   .field styles on index.html are untouched. Hairline box (--rule-strong)
   with an indigo-mid baseline so each field edge clears 3:1; square corners,
   small-caps labels, the same white-on-wash language as the newsletter.
   -------------------------------------------------------------------------- */

.prose .cform-section>h2 {
  margin-top: 2.2em;
}

.cform-panel {
  margin: 1.75rem 0 .5rem;
  padding: clamp(1.35rem, 4vw, 2.75rem);
  background: var(--paper-raised);
  border: var(--hairline);
  border-top: 3px solid var(--coral);
}

.cform-legend {
  margin-bottom: 1.75rem;
  padding-bottom: .85rem;
  border-bottom: var(--hairline);
}

.cform-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 640px) {
  .cform-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cform-field {
  min-width: 0;
  margin-bottom: 1.6rem;
}

.cform-field label {
  display: block;
  margin-bottom: .5rem;
  color: var(--indigo);
}

.cform input,
.cform select,
.cform textarea {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-bottom-color: var(--indigo-mid);
  border-radius: 0;
  padding: .8rem .9rem;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .18s ease, background .18s ease;
}

.cform textarea {
  min-height: 11rem;
  resize: vertical;
}

.cform input:hover,
.cform select:hover,
.cform textarea:hover {
  border-color: var(--indigo-mid);
}

.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  background: var(--paper-raised);
  border-color: var(--indigo);
}

.cform input:focus-visible,
.cform select:focus-visible,
.cform textarea:focus-visible,
.cform .btn:focus-visible,
.cform-status button:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 0;
}

/* custom chevron drawn in CSS so no extra colour is introduced */
.cform-select {
  position: relative;
  display: block;
}

.cform select {
  padding-right: 2.75rem;
  cursor: pointer;
}

.cform-select::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: .5rem;
  height: .5rem;
  margin-top: -.4rem;
  border-right: 1.5px solid var(--coral-deep);
  border-bottom: 1.5px solid var(--coral-deep);
  transform: rotate(45deg);
  pointer-events: none;
}

.cform [aria-invalid="true"] {
  border-color: var(--coral-deep);
  border-bottom-width: 2px;
  background: var(--paper-raised);
}

.cform-err {
  margin: .5rem 0 0;
  padding-left: .85rem;
  border-left: 2px solid var(--coral);
  font-size: .83rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--coral-deep);
}

.cform-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .25rem 1rem;
}

.cform-meta .cform-err {
  flex: 1 1 14rem;
}

.cform-count {
  margin: .5rem 0 0 auto;
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--indigo-mid);
  font-variant-numeric: tabular-nums;
}

.cform-count.is-near {
  color: var(--coral-deep);
  font-weight: 700;
}

.cform-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  padding-top: 1.5rem;
  border-top: var(--hairline);
}

.cform-actions .fineprint {
  flex: 1 1 18rem;
  margin: 0;
}

.cform-status:empty {
  display: none;
}

.cform-status .news-done {
  border-left: 3px solid var(--coral);
}

.cform-status .news-done:focus {
  outline: none;
}

.cform-status .news-done:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

.cform-back {
  margin-top: .35rem;
  padding: 0;
  font: inherit;
  font-size: .83rem;
  color: var(--indigo);
  background: none;
  border: 0;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: .18em;
  cursor: pointer;
}

.cform-back:hover {
  color: var(--coral-deep);
}

/* without JavaScript the form cannot compose a message: show the address */
.cform-nojs {
  display: none;
  margin: 0;
}

.no-js .cform,
.no-js .cform-status {
  display: none;
}

.no-js .cform-nojs {
  display: block;
}

@media (max-width: 480px) {
  .cform-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   NARROW SCREENS — safety net
   -------------------------------------------------------------------------- */

@media (max-width: 899px) {

  /* ladder becomes a straight column */
  .ladder-step {
    margin-left: 0;
  }
}

@media (max-width: 759px) {

  /* every multi-column band collapses to one */
  .band-2,
  .band-3 {
    columns: 1;
  }
}

@media (max-width: 420px) {
  .ladder-step,
  .zig-row {
    gap: .9rem;
  }

  .step-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .faq-item summary {
    gap: .75rem;
  }
}
