/* ============================================================
   NAUTILUS RISK MANAGEMENT — Editorial Heritage
   Static stylesheet, no build step. Hosted on Afrihost.
   ============================================================ */

/* --- 1. DESIGN TOKENS --- */
:root {
  /* Ink + paper */
  --ink:         #0A0A0B;
  --ink-deep:    #050505;
  --ink-soft:    #1A1A1C;
  --bone:        #F6F2EA;
  --cream:       #EFE3CC;
  --cream-deep:  #E5D9BD;

  /* Gold (precious, never fill) */
  --gold:        #C9A961;
  --gold-deep:   #8C6A2F;
  --gold-pale:   #E1C98C;
  --gold-glow:   rgba(201, 169, 97, 0.18);
  --gold-mist:   rgba(201, 169, 97, 0.08);

  /* Neutrals */
  --stone:       #7A736A;
  --stone-light: #C4BAA8;
  --stone-pale:  #DDD3BF;

  /* Signal */
  --coral:       #C04E3A;

  /* Type — Jost (geometric, Futura-adjacent). One sans for
     display + body, JetBrains Mono for code/tag accents. */
  --display: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ui:      "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-pad: clamp(2.5rem, 8vw, 8rem);
  --max-w: 1400px;

  /* Shadows */
  --shadow-gold: 0 0 0 1px var(--gold), 0 20px 60px -20px var(--gold-glow);
  --shadow-deep: 0 30px 80px -30px rgba(0, 0, 0, 0.5);
}

/* --- 2. RESET + BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- 3. TYPOGRAPHY SYSTEM --- */
.display-xl {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.display-l {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-m {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.display-s {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.008em;
}

.eyebrow {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow-light {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.chapter-num {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.lede {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
}

.lede-light {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--stone-light);
}

.body-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.body-text-light {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--stone-pale);
}

.fine {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.italic-note {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.5;
}

::selection { background: var(--gold); color: var(--ink); }

/* --- 4. LAYOUT PRIMITIVES --- */
.shell {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.shell-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.section--ink {
  background: var(--ink);
  color: var(--bone);
}

.section--cream { background: var(--cream); }

.divider-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-deep) 30%, var(--gold-deep) 70%, transparent);
  border: none;
  margin: 0;
}

.divider-stone {
  height: 1px;
  background: var(--stone-light);
  border: none;
}

.divider-stone-dark {
  height: 1px;
  background: rgba(196, 186, 168, 0.18);
  border: none;
}

/* --- 5. HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
  color: var(--bone);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brandmark__shell {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.brandmark__word {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bone);
  line-height: 1;
}

.brandmark__word span {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-family: var(--ui);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-main a {
  color: var(--bone);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-main a:hover { color: var(--gold-pale); }
.nav-main a:hover::after,
.nav-main a.is-current::after,
.nav-main a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-main a.is-current,
.nav-main a[aria-current="page"] { color: var(--gold-pale); }

/* Mobile-nav active state */
.mobile-nav__links a[aria-current="page"] { color: var(--gold); }

/* --- Cross-link note (Services ↔ Industries pointers) --- */
.cross-link-note {
  margin-top: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  line-height: 1.55;
}
.cross-link-note a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(140, 106, 47, 0.4);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.cross-link-note a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
.cross-link-note--light {
  color: var(--stone-pale);
}
.cross-link-note--light a {
  color: var(--gold);
  border-bottom-color: rgba(201, 169, 97, 0.4);
}
.cross-link-note--light a:hover {
  color: var(--gold-pale);
  border-bottom-color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  font-family: var(--ui);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s ease;
}

.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 14px; height: 14px; }

/* --- 6. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  border: 1px solid transparent;
  position: relative;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-pale);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -12px var(--gold-glow);
}

.btn--ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-deep);
}
.btn--ghost-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-ink:hover { background: var(--ink); color: var(--bone); }

.btn--ghost-bone {
  background: transparent;
  color: var(--bone);
  border-color: rgba(246, 242, 234, 0.55);
}
.btn--ghost-bone:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  transition: color 0.25s ease, gap 0.25s ease;
}
.text-link:hover { color: var(--ink); gap: 0.75rem; }

.text-link--gold {
  color: var(--gold);
}
.text-link--gold:hover { color: var(--gold-pale); }

/* --- 7. HERO PATTERN --- */
.hero {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.hero__meta-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero__answer {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--cream);
  margin-top: 2rem;
  max-width: 540px;
}

.hero__answer strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-pale);
}

.hero__cta-row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero__shell-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__shell-frame svg,
.hero__shell-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Decorative grid behind hero */
.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(to right, var(--gold) 1px, transparent 1px),
    linear-gradient(to bottom, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 30%, transparent 70%);
}

/* --- 8. PROOF BAR --- */
.proof-bar {
  background: var(--ink-deep);
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  padding: 2.5rem 0;
  color: var(--bone);
}

.proof-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (max-width: 720px) {
  .proof-bar__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  padding: 0 1rem;
}

.proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201, 169, 97, 0.25);
}

@media (max-width: 720px) {
  .proof-item:not(:last-child)::after { display: none; }
}

