/* =========================================================
   Rick Ornelas — Executive Business Strategist
   Refined editorial aesthetic. Navy + gold. Asymmetric layouts.
   ========================================================= */

:root {
  /* Palette */
  --ink: #0A1628;
  --ink-2: #142235;
  --ink-3: #1C2D43;
  --paper: #F5F2ED;
  --paper-2: #EBE6DE;
  --gold: #C9A961;
  --gold-deep: #A88A4A;
  --text: #14192A;
  --text-mute: #5A6378;
  --line: rgba(10, 22, 40, 0.10);
  --line-on-dark: rgba(255, 255, 255, 0.10);
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 8rem);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------------------------------------------------------
   Typography
   --------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.h-display {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.h-1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); font-weight: 400; }
.h-2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; }
.h-3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.25; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 56ch;
  font-weight: 400;
}

p { max-width: 64ch; }

.italic-serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------------------------------------------------------
   Layout helpers
   --------------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-pad) 0; }

.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper); }
.section--dark .lead { color: rgba(245, 242, 237, 0.72); }

.section--paper-2 { background: var(--paper-2); }

.divider-rule {
  height: 1px;
  background: var(--line);
  width: 100%;
  margin: 0;
}
.divider-rule.on-dark { background: var(--line-on-dark); }

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.005em;
  display: inline-block;
}
.nav__logo .dot { color: var(--gold); margin-left: 1px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav__links a {
  color: rgba(245, 242, 237, 0.72);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--paper);
}
.nav__links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--gold);
  color: var(--ink);
}
.btn:hover { background: var(--gold-deep); color: var(--paper); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(245, 242, 237, 0.4);
}
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--small { padding: 0.65rem 1.25rem; font-size: 0.78rem; }

.nav__cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover { background: var(--paper) !important; }

/* mobile nav */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--paper); margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__inner.is-open + .nav__panel { display: block; }
  .nav__panel {
    display: none;
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid var(--line-on-dark);
    padding: 1.5rem var(--gutter) 2rem;
  }
  .nav__panel ul { list-style: none; }
  .nav__panel li { padding: 0.85rem 0; border-bottom: 1px solid var(--line-on-dark); }
  .nav__panel a { color: var(--paper); font-size: 1rem; }
  .nav__panel .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------
   Hero (home)
   --------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: calc(76px + 4rem) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.hero::before {
  /* subtle grain texture */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
}

.hero__copy { max-width: 640px; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 1.2rem 0 1.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(245, 242, 237, 0.78);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.95) contrast(1.02);
}
.hero__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.35));
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { max-height: 520px; aspect-ratio: 4 / 4.2; }
}

/* ---------------------------------------------------------
   Trust bar — As Featured On (logo marquee)
   --------------------------------------------------------- */

.trust {
  padding: 2.2rem 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust__label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.trust__marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.trust__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-right: clamp(2.5rem, 6vw, 5rem);
  animation: trust-scroll 32s linear infinite;
}
.trust__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 36px;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.trust__item:hover { opacity: 1; }
.trust__item svg { height: 100%; width: auto; max-width: 110px; }
.trust__item--text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink);
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust__track { animation: none; }
  .trust__marquee { justify-content: center; flex-wrap: wrap; }
}

/* ---------------------------------------------------------
   Editorial split sections (Problem / Solution / etc)
   --------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.split--lopsided { grid-template-columns: 0.85fr 1.15fr; }
.split--lopsided-r { grid-template-columns: 1.15fr 0.85fr; }

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split__media--wide { aspect-ratio: 16 / 11; }

@media (max-width: 800px) {
  .split, .split--lopsided, .split--lopsided-r {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split__media { aspect-ratio: 4 / 4; max-height: 480px; }
}

/* Numbered list (used in framework section) */
.numbered-list { list-style: none; counter-reset: nlist; margin-top: 2rem; }
.numbered-list > li {
  counter-increment: nlist;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}
