/* ==========================================================================
   House of Thalia — Design System
   Approved palette: warm ivory / champagne gold / charcoal / soft stone
   Restrained muted sage as a ~10–15% secondary accent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette (from brief §02) */
  --ivory: #f6f1e8;
  --gold: #b28a52;
  --charcoal: #292621;
  --stone: #ded6c8;
  --sage: #a7ad91;
  --sage-tint: #eef0e8;

  /* Derived working tones */
  --ivory-lift: #fbf8f2;   /* cards / raised surfaces on ivory */
  --paper: #fffdf9;        /* brightest surface */
  --gold-deep: #7f6236;    /* AA-compliant gold for text + filled buttons */
  --gold-on-dark: #e3cba4; /* gold that still clears AA over dark imagery */
  --gold-soft: rgba(178, 138, 82, 0.18);
  --sage-line: rgba(167, 173, 145, 0.45);
  --charcoal-70: rgba(41, 38, 33, 0.7);
  --charcoal-55: rgba(41, 38, 33, 0.56);
  --rule: rgba(41, 38, 33, 0.12);
  --rule-soft: rgba(41, 38, 33, 0.07);

  /* Typography */
  --serif: "Playfair Display", "Cormorant Garamond", "Iowan Old Style",
    "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Aptos,
    "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.3rem, 1.7rem + 2.7vw, 3.6rem);
  --fs-h1: clamp(2.15rem, 1.5rem + 2.7vw, 3.6rem);
  --fs-h2: clamp(1.75rem, 1.32rem + 1.8vw, 2.7rem);
  --fs-h3: clamp(1.22rem, 1.1rem + 0.5vw, 1.5rem);
  --fs-h4: 1.0625rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-kicker: 0.6875rem;

  /* Rhythm */
  --space-section: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --shell: 1280px;
  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 4rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.55s;

  --header-h: 92px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip; /* clips the off-canvas drawer without creating a scroll container */
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-family: var(--sans); font-size: var(--fs-h4); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: var(--gold-soft); text-underline-offset: 0.22em; }
a:hover { color: var(--gold-deep); }

ul { margin: 0; padding: 0; list-style: none; }

strong { font-weight: 600; }

::selection { background: var(--sage-tint); color: var(--charcoal); }

/* Focus — visible on every interactive element (brief §12) */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--ivory); }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 940px; }

