/* ==========================================================================
   Kent Hedges, kenthedges.co.uk
   Visual direction: regal, traditional, long-established. Deep racing green,
   warm parchment, antique gold, heraldic claret. Serif throughout.
   No SaaS card grids, no soft shadows, no gradients, no rounded pills.
   ========================================================================== */

:root {
  /* Palette */
  --green:        #16332B;   /* primary, dominant */
  --green-deep:   #0F241E;   /* deeper green for panels */
  --green-mid:    #234A3E;   /* raised green */
  --parchment:    #F3ECDD;   /* page background */
  --parchment-2:  #EDE4D1;   /* alternate band */
  --gold:         #A8853B;   /* accent, rules and marks only */
  --gold-pale:    #C6A860;   /* gold for large display text on green */
  --gold-light:   #D4B978;   /* gold for SMALL text on green, AA at 12px bold */
  --gold-ink:     #7A5F22;   /* gold for SMALL text on parchment, AA at 12px */
  --claret:       #5C1A1B;   /* secondary accent, heraldic */
  --stone:        #5C574D;   /* secondary text on parchment, AA at 6.1:1 */
  --stone-light:  #6B665C;   /* secondary text, large sizes only */
  --ivory:        #DCD2B8;   /* hairline dividers, body text on green */
  --ivory-soft:   #C9BE9F;

  /* Type */
  --display: 'Cormorant Garamond', 'Cormorant', 'Times New Roman', Georgia, serif;
  --body:    'Lora', 'PT Serif', Georgia, 'Times New Roman', serif;

  /* Measure */
  --shell: 1180px;
  --shell-narrow: 820px;
}

/* --------------------------------------------------------------- reset ---- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--green);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

/* ---------------------------------------------------------- typography ---- */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15em; }

a {
  color: var(--claret);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(92, 26, 27, 0.4);
}
a:hover { text-decoration-color: var(--claret); }

strong { font-weight: 700; }

blockquote {
  margin: 2rem 0;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--green);
}

/* Eyebrow / label: small caps, wide tracking. Used above headings. */
.eyebrow {
  display: block;
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--claret);
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--ivory { color: var(--ivory); }

.lede {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.5;
  color: var(--green);
  font-weight: 400;
}

.small { font-size: 0.9375rem; color: var(--stone); }

/* ------------------------------------------------------------- layout ---- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.shell--narrow { max-width: var(--shell-narrow); }

section { position: relative; }

.band { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.band--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.band--green { background: var(--green); color: var(--ivory); }
.band--green h1, .band--green h2, .band--green h3, .band--green h4 { color: #F6F1E4; }
.band--green .lede { color: var(--ivory); }
.band--green a { color: var(--gold-pale); text-decoration-color: rgba(198,168,96,0.45); }
.band--green a:hover { text-decoration-color: var(--gold-pale); }
.band--alt { background: var(--parchment-2); }

/* Asymmetric two-column block: narrow label rail, wide prose. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split--flip > :first-child { order: 2; }

.rail { position: relative; }
.rail h2 { margin-bottom: 0.4em; }

@media (max-width: 860px) {
  .split, .split--even { grid-template-columns: 1fr; gap: 2rem; }
  .split--flip > :first-child { order: 0; }
}

/* ---------------------------------------------------------- ornaments ---- */

/* Thin hairline rule, gold. */
.rule {
  border: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0;
}
.rule--ivory { background: var(--ivory-soft); opacity: 0.9; }
.rule--short { width: 84px; margin: 1.6rem 0; opacity: 1; height: 2px; }
.rule--centre { margin-left: auto; margin-right: auto; }

/* Hairline with a centred gold lozenge. Section divider. */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.ornament span {
  width: 9px; height: 9px;
  transform: rotate(45deg);
  background: currentColor;
  flex: 0 0 auto;
}

/* Double rule, broadsheet style. */
.rule-double {
  border: 0;
  height: 4px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  background: transparent;
  opacity: 0.7;
  margin: 0;
}

/* ------------------------------------------------------------- crest ---- */