.proof-item__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.proof-item__label {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-pale);
}

/* --- 9. SECTION HEADER --- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
}

.section-head__num {
  display: none;
}

.section--ink .section-head__num { color: var(--gold); }
.section--ink .section-head__title,
.partner-band .section-head__title { color: var(--bone); }

.section-head__body {
  padding-bottom: 0.5rem;
}

.section-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 0.75rem;
  max-width: 720px;
}

.section-head__sub {
  font-family: var(--body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--stone);
  max-width: 580px;
}

.section--ink .section-head__sub { color: var(--stone-pale); }

/* --- 10. SERVICE CARDS GRID --- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
}

.svc-card {
  background: var(--bone);
  border: 1px solid var(--stone-pale);
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.svc-card:hover {
  border-color: var(--gold-deep);
  background: var(--cream);
  transform: translateY(-3px);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-card__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1;
}

.svc-card__icon {
  width: 52px;
  height: 52px;
  color: var(--gold-deep);
}

.svc-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.5rem;
  letter-spacing: -0.012em;
}

.svc-card__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.svc-card__link {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: gap 0.25s ease;
}

.svc-card:hover .svc-card__link { gap: 0.85rem; }

/* --- 11. CHAMBERS (How we work) --- */
.chambers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}

@media (max-width: 880px) {
  .chambers { grid-template-columns: 1fr; gap: 3rem; }
}

.chamber {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.chamber__visual {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.chamber__num {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  background: var(--ink);
  padding: 0 0.6rem;
  z-index: 2;
}

.chamber__visual svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.chamber__title {
  font-family: var(--ui);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.chamber__verb {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 0.75rem;
  letter-spacing: -0.012em;
}

.chamber__desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--stone-pale);
  max-width: 280px;
  margin: 0 auto;
}

.chamber__connector {
  display: none;
}

@media (min-width: 881px) {
  .chamber:not(:last-child) .chamber__connector {
    display: block;
    position: absolute;
    top: 70px;
    right: -2rem;
    width: 4rem;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-deep), transparent);
  }
}

/* --- 12. INDUSTRIES STRIP --- */
.industries-list {
  border-top: 1px solid var(--stone-light);
}

.industry-row {
  border-bottom: 1px solid var(--stone-light);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  transition: all 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}

.industry-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.industry-row:hover::before { transform: translateX(0); }
.industry-row:hover > * { color: var(--bone); z-index: 1; }
.industry-row:hover .industry-row__num { color: var(--gold); }
.industry-row:hover .industry-row__cta { color: var(--gold); }

.industry-row > * { position: relative; z-index: 1; transition: color 0.35s ease; }

@media (max-width: 720px) {
  .industry-row { grid-template-columns: 1fr; row-gap: 0.5rem; }
  .industry-row__pain, .industry-row__cta { grid-column: 1 / -1; }
}

.industry-row__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold-deep);
}

.industry-row__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.industry-row__pain {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.4;
  max-width: 380px;
}

.industry-row__cta {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.industry-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.dataportal-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dataportal-link:hover {
  color: #f0d080;
}

/* --- 13. PARTNER BAND --- */
.partner-band {
  background: var(--ink);
  color: var(--bone);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.partner-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.partner-card:last-child { border-bottom: none; }
.partner-band .partner-card:first-of-type { padding-top: 0; }

@media (max-width: 880px) {
  .partner-card { grid-template-columns: 1fr; gap: 2rem; }
}

.partner-card--mirror .partner-card__visual { order: 2; }
@media (max-width: 880px) {
  .partner-card--mirror .partner-card__visual { order: 0; }
}

.partner-card__visual {
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.partner-lockup {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.partner-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  color: var(--bone);
  letter-spacing: -0.018em;
  margin-bottom: 0.5rem;
}

.partner-tag {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.partner-body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-pale);
  margin-bottom: 1.5rem;
}

.partner-features {
  list-style: none;
  margin-bottom: 2rem;
}

.partner-features li {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--cream);
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.partner-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.partner-support {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.partner-support::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* --- 14. TESTIMONIAL --- */
.testimonial {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.testimonial__quote {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.012em;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial__quote::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 6rem;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.testimonial__attr {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.testimonial__attr span {
  display: block;
  margin-top: 0.3rem;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* --- 15. CLOSING CTA --- */
.cta-final {
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-final__shell {
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: var(--gold);
}

.cta-final__shell svg { width: 100%; height: 100%; }

.cta-final__eyebrow {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
}

.cta-final__line {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.cta-final__sub {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--gold-pale);
  margin-bottom: 3rem;
  position: relative;
}

.cta-final__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

/* --- 16. FOOTER --- */
.site-footer {
  background: var(--ink-deep);
  color: var(--stone-pale);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.25fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  margin-bottom: 4rem;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col__person-tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.45rem;
}
.footer-col__person-tag:not(:first-of-type) {
  margin-top: 0.95rem;
}

.footer-col__head {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.footer-col__tag {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--stone-pale);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-col p, .footer-col li {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.55rem;
  color: var(--stone-pale);
}

.footer-col a:hover { color: var(--gold-pale); }

.footer-col__contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-col__contact-line svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.12);
  font-size: 0.8rem;
  color: var(--stone);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom__legal a:hover { color: var(--gold-pale); }

.footer-partner-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-partner-row span { color: var(--gold-deep); }

/* --- Founder band (Mike West) --- */
.founder-band {
  background: var(--ink-deep);
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  border-bottom: 1px solid rgba(201, 169, 97, 0.08);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.founder-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--gold-mist), transparent 60%);
  pointer-events: none;
}

.founder-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .founder-block { grid-template-columns: auto 1fr; row-gap: 1.5rem; }
  .founder-block__link { grid-column: 1 / -1; }
}

.founder-portrait {
  width: clamp(72px, 9vw, 96px);
  height: clamp(72px, 9vw, 96px);
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-body__eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.founder-body__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin-bottom: 0.4rem;
}

.founder-body__name em {
  font-style: italic;
  color: var(--gold-pale);
}

.founder-body__line {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--stone-pale);
  max-width: 540px;
}

.founder-block__link {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold-deep);
  transition: color 0.25s ease, gap 0.25s ease;
  white-space: nowrap;
}

.founder-block__link:hover { color: var(--gold-pale); gap: 0.75rem; }

/* ============================================================
   MIKE WEST TRIBUTE PAGE
   ============================================================ */

/* Tribute hero — full bleed editorial */
.tribute-hero {
  background: var(--ink-deep);
  color: var(--bone);
  min-height: 92vh;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.tribute-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tribute-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(20%) contrast(1.05) brightness(0.7);
}

.tribute-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink-deep) 0%, rgba(10,10,11,0.6) 40%, rgba(10,10,11,0.4) 70%, rgba(10,10,11,0.85) 100%),
    linear-gradient(to right, rgba(10,10,11,0.6) 0%, transparent 50%);
}

