@import url('/assets/fonts.css');

/* ==========================================================================
   ELEMENT STAFFING
   --------------------------------------------------------------------------
   Implements the confirmed identity — Round 4, "Bottle. Confirmed."

   Palette      Bottle #06302F · Cream #F2ECDD · Verdigris #7FA79E ·
                Slate #14211F · Stone #DDD3C1
   Display      Newsreader 400. Tracking -1.5%. Never below 20px, never bold.
   Text         Archivo 400/500/600. Labels uppercase at 0.4em tracking.
                Body 16px minimum.
   Mark         The "E" tile. Full tile with name above 100px; number and
                letter 100–48px; letter alone below 48px; clear space on all
                sides is one third of the tile.

   Cream is the ground — never pure white. Bottle is the primary. Verdigris is
   used sparingly, mostly as labels on bottle. Slate carries body copy so the
   mark stays the accent.
   ========================================================================== */

:root {
  /* ---- Brand ----------------------------------------------------------- */
  --bottle: #06302f;
  --cream: #f2ecdd;
  --verdigris: #7fa79e;
  --slate: #14211f;
  --stone: #ddd3c1;

  /* Supporting tones, all drawn from the identity sheet. */
  --bottle-deep: #04211f; /* deeper ground for large fields */
  --bottle-rule: #1e4442; /* hairlines on bottle */
  --bottle-mid: #3e6a64; /* labels on cream, verdigris too pale there */
  --moss: #4c6b65;
  --sage: #6c7c74; /* muted text on cream */
  --ash: #4a5551; /* secondary body on cream */
  --cream-warm: #ede6d5; /* alternating section ground */
  --cream-deep: #e5dcc8; /* third ground, cards on cream-warm */
  --rule: #d5ccb8; /* borders on cream */
  --rule-soft: #e2d9c6;

  /* Both audience paths sit inside the one palette. They are separated by
     ground and weight, not by inventing two more accent colours. */
  --tint: var(--bottle);
  --tint-ground: var(--cream-warm);

  /* ---- Type ------------------------------------------------------------ */
  --display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --text: 'Archivo', ui-sans-serif, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;

  --t-hero: clamp(2.4rem, 1.15rem + 4.9vw, 4.75rem);
  --t-h1: clamp(2.4rem, 1.4rem + 4vw, 4.5rem);
  --t-h2: clamp(1.9rem, 1.25rem + 2.6vw, 3.2rem);
  --t-h3: clamp(1.25rem, 1.08rem + 0.6vw, 1.55rem);
  --t-lead: clamp(1.0625rem, 1rem + 0.45vw, 1.3rem);
  --t-body: 1rem;
  --t-sm: 0.9375rem;
  --t-xs: 0.8125rem;
  --t-label: 0.6875rem;

  /* ---- Space ----------------------------------------------------------- */
  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --section-y: clamp(4rem, 9vw, 8.5rem);
  --max: 1180px;
  --max-wide: 1420px;
  --ring: 0 0 0 2px var(--cream), 0 0 0 4px var(--bottle);
}

/* Ground shifts per audience path; the accent never changes. */
[data-theme='private'] {
  --tint-ground: #ede4d2;
}
[data-theme='business'] {
  --tint-ground: #e6e5da;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--cream);
  color: var(--slate);
  font-family: var(--text);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Newsreader carries every heading. Regular weight only — the identity sheet
   is explicit that it is never set bold. */
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--bottle);
}