.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--ivory { background: var(--ivory); }
.section--paper { background: var(--paper); }
.section--stone { background: linear-gradient(180deg, var(--ivory) 0%, #f1ebe0 100%); }
.section--sage { background: var(--sage-tint); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 { color: var(--ivory); }
.section--charcoal .lede,
.section--charcoal p { color: rgba(246, 241, 232, 0.82); }

.grid { display: grid; gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.stack > * + * { margin-top: 1.15rem; }

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */
.kicker {
  display: block;
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.section--charcoal .kicker { color: var(--gold); }

.lede {
  font-size: clamp(1.0625rem, 1rem + 0.32vw, 1.1875rem);
  line-height: 1.75;
  color: var(--charcoal-70);
  max-width: 62ch;
}

.body-muted { color: var(--charcoal-70); }
.small { font-size: var(--fs-small); line-height: 1.65; }

.rule-gold {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 1.6rem 0;
}
.rule-gold--center { margin-inline: auto; }

.section-head { max-width: 68ch; margin-bottom: clamp(2.25rem, 1.5rem + 2.4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

.positioning-line {
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  --btn-bd: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 1px;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--gold-deep);
  --btn-fg: #fff;
  --btn-bd: var(--gold-deep);
}
.btn--primary:hover { --btn-bg: #6b5230; --btn-bd: #6b5230; color: #fff; }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--charcoal); --btn-bd: var(--gold); }
.btn--outline:hover { --btn-bg: var(--gold-deep); --btn-fg: #fff; --btn-bd: var(--gold-deep); color: #fff; }

.btn--ghost { --btn-bd: rgba(41, 38, 33, 0.22); }
.btn--ghost:hover { --btn-bd: var(--gold-deep); color: var(--gold-deep); }

.section--charcoal .btn--ghost { --btn-fg: var(--ivory); --btn-bd: rgba(246, 241, 232, 0.35); }
.section--charcoal .btn--ghost:hover { --btn-bd: var(--gold); color: var(--gold); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 2.25rem;
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  text-decoration: none;
}
.link-arrow svg { transition: transform 0.35s var(--ease); flex: none; }
.link-arrow:hover { color: var(--charcoal); }
.link-arrow:hover svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.97);
  box-shadow: 0 1px 24px rgba(41, 38, 33, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: var(--header-h);
  transition: min-height 0.35s var(--ease);
}
.site-header.is-scrolled .header-inner { min-height: 72px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex: none;
}
.brand img { transition: height 0.35s var(--ease); }
.brand__mark { height: 52px; width: auto; }
.brand__word { height: 38px; width: auto; }
.site-header.is-scrolled .brand__mark { height: 42px; }
.site-header.is-scrolled .brand__word { height: 31px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 0.2rem + 1.6vw, 2.1rem); }
/* The in-drawer CTA is for the mobile menu only; the header keeps its own. */
.nav > .btn { display: none; }

.nav__link {
  position: relative;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--gold-deep); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 1px;
  cursor: pointer;
  color: var(--charcoal);
}
.nav-toggle__bars { position: relative; width: 20px; height: 12px; }
.nav-toggle__bars span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem var(--gutter) 2.5rem;
    background: var(--paper);
    border-left: 1px solid var(--rule-soft);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0.45s;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav__link { padding: 1rem 0; border-bottom: 1px solid var(--rule-soft); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 1.75rem; width: 100%; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(41, 38, 33, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 99;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   7. Editorial media panels
   Real photography drops in at assets/img/<slot>.jpg — see assets/img/README.md.
   Until then a warm-neutral gradient renders in its place.
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background-color: var(--stone);
  background-image: linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.media::after {
  /* soft light sweep — reads as material texture, not decoration */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 72% 18%, rgba(255, 253, 249, 0.55) 0%, rgba(255, 253, 249, 0) 62%);
  pointer-events: none;
}
.media--sage {
  background-image: linear-gradient(140deg, #e9ece1 0%, #dfe3d5 48%, #d2d8c4 100%);
}
.media--deep {
  background-image: linear-gradient(140deg, #cdbfa9 0%, #b9a88f 55%, #a1907a 100%);
}

/* Botanical line motif — the restrained sage/organic counterpoint (brief §11) */
.media__botanical {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 46%;
  max-width: 320px;
  color: var(--sage);
  opacity: 0.5;
  pointer-events: none;
}
.media__botanical--left { right: auto; left: -6%; bottom: auto; top: -4%; transform: scaleX(-1); }

/* Where a media panel must fill its cell, the cell decides the shape */
.hero__media .media,
.sector-card .media,
.leadership__media .media,
.insight-card .media { width: 100%; aspect-ratio: auto; }

/* Slot aspect ratios */
.media--hero { aspect-ratio: 4 / 3; }
.media--wide { aspect-ratio: 16 / 9; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--square { aspect-ratio: 1 / 1; }
.media--card { aspect-ratio: 3 / 2; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  padding-block: clamp(3.5rem, 2rem + 6vw, 7rem);
}
.hero__copy { max-width: 640px; }
.hero h1 { font-size: var(--fs-display); margin-bottom: 0; }
.hero .lede { margin-top: 1.9rem; }
.hero .lede + .lede { margin-top: 1.1rem; }

.hero__media { position: relative; margin-right: calc(50% - 50vw); }
.hero__media .media { height: 100%; min-height: clamp(300px, 32vw, 460px); }

/* Interior pages sit a little tighter than the homepage */
.hero--interior .hero__inner { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.hero--interior .hero__media { height: 100%; }
.hero--interior .hero__media .media { min-height: clamp(280px, 30vw, 430px); }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(246, 241, 232, 0) 34%);
  pointer-events: none;
  z-index: 1;
}

/* Slow, restrained parallax (disabled for reduced motion + small screens) */
.parallax { will-change: transform; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 40px -28px rgba(41, 38, 33, 0.35);
}
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--charcoal-70); font-size: 0.9375rem; }
.card__foot { margin-top: auto; padding-top: 1.5rem; }

.card--flush { padding: 0; overflow: hidden; }
.card--flush .card__body { padding: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem); }

.icon-circle {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  flex: none;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card:hover .icon-circle { background: var(--sage-tint); border-color: var(--sage-line); }
.icon-circle--sage { background: var(--sage-tint); border-color: var(--sage-line); }

/* Checklist inside capability cards */
.checklist { margin-top: 1.5rem; display: grid; gap: 0.7rem; }
.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--charcoal-70);
  line-height: 1.5;
}
.checklist svg { flex: none; margin-top: 0.15rem; color: var(--gold); }

/* Sector card: copy left, image right (Our Focus comp) */
.sector-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(41, 38, 33, 0.35); }
.sector-card__body { padding: clamp(1.5rem, 1.1rem + 1.1vw, 2rem); display: flex; flex-direction: column; }
.sector-card .media { height: 100%; min-height: 320px; }
.sector-card .icon-circle { width: 48px; height: 48px; margin-bottom: 1.15rem; }

/* --------------------------------------------------------------------------
   10. Process / numbered steps
   -------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(1rem, 0.5rem + 1.6vw, 2rem); }
.step { position: relative; text-align: center; }
.step__num {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-deep);
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.step__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}
.step__label {
  display: block;
  font-size: var(--fs-kicker);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.step p { font-size: 0.875rem; color: var(--charcoal-70); line-height: 1.6; }

/* connector rule between steps */
.process .step::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(-50% + 32px);
  width: calc(100% - 64px);
  height: 1px;
  background: var(--rule);
}
.process .step:first-child::before { display: none; }

/* --------------------------------------------------------------------------
   11. Split feature (image + list)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.numbered-list { display: grid; gap: 1.6rem; counter-reset: step; }
.numbered-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--rule-soft);
}
.numbered-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.numbered-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-deep);
  padding-top: 0.15rem;
}
.numbered-list h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; letter-spacing: 0; }
.numbered-list p { font-size: 0.9375rem; color: var(--charcoal-70); }

/* Feature row with icon + copy (Our Focus pillars) */
.pillars { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; }
.pillar { padding: 0 clamp(0.9rem, 0.5rem + 1vw, 1.6rem); border-left: 1px solid var(--sage-line); }
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar svg { color: var(--gold-deep); margin-bottom: 0.9rem; }
.pillar h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; margin-bottom: 0.45rem; }
.pillar p { font-size: 0.8125rem; line-height: 1.6; color: var(--charcoal-70); }

/* Note / disclosure panel */
.note {
  border-left: 2px solid var(--sage);
  background: var(--sage-tint);
  padding: 1.4rem 1.6rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal-70);
}