.tribute-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(8rem, 14vw, 12rem);
}

.tribute-hero__chapter {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tribute-hero__chapter::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.tribute-hero__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.tribute-hero__name em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

.tribute-hero__sub {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--cream);
  max-width: 720px;
  letter-spacing: 0.005em;
}

.tribute-hero__sub strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.tribute-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.tribute-hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Editorial chapter section */
.tribute-chapter {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.tribute-chapter--ink {
  background: var(--ink);
  color: var(--bone);
}

.tribute-chapter--cream { background: var(--cream); }

.tribute-chapter__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: baseline;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 920px;
}

@media (max-width: 720px) {
  .tribute-chapter__head { grid-template-columns: 1fr; gap: 1rem; }
}

.tribute-chapter__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.85;
  color: var(--gold-deep);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.tribute-chapter--ink .tribute-chapter__num { color: var(--gold); }

.tribute-chapter__eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.tribute-chapter--ink .tribute-chapter__eyebrow { color: var(--gold); }

.tribute-chapter__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.tribute-chapter--ink .tribute-chapter__title { color: var(--bone); }

.tribute-chapter__title em { font-style: italic; color: var(--gold-pale); }

/* Two-column body: text + image float */
.tribute-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1180px;
}

@media (max-width: 880px) {
  .tribute-body { grid-template-columns: 1fr; }
}

.tribute-body--mirror .tribute-body__visual { order: -1; }

@media (max-width: 880px) {
  .tribute-body--mirror .tribute-body__visual { order: 0; }
}

.tribute-prose {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 60ch;
}

.tribute-chapter--ink .tribute-prose { color: var(--stone-pale); }

.tribute-prose p { margin-bottom: 1.4rem; }

.tribute-prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 4.2em;
  float: left;
  line-height: 0.82;
  margin-right: 0.12em;
  margin-top: 0.08em;
  color: var(--gold-deep);
}

.tribute-chapter--ink .tribute-prose p:first-of-type::first-letter { color: var(--gold); }

.tribute-prose strong {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.005em;
}

.tribute-chapter--ink .tribute-prose strong { color: var(--gold-pale); }

.tribute-prose em { font-style: italic; color: var(--ink); }
.tribute-chapter--ink .tribute-prose em { color: var(--bone); }

/* Photo with caption */
.tribute-photo {
  position: relative;
  display: block;
}

.tribute-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(8%) contrast(1.02);
}

.tribute-photo--bordered img {
  border: 1px solid var(--gold-deep);
  padding: 8px;
  background: var(--ink);
}

.tribute-chapter--cream .tribute-photo--bordered img {
  background: var(--cream);
}

.tribute-photo__caption {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--stone);
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gold-deep);
  max-width: 420px;
}

.tribute-chapter--ink .tribute-photo__caption {
  color: var(--stone-pale);
  border-left-color: var(--gold);
}

/* Full-bleed image break */
.tribute-bleed {
  position: relative;
  width: 100%;
  background: var(--ink-deep);
  padding: 0;
  overflow: hidden;
}

.tribute-bleed__img {
  display: block;
  width: 100%;
  height: clamp(50vh, 75vw, 90vh);
  object-fit: cover;
  object-position: center;
}