p {
  text-wrap: pretty;
}
a {
  color: inherit;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

::selection {
  background: var(--bottle);
  color: var(--cream);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 200;
  background: var(--bottle);
  color: var(--cream);
  padding: 0.8rem 1.35rem;
  text-decoration: none;
  font-size: var(--t-sm);
}
.skip-link:focus {
  top: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

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

.section {
  padding-block: var(--section-y);
}
.section--muted {
  background: var(--cream-warm);
}
.section--ink {
  background: var(--bottle);
  color: #cfd8d3;
}
.section--ink h2,
.section--ink h3 {
  color: var(--cream);
}

.section-head {
  max-width: 44ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head__title {
  font-size: var(--t-h2);
}
.section-head__intro {
  margin-top: 1.25rem;
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ash);
}
.section--ink .section-head__intro {
  color: #9fb0aa;
}

.section-note {
  margin-top: 2rem;
  font-size: var(--t-sm);
  color: var(--sage);
  max-width: 60ch;
}

/* The label style from the identity sheet: Archivo 500, uppercase,
   0.4em tracking. Used for every eyebrow, legend and small caption. */
.eyebrow {
  font-family: var(--text);
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bottle-mid);
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  flex: none;
  opacity: 0.7;
}
.section--ink .eyebrow,
.cta-band .eyebrow,
.hero .eyebrow {
  color: var(--verdigris);
}

.two-col {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
}
@media (min-width: 900px) {
  .two-col {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    align-items: start;
  }
  .two-col__head {
    position: sticky;
    top: 7rem;
  }
}
.two-col__head .section-head {
  margin-bottom: 1.85rem;
}

.prose {
  max-width: 60ch;
}
.prose h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.prose p {
  margin-top: 1.2rem;
  color: var(--ash);
  font-size: var(--t-lead);
  line-height: 1.65;
}

/* ==========================================================================
   The mark — "E" tile, per the identity sheet
   ========================================================================== */

.mark {
  display: inline-flex;
  align-items: stretch;
  gap: 0.7rem;
  color: var(--bottle);
}
.mark__tile {
  width: 2.4rem;
  flex: none;
  background: var(--bottle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.3rem 0.34rem;
}
.mark__num {
  font-family: var(--text);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--verdigris);
}
.mark__sym {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 0.78;
  color: var(--cream);
}
.mark__word {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
}
.mark__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--bottle);
}
.mark__type {
  font-family: var(--text);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--moss);
  padding-left: 0.4em;
}
/* Reversed, for bottle grounds. */
.on-bottle .mark__tile,
.site-footer .mark__tile {
  background: var(--cream);
}
.on-bottle .mark__sym,
.site-footer .mark__sym {
  color: var(--bottle);
}
.on-bottle .mark__num,
.site-footer .mark__num {
  color: var(--bottle-mid);
}
.on-bottle .mark__name,
.site-footer .mark__name {
  color: var(--cream);
}
.on-bottle .mark__type,
.site-footer .mark__type {
  color: var(--verdigris);
}

/* Numbered tile used through the site — same construction as the mark. */
.tile {
  width: 3.4rem;
  height: 3.4rem;
  flex: none;
  background: var(--bottle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.45rem 0.5rem;
}
.tile__num {
  font-family: var(--text);
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--verdigris);
}
.tile__sym {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 0.78;
  color: var(--cream);
}

/* ==========================================================================
   Photographic surfaces
   --------------------------------------------------------------------------
   Every photograph on the site goes through .plate. The bottle overlay does
   three jobs: it keeps a mixed-source image library looking like one system,
   it holds the palette, and it means no image has to carry a surface alone.
   ========================================================================== */

.plate {
  position: relative;
  overflow: hidden;
  background: var(--bottle-deep);
  isolation: isolate;
}
/* Light-touch: enough to pull a mixed library onto one palette, not enough to
   dull the client photography — those are real staff at real events and the
   faces need to look like faces. Composited with plain alpha; `multiply` over
   a light photograph greys it into mud.

   `deep` for standalone panels, `soft` where the image sits inside a card
   with its own copy beneath, `veil` where type sits directly on top. */