/* --------------------------------------------------------------------------
   12. Leadership block
   -------------------------------------------------------------------------- */
.leadership {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  background: var(--sage-tint);
  overflow: hidden;
}
.leadership__media .media { height: 100%; min-height: 380px; }
.leadership__body { padding: clamp(2rem, 1.4rem + 2.4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.leadership__name { font-size: clamp(1.9rem, 1.5rem + 1.5vw, 2.5rem); margin-bottom: 0.15rem; }
.leadership__role {
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   13. Insights
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: clamp(2rem, 1.4rem + 2vw, 3rem);
}
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.filter {
  padding: 0.6rem 1.05rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 1px;
  color: var(--charcoal-70);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter:hover { color: var(--charcoal); border-color: var(--sage-line); }
.filter[aria-pressed="true"] { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: min(260px, 100%);
}
.search input {
  width: 100%;
  padding: 0.72rem 2.6rem 0.72rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1px;
}
.search input::placeholder { color: var(--charcoal-55); }
.search input:focus { border-color: var(--gold); outline-offset: 1px; }
.search svg { position: absolute; right: 0.9rem; color: var(--charcoal-55); pointer-events: none; }

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem);
  align-items: start;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 46vw, 620px);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  color: var(--ivory);
  text-decoration: none;
  overflow: hidden;
  background-color: var(--sage);
  background-image: linear-gradient(140deg, #b9bda6 0%, #9aa184 100%);
}
.feature-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(41, 38, 33, 0.92) 0%, rgba(41, 38, 33, 0.76) 50%, rgba(41, 38, 33, 0.34) 100%);
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card h2 { color: var(--ivory); font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.25rem); margin-bottom: 0.75rem; }
.feature-card p { color: var(--ivory); font-size: 0.9375rem; max-width: 46ch; }
.feature-card .kicker { color: rgba(246, 241, 232, 0.92); }
.feature-card .link-arrow { color: var(--gold-on-dark); margin-top: 1.5rem; }
.feature-card:hover .link-arrow svg { transform: translateX(5px); }
.feature-card:hover { color: var(--ivory); }