.tribute-bleed__caption {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: var(--gutter);
  right: var(--gutter);
  max-width: 720px;
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.tribute-bleed__caption strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Badge wall — service memorabilia grid */
.badge-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: 3rem;
}

@media (max-width: 880px) { .badge-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .badge-wall { grid-template-columns: 1fr 1fr; } }

.badge-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.badge-item__frame {
  aspect-ratio: 1;
  background: var(--ink-deep);
  border: 1px solid rgba(201, 169, 97, 0.25);
  overflow: hidden;
  position: relative;
}

.badge-item__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.badge-item:hover .badge-item__frame img { transform: scale(1.04); }

.badge-item__label {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.badge-item__detail {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--stone-pale);
  margin-top: -0.4rem;
}

/* Pull quote (large editorial quote section) */
.tribute-quote {
  background: var(--cream-deep);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.tribute-quote--ink {
  background: var(--ink-deep);
  color: var(--bone);
}

.tribute-quote__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}

.tribute-quote__mark {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 1rem;
}

.tribute-quote__text {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.014em;
  color: var(--ink);
}

.tribute-quote--ink .tribute-quote__text { color: var(--bone); }

.tribute-quote__text em {
  color: var(--gold-deep);
  font-style: italic;
}

.tribute-quote--ink .tribute-quote__text em { color: var(--gold-pale); }

.tribute-quote__attr {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2.5rem;
  font-weight: 500;
}

.tribute-quote--ink .tribute-quote__attr { color: var(--gold); }

/* Honors / service strip */
.honors-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

@media (max-width: 720px) {
  .honors-strip { grid-template-columns: 1fr 1fr; }
}

.honor {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(201, 169, 97, 0.18);
  text-align: left;
}

.honor:last-child { border-right: none; }
@media (max-width: 720px) {
  .honor:nth-child(2n) { border-right: none; }
  .honor:nth-child(1), .honor:nth-child(2) { border-bottom: 1px solid rgba(201, 169, 97, 0.18); }
}

.honor__period {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.honor__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 0.4rem;
  letter-spacing: -0.008em;
}

.honor__detail {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--stone-pale);
}

/* Painting feature — special treatment for mike-15 */
.painting-feature {
  background: var(--ink-deep);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.painting-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 80vh;
}

@media (max-width: 880px) {
  .painting-feature__inner { grid-template-columns: 1fr; }
}

.painting-feature__image {
  position: relative;
  overflow: hidden;
}

.painting-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 50vh;
}

.painting-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: 600px;
}

.painting-feature__eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.painting-feature__title {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.painting-feature__title em { color: var(--gold-pale); }

.painting-feature__body p {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stone-pale);
  margin-bottom: 1.2rem;
}

.painting-feature__body p strong {
  color: var(--gold-pale);
  font-weight: 500;
}

/* Closing tribute */
.tribute-closing {
  text-align: center;
  background: var(--ink);
  color: var(--bone);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.tribute-closing__line {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--bone);
  max-width: 760px;
  margin: 0 auto 2rem;
}

.tribute-closing__line em { color: var(--gold-pale); }

.tribute-closing__small {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ============================================================
   CAR GUARDIAN PAGE — consumer-design specific components
   ============================================================ */

/* GotYou logo — render as white via CSS filter for use on dark backgrounds */
.gy-logo-white { filter: brightness(0) invert(1); }

/* At-a-glance product panel (hero right column) */
.cg-panel {
  background: rgba(201,169,97,0.04);
  border: 1px solid rgba(201,169,97,0.22);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.cg-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,169,97,0.14), transparent 70%);
  pointer-events: none;
}

.cg-panel__eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
  position: relative;
}

.cg-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.cg-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(201,169,97,0.1);
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--stone-pale);
}

.cg-panel__item:first-child { border-top: none; padding-top: 0; }
.cg-panel__item:last-child { padding-bottom: 0; }

.cg-panel__icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cg-panel__item strong {
  color: var(--bone);
  font-weight: 600;
}

.cg-panel__divider {
  height: 1px;
  background: rgba(201,169,97,0.22);
  border: none;
  margin: 1.5rem 0;
}

.cg-panel__compat-models {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.cg-panel__compat-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.cg-panel__compat-link:hover { color: var(--gold-pale); gap: 0.6rem; }

/* Price-dominant stat block */
.cg-price-block {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.6rem;
  margin: 1.75rem 0 1.5rem;
}

@media (max-width: 480px) {
  .cg-price-block { grid-template-columns: 1fr; }
}

.cg-price-block__main {
  padding: 1.25rem 1.5rem;
  background: var(--gold-mist);
  border: 1px solid rgba(201,169,97,0.35);
}

.cg-price-block__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.cg-price-block__label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-pale);
  margin-top: 0.5rem;
}

.cg-price-block__monthly {
  padding: 1.25rem 1.25rem;
  background: rgba(201,169,97,0.06);
  border: 1px solid rgba(201,169,97,0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cg-price-block__monthly-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  line-height: 0.95;
}

/* Inline credential row — demoted from main stats */
.cg-credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0 0 2rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201,169,97,0.22);
  border-bottom: 1px solid rgba(201,169,97,0.22);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-pale);
}

