/* adamtury.com — v2
   Palette "Kiln". No green anywhere. Five colours, each with one job:

     #241C17  Bitter chocolate  dark surfaces (nav, bands, footer) + body text on light
     #BE7551  Clay              primary accent — buttons and marks, never a surface
     #F4F0E7  Oat               the page, and type on the dark bands
     #1F4257  Prussian          links and emphasis only
     #B8ADA0  Greige            borders, dividers, secondary type

   Sections alternate oat → chocolate down the page. Clay is never a band.

   Two of the five fail contrast on one of the two grounds, so each has a
   second tone for that ground only — same hue, one step. Nothing else is added:
     greige on oat is 1.94:1     -> --greige-text on light
     prussian on chocolate 1.58:1 -> --prussian-light on dark */

:root {
  /* ---- the five ---- */
  --choc: #241C17;              /* dark surfaces, and body text on oat (14.7:1) */
  --clay: #BE7551;              /* primary accent — buttons, marks, focus ring */
  --oat: #F4F0E7;               /* the page, and type on the dark bands (14.7:1) */
  --prussian: #1F4257;          /* links and emphasis on oat (9.4:1) */
  --greige: #B8ADA0;            /* borders and dividers; type on chocolate (7.6:1) */

  /* ---- one step off, only where a palette colour fails its ground ---- */
  --greige-text: #6B6052;       /* secondary type on light — 5.4:1 on oat, 4.9:1 on the
                                   oat-soft card fill, where greige itself is 1.9:1 */
  --prussian-light: #5E97B8;    /* links on chocolate — 5.3:1, where prussian is 1.6:1 */
  --clay-hover: #A96341;        /* clay one step down, so button hover reads */
  --oat-soft: #EAE5D8;          /* oat one step down — filled cards, photo slots */

  /* ---- roles ---- */
  --parchment: var(--oat);
  --parchment-soft: var(--oat-soft);
  --ink: var(--choc);           /* legacy names, kept so older rules stay valid */
  --ink-soft: var(--greige-text);
  --navy: var(--choc);
  --accent: var(--clay);        /* buttons are clay with a chocolate label (4.7:1) */
  --accent-hover: var(--clay-hover);
  --rule: var(--greige);

  --measure: 34rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  /* Self-hosted so every visitor sees the same face. Swap to "Newsreader" here
     if Adam picks option 2 on /type.html — this one line is the whole change. */
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --sans: ui-sans-serif, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 650; line-height: 1.04; letter-spacing: -0.024em; margin: 0; }
h1 { font-weight: 600; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3.05rem); }
h3 { font-size: clamp(1.22rem, 1.6vw, 1.45rem); line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1.1em; max-width: var(--measure); }

a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
/* Prussian is for links read as links inside running copy — never for nav,
   buttons or cards, which carry their own colour. Scoped this way round so it
   cannot outrank .nav__name / .nav__cta on specificity. */
.prose a:not(.btn), .list a:not(.btn), .record a:not(.btn) { color: var(--prussian); }
.section--invert .prose a:not(.btn),
.section--invert .list a:not(.btn) { color: var(--prussian-light); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.wrap { max-width: 68rem; margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(36, 28, 23, 0.97);   /* --ink, kept in sync by hand */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244, 240, 231, 0.22);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 4.25rem;
}
.nav__name { font-size: 1.05rem; letter-spacing: 0.02em; text-decoration: none; white-space: nowrap; }
.nav__links {
  display: flex; flex-wrap: wrap; gap: clamp(0.9rem, 2vw, 1.9rem);
  font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.01em;
}
.nav__name { color: var(--parchment); }
.nav__links a { text-decoration: none; color: rgba(244, 240, 231, 0.82); }
.nav__links a:hover { color: var(--parchment); text-decoration: underline; }
.nav__links a[aria-current="true"] { color: var(--parchment); }
.nav__links a[aria-current="true"]::after {
  content: ""; display: block; height: 2px; margin-top: 4px;
  background: var(--parchment);
}
/* RAISEimpact button, upper right (Adam, 30 Jul). Outlined rather than solid so it
   reads as a way out of the site without competing with the hero's Book-a-call CTA. */