.insight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 0.8rem + 1.6vw, 2rem); }

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34%;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(41, 38, 33, 0.35); color: inherit; }
.insight-card__body { padding: 1.5rem; display: flex; flex-direction: column; }
.insight-card h3 { font-size: 1.125rem; margin-bottom: 0.55rem; }
.insight-card p { font-size: 0.875rem; color: var(--charcoal-70); line-height: 1.6; }
.insight-card .link-arrow { margin-top: auto; padding-top: 1.25rem; font-size: 0.8125rem; }
.insight-card .media { height: 100%; min-height: 150px; }
.insight-card__cat {
  font-size: var(--fs-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--charcoal-70);
  border: 1px dashed var(--rule);
}

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  background: var(--sage-tint);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}
.newsletter h2 { font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.75rem); margin-bottom: 0.4rem; }
.newsletter p { font-size: 0.875rem; color: var(--charcoal-70); }
.newsletter__form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1 1 200px;
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1px;
  color: var(--charcoal);
}
.newsletter__form input:focus { border-color: var(--gold); }

/* Article body */
.article-head { max-width: 760px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  font-size: var(--fs-small);
  color: var(--charcoal-55);
  margin-top: 1.5rem;
}
.article-body { max-width: 700px; font-size: 1.0625rem; line-height: 1.85; }
.article-body h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); margin-top: 2.6rem; }
.article-body h3 { margin-top: 2rem; }
.article-body p { color: var(--charcoal-70); }
.article-body > p:first-child { font-size: 1.1875rem; color: var(--charcoal); }
.article-body ul { margin: 0 0 1.4rem; display: grid; gap: 0.7rem; }
.article-body ul li { display: flex; gap: 0.75rem; color: var(--charcoal-70); }
.article-body ul li::before { content: ""; flex: none; width: 5px; height: 5px; margin-top: 0.75em; background: var(--gold); border-radius: 50%; }
.article-body blockquote {
  margin: 2.2rem 0;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--sage);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   14. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr) minmax(0, 0.9fr);
  background: var(--paper);
  border: 1px solid var(--rule-soft);
}
.contact-col { padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); }
.contact-col + .contact-col { border-left: 1px solid var(--rule-soft); }
.contact-col h2 { font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.65rem); }

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.field .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--ivory-lift);
  border: 1px solid var(--rule);
  border-radius: 1px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23292621' stroke-width='1.4' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); background: var(--paper); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #a3402f; background: #fdf6f4; }

.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.field__error {
  display: none;
  font-size: 0.8125rem;
  color: #8f3626;
  margin-top: 0.35rem;
}
.field__error.is-visible { display: block; }

.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.8125rem; color: var(--charcoal-70); margin: 1.25rem 0 1.5rem; }
.consent input { margin-top: 0.25rem; accent-color: var(--gold-deep); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--gold-deep); }

.form-status { margin-top: 1.25rem; padding: 1rem 1.15rem; font-size: 0.875rem; line-height: 1.6; display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--sage-tint); border-left: 2px solid var(--sage); }
.form-status--error { background: #fdf3f0; border-left: 2px solid #a3402f; color: #7a2f21; }

.contact-item { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--rule-soft); }
.contact-item:last-of-type { border-bottom: 0; }
.contact-item__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--sage-tint);
  color: var(--gold-deep);
  flex: none;
}
.contact-item h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9375rem; margin-bottom: 0.15rem; }
.contact-item .small { color: var(--charcoal-55); }

.expect { border-top: 1px solid var(--rule-soft); }
.expect details { border-bottom: 1px solid var(--rule-soft); }
.expect summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.9375rem;
}
.expect summary::-webkit-details-marker { display: none; }
.expect summary .chev { transition: transform 0.3s var(--ease); color: var(--charcoal-55); }
.expect details[open] summary .chev { transform: rotate(180deg); }
.expect .contact-item__icon { width: 42px; height: 42px; border-radius: 50%; }
.expect .expect__body { padding: 0 0 1.25rem 3.5rem; font-size: 0.875rem; color: var(--charcoal-70); }

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  background: var(--sage-tint);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.5rem) clamp(1.75rem, 1.2rem + 2vw, 3rem);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.4rem, 1.15rem + 1.1vw, 2rem); margin-bottom: 0.35rem; }
.cta-band p { color: var(--charcoal-70); font-size: 0.9375rem; }
.cta-band .media__botanical { opacity: 0.45; width: 200px; left: -40px; right: auto; top: -30px; bottom: auto; }

/* --------------------------------------------------------------------------
   15. Final CTA section
   -------------------------------------------------------------------------- */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta h2 { font-size: clamp(2rem, 1.5rem + 2.2vw, 3.1rem); }