.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(1.06);
}
.plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--bottle) 34%, transparent),
    color-mix(in srgb, var(--bottle-deep) 60%, transparent)
  );
}
.plate[data-tone='soft']::after {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--bottle) 14%, transparent),
    color-mix(in srgb, var(--bottle-deep) 34%, transparent)
  );
}
.plate[data-tone='veil']::after {
  background: color-mix(in srgb, var(--bottle-deep) 80%, transparent);
}
.plate--wide {
  aspect-ratio: 16 / 9;
}
.plate--hero {
  aspect-ratio: 16 / 7;
}
.plate--tall {
  aspect-ratio: 3 / 4;
}
.plate--square {
  aspect-ratio: 1;
}
.plate--card {
  aspect-ratio: 4 / 3;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-bg: var(--bottle);
  --btn-fg: var(--cream);
  --btn-bd: var(--bottle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  padding: 0.92rem 1.6rem;
  font-family: var(--text);
  font-size: var(--t-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover {
  --btn-bg: var(--slate);
  --btn-bd: var(--slate);
}
.btn--sm {
  padding: 0.6rem 1.05rem;
  font-size: var(--t-xs);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: var(--t-body);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bottle);
  --btn-bd: var(--rule);
}
.btn--ghost:hover {
  --btn-bg: var(--bottle);
  --btn-fg: var(--cream);
  --btn-bd: var(--bottle);
}
.btn--invert {
  --btn-bg: var(--cream);
  --btn-fg: var(--bottle);
  --btn-bd: var(--cream);
}
.btn--invert:hover {
  --btn-bg: var(--verdigris);
  --btn-bd: var(--verdigris);
  --btn-fg: var(--bottle);
}
.btn--ghost-invert {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: rgba(242, 236, 221, 0.32);
}
.btn--ghost-invert:hover {
  --btn-bg: rgba(242, 236, 221, 0.1);
  --btn-bd: var(--verdigris);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.site-header[data-scrolled] {
  border-bottom-color: var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 5rem;
}
.site-header__brand {
  text-decoration: none;
  flex: none;
}

.site-nav {
  display: none;
  flex: 1;
}
.site-nav__list {
  display: flex;
  gap: clamp(0.9rem, 1.9vw, 1.85rem);
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: var(--t-sm);
  color: var(--ash);
  padding-block: 0.45rem;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--bottle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s;
}
.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--bottle);
}
.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}
.site-header__phone {
  display: none;
  text-decoration: none;
  line-height: 1.2;
}
.site-header__phone-label {
  display: block;
  font-weight: 500;
  font-size: 0.5625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
}
.site-header__phone-num {
  display: block;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--bottle);
}
.site-header .btn {
  display: none;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
}
.nav-toggle__bars {
  display: grid;
  gap: 5px;
  width: 18px;
}
.nav-toggle__bars i {
  display: block;
  height: 1.5px;
  background: var(--bottle);
  transition: transform 0.25s;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--rule);
  padding: 1.25rem var(--gutter) 2rem;
  background: var(--cream);
}
.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--bottle);
}
.mobile-nav__call {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: var(--t-sm);
  text-decoration: none;
  color: var(--bottle-mid);
}

@media (min-width: 940px) {
  .site-nav {
    display: block;
  }
  .site-header__phone {
    display: block;
  }
  .site-header .btn {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* ==========================================================================
   Home hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--bottle);
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media .plate {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
/* Two layers. The diagonal holds a near-solid bottle field under the text
   column and only opens up past it, so the room reads on the right without
   the cream headline ever crossing a bright patch. The second is a bottom
   scrim protecting the lead and the clarifying line. */
.hero__media .plate::after {
  background: linear-gradient(
      to top,
      color-mix(in srgb, var(--bottle) 90%, transparent) 0%,
      transparent 34%
    ),
    linear-gradient(
      100deg,
      color-mix(in srgb, var(--bottle) 96%, transparent) 0%,
      color-mix(in srgb, var(--bottle) 93%, transparent) 40%,
      color-mix(in srgb, var(--bottle) 72%, transparent) 60%,
      color-mix(in srgb, var(--bottle) 34%, transparent) 100%
    );
  mix-blend-mode: normal;
}
/* Slightly darker than the site-wide treatment: the headline sits directly
   on this, so it buys back the contrast the lighter default gives away. */
.hero__media .plate img {
  filter: saturate(0.6) contrast(1.06) brightness(0.94);
}

/* Below the audience split the hero column narrows, so the diagonal would put
   the headline over the bright half. Go back to a flat, safe field. */
@media (max-width: 820px) {
  .hero__media .plate::after {
    background: linear-gradient(
      to bottom,
      color-mix(in srgb, var(--bottle) 88%, transparent),
      color-mix(in srgb, var(--bottle) 96%, transparent)
    );
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(3.5rem, 7vw, 6rem);
}
.hero__title {
  font-size: var(--t-hero);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 15ch;
}
.hero__lead {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  font-size: var(--t-lead);
  line-height: 1.55;
  max-width: 52ch;
  color: #b9c8c2;
}
.hero__clarify {
  margin-top: 1.75rem;
  padding-left: 1.15rem;
  border-left: 1px solid var(--bottle-rule);
  font-size: var(--t-sm);
  color: var(--verdigris);
  max-width: 46ch;
}

/* ==========================================================================
   Page heroes
   ========================================================================== */

.page-hero {
  position: relative;
  background: var(--tint-ground);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.page-hero--tight {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.page-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.page-hero__title {
  font-size: var(--t-h1);
  max-width: 18ch;
}
.page-hero__lead {
  margin-top: 1.6rem;
  font-size: var(--t-lead);
  line-height: 1.58;
  max-width: 54ch;
  color: var(--ash);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

.crumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.85rem;
}
.crumbs a {
  color: inherit;
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--bottle);
}

/* ==========================================================================
   The audience split
   ========================================================================== */

.split {
  padding-bottom: var(--section-y);
  margin-top: calc(-1 * clamp(2rem, 5vw, 4.5rem));
  position: relative;
  z-index: 2;
}
.split__grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 820px) {
  .split__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.path {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s;
}
/* The ratio lives on .plate itself (set via the `ratio` option) rather than
   on this wrapper — an aspect-ratio here does not give the image a definite
   height to resolve against, so cards ended up at each photo's natural
   ratio and the two columns did not line up. */
.path__media {
  display: block;
  position: relative;
}
.path__media .plate img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.path:hover .plate img,
.path:focus-visible .plate img {
  transform: scale(1.04);
}
.path__body-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  flex: 1;
}
.path__kicker {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bottle-mid);
}
.path__title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--bottle);
}
.path__body {
  color: var(--ash);
  font-size: var(--t-sm);
  line-height: 1.58;
  max-width: 38ch;
}
.path__points {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule-soft);
}
.path__points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--t-sm);
  color: var(--slate);
}
.path__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: var(--verdigris);
}
.path__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.85rem;
  font-weight: 500;
  font-size: var(--t-sm);
  color: var(--bottle);
}
.path__cta svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.25s;
}
.path:hover .path__cta svg {
  transform: translateX(5px);
}
.path::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--bottle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.path:hover::after,
.path:focus-visible::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Roles
   ========================================================================== */