.nav__cta {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.01em; text-decoration: none; white-space: nowrap;
  color: var(--clay);
  border: 1px solid rgba(190, 117, 81, 0.55);
  padding: 0.5rem 0.9rem;
  transition: background-color 120ms ease, border-color 120ms ease;
}
.nav__cta:hover { background: rgba(190, 117, 81, 0.14); border-color: var(--clay); }
.nav__cta[aria-current="page"] { background: var(--clay); color: var(--ink); border-color: var(--clay); }

@media (max-width: 40rem) {
  .nav__links { gap: 0.85rem; font-size: 0.72rem; }
  .nav__name { font-size: 0.95rem; }
  .nav__cta { font-size: 0.68rem; padding: 0.4rem 0.65rem; letter-spacing: 0.05em; }
}
/* On a phone the name sits on its own line above the links, so neither one wraps.
   The nav is a 2x2: name + button on the first row, section links on the second.

   Breakpoint is 48rem, not 30rem: measured min-content for a single row is ~530px
   (name 84 + links 299 + button 99 + gaps), and the gutter leaves only 433px at
   481px and 540px at 600px. Adding the RAISEimpact button is what pushed it over —
   before it, the row fitted. Wrapping from 48rem down clears the whole band. */
@media (max-width: 48rem) {
  .nav__inner {
    flex-wrap: wrap; align-items: center;
    gap: 0.4rem 0.75rem; padding-block: 0.7rem; min-height: 0;
  }
  .nav__name { order: 1; }
  .nav__cta { order: 2; margin-left: auto; }
  .nav__links { order: 3; flex-basis: 100%; }
  html { scroll-padding-top: 6.5rem; }
}
@media (max-width: 30rem) {
  .nav__links { gap: 0.9rem; font-size: 0.68rem; letter-spacing: 0.05em; }
}

/* ---------- sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; border-top: 1px solid var(--rule); }
.section--first { border-top: 0; }
.section--invert,
.section--tint {
  background: var(--choc);
  color: var(--oat);
  border-top-color: transparent;
}
.section--invert a, .section--tint a { color: var(--oat); }
/* Prussian is 1.58:1 on chocolate, so links on the dark bands take the light
   step of the same hue (4.2:1). On oat they stay full-strength prussian. */
.section--invert a:not(.btn):not(.nav__cta),
.section--tint a:not(.btn):not(.nav__cta) { color: var(--prussian-light); }
.section--invert .eyebrow, .section--tint .eyebrow { color: var(--greige); }
.section--invert .card, .section--tint .card { border-color: rgba(184, 173, 160, 0.4); }
.section--invert .lede, .section--tint .lede { color: var(--greige); }

.eyebrow {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--ink-soft); margin: 0 0 1.5rem; font-weight: 600;
}
.lede { font-size: clamp(1.15rem, 1.6vw, 1.4rem); color: var(--ink-soft); max-width: 40rem; }

/* ---------- hero ---------- */
.hero {
  padding: clamp(4.5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 6.5rem);
  position: relative;
  background: var(--parchment);
}
.hero h1 { max-width: 18ch; }
.hero__sub { margin-top: 1.75rem; font-size: clamp(1.15rem, 1.7vw, 1.45rem); max-width: 46ch; color: var(--ink-soft); }
.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.9rem 1.5rem; align-items: center; }