/* One piece of markup, two palettes, driven by custom properties. */
.crest {
  display: block;
  --crest-line:     var(--green);   /* shield outline */
  --crest-chief:    var(--green);   /* top band */
  --crest-field:    #F8F4E9;        /* shield field */
  --crest-charge:   var(--green);   /* the clipped hedge */
  --crest-leaf:     var(--gold);    /* three leaves on the chief */
  --crest-leafrib:  var(--green);   /* leaf midribs */
  --crest-shears:   var(--gold);    /* shears in saltire */
  --crest-rib:      var(--gold);    /* foliage striations on the hedge */
  --crest-chiefline: var(--gold);   /* rule under the chief */
  --crest-key:      var(--gold);    /* inner keyline */
}
.crest--on-green {
  --crest-line:     var(--gold);
  --crest-chief:    var(--gold);
  --crest-field:    transparent;
  --crest-charge:   var(--ivory);
  --crest-leaf:     var(--green-deep);
  --crest-leafrib:  var(--gold-pale);
  --crest-shears:   var(--gold-pale);
  --crest-rib:      var(--green-deep);
  --crest-chiefline: var(--green-deep);
  --crest-key:      var(--gold-pale);
}
.crest--sm { width: 46px; }
.crest--md { width: 84px; }
.crest--lg { width: clamp(110px, 15vw, 150px); }

/* --------------------------------------------------------- masthead ---- */

.utility {
  background: var(--green-deep);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.utility .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 40px;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.utility a { color: var(--ivory); text-decoration: none; font-weight: 700; }
.utility a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.utility__note { color: var(--ivory-soft); letter-spacing: 0.16em; }
@media (max-width: 700px) {
  .utility__note { display: none; }
  .utility .shell { justify-content: center; }
}

.masthead {
  background: var(--parchment);
  border-bottom: 1px solid var(--ivory-soft);
  padding: 1.6rem 0 0;
}
.masthead__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--green);
  gap: 0.7rem;
}
.masthead__brand:hover { text-decoration: none; }
.masthead__wordmark {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: var(--green);
}
.masthead__tagline {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}

@media (max-width: 560px) {
  /* Keep the strapline on one line rather than orphaning "Kent". */
  .masthead__tagline { font-size: 0.6875rem; letter-spacing: 0.18em; }
  .masthead__wordmark { letter-spacing: 0.18em; }
}

/* Navigation, small caps, centred, separated by hairlines. */
.nav {
  margin-top: 1.4rem;
  border-top: 1px solid var(--ivory-soft);
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.nav__list a {
  display: block;
  padding: 0.95rem 1.15rem;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
}
.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--claret);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav__toggle {
  display: none;
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--green);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .masthead { position: relative; }
  .nav__toggle { display: block; }
  .nav { margin-top: 1.2rem; }
  .nav__list {
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav[data-open="true"] .nav__list { display: flex; }
  .nav__list li + li { border-top: 1px solid var(--ivory-soft); }
  .nav__list a { text-align: center; padding: 0.9rem 1rem; }
}

/* ---------------------------------------------------------------- hero ---- */

.hero {
  background: var(--green);
  color: var(--ivory);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Faint heraldic diaper pattern, pure CSS, no images, very low contrast. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(220,210,184,0.045) 25%, transparent 25%, transparent 75%, rgba(220,210,184,0.045) 75%),
    linear-gradient(45deg, rgba(220,210,184,0.045) 25%, transparent 25%, transparent 75%, rgba(220,210,184,0.045) 75%);
  background-size: 34px 34px;
  background-position: 0 0, 17px 17px;
  pointer-events: none;
}
.hero > * { position: relative; }

.hero__inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 1.5rem 0 0;
  color: #F6F1E4;
}
.hero__positioning {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--ivory);
  margin: 1.1rem 0 0;
  max-width: 34ch;
}
.hero .rule--short { background: var(--gold); }