.cg-credential-row strong {
  color: var(--gold);
  font-weight: 500;
}

/* How-it-works step icons */
.cg-step__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* Compatibility — full-bleed band */
.cg-compat-big {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}

.cg-compat-big__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 720px) {
  .cg-compat-big__grid { grid-template-columns: 1fr; }
}

.cg-compat-big__count {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 11vw, 8rem);
  color: var(--gold-deep);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.cg-compat-big__count-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.6rem;
}

.cg-compat-big__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.cg-compat-chip {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  padding: 0.5rem 1.15rem;
  background: var(--bone);
  border: 1px solid var(--stone-light);
  letter-spacing: -0.012em;
}

/* Install Day strip */
.install-day {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .install-day { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .install-day { grid-template-columns: 1fr; }
}

.install-day__item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--stone-light);
  position: relative;
}

.install-day__item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--gold-deep);
  z-index: 2;
}

@media (max-width: 720px) {
  .install-day__item:not(:last-child)::after { display: none; }
}

.install-day__icon {
  width: 36px;
  height: 36px;
  color: var(--gold-deep);
  margin: 0 auto 1rem;
}

.install-day__num {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.install-day__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}

.install-day__sub {
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* FAQ accordion */
.faq {
  max-width: 820px;
  margin: 2rem auto 0;
}

.faq details {
  border-bottom: 1px solid var(--stone-light);
  padding: 1.4rem 0;
}

.faq details[open] summary { color: var(--gold-deep); }

.faq summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

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

.faq summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq__body {
  margin-top: 1rem;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-right: 3rem;
}

.faq__body p { margin-bottom: 0.75rem; }
.faq__body p:last-child { margin-bottom: 0; }

/* Merged testimonial + credentials band */
.merged-trust {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.merged-trust__quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.014em;
  color: var(--bone);
  max-width: 880px;
  margin: 0 auto 2rem;
  text-align: center;
}

.merged-trust__attr {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.merged-trust__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
}

.merged-trust__name {
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--bone);
  line-height: 1.2;
}

.merged-trust__role {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-pale);
  margin-top: 0.3rem;
}

.merged-trust__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

@media (max-width: 540px) {
  .merged-trust__credentials { grid-template-columns: 1fr; }
}

.merged-trust__credential {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(201, 169, 97, 0.12);
}

.merged-trust__credential:last-child { border-right: none; }

@media (max-width: 540px) {
  .merged-trust__credential {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  }
  .merged-trust__credential:last-child { border-bottom: none; }
}

.merged-trust__credential-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.merged-trust__credential-value {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--bone);
}

/* --- 17. WHATSAPP FAB --- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 40px -10px rgba(37, 211, 102, 0.7);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* --- 18. MOBILE NAV --- */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
}

.menu-toggle__bar {
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.3s ease, top 0.3s ease;
}
.menu-toggle__bar:nth-child(1) { top: 14px; }
.menu-toggle__bar:nth-child(2) { top: 20px; width: 16px; }
.menu-toggle__bar:nth-child(3) { top: 26px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
  background: var(--gold);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
  background: var(--gold);
}

@media (max-width: 980px) {
  .nav-main, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    padding: 6rem var(--gutter) 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 105;
  }
  .mobile-nav.is-open { transform: translateX(0); }
}

@media (min-width: 981px) {
  .mobile-nav { display: none; }
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav__links a {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--bone);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  letter-spacing: -0.012em;
}

.mobile-nav__links a:hover { color: var(--gold); }

.mobile-nav__footer {
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  padding-top: 1.5rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--gold-pale);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__footer a { display: flex; align-items: center; gap: 0.5rem; }

/* --- 19. PAGE HERO (interior pages) --- */
.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(2.5rem, 6vw, 7rem) 0 clamp(1.75rem, 4vw, 5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (max-width: 880px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.page-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--bone);
}
.page-hero__title em {
  font-weight: 400;
  font-style: italic;
}

.page-hero__sub {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--gold-pale);
  max-width: 520px;
  margin-top: 1.25rem;
}

.page-hero__title + .page-hero__sub { margin-top: 1.5rem; }

/* CTA row sitting directly under the hero copy. */
.page-hero .btn-row,
.page-hero__cta { margin-top: 2.5rem; }

/* Hero promise line — the gold one-liner sitting between H1 and sub. */
.page-hero__promise {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.35;
  color: var(--gold);
  font-weight: 500;
  max-width: 38ch;
  margin-top: 1.25rem;
}

.breadcrumb {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.breadcrumb a { color: var(--stone-pale); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gold-deep); margin: 0 0.5rem; }

/* Breadcrumb sits on light-cream page-hero on light subpages — bump to ink for AA */
.page-hero .breadcrumb { color: var(--gold-deep); }
.page-hero .breadcrumb a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(122,115,106,0.4); text-underline-offset: 3px; }
.page-hero .breadcrumb a:hover { color: var(--gold-deep); text-decoration-color: var(--gold-deep); }
.page-hero .breadcrumb__sep { color: var(--gold-deep); }