.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.02em;
  padding: 0.85rem 1.5rem;
  background: var(--accent); color: var(--choc);
  text-decoration: none; border: 1px solid var(--accent);
  transition: background 120ms ease;
}
.btn:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--prussian); border-color: currentColor; }
.btn--ghost:hover { background: rgba(190, 117, 81, 0.10); }
.section--invert .btn, .section--tint .btn { background: var(--parchment); color: var(--ink); border-color: var(--parchment); }
.section--invert .btn:hover, .section--tint .btn:hover { background: #FBF9F3; }
.section--invert .btn--ghost, .section--tint .btn--ghost { background: transparent; color: var(--parchment); border-color: rgba(244, 240, 231,0.5); }

/* ---------- record strip ---------- */
.record { display: grid; gap: 2.5rem clamp(1.5rem, 4vw, 3.5rem); grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.record__n { font-size: clamp(2.2rem, 3.6vw, 2.95rem); line-height: 1; display: block; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.record__n::after {
  content: ""; display: block; width: 2.25rem; height: 3px;
  background: var(--clay); margin: 1rem 0 0;
}
.record__t { font-family: var(--sans); font-size: 0.9rem; line-height: 1.45; margin-top: 1rem; max-width: 24ch; opacity: 0.8; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
/* Quote cards need a wider column than a plain 3-up, so the testimonials
   get room to read instead of stacking into narrow strips. */
.grid--quotes { grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr)); align-items: start; }

.card { border: 1px solid var(--rule); padding: clamp(1.5rem, 2.5vw, 2rem); background: transparent; }
.card p:last-child { margin-bottom: 0; }
.card h3 + p { margin-top: 0.8rem; }

.quote { display: flex; flex-direction: column; gap: 1.25rem; height: 100%; }
.quote blockquote { margin: 0; font-size: clamp(1.1rem, 1.5vw, 1.28rem); line-height: 1.45; }
.quote figcaption { font-family: var(--sans); font-size: 0.85rem; line-height: 1.45; opacity: 0.8; margin-top: auto; }
.quote__name { display: block; font-weight: 600; opacity: 1; }
.quote__more { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em; }

.placeholder {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.02em; opacity: 0.5;
}

/* ---------- lists ---------- */
.list { margin: 0; padding: 0; list-style: none; }
.list li { padding: 1.15rem 0; border-top: 1px solid var(--rule); max-width: var(--measure); }
.list li:first-child { border-top: 0; }
.list__k { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.01em; opacity: 0.75; font-weight: 600; display: block; margin-bottom: 0.5rem; }

/* ---------- prose (coaching / testimonial pages) ---------- */
/* .prose sits on .wrap, so it keeps the same outer container as every other
   section; only the text column inside it is held to a readable measure. */
.prose > * { max-width: 40rem; }
.prose h2 { margin-top: 3.5rem; margin-bottom: 1.25rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; max-width: var(--measure); }
.prose li { margin-bottom: 0.5rem; }

.toc { font-family: var(--sans); font-size: 0.92rem; }
.toc a { display: block; padding: 0.55rem 0; border-top: 1px solid var(--rule); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

.back { font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.04em; text-decoration: none; display: inline-block; margin-bottom: 2.5rem; }
.back:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--parchment); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.footer a { color: var(--parchment); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; justify-content: space-between; align-items: flex-start; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; font-family: var(--sans); font-size: 0.9rem; }

/* ---------- photo slot ---------- */
.photo {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  background: var(--parchment-soft);
}
.section--invert .photo { background: rgba(244, 240, 231,0.07); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--parchment);
  font-family: var(--sans); font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* The cause areas sit with the positioning line, where Adam anchored the note. */
.hero__areas {
  margin-top: 1.25rem; max-width: 46ch;
  font-family: var(--sans); font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft);
}

/* The portrait fills its slot without distortion. */
img.photo { width: 100%; height: auto; object-fit: cover; display: block; padding: 0; }


/* ---------- texture ---------- */
/* Concept 1's polish came from type and texture. This is a paper grain at 3.5%:
   visible as tooth, invisible as pattern. */
.nav::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav { position: sticky; }
.nav::before { opacity: 0.025; }

/* A quiet ink rule ahead of each section label
   through the page without adding an ornament. */
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 1.75rem; height: 2px; margin-right: 0.85rem; margin-bottom: 0.15rem;
  background: var(--ink-soft);
}
.section--invert .eyebrow::before { background: var(--greige); }


/* ---------- hero composition (left-aligned) ---------- */
.hero--center { text-align: left; }
.hero--center .wrap { max-width: 62rem; }
.hero--center h1 { max-width: 18ch; }
.hero--center .hero__sub { max-width: 46ch; }
.hero--center .hero__areas { max-width: 52ch; }
.hero--center .hero__actions { justify-content: flex-start; }

/* eyebrow: a rule then the label, left-aligned */
.hero__eyebrow {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--ink-soft);
  display: flex; align-items: center; gap: 1rem;
  margin: 0 0 1.75rem;
}
.hero__eyebrow::before {
  content: ""; height: 1px; flex: 0 0 clamp(1.75rem, 4vw, 2.75rem);
  background: var(--ink-soft); opacity: 0.5;
}