/* Positioning ladder: cheap gardener <- YOU -> tree surgeon */
.ladder {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--gold);
  margin: 2.6rem 0 0;
  width: 100%;
  text-align: left;
}
.ladder__cell {
  padding: 1.2rem 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ivory-soft);
}
.ladder__cell + .ladder__cell { border-left: 1px solid rgba(168,133,59,0.55); }
.ladder__cell--mid {
  background: var(--green-mid);
  color: #F6F1E4;
  text-align: center;
  min-width: 210px;
}
.ladder__label {
  display: block;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.ladder__cell--mid .ladder__name {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F6F1E4;
  margin-bottom: 0.15rem;
}
@media (max-width: 760px) {
  .ladder { grid-template-columns: 1fr; }
  .ladder__cell + .ladder__cell { border-left: 0; border-top: 1px solid rgba(168,133,59,0.55); }
  .ladder__cell--mid { min-width: 0; }
}

/* Page header for inner pages. */
.pagehead {
  background: var(--green);
  color: var(--ivory);
  padding: clamp(2.75rem, 6vw, 4.75rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}
.pagehead h1 { color: #F6F1E4; margin-bottom: 0.35em; }
.pagehead .lede { color: var(--ivory); max-width: 60ch; }
.pagehead .rule--short { background: var(--gold); }

/* -------------------------------------------------------- breadcrumbs ---- */

.crumbs {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin: 0 0 1.4rem;
}
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.crumbs li::after { content: "/"; margin-left: 0.55rem; color: var(--gold); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid rgba(220,210,184,0.35); }
.crumbs a:hover { border-bottom-color: var(--gold); }

/* ------------------------------------------------------------- ledger ---- */
/* The service list and the Standard are set as a ledger, not as cards. */

.ledger { border-top: 1px solid var(--ivory-soft); }
.ledger__row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ivory-soft);
  align-items: baseline;
}
.ledger__num {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-ink);
  font-variant-numeric: lining-nums;
}
.ledger__title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.ledger__title a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(168,133,59,0.6); }
.ledger__title a:hover { color: var(--claret); border-bottom-color: var(--claret); }
.ledger__body { margin: 0; color: var(--stone); font-size: 1rem; }
.ledger__body p:last-child { margin-bottom: 0; }

.ledger--green { border-top-color: rgba(220,210,184,0.35); }
.ledger--green .ledger__row { border-bottom-color: rgba(220,210,184,0.3); }
.ledger--green .ledger__title { color: #F6F1E4; }
.ledger--green .ledger__body { color: var(--ivory-soft); }
.ledger--green .ledger__num { color: var(--gold-light); }

@media (max-width: 760px) {
  .ledger__row {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.35rem 1rem;
    padding: 1.35rem 0;
  }
  .ledger__body { grid-column: 2; }
}

/* Two-column prose list with hairline separators, no boxes. */
.notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 clamp(2rem, 4vw, 3.5rem);
}
.notes li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--ivory-soft);
}
.notes strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}
.notes--green li { border-bottom-color: rgba(220,210,184,0.3); }
.notes--green strong { color: #F6F1E4; }

/* Plain checked list with gold marks. */
.marks { list-style: none; margin: 0 0 1.15em; padding: 0; }
.marks li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; }
.marks li::before {
  content: "";
  position: absolute;
  left: 0.15rem; top: 0.72em;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.marks--green li::before { background: var(--gold-pale); }

/* ------------------------------------------------------------ feature ---- */
/* HedgeCare callout. Bordered green panel with gold inner keyline. */

.feature {
  background: var(--green);
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  position: relative;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(168,133,59,0.45);
  pointer-events: none;
}
.feature h2, .feature h3 { color: #F6F1E4; }
.feature .lede { color: var(--ivory); }
.feature a { color: var(--gold-pale); }

/* Bordered parchment panel, keyline only, no shadow, no radius. */
.panel {
  border: 1px solid var(--gold);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--parchment);
}
.panel--alt { background: #F8F3E8; }
.panel h3:first-child, .panel h2:first-child { margin-top: 0; }
.panel > :last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- certificate -- */
/* The Kent Hedge Standard, presented as a charter. */

.charter {
  background: #F8F4E9;
  border: 2px solid var(--green);
  padding: clamp(1.75rem, 5vw, 4rem);
  position: relative;
}
.charter::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.charter__head { text-align: center; }
.charter__head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}
.charter__seal { margin: 0 auto 1.25rem; width: clamp(90px, 12vw, 120px); }
.charter__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.5rem;
  text-align: center;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gold);
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Numbered charter articles. */
.articles { counter-reset: article; list-style: none; margin: 2.5rem 0 0; padding: 0; }
.articles > li {
  counter-increment: article;
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--ivory-soft);
}
.articles > li::before {
  content: counter(article, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-ink);
  line-height: 1;
  padding-top: 0.2rem;
}
.articles h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.06em;
}
.articles p { margin: 0; color: var(--stone); }
@media (max-width: 620px) {
  .articles > li { grid-template-columns: 2.75rem minmax(0, 1fr); gap: 0 1rem; }
  .articles > li::before { font-size: 1.25rem; }
}