/* --- 20. CONTENT BLOCKS (interior pages) --- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--stone-light);
}

.split-block:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .split-block { grid-template-columns: 1fr; gap: 1.5rem; }
}

.split-block__lhs { position: sticky; top: 110px; }

@media (max-width: 880px) {
  .split-block__lhs { position: static; }
}

.split-block__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.85;
  color: var(--gold-deep);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.split-block__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.split-block__eyebrow {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}

.cap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin: 2rem 0;
}

@media (max-width: 560px) {
  .cap-list { grid-template-columns: 1fr; }
}

.cap-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--stone-light);
}

.cap-item__bullet {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-deep);
  padding-top: 0.15rem;
  font-weight: 400;
}

.cap-item__text {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.cap-item__text strong {
  color: var(--ink);
  font-weight: 500;
}

.mini-proof {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  margin-top: 2rem;
}

.mini-proof__quote {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.mini-proof__attr {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

/* --- 21. CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info {
  border-top: 1px solid var(--stone-light);
}

.contact-info__row {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone-light);
}

.contact-info__label {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info__value {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.contact-info__value a:hover { color: var(--gold-deep); }

.form-box {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--stone-light);
}

.form-box__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.012em;
}

.form-box__sub {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.field__label {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stone-light);
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--body);
  line-height: 1.5;
}

.field select { appearance: none; cursor: pointer; }

.form-fine {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.form-success {
  background: var(--ink);
  color: var(--gold-pale);
  padding: 2rem;
  font-family: var(--body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
}

/* --- 22. TEAM CARDS --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--bone);
  border: 1px solid var(--stone-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}

.team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.team-card__portrait {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--stone-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-deep);
}

.team-card__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.team-card__role {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: -0.5rem;
}

.team-card__bio {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.team-card__link {
  margin-top: 0.95rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.team-card__link a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(140, 106, 47, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.team-card__link a:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}

/* --- 23. VALUES STRIP --- */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 3rem 0;
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}

@media (max-width: 720px) {
  .values-strip { grid-template-columns: 1fr; }
}

.value {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--stone-light);
}

.value:last-child { border-right: none; }

@media (max-width: 720px) {
  .value { border-right: none; border-bottom: 1px solid var(--stone-light); }
  .value:last-child { border-bottom: none; }
}

.value__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.value__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.012em;
}

.value__text {
  font-family: var(--body);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--stone);
}

/* --- 24. PROSE (longform body copy) --- */
.prose {
  max-width: 680px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose p { margin-bottom: 1.5rem; }

.prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin-right: 0.1em;
  margin-top: 0.1em;
  color: var(--gold-deep);
}

.prose strong {
  font-weight: 500;
  color: var(--ink);
}

.prose em {
  color: var(--ink);
  font-style: italic;
}

/* Plain prose variant — for legal pages where the drop-cap is too ornamental. */
.prose--plain p:first-of-type::first-letter,
.prose--plain p::first-letter {
  all: unset;
}
.prose-h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}
.prose-h2:first-of-type { margin-top: 0; }
.prose ul {
  margin: 0 0 1.5rem 0;
  padding-left: 1.25rem;
}
.prose ul li {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

/* --- 25. ANIMATIONS --- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; }
}

.rise { animation: rise 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.rise-1 { animation-delay: 0.1s; }
.rise-2 { animation-delay: 0.25s; }
.rise-3 { animation-delay: 0.4s; }
.rise-4 { animation-delay: 0.55s; }
.rise-5 { animation-delay: 0.7s; }

/* --- PRINT / PDF --- */
@media print {
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  .site-header, .mobile-nav, .fab-whatsapp, .menu-toggle { display: none !important; }
  body { font-size: 11pt; }
  .section, .page-hero, .tribute-chapter, .partner-band { page-break-inside: avoid; }
  .tribute-hero, .painting-feature { page-break-after: always; }
  a { color: inherit; text-decoration: none; }
}

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

/* --- 26. UTILITIES --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- 27. FOCUS RINGS — keyboard only --- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}

/* --- 29. BODY LOCK FOR MOBILE NAV (replaces inline-style hack in JS) --- */
body.menu-open { overflow: hidden; }

/* --- 30. CONTRAST FIXES — gold-on-light backgrounds --- */
/* Default --gold (#C9A961) on bone/cream fails WCAG AA at ~2.4:1.
   Use --gold-deep (#8C6A2F, ~4.7:1) in these contexts. */
.section--cream .eyebrow,
.section--cream .section-head__num,
.section:not(.section--ink) .text-link--gold {
  color: var(--gold-deep);
}

/* Extend contrast rule to the gotyou.html cream-background components
   (trust-band runs on cream; hw-grid sits inside section--cream).
   Also normalise the gold tone on the gold-pale hw-card badges. */
.section--cream .hw-card__role,
.section--cream .problem-card__num,
.section--cream .scenario-card--before .scenario-card__label,
.trust-band .eyebrow,
.trust-band .trust-badge__head {
  color: var(--gold-deep);
}

.trust-band .trust-badge {
  border-top-color: var(--gold-deep);
}

.btn--ghost-gold {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.btn--ghost-gold:hover {
  background: var(--gold-deep);
  color: var(--bone);
}

/* --- Shared utility classes (lifted from repeated inline styles) --- */
/* Used across every section-head's eyebrow for the gap below the kicker. */
.eyebrow--mb { margin-bottom: 1rem; }
.eyebrow--mb-lg { margin-bottom: 1.5rem; }

/* Standard CTA row — two or three buttons sitting together with wrap. */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-row--tight { gap: 0.75rem; }
.btn-row--top { margin-top: 2rem; }
.btn-row--top-lg { margin-top: 2.5rem; }

/* The "CTA" wrapper under each split-block — services.html, industries.html. */
.split-block__cta { margin-top: 2rem; }

/* Sticky section index strip used in services.html & industries.html heroes. */
.page-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-hero__index a { color: var(--gold); transition: color 0.2s ease; }
.page-hero__index a:hover { color: var(--gold-pale); }

/* Footer hours line — replaces repeated style="margin-top: 1rem;" on every footer. */
.footer-col__hours { margin-top: 1rem; }

/* --- 31. FIELD SCENARIO (gotyou.html) — before / after pair --- */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.scenario-card {
  position: relative;
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid;
}

.scenario-card--before {
  background: var(--cream);
  border-color: rgba(122, 115, 106, 0.28);
  color: var(--ink-soft);
}

.scenario-card--after {
  background: var(--ink);
  border-color: rgba(201, 169, 97, 0.35);
  color: var(--bone);
}

.scenario-card--after::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}

.scenario-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}