/* ================= HOME: left-aligned, tight ================= */
/* Sections size to their content. A blanket min-height:100vh used to hold every
   band to a full screen, which left the short ones — clients, track record,
   contact — mostly empty. Only the hero earns a viewport-scale minimum. */
.home .section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: safe center;
  text-align: left;
  padding-block: clamp(4rem, 8vh, 6.5rem);
  scroll-margin-top: 4.5rem;               /* land below the sticky nav on jump */
}
.home .hero { min-height: min(88vh, 46rem); }
/* Wide screens were leaving a lot of empty margin either side of a 74rem column.
   The container now scales with the viewport and only caps on very large displays. */
.home .wrap { max-width: min(94vw, 96rem); width: 100%; }

/* The two content-heavy bands carry a little more air than the short ones. */
.home #coaching, .home #testimonials { padding-block: clamp(4.5rem, 9vh, 7.5rem); }

.home .eyebrow { display: flex; align-items: center; gap: 0.9rem; }
.home .eyebrow::before {
  content: ""; display: block; margin: 0;
  width: clamp(1.75rem, 4vw, 2.75rem); height: 2px;
  background: var(--clay); opacity: 0.9;
}

.home .record { justify-items: start; margin-top: clamp(2rem, 4vw, 3rem); }
.home .record__n::after { margin: 1rem 0 0; }
.home .grid { justify-items: stretch; align-items: start; }
.home .card { text-align: left; }
.home .quote { align-items: flex-start; }
.home .quote figcaption { text-align: left; }
.home .list { max-width: 52rem; }


/* About: portrait to the left, bio beneath */
.photo--about {
  max-width: 17rem; aspect-ratio: 4 / 5;
  margin: 0 0 clamp(2rem, 4vw, 2.5rem);
}

/* Coaching: filled cards, full width, equal heights */
.home #coaching .grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;                       /* use the full content width */
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;                  /* equal height per row */
}
/* The cards stay 2x2 — in the wider container each one is roughly twice as wide,
   so the copy reflows into fewer lines and the block is shorter than a 4-up row.
   The pricing note and the CTA share the row below it instead of stacking. */