.role-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 760px) {
  .role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.role-card {
  position: relative;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.role-card:hover {
  background: var(--cream-warm);
}
.role-card__media {
  display: block;
}
.role-card__inner {
  padding: clamp(1.5rem, 3vw, 2.15rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.role-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.role-card__title {
  font-size: var(--t-h3);
  padding-top: 0.15rem;
}
.role-card__title a {
  text-decoration: none;
}
.role-card__title a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.role-card__body {
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.58;
}
.role-grid__note {
  margin-top: 1.85rem;
  font-size: var(--t-sm);
  color: var(--sage);
}
.role-grid__note a {
  color: var(--bottle);
}

.role-detail__head {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.role-detail__title {
  font-size: var(--t-h2);
}
.role-detail__summary {
  margin-top: 0.9rem;
  font-size: var(--t-lead);
  color: var(--ash);
  line-height: 1.5;
  max-width: 50ch;
}
.role-detail__body {
  display: grid;
  gap: 2.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 900px) {
  .role-detail__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3.5rem;
  }
}
.role-detail__text {
  font-size: var(--t-lead);
  line-height: 1.62;
  color: var(--ash);
}
.role-detail__media {
  margin-top: 2rem;
}
.role-detail__does h3 {
  font-family: var(--text);
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.ticks {
  display: grid;
  gap: 0.9rem;
}
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--slate);
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.3em;
  width: 1rem;
  height: 0.5rem;
  border-left: 1.5px solid var(--bottle-mid);
  border-bottom: 1.5px solid var(--bottle-mid);
  transform: rotate(-45deg);
}
.ticks--lg li {
  font-size: var(--t-body);
  padding-block: 0.35rem;
}
.section--ink .ticks li {
  color: #cfd8d3;
}
.section--ink .ticks li::before {
  border-color: var(--verdigris);
}

.crosses {
  display: grid;
  gap: 1.35rem;
}
.crosses li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--t-body);
  line-height: 1.58;
  color: var(--ash);
}
.crosses li strong {
  color: var(--bottle);
  font-weight: 600;
}
.crosses li::before {
  content: '×';
  position: absolute;
  left: 0.2rem;
  top: -0.12em;
  font-size: 1.3rem;
  color: var(--stone);
}

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  display: grid;
  border-top: 1px solid var(--rule);
}
.steps__item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}
.steps--compact .steps__item {
  align-items: center;
  padding: 1.15rem 0;
}
.steps__index {
  font-family: var(--text);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--bottle-mid);
  flex: none;
  width: 2.75rem;
}
.steps__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-h3);
  letter-spacing: -0.015em;
  color: var(--bottle);
}
.steps--compact .steps__title {
  font-size: 1.15rem;
}
.steps__body {
  margin-top: 0.65rem;
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.58;
  max-width: 60ch;
}
.steps--flow .steps__item {
  padding: 1.9rem 0;
}
.steps--major .steps__item {
  padding: 2.4rem 0;
}
.steps--major .steps__index {
  font-size: var(--t-sm);
  width: 3.5rem;
}
@media (min-width: 760px) {
  .steps--major .steps__title {
    font-size: clamp(1.4rem, 1.05rem + 1.1vw, 1.9rem);
  }
}
.section--ink .steps,
.section--ink .steps__item {
  border-color: var(--bottle-rule);
}
.section--ink .steps__title {
  color: var(--cream);
}
.section--ink .steps__body {
  color: #9fb0aa;
}
.section--ink .steps__index {
  color: var(--verdigris);
}