.scenario-card--after .scenario-card__label { color: var(--gold); }

.scenario-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
}

.scenario-list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.97rem;
  line-height: 1.55;
}

.scenario-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  font-weight: 600;
}

.scenario-card--before .scenario-list li { color: var(--ink-soft); }
.scenario-card--before .scenario-list li::before {
  content: "—";
  color: var(--stone);
}

.scenario-card--after .scenario-list li { color: var(--stone-pale); }
.scenario-card--after .scenario-list li strong { color: var(--bone); }
.scenario-card--after .scenario-list li::before {
  content: "✓";
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1.45;
}

.scenario-caveat {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
}

@media (max-width: 760px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card { padding: 1.75rem 1.5rem; }
}

/* --- 32. HERO TRUST STRIP (gotyou.html) --- */
.hero-trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  margin: 2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  max-width: 56ch;
}
.hero-trust-strip li { white-space: nowrap; }
.hero-trust-strip strong { color: var(--gold); font-weight: 600; }

/* --- 33. PROBLEM GRID (gotyou.html §01) --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.problem-card {
  position: relative;
  padding: 1.85rem 1.85rem 2rem;
  background: var(--bone);
  border: 1px solid rgba(122, 115, 106, 0.22);
  border-left: 3px solid var(--gold-deep);
}
.problem-card__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.problem-card__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.problem-card__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* --- 34. HARDWARE STACK (gotyou.html §04) --- */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.hw-card {
  position: relative;
  padding: 1.85rem 1.75rem 2.1rem;
  background: var(--bone);
  border: 1px solid rgba(122, 115, 106, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hw-card__role {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.hw-card__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--ink);
}
.hw-card__body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.hw-card__badge {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-pale);
  padding: 0.35rem 0.7rem;
  border-radius: 1px;
}
@media (max-width: 960px) {
  .hw-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hw-grid { grid-template-columns: 1fr; }
}
.hw-cross-sell {
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  background: rgba(201, 169, 97, 0.1);
  border-left: 3px solid var(--gold-deep);
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hw-cross-sell a {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(140, 106, 47, 0.4);
  transition: border-color 0.18s ease;
}
.hw-cross-sell a:hover { border-bottom-color: var(--gold-deep); }
.hw-cross-sell .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.hw-cross-sell a:hover ~ .arrow { transform: translateX(3px); }

/* --- svc-card on ink — variant used inside section--ink (gotyou.html §02) --- */
.svc-grid--three { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 960px) { .svc-grid--three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid--three { grid-template-columns: 1fr; } }

.section--ink .svc-card,
.svc-card--ink {
  background: var(--ink-soft);
  border-color: rgba(201, 169, 97, 0.18);
  color: var(--bone);
}
.section--ink .svc-card:hover,
.svc-card--ink:hover {
  background: var(--ink);
  border-color: var(--gold-deep);
}
.section--ink .svc-card__num,
.section--ink .svc-card__icon,
.section--ink .svc-card__link,
.svc-card--ink .svc-card__num,
.svc-card--ink .svc-card__icon,
.svc-card--ink .svc-card__link { color: var(--gold); }
.section--ink .svc-card__title,
.svc-card--ink .svc-card__title { color: var(--bone); }
.section--ink .svc-card__desc,
.svc-card--ink .svc-card__desc { color: var(--stone-pale); }

/* --- Promise grid (gotyou.html §05 — three stat-cards on ink) --- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.promise-card {
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 2rem;
}
.promise-card__title {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.promise-card__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--stone-pale);
}
@media (max-width: 880px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* --- 35. TRUST / PROOF BAND (gotyou.html) --- */
.trust-band {
  background: var(--cream);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  border-top: 1px solid rgba(122, 115, 106, 0.18);
  border-bottom: 1px solid rgba(122, 115, 106, 0.18);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.trust-band__head {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.trust-band__body {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.trust-band__col--badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trust-badge {
  padding: 1.3rem 1.25rem;
  background: var(--bone);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-top: 3px solid var(--gold);
}
.trust-badge__head {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.005em;
}
.trust-badge__body {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .trust-band__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .trust-band__col--badges { grid-template-columns: 1fr; }
}

/* --- 36b. QUOTE CARD (gotyou.html §05 · replaces TCO block) --- */
.quote-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid rgba(122, 115, 106, 0.25);
  background: var(--bone);
  box-shadow: 0 1px 2px rgba(10, 10, 11, 0.04), 0 4px 18px rgba(10, 10, 11, 0.05);
  overflow: hidden;
}
.quote-card__lhs {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-card__rhs {
  padding: 2.4rem 2.2rem;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}
.quote-card__rhs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 60%, transparent 100%);
}
.quote-card__role {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}
.quote-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.quote-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.quote-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 600;
}
.quote-card__list strong {
  color: var(--ink);
  font-weight: 600;
}
.quote-card__head {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.quote-card__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--stone-pale);
}
.quote-card__big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
}
.quote-card__sub {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--stone-pale);
}
@media (max-width: 880px) {
  .quote-card { grid-template-columns: 1fr; }
}