.numbered-list > li:last-child { border-bottom: 1px solid var(--line); }
.numbered-list > li::before {
  content: counter(nlist, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  font-weight: 400;
  align-self: start;
  padding-top: 0.3rem;
}
.numbered-list h3 { margin-bottom: 0.5rem; }
.numbered-list p { color: var(--text-mute); margin: 0; max-width: 60ch; }

.numbered-list--dark > li { border-top-color: var(--line-on-dark); }
.numbered-list--dark > li:last-child { border-bottom-color: var(--line-on-dark); }
.numbered-list--dark > li::before { color: var(--gold); }
.numbered-list--dark p { color: rgba(245, 242, 237, 0.72); }

/* ---------------------------------------------------------
   Stats / proof grid
   --------------------------------------------------------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.stats-grid > div {
  padding: 2.4rem 1.8rem;
  border-right: 1px solid var(--line-on-dark);
}
.stats-grid > div:last-child { border-right: none; }

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat__value em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.72);
  line-height: 1.4;
}

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div:nth-child(2) { border-right: none; }
  .stats-grid > div:nth-child(1), .stats-grid > div:nth-child(2) {
    border-bottom: 1px solid var(--line-on-dark);
  }
  .stats-grid > div:nth-child(3) { border-right: 1px solid var(--line-on-dark); }
}

/* ---------------------------------------------------------
   Pull quote / large editorial text
   --------------------------------------------------------- */

.pull-quote {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
}
.pull-quote.on-dark blockquote { color: var(--paper); }
.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pull-quote.on-dark cite { color: var(--gold); }

/* ---------------------------------------------------------
   Image gallery (advisory / speaking pages)
   --------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.gallery__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.03); }

/* Featured item — first one spans 2 cols + 2 rows for editorial weight */
.gallery__item--feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 800px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .gallery__item--feature { grid-column: span 2; grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------
   Page hero (interior pages)
   --------------------------------------------------------- */

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: calc(76px + 4rem) 0 4rem;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.page-hero h1, .page-hero__copy h1 {
  color: var(--paper);
  margin: 1.2rem 0 1.5rem;
}
.page-hero__sub {
  color: rgba(245, 242, 237, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 50ch;
  line-height: 1.6;
}
.page-hero__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 800px) {
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__media { aspect-ratio: 4 / 4; max-height: 460px; }
}

/* ---------------------------------------------------------
   CTA banner
   --------------------------------------------------------- */

.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: end;
}
.cta-banner h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 300;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 22ch;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.cta-banner__actions { display: flex; gap: 0.85rem; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 800px) {
  .cta-banner__inner { grid-template-columns: 1fr; align-items: start; }
  .cta-banner__actions { justify-content: flex-start; }
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.footer {
  background: #060E1B;
  color: rgba(245, 242, 237, 0.6);
  padding: 4.5rem 0 2rem;
  font-size: 0.88rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255, 0.08);
}
.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.footer__brand p { color: rgba(245, 242, 237, 0.55); max-width: 38ch; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer ul { list-style: none; }
.footer li { padding: 0.35rem 0; }
.footer a { color: rgba(245, 242, 237, 0.7); transition: color 0.2s; }
.footer a:hover { color: var(--paper); }

.footer__bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 242, 237, 0.45);
}
.footer__disclosure {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(245, 242, 237, 0.4);
  font-style: italic;
  max-width: 70ch;
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
}

/* ---------------------------------------------------------
   Section eyebrow heading combo
   --------------------------------------------------------- */

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { max-width: 22ch; }
.section-head .lead { margin-top: 1.5rem; }

/* ---------------------------------------------------------
   Card list (advisory outcomes, etc.)
   --------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  padding: 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  display: block;
}
.card h3 { margin-bottom: 0.7rem; font-size: 1.2rem; }
.card p { color: var(--text-mute); font-size: 0.95rem; margin: 0; }

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

/* ---------------------------------------------------------
   Contact page form
   --------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info dl { margin-top: 2rem; }
.contact-info dt {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
  font-weight: 500;
  margin-top: 1.6rem;
}
.contact-info dd {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0;
}
.contact-info dd a:hover { color: var(--gold-deep); }

.form-field { margin-bottom: 1.4rem; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }

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

/* ---------------------------------------------------------
   Reveal animation (subtle)
   --------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------
   Utility
   --------------------------------------------------------- */

.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; }
.text-center { text-align: center; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---------------------------------------------------------
   Outcome ribbon (home + advisory)
   --------------------------------------------------------- */

.outcome-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcome-ribbon > div {
  padding: 2.6rem 2rem;
  border-right: 1px solid var(--line);
  text-align: center;
}
.outcome-ribbon > div:last-child { border-right: none; }
.outcome-ribbon__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  display: block;
}
.outcome-ribbon__text {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 26ch;
  margin: 0 auto;
  line-height: 1.5;
}

.outcome-ribbon--dark {
  border-color: var(--line-on-dark);
}
.outcome-ribbon--dark > div { border-right-color: var(--line-on-dark); }
.outcome-ribbon--dark .outcome-ribbon__num { color: var(--gold); }
.outcome-ribbon--dark .outcome-ribbon__text { color: rgba(245, 242, 237, 0.85); }

@media (max-width: 800px) {
  .outcome-ribbon { grid-template-columns: 1fr; }
  .outcome-ribbon > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .outcome-ribbon > div:last-child { border-bottom: none; }
  .outcome-ribbon--dark > div { border-bottom-color: var(--line-on-dark); }
}

/* ---------------------------------------------------------
   Contact form
   --------------------------------------------------------- */

.contact-form {
  margin-top: 1.5rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}
.contact-form .btn {
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.disclosure {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-style: italic;
  margin-top: 1rem;
}
.disclosure.on-dark { color: rgba(245, 242, 237, 0.55); }