.mini-steps {
  display: grid;
  gap: 1.3rem;
}
.mini-steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.2rem 0.5rem;
}
.mini-steps__index {
  grid-row: span 2;
  font-weight: 500;
  font-size: var(--t-xs);
  color: var(--bottle-mid);
}
.mini-steps__title {
  font-weight: 500;
  font-size: var(--t-sm);
  color: var(--bottle);
}
.mini-steps__body {
  font-size: var(--t-xs);
  color: var(--sage);
  line-height: 1.5;
}

/* ==========================================================================
   Features, worries, compliance
   ========================================================================== */

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.section--muted .feature {
  background: var(--cream-warm);
}
.feature__index {
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--bottle-mid);
}
.feature__title {
  margin-top: 1.15rem;
  font-size: var(--t-h3);
}
.feature__body {
  margin-top: 0.9rem;
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.6;
}

.worry-list {
  display: grid;
}
.worry {
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 1rem;
}
.worry:last-child {
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .worry {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
  }
}
.worry__q {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
  color: var(--bottle);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.worry__a {
  color: var(--ash);
  line-height: 1.65;
}

.compliance-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 700px) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .compliance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.compliance-item {
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.15rem);
}
.compliance-item h3 {
  font-family: var(--text);
  font-weight: 600;
  font-size: var(--t-body);
  letter-spacing: -0.01em;
  color: var(--bottle);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule-soft);
}
.compliance-item p {
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.6;
}

/* ==========================================================================
   Trust band
   ========================================================================== */

.trust {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 940px) {
  .trust {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }
}
.trust__lead h2 {
  font-size: var(--t-h2);
  max-width: 17ch;
}
.trust__lead p {
  margin-top: 1.4rem;
  color: #9fb0aa;
  line-height: 1.65;
  max-width: 52ch;
}
.section--ink .btn--ghost {
  --btn-fg: var(--cream);
  --btn-bd: rgba(242, 236, 221, 0.32);
}
.section--ink .btn--ghost:hover {
  --btn-bg: rgba(242, 236, 221, 0.1);
  --btn-bd: var(--verdigris);
}
.trust__lead .btn {
  margin-top: 2.1rem;
}

.guarantee {
  display: flex;
  gap: 1.35rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--bottle-rule);
  background: rgba(242, 236, 221, 0.04);
}
.guarantee__mark {
  flex: none;
  color: var(--verdigris);
}
.guarantee__mark svg {
  width: 2rem;
  height: 2rem;
}
.guarantee__body h3 {
  font-size: var(--t-h3);
}
.guarantee__body p {
  margin-top: 0.9rem;
  font-size: var(--t-sm);
  color: #9fb0aa;
  line-height: 1.6;
}

.brief-card {
  border: 1px solid var(--bottle-rule);
  padding: clamp(1.5rem, 3vw, 2.15rem);
  background: rgba(242, 236, 221, 0.04);
}
.brief-card__label {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--verdigris);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--bottle-rule);
}
.brief-card__list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: space-between;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(242, 236, 221, 0.08);
  font-size: var(--t-sm);
}
.brief-card__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.brief-card__list li span:first-child {
  color: var(--cream);
}
.brief-card__list li span:last-child {
  color: #8c9c96;
  text-align: right;
}

.callout {
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: var(--cream);
  max-width: 68ch;
}
.callout--flat {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border-style: dashed;
  max-width: none;
}
.callout--flat p {
  font-size: var(--t-sm);
  color: var(--sage);
}
.callout h2 {
  font-size: var(--t-h3);
}
.callout p {
  margin-top: 1.2rem;
  color: var(--ash);
  line-height: 1.62;
}
.callout .btn {
  margin-top: 1.85rem;
}
.callout a {
  color: var(--bottle);
}