.final-cta .lede { margin-inline: auto; }
.final-cta .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: rgba(246, 241, 232, 0.78); }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.6fr) minmax(0, 0.6fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 1.2rem + 3vw, 4rem);
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.footer-brand__mark { height: 62px; width: auto; }
.footer-brand__word { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand__tag { height: 14px; width: auto; margin-top: 0.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.footer-positioning {
  margin-top: 1.5rem;
  font-size: var(--fs-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.55);
}
.footer-philosophy { margin-top: 1rem; font-family: var(--serif); font-size: 1.05rem; color: rgba(246, 241, 232, 0.72); }

.footer-col h2 {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.9375rem; text-decoration: none; color: rgba(246, 241, 232, 0.78); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-contact li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; align-items: start; font-size: 0.9375rem; }
.footer-contact svg { color: var(--gold); margin-top: 0.3rem; }

.social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(246, 241, 232, 0.25);
  border-radius: 50%;
  color: var(--gold);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.social a:hover { border-color: var(--gold); background: rgba(178, 138, 82, 0.14); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(246, 241, 232, 0.13);
  font-size: 0.8125rem;
  color: rgba(246, 241, 232, 0.55);
}
.footer-bottom a { text-decoration: none; color: rgba(246, 241, 232, 0.7); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1rem; align-items: center; }
.footer-legal span { color: rgba(246, 241, 232, 0.25); }

/* --------------------------------------------------------------------------
   17. Motion — restrained fade / slide reveals only
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .parallax { transform: none !important; }
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2.5rem; }
  .process .step::before { display: none; }
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 0; }
  .pillar:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
  .insights-layout { grid-template-columns: minmax(0, 1fr); }
  .feature-card { min-height: 360px; }
  .contact-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .contact-col:nth-child(3) { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--rule-soft); }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter { grid-template-columns: minmax(0, 1fr); }
  .newsletter__icon { display: none; }
}

@media (max-width: 900px) {
  /* Hero: single column, copy first, imagery second (brief §12) */
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__media { order: 2; }
  .hero__media { margin-right: calc(50% - 50vw); margin-left: calc(50% - 50vw); }
  .hero__scrim { display: none; }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media { order: 0; }
  .leadership { grid-template-columns: minmax(0, 1fr); }
  .leadership__media .media { min-height: 320px; aspect-ratio: 3 / 2; }
  .sector-card { grid-template-columns: minmax(0, 1fr); }
  .sector-card .media { min-height: 200px; order: -1; }
  .cta-band { grid-template-columns: minmax(0, 1fr); text-align: left; }
}

@media (max-width: 720px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 { grid-template-columns: minmax(0, 1fr); }
  .process { grid-template-columns: minmax(0, 1fr); row-gap: 2rem; }
  .step { text-align: left; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.25rem; align-items: start; }
  .step__num { margin: 0; }
  .pillars { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .pillar { border-left: 0; padding-left: 0; }
  .insight-grid { grid-template-columns: minmax(0, 1fr); }
  .filter { padding: 0.8rem 1.1rem; }
  .search { flex: 1 1 100%; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  .contact-col + .contact-col { border-left: 0; border-top: 1px solid var(--rule-soft); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand__word { height: 30px; }
  .brand__mark { height: 44px; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 220px; }
}

@media (max-width: 420px) {
  .brand__word { height: 26px; }
  .brand__mark { height: 40px; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn-row, .cta-band { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   20. Layout helpers used by page templates
   -------------------------------------------------------------------------- */
.numbered-list--cols {
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: clamp(2rem, 1rem + 3vw, 4rem);
}

.checklist--cols {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 2rem;
}

.note-wrap { margin-top: 2.5rem; max-width: 76ch; }

.lead-snippet {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-soft);
}
.lead-snippet__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.btn-row--tight { margin-top: 1.75rem; }

.intent-lines {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
}

.breadcrumb { margin-bottom: 2rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.pt-0 { padding-top: 0; }
.mt-block { margin-top: clamp(2.5rem, 2rem + 2vw, 4rem); }
.mt-lg { margin-top: 3rem; }
.mx-auto { margin-inline: auto; }
.text-center { text-align: center; }
.btn-row--center { justify-content: center; }

.newsletter__note { flex: 1 1 100%; color: var(--charcoal-55); margin: 0; }
.newsletter .form-status { flex: 1 1 100%; }
.consent label { font-weight: 400; }

/* --------------------------------------------------------------------------
   21. Image slots
   --------------------------------------------------------------------------
   Every editorial image position carries data-slot="…" in the markup and is
   filled here. The artwork in assets/img/art/ is INTERIM: the photographic
   files are crops of the approved design comps and are low-resolution, and
   two slots with no source (market expansion, leadership portrait) are vector
   stand-ins. All of it is replaced by pointing these rules at the licensed or
   client-supplied photography. See assets/img/README.md.

   Each rule keeps the warm-neutral gradient as a lower layer, so a slot still
   reads correctly if its image is missing.
   -------------------------------------------------------------------------- */

.media[data-slot="home-hero"],
.media[data-slot="contact-hero"],
.media[data-slot="about-hero"],
.media[data-slot="expertise-hero"],
.media[data-slot="focus-hero"],
.media[data-slot="insights-hero"] { background-position: 42% center; }

.media[data-slot="home-hero"] {
  background-image: image-set(url("../img/art/arch-wide.webp") type("image/webp"),
                              url("../img/art/arch-wide.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="contact-hero"] {
  background-image: image-set(url("../img/art/arch-wide.webp") type("image/webp"),
                              url("../img/art/arch-wide.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="about-hero"] {
  background-image: image-set(url("../img/art/arch-about.webp") type("image/webp"),
                              url("../img/art/arch-about.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="expertise-hero"] {
  background-image: image-set(url("../img/art/arch-expertise.webp") type("image/webp"),
                              url("../img/art/arch-expertise.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="focus-hero"] {
  background-image: image-set(url("../img/art/arch-focus.webp") type("image/webp"),
                              url("../img/art/arch-focus.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insights-hero"] {
  background-image: image-set(url("../img/art/arch-tight.webp") type("image/webp"),
                              url("../img/art/arch-tight.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="home-about"] {
  background-image: image-set(url("../img/art/notebook.webp") type("image/webp"),
                              url("../img/art/notebook.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="focus-expansion"] {
  background-image: image-set(url("../img/art/collateral.webp") type("image/webp"),
                              url("../img/art/collateral.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="sector-dental"] {
  background-image: image-set(url("../img/art/dental.webp") type("image/webp"),
                              url("../img/art/dental.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="sector-beauty"] {
  background-image: image-set(url("../img/art/skincare.webp") type("image/webp"),
                              url("../img/art/skincare.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="sector-wellbeing"] {
  background-image: image-set(url("../img/art/wellbeing.webp") type("image/webp"),
                              url("../img/art/wellbeing.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-strategy"] {
  background-image: image-set(url("../img/art/collateral.webp") type("image/webp"),
                              url("../img/art/collateral.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-brand"] {
  background-image: image-set(url("../img/art/stone-branch.webp") type("image/webp"),
                              url("../img/art/stone-branch.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-beauty"] {
  background-image: image-set(url("../img/art/skincare.webp") type("image/webp"),
                              url("../img/art/skincare.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-dental"] {
  background-image: image-set(url("../img/art/dental.webp") type("image/webp"),
                              url("../img/art/dental.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-wellbeing"] {
  background-image: image-set(url("../img/art/wellbeing.webp") type("image/webp"),
                              url("../img/art/wellbeing.jpg") type("image/jpeg")),
                    linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="home-market"] {
  background-image: url("../img/art/city.svg"), linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="expertise-market"] {
  background-image: url("../img/art/city.svg"), linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="insight-market-expansion"] {
  background-image: url("../img/art/city.svg"), linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}
.media[data-slot="about-portrait"] {
  background-image: url("../img/art/portrait.svg"), linear-gradient(140deg, #efe7d9 0%, #e3d8c6 42%, #d9cdb9 100%);
}

/* The featured Insights card and the CTA band paint their own art */
.feature-card[data-slot="insight-featured"] {
  background-image: image-set(url("../img/art/notebook.webp") type("image/webp"),
                              url("../img/art/notebook.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.cta-band {
  background-image: image-set(url("../img/art/branch-band.webp") type("image/webp"),
                              url("../img/art/branch-band.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* keep the band's copy legible over the photograph */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 240, 232, 0.99) 0%,
                                     rgba(238, 240, 232, 0.94) 62%,
                                     rgba(238, 240, 232, 0.45) 100%);
}
.cta-band > * { position: relative; z-index: 1; }

/* The inline botanical motif is only for slots with no artwork behind them */
.media[data-slot] .media__botanical { display: none; }