.coach__foot { margin-top: 2rem; }
.coach__cta { margin: 1.75rem 0 0; }
@media (min-width: 68rem) {
  .coach__foot {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem); margin-top: clamp(2rem, 3vw, 2.75rem);
  }
  .coach__cta { margin: 0; flex: 0 0 auto; }
}
.home #coaching .card,
.home #coaching .card h3,
.home #coaching .card p { color: var(--choc); }
.home #coaching .card {
  background: var(--oat-soft);                    /* light navy-grey fill */
  border: 1px solid rgba(36, 28, 23, 0.10);
  border-radius: 6px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  height: 100%;
}
.home #coaching .card h3 {
  font-size: 1.12rem; color: var(--choc); margin-bottom: 0.9rem;
  padding-bottom: 0.9rem; border-bottom: 1px solid rgba(36, 28, 23, 0.14);
}
.home #coaching .card p { font-size: 0.96rem; line-height: 1.55; margin: 0; }
@media (max-width: 40rem) {
  .home #coaching .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- hero split (text + image) ---------- */
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__img {
  width: 100%; height: 100%; max-height: 30rem; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
@media (max-width: 52rem) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { max-height: 18rem; order: -1; }
}



/* ---------- hero: full-bleed colour field ----------
   The whole band is the surface, the way the reference sites do it, rather than
   a graphic sitting in a white void. Warm oat ground, chocolate type, and one
   quiet abstract layer: a soft light bloom off to one side and a fading dot
   field. All CSS gradients — no imagery. */
.hero--bg {
  position: relative; overflow: hidden;
  border-bottom: 0;
  padding-block: clamp(6rem, 16vh, 11rem);
  color: var(--ink); text-align: left;
  background: linear-gradient(155deg, #FBF9F3 0%, var(--oat) 44%, #EAE3D6 100%);
}
/* dot field, masked to a patch on the right */
.hero__bg {
  display: block; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(rgba(36, 28, 23, 0.22) 1.5px, transparent 1.5px) 0 0 / 1.5rem 1.5rem;
  -webkit-mask-image: radial-gradient(30rem 22rem at 84% 26%, #000 0%, transparent 70%);
  mask-image: radial-gradient(30rem 22rem at 84% 26%, #000 0%, transparent 70%);
}
/* the two shapes that carry the composition: a soft disc and an angular wedge */
.hero--bg::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -8%; top: -34%; width: min(50rem, 62%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 36% 38%,
    rgba(36, 28, 23, 0.09), rgba(36, 28, 23, 0.03) 52%, transparent 72%);
}
.hero--bg::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  inset: 12% -2% -12% 46%;
  background: linear-gradient(200deg, rgba(36, 28, 23, 0.055), rgba(36, 28, 23, 0.015) 60%, transparent);
  clip-path: polygon(38% 0, 100% 22%, 100% 100%, 0 100%);
  border-left: 1px solid rgba(36, 28, 23, 0.12);
}

/* The accent word in the headline. (.hero__kicker was removed 30 Jul — Adam's rule
   that nothing may sit above the topmost heading. Its styles went with it.) */
.hero--bg h1 span { color: var(--accent); }

/* information strip across the foot of the band, the way the references carry
   programme details under the headline */
.hero__strip {
  position: relative; z-index: 2;
  margin-top: clamp(3rem, 7vh, 5rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(36, 28, 23, 0.18);
}
.hero__strip-label {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.02em; font-weight: 600;
  color: var(--ink-soft); margin: 0 0 1rem; max-width: none;
}
.hero__strip ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.75rem clamp(1.5rem, 3.5vw, 3rem);
}
.hero__strip li {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  display: flex; align-items: center; gap: 0.6rem;
}
.hero__strip li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
}
.hero__inner { position: relative; z-index: 2; }
.hero__text { position: relative; z-index: 1; }
.hero--bg .hero__eyebrow { color: var(--ink-soft); }
.hero--bg .hero__eyebrow::before { background: var(--ink-soft); opacity: 0.6; }
.hero--bg h1 { color: var(--ink); max-width: 18ch; }
.hero--bg .hero__sub { color: var(--ink-soft); max-width: 44ch; }
.hero--bg .hero__areas { color: var(--ink-soft); max-width: 50ch; }
.hero--bg .btn { background: var(--accent); color: var(--choc); border-color: var(--accent); }
.hero--bg .btn:hover { background: var(--accent-hover); }

/* ---------- About: photo and text side by side ---------- */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;   /* equal width */
  gap: clamp(2rem, 5vw, 4rem); align-items: stretch;   /* equal height */
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
/* The portrait is taller than the copy at half width, so left to itself it sets
   the row height and the text ends in a gap. The wrapper contributes no height
   of its own — the image is absolute inside it — so the text sets the row and
   the photo crops to exactly that height. */
.about__media { position: relative; min-height: 100%; border-radius: 2px; overflow: hidden; }
.about__grid .photo--about {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none; margin: 0;
  aspect-ratio: auto; object-fit: cover; object-position: 50% 28%;
}
.about__text { text-align: left; }
@media (max-width: 44rem) {
  .about__grid { grid-template-columns: 1fr; align-items: start; max-width: 26rem; }
  .about__media { min-height: 0; aspect-ratio: 4 / 5; }
}

/* ---------- testimonials carousel ---------- */
.carousel { margin-top: clamp(2rem, 4vw, 3rem); }
/* Two testimonial groups in one band (Adam, 30 Jul): leadership coaching, then
   RAISEimpact. The label carries the separation, so the second group gets a rule
   and extra space above it rather than a second section. */
.tgroup {
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.01em; font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  color: var(--greige-text);
}
.tgroup--second {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--greige);
}
.tgroup__note {
  margin: -0.75rem 0 1.75rem;
  max-width: 40rem;
  color: var(--greige-text);
}
.carousel__controls[hidden] { display: none; }