.founder-note {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}
.founder-note .eyebrow {
  justify-content: center;
}
.founder-note__quote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1rem + 1.5vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--bottle);
  text-wrap: balance;
}
.founder-note__sig {
  margin-top: 2.1rem;
  font-size: var(--t-sm);
  font-weight: 500;
}
.founder-note__sig span {
  display: block;
  font-weight: 400;
  color: var(--sage);
  font-size: var(--t-xs);
  margin-top: 0.25rem;
}
.founder-note__sig--invert {
  text-align: left;
  color: var(--cream);
}
.founder-note__sig--invert span {
  color: var(--verdigris);
}
.founder-note .btn {
  margin-top: 2.3rem;
}

/* ==========================================================================
   Data cards
   ========================================================================== */

.ratio-card,
.rate-card {
  border: 1px solid var(--rule);
  background: var(--cream);
}
.section--muted .ratio-card,
.section--muted .rate-card {
  background: var(--cream-warm);
}
.ratio-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.ratio-card__label,
.aside-card__label {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
}
.ratio-list {
  margin-top: 1.4rem;
}
.ratio-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--rule-soft);
  font-size: var(--t-sm);
}
.ratio-list li:last-child {
  border-bottom: 0;
}
.ratio-list__val {
  font-weight: 500;
  font-size: var(--t-xs);
  color: var(--bottle-mid);
  white-space: nowrap;
}
.ratio-card__note {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  color: var(--sage);
  line-height: 1.58;
}

.terms-list {
  border-top: 1px solid var(--rule);
}
.terms-list__row {
  display: grid;
  gap: 0.4rem 2rem;
  padding-block: 1.45rem;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 620px) {
  .terms-list__row {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  }
}
.terms-list dt {
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--bottle);
}
.terms-list dd {
  margin: 0;
}
.terms-list__val {
  display: block;
  font-weight: 500;
  font-size: var(--t-sm);
  color: var(--bottle-mid);
  margin-bottom: 0.4rem;
}
.terms-list__note {
  display: block;
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.58;
}

/* ==========================================================================
   Rates
   ========================================================================== */

.rate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-bottom: 1px solid var(--rule-soft);
}
.rate-row:last-child {
  border-bottom: 0;
}
.rate-row__name {
  display: block;
  font-family: var(--display);
  font-size: var(--t-h3);
  color: var(--bottle);
  letter-spacing: -0.015em;
}
.rate-row__desc {
  display: block;
  margin-top: 0.55rem;
  font-size: var(--t-sm);
  color: var(--ash);
  max-width: 50ch;
  line-height: 1.5;
}
.rate-row__price {
  text-align: right;
  flex: none;
}
.rate-row__from,
.rate-row__unit {
  display: block;
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
}
.rate-row__val {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.4rem);
  color: var(--bottle);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.rate-row__val--muted {
  font-family: var(--text);
  font-size: var(--t-body);
  font-weight: 500;
  color: var(--sage);
}
.rate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2.4rem;
}
.rate-actions p {
  font-size: var(--t-sm);
  color: var(--sage);
  max-width: 42ch;
}

.model-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 780px) {
  .model-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.model {
  background: var(--cream);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-top: 3px solid var(--bottle);
}
.model__kicker {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bottle-mid);
}
.model h3 {
  margin-top: 0.95rem;
  margin-bottom: 1.6rem;
  font-size: var(--t-h3);
}
.model .btn {
  margin-top: 1.9rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }
  .faq-layout__head .section-head {
    margin-bottom: 0;
    position: sticky;
    top: 7rem;
  }
}
.faq {
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--t-body);
  font-weight: 500;
  color: var(--bottle);
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--bottle-mid);
}
.faq__icon {
  position: relative;
  flex: none;
  width: 0.85rem;
  height: 0.85rem;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}
.faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1.5px;
  transform: translateX(-50%);
}
[open] > summary .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  padding-bottom: 1.65rem;
  padding-right: 2rem;
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.65;
  max-width: 64ch;
}
.faq__answer p + p {
  margin-top: 0.9rem;
}
.faq__answer a {
  color: var(--bottle);
}
/* Founder-decision flags. Deliberately visible — they should be impossible
   to miss during review, and every one must be resolved before launch. */