/* ------------------------------------------------------------- buttons ---- */
/* Squared, keyline, letterspaced small caps. No pills, no gradients. */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: #F6F1E4;
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms linear, color 120ms linear;
}
.btn:hover { background: var(--green-deep); color: #fff; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #F6F1E4; }
.btn--gold { background: transparent; border-color: var(--gold); color: var(--gold-pale); }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.btn--claret { background: var(--claret); border-color: var(--claret); }
.btn--claret:hover { background: #4A1516; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* --------------------------------------------------------- credentials ---- */

.creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  border: 1px solid var(--gold);
}
.creds > div {
  padding: 1.6rem 1.5rem;
  border-right: 1px solid rgba(168,133,59,0.4);
}
.creds > div:last-child { border-right: 0; }
.creds dt {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.5rem;
}
.creds dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.3;
  color: inherit;
}
.creds dd small { display: block; font-family: var(--body); font-size: 0.875rem; line-height: 1.5; color: var(--stone); margin-top: 0.35rem; }
.band--green .creds dd small, .feature .creds dd small { color: var(--ivory-soft); }
.band--green .creds dt, .feature .creds dt { color: var(--gold-light); }
@media (max-width: 700px) {
  .creds > div { border-right: 0; border-bottom: 1px solid rgba(168,133,59,0.4); }
  .creds > div:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------- areas ---- */

.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 4 12rem;
  column-gap: 2.5rem;
}
.areas-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ivory-soft);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  break-inside: avoid;
}

/* ---------------------------------------------------------------- form ---- */

.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.field .hint { font-size: 0.875rem; color: var(--stone); letter-spacing: 0; text-transform: none; font-family: var(--body); font-weight: 400; }
input, select, textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--green);
  background: #FBF7EE;
  border: 1px solid var(--stone-light);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  width: 100%;
}
input:focus, select, textarea:focus { outline: none; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
textarea { min-height: 170px; resize: vertical; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  border-left: 3px solid var(--claret);
  background: #F8EFE6;
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}

/* -------------------------------------------------------- contact card ---- */

.contact-card { border: 1px solid var(--gold); padding: clamp(1.5rem, 3vw, 2.25rem); background: #F8F4E9; }
.contact-card dl { margin: 0; }
.contact-card dt {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--claret);
  margin-top: 1.35rem;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { margin: 0.3rem 0 0; font-family: var(--display); font-size: 1.25rem; }

/* --------------------------------------------------------------- FAQ ---- */

.faq { border-top: 1px solid var(--ivory-soft); }
.faq details { border-bottom: 1px solid var(--ivory-soft); }
.faq summary {
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  position: relative;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.35rem; top: 1rem;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 0 1.35rem; color: var(--stone); }
.faq details > div > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- footer ---- */

.footer {
  background: var(--green-deep);
  color: var(--ivory-soft);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.9375rem;
}
.footer a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid rgba(220,210,184,0.25); }
.footer a:hover { border-bottom-color: var(--gold); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h2 {
  font-size: 0.75rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer__brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer__wordmark {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F6F1E4;
  margin: 0 0 0.5rem;
}
.footer__legal {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(220,210,184,0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #A79E88;
}

/* ------------------------------------------------------------ utility ---- */

.centre { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.5rem; }
.measure { max-width: 66ch; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: #F6F1E4;
  padding: 0.75rem 1.25rem; z-index: 50;
  font-family: var(--display); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8125rem;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- focus ---- */

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.band--green :focus-visible, .hero :focus-visible, .footer :focus-visible, .utility :focus-visible {
  outline-color: var(--gold-pale);
}

/* ------------------------------------------------------------- motion ---- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------- print ---- */

@media print {
  .utility, .nav, .footer, .btn-row { display: none; }
  body { background: #fff; }
  .charter { border-color: #000; }
}