.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex; width: 100%; gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.tcard {
  margin: 0;
  flex: 0 0 100%; min-width: 0; box-sizing: border-box;
  background: var(--oat-soft); color: var(--choc);
  border: 1px solid var(--greige); border-radius: 8px; padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: 15rem;
  display: flex; flex-direction: column; gap: 1.5rem; text-align: left;
}
.tcard blockquote {
  margin: 0; font-style: italic;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem); line-height: 1.5; color: var(--ink);
}
.tcard .hl {
  font-style: normal; font-weight: 600; color: var(--prussian);
  background: transparent; padding: 0;
}
.tcard figcaption {
  margin-top: auto; font-family: var(--sans); font-size: 0.9rem; color: var(--ink-soft);
}
.tcard__name { display: block; font-weight: 700; color: var(--choc); }
.tcard__more {
  display: inline-block; margin-top: 0.9rem; color: var(--prussian);
  font-size: 0.85rem; letter-spacing: 0.02em;
}
.carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 1.75rem;
}
.carousel__btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid var(--greige); background: transparent;
  color: var(--choc); font-size: 1.05rem; cursor: pointer;
  display: grid; place-items: center; transition: background 120ms ease;
}
.carousel__btn:hover { background: rgba(36, 28, 23, 0.08); }
.carousel__dots { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; max-width: 16rem; }
.carousel__dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(36, 28, 23, 0.28); cursor: pointer; transition: background 120ms ease;
}
.carousel__dots button[aria-current="true"] { background: var(--choc); }

/* ================= CLIENTS BAND =================
   Was a caption-scale strip tucked under the hero and read as a footnote.
   Now its own chocolate band at heading scale, in the page serif rather than
   the small sans it used, so it carries the same weight as any other section. */
.clients { background: var(--choc); color: var(--oat); }
.clients__label {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--greige);            /* 7.6:1 on chocolate */
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  max-width: none;
}
.clients__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  /* five domains, so an explicit 3+2 rather than auto-fit, which left a single
     orphan on the second row at desktop widths */
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .clients__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .clients__grid { grid-template-columns: repeat(3, 1fr); } }
.clients__grid li {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);   /* h2 is 1.95–3.05rem; this sits just under */
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 600;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(184, 173, 160, 0.35);
}

/* ================= TESTIMONIAL CARDS =================
   Quote copy is still being revised, so the card is sized to hold roughly
   180–250 characters without the grid moving: a fixed min-height reserves the
   space of the longest expected quote, and the caption is pinned to the bottom
   with margin-top:auto so short and long quotes align at the foot. Swapping a
   quote means replacing the <blockquote> text and nothing else. */
.tcard { min-height: 21rem; }
.tcard blockquote {
  /* ~250 characters at this size is 7 lines at the narrowest card width */
  overflow-wrap: break-word;
}

/* headshot beside the name — supply 168x168 (1:1), renders at 56px */
.tcard figcaption { display: flex; align-items: flex-start; gap: 0.9rem; }
.tcard__photo {
  flex: 0 0 auto; width: 3.5rem; height: 3.5rem;
  border-radius: 50%; object-fit: cover; object-position: 50% 25%;
  background: var(--oat-soft);
  border: 1px solid var(--greige);
}
.tcard__id { min-width: 0; }
.tcard__more {
  display: block; width: fit-content; margin-top: 1rem;
  font-family: var(--sans); font-size: 0.82rem;
  padding: 0.55rem 1rem;
  background: var(--clay); color: var(--choc);   /* 4.7:1 */
  border: 1px solid var(--clay); text-decoration: none;
  transition: background 120ms ease;
}
.tcard__more:hover { background: var(--clay-hover); border-color: var(--clay-hover); }

/* portrait on a full testimonial page — supply 800x1000 (4:5) */
.tportrait {
  width: 100%; max-width: 15rem; aspect-ratio: 4 / 5;
  object-fit: cover; display: block;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  background: var(--oat-soft);
  border: 1px solid var(--greige);
}
@media (max-width: 40rem) {
  .clients__grid li { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}

/* The RAISEimpact group is two short quotes (~90-110 characters). The card
   min-height reserves room for the 180-250 the coaching group is being written
   to, which left a void above their captions, so this group sizes to content. */
.carousel--compact .tcard { min-height: 0; }