.faq__answer em,
.flag {
  font-style: normal;
  font-weight: 500;
  font-size: var(--t-xs);
  color: #8a4b2a;
  background: #f6e9dd;
  padding: 0.1em 0.45em;
  border-bottom: 1px solid #d3a883;
}

/* ==========================================================================
   Proof components — hidden entirely until real proof exists
   ========================================================================== */

.quote-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 780px) {
  .quote-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.quote {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
}
.quote blockquote p {
  font-family: var(--display);
  font-size: var(--t-lead);
  line-height: 1.45;
  color: var(--bottle);
}
.quote figcaption {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--t-xs);
}
.quote__name {
  display: block;
  font-weight: 600;
}
.quote__org {
  display: block;
  color: var(--sage);
  margin-top: 0.2rem;
}

.logo-strip {
  padding-block: 3rem;
  border-bottom: 1px solid var(--rule);
}
.logo-strip__label {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}
.logo-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.logo-strip__list img {
  height: 2rem;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
}

.gallery {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background: var(--rule);
  border: 1px solid var(--rule);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--bottle);
  color: #b9c8c2;
  overflow: hidden;
}
.cta-band__media {
  position: absolute;
  inset: 0;
}
.cta-band__media .plate {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.cta-band__media .plate::after {
  background: color-mix(in srgb, var(--bottle) 90%, transparent);
  mix-blend-mode: normal;
}
.cta-band .wrap {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.cta-band__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}
.cta-band h2 {
  font-size: var(--t-h2);
  color: var(--cream);
  max-width: 15ch;
}
.cta-band__text p {
  margin-top: 1.3rem;
  color: #9fb0aa;
  line-height: 1.62;
  max-width: 46ch;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.cta-band__phone {
  width: 100%;
  margin-top: 0.85rem;
  font-size: var(--t-sm);
  color: #8c9c96;
}
.cta-band__phone a {
  color: var(--cream);
  font-weight: 500;
}
.cta-band__phone span {
  display: block;
  font-size: var(--t-xs);
  margin-top: 0.35rem;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: start;
  }
}
.contact-section {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.enquiry__legend {
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 0;
  margin-bottom: 1.4rem;
}
.enquiry__step,
.enquiry__group {
  border: 0;
  padding: 0;
  margin: 0 0 2.5rem;
}
.enquiry__group {
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.choice-grid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 640px) {
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.choice {
  position: relative;
  display: block;
  background: var(--cream);
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choice__inner {
  display: block;
  padding: 1.6rem;
  height: 100%;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.choice:hover .choice__inner {
  background: var(--cream-warm);
}
.choice input:checked + .choice__inner {
  background: var(--cream-warm);
  border-left-color: var(--bottle);
}
.choice input:focus-visible + .choice__inner {
  box-shadow: inset var(--ring);
}
.choice__title {
  display: block;
  font-family: var(--display);
  font-size: var(--t-h3);
  color: var(--bottle);
  letter-spacing: -0.015em;
}
.choice__body {
  display: block;
  margin-top: 0.65rem;
  font-size: var(--t-sm);
  color: var(--ash);
  line-height: 1.5;
}

.field-grid {
  display: grid;
  gap: 1.3rem;
}
@media (min-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.field > label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: var(--t-sm);
  color: var(--bottle);
}
.req {
  color: #8a4b2a;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.82rem 0.9rem;
  background: #fbf9f4;
  border: 1px solid var(--rule);
  font-size: var(--t-body);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:hover,
.field textarea:hover {
  border-color: var(--bottle-mid);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--bottle);
  box-shadow: 0 0 0 3px rgba(6, 48, 47, 0.12);
}
.field input[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: #9d3b1f;
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
}
.field__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.7rem;
}
.field__error {
  margin-top: 0.4rem;
  font-size: var(--t-xs);
  color: #9d3b1f;
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.45;
  font-size: var(--t-sm);
}
.checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  accent-color: var(--bottle);
  flex: none;
}
.checkbox--sm span {
  font-size: var(--t-xs);
  color: var(--sage);
}
.checkbox-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 640px) {
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.role-rows {
  border-top: 1px solid var(--rule);
  margin-bottom: 1.6rem;
}
.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.role-row__label {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--bottle);
}
.role-row__count {
  display: flex;
  align-items: center;
  border: 1px solid var(--rule);
  background: #fbf9f4;
}
.role-row__count input {
  width: 3.25rem;
  border: 0;
  text-align: center;
  padding: 0.5rem 0;
  background: transparent;
  font-weight: 500;
  font-size: var(--t-sm);
  -moz-appearance: textfield;
}
.role-row__count input::-webkit-outer-spin-button,
.role-row__count input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--sage);
  font-size: 1.05rem;
  transition: background 0.15s, color 0.15s;
}
.stepper:hover {
  background: var(--cream-warm);
  color: var(--bottle);
}