/* --- 37. MIGRATION TIMELINE (gotyou.html §05) --- */
.migration-block {
  margin-top: 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(122, 115, 106, 0.2);
}
.migration-block__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 1rem;
}
.migration-block__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}
.migration-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.migration-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-deep) 0%, rgba(140, 106, 47, 0.2) 100%);
}
.migration-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.1rem 0;
}
.migration-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.migration-step__body-col {
  padding-top: 0.4rem;
}
.migration-step__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.migration-step__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.migration-step__when {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  padding-top: 0.85rem;
}
@media (max-width: 640px) {
  .migration-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }
  .migration-step__when {
    grid-column: 2 / -1;
    padding-top: 0.4rem;
  }
  .migration-timeline::before {
    left: 19px;
  }
}

/* --- 38. CG RISK STRIP (car-guardian.html hero) --- */
.cg-risk-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
}
.cg-risk-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.35);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-pale);
  white-space: nowrap;
}
.cg-risk-strip li::before {
  content: "✓";
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--body);
  line-height: 1;
}
.cg-risk-strip strong {
  color: var(--bone);
  font-weight: 600;
}
@media (max-width: 640px) {
  .cg-risk-strip li {
    white-space: normal;
    flex: 1 1 100%;
  }
}

/* --- 39. CARD-SHADOW DESIGN PASS · subtle elevation + hover-lift --- */

/* Light-background cards · subtle 2-layer shadow */
.problem-card,
.hw-card,
.scenario-card--before,
.tco-card,
.cg-threat,
.cg-step {
  box-shadow: 0 1px 2px rgba(10, 10, 11, 0.04), 0 4px 16px rgba(10, 10, 11, 0.04);
  transition: transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
              box-shadow 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}
.problem-card:hover,
.hw-card:hover,
.scenario-card--before:hover,
.tco-card:hover,
.cg-threat:hover,
.cg-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(10, 10, 11, 0.05), 0 16px 36px rgba(10, 10, 11, 0.08);
}

/* Dark-background cards · soft outer glow */
.scenario-card--after {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(201, 169, 97, 0.18) inset;
  transition: transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
              box-shadow 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}
.scenario-card--after:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(201, 169, 97, 0.28) inset;
}

/* Strong gold left-bar on the After scenario card (currently only a faint top gradient) */
.scenario-card--after {
  border-left: 3px solid var(--gold);
}
.scenario-card--after::before {
  display: none; /* hide the existing faint top gradient — the gold left-bar is the new accent */
}

/* --- 40. FAQ CARD UPGRADE · turn flat details list into elevated cards --- */
.faq details {
  border: 1px solid rgba(122, 115, 106, 0.22);
  background: var(--bone);
  padding: 1.4rem 1.6rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 2px rgba(10, 10, 11, 0.03), 0 2px 12px rgba(10, 10, 11, 0.03);
  transition: transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
              box-shadow 0.25s cubic-bezier(0.65, 0, 0.35, 1),
              border-color 0.25s ease;
}
.faq details:last-child { margin-bottom: 0; }
.faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(10, 10, 11, 0.05), 0 14px 32px rgba(10, 10, 11, 0.07);
  border-color: rgba(201, 169, 97, 0.4);
}
.faq details[open] {
  border-color: var(--gold-deep);
  box-shadow: 0 4px 8px rgba(10, 10, 11, 0.05), 0 14px 32px rgba(10, 10, 11, 0.08);
  background: var(--bone);
}
.faq details[open] summary { color: var(--ink); }
.faq__body { padding-right: 0; }