.enquiry__hint {
  font-size: var(--t-xs);
  color: var(--sage);
  margin-bottom: 1.3rem;
}
.enquiry__optional {
  border: 1px solid var(--rule);
  margin-bottom: 2.3rem;
  background: var(--cream);
}
.enquiry__optional summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--bottle);
}
.enquiry__optional summary::-webkit-details-marker {
  display: none;
}
.enquiry__optional-inner {
  display: grid;
  gap: 1.3rem;
  padding: 0 1.25rem 1.5rem;
}
.enquiry__error {
  margin-top: 0.75rem;
  font-size: var(--t-xs);
  color: #9d3b1f;
}
.enquiry__submit {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.enquiry__promise {
  font-size: var(--t-xs);
  color: var(--sage);
  line-height: 1.58;
  max-width: 50ch;
}
.enquiry__done {
  border: 1px solid var(--bottle);
  border-left-width: 3px;
  background: var(--cream);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}
.enquiry__done h2 {
  font-size: var(--t-h2);
}
.enquiry__done p {
  margin-top: 1.2rem;
  color: var(--ash);
  line-height: 1.62;
  max-width: 50ch;
}
.enquiry__done a {
  color: var(--bottle);
  font-weight: 500;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aside-card {
  border: 1px solid var(--rule);
  padding: 1.6rem;
  background: var(--cream);
  margin-bottom: 1rem;
}
.section--muted .aside-card {
  background: var(--cream-warm);
}
.aside-card--strong {
  border-color: var(--bottle);
  border-left-width: 3px;
}
.aside-card__phone {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.15rem + 1.1vw, 1.9rem);
  color: var(--bottle);
  text-decoration: none;
  letter-spacing: -0.015em;
}
.aside-card__phone:hover {
  color: var(--bottle-mid);
}
.aside-card__link {
  display: block;
  margin-top: 0.8rem;
  font-size: var(--t-sm);
  word-break: break-word;
  color: var(--bottle);
  font-weight: 500;
}
.aside-card__note {
  margin-top: 0.85rem;
  font-size: var(--t-xs);
  color: var(--sage);
  line-height: 1.58;
}
.aside-card__note a {
  color: var(--bottle);
}
.aside-card .mini-steps {
  margin-top: 1.3rem;
}
.aside-card__media {
  margin: -1.6rem -1.6rem 1.4rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bottle);
  color: #9fb0aa;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2.5rem;
  font-size: var(--t-sm);
}
.site-footer__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
@media (min-width: 880px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }
}
.site-footer__brand .mark {
  margin-bottom: 1.6rem;
}
.site-footer__blurb {
  line-height: 1.62;
  max-width: 38ch;
}
.site-footer__note {
  margin-top: 1rem;
  font-size: var(--t-xs);
  color: #7d8f89;
  max-width: 38ch;
}
.site-footer__nav {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 560px) {
  .site-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer__title {
  font-family: var(--text);
  font-weight: 500;
  font-size: var(--t-label);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--verdigris);
  margin-bottom: 1.3rem;
}
.site-footer__col ul {
  display: grid;
  gap: 0.75rem;
}
.site-footer__col a {
  text-decoration: none;
  font-size: var(--t-sm);
  transition: color 0.2s;
}
.site-footer__col a:hover {
  color: var(--cream);
}
.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.5rem;
  padding-block: 2rem;
  border-block: 1px solid var(--bottle-rule);
}
.site-footer__contact a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}
.site-footer__contact a:hover {
  color: var(--verdigris);
}
.site-footer__contact span {
  font-size: var(--t-xs);
  color: #7d8f89;
}
.site-footer__legal {
  padding-top: 2rem;
  display: grid;
  gap: 0.75rem;
  font-size: var(--t-xs);
  color: #6d7f7a;
}
.site-footer__disclaimer {
  max-width: 58ch;
}

/* ==========================================================================
   Motion
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .cta-band,
  .site-footer__nav,
  .nav-toggle,
  .plate {
    display: none;
  }
  body {
    background: #fff;
  }
}
