/*
 * pages.css — DLG Companies page styles
 * Extracted from inline styles across 6 page views.
 * Relies on design tokens defined in style.css:
 *   --navy: #14213d  --navy-dark: #0b1628  --navy-mid: #1a2d4a
 *   --gold: #c9a84c  --gold-light: #d4b86a
 *   --text-light: rgba(255,255,255,0.82)  --text-muted: rgba(255,255,255,0.5)
 */

/* ═══════════════════════════════════════════════════════════════════════════
   SHARED UTILITIES  (used on multiple pages)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section label — small caps eyebrow text */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a7a2a;
  margin-bottom: 16px;
  display: block;
}
.section-label--light { color: rgba(201,168,76,0.8); }

/* Gold horizontal rule */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold, #c9a84c), transparent);
  width: 100%;
}

/* Max-width content wrapper */
.page-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* Standard section padding (light / cream backgrounds) */
.section-pad {
  padding: 100px 60px;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  background: var(--gold, #c9a84c);
  color: var(--navy, #14213d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.btn-gold:hover {
  background: var(--gold-light, #d4b86a);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-light:hover {
  border-color: var(--gold, #c9a84c);
  color: var(--gold, #c9a84c);
}

.btn-outline-navy {
  display: inline-block;
  background: none;
  border: 1px solid var(--navy, #14213d);
  color: var(--navy, #14213d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-navy:hover {
  background: var(--navy, #14213d);
  color: var(--gold, #c9a84c);
}

.btn-navy-gold {
  display: inline-block;
  background: var(--navy, #14213d);
  color: var(--gold, #c9a84c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-navy-gold:hover {
  background: var(--gold, #c9a84c);
  color: var(--navy, #14213d);
}

/* ── Shared hero (inner pages — all non-home pages share this structure) ── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--tall { height: 520px; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg--dim-20 { filter: brightness(0.20); }
.page-hero__bg--dim-22 { filter: brightness(0.22); }
.page-hero__bg--dim-25 { filter: brightness(0.25); }
.page-hero__bg--dim-28 { filter: brightness(0.28); }

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,22,40,0.95) 40%, transparent 100%);
}
.page-hero__gradient--wide {
  background: linear-gradient(to right, rgba(11,22,40,0.95) 50%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 72px;
  width: 100%;
}

.page-hero__title {
  font-size: 64px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.page-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.75;
}

/* ── Pillar / feature cards (about intro pillars) ── */
.pillar-card {
  padding: 28px 32px;
  background: #f8f6f0;
  border-left: 3px solid var(--gold, #c9a84c);
}
.pillar-card__eyebrow {
  font-size: 11px;
  color: #9a7a2a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.pillar-card__title {
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--navy, #14213d);
  font-weight: 600;
  margin-bottom: 10px;
}
.pillar-card__body {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

/* ── Generic diamond bullet list item ── */
.diamond-list-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ede9df;
  font-size: 13px;
  color: #333;
}
.diamond-bullet {
  width: 5px;
  height: 5px;
  background: var(--gold, #c9a84c);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.diamond-bullet--navy {
  background: var(--navy, #14213d);
}

/* ── Gold check icon (operating / risk section) ── */
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold, #c9a84c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon__inner {
  width: 8px;
  height: 8px;
  border: 2px solid var(--navy, #14213d);
  transform: rotate(45deg);
}

/* ── Tag / badge pill (companies, engage region tags) ── */
.tag-pill {
  padding: 8px 16px;
  background: #f8f6f0;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--navy, #14213d);
  font-weight: 500;
}

/* ── Company capability tag (companies page) ── */
.company-tag {
  padding: 6px 14px;
  font-size: 10px;
  background: #f8f6f0;
  color: var(--navy, #14213d);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Entity accent label badge (home — company grid) ── */
.entity-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: #fff;
}
.entity-badge--infrastructure { background: #2a6496; }
.entity-badge--policy         { background: #3a7a4f; }
.entity-badge--capital        { background: #8b6914; }
.entity-badge--federal        { background: #6b3a8b; }

/* ── Form elements (contact page) ── */
.form-label {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e0dbd0;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold, #c9a84c);
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea { resize: vertical; }

.field-error {
  font-size: 11px;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.consent-checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--gold, #c9a84c);
  flex-shrink: 0;
}
.consent-label {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  cursor: pointer;
}

.submit-btn {
  background: var(--navy, #14213d);
  border: none;
  cursor: pointer;
  color: var(--gold, #c9a84c);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  transition: background 0.25s, color 0.25s;
  width: 100%;
  font-family: inherit;
}
.submit-btn:hover {
  background: var(--gold, #c9a84c);
  color: var(--navy, #14213d);
}

/* ── Success message (contact form) ── */
.success-msg {
  display: none;
  background: var(--navy, #14213d);
  padding: 60px 40px;
  text-align: center;
}
.success-msg__icon-ring {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold, #c9a84c);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-msg__check {
  font-size: 28px;
  color: var(--gold, #c9a84c);
}
.success-msg__title {
  font-size: 44px;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.success-msg__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold, #c9a84c), transparent);
  max-width: 300px;
  margin: 0 auto 28px;
}
.success-msg__body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── Home ──
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.home-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,0.85) 0%, rgba(20,33,61,0.5) 60%, transparent 100%);
}
.home-hero__accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold, #c9a84c) 30%, var(--gold, #c9a84c) 70%, transparent 100%);
}
.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 160px 60px 0;
}
.home-hero__title {
  font-size: clamp(42px, 5vw, 76px);
  color: #fff;
  font-weight: 600;
  max-width: 820px;
  line-height: 1.1;
  margin-bottom: 28px;
  font-family: var(--font-serif);
}
.home-hero__title-gold { color: var(--gold, #c9a84c); }
.home-hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
}
.home-hero__cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Stats bar */
.stats-bar {
  display: flex;
  gap: 40px;
  margin-top: 80px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}
.stat-block {
  border-left: 1px solid rgba(201,168,76,0.4);
  padding-left: 20px;
}
.stat-number {
  font-size: 40px;
  font-family: var(--font-serif);
  color: var(--gold, #c9a84c);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* "What DLG Is" section */
.what-dlg-section {
  background: #fff;
  padding: 100px 60px;
}
.what-dlg-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.what-dlg__title {
  font-size: 48px;
  color: var(--navy, #14213d);
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.what-dlg__body {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.what-dlg__body--spaced { margin-bottom: 36px; }
.what-dlg__quote {
  background: var(--navy, #14213d);
  color: var(--gold, #c9a84c);
  padding: 20px 28px;
  border-left: 3px solid var(--gold, #c9a84c);
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}
.what-dlg__image-wrap {
  position: relative;
}
.what-dlg__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.what-dlg__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy, #14213d);
  color: #fff;
  padding: 24px 28px;
  width: 220px;
}
.what-dlg__badge-number {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold, #c9a84c);
  font-weight: 600;
}
.what-dlg__badge-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Core idea / capabilities section */
.core-idea-section {
  background: var(--navy, #14213d);
  padding: 100px 60px;
}
.core-idea-header {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
.core-idea__title {
  font-size: 52px;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
}
.core-idea__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.85;
}
.capability-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.capability-card {
  position: relative;
  overflow: hidden;
  height: 360px;
}
.capability-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18);
  transition: filter 0.4s;
  display: block;
}
.capability-card:hover .capability-card__img { filter: brightness(0.25); }
.capability-card__overlay {
  position: absolute;
  inset: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.capability-card__number {
  font-size: 52px;
  font-family: var(--font-serif);
  color: rgba(201,168,76,0.5);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.capability-card__title {
  font-size: 20px;
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cap-line {
  height: 1px;
  background: var(--gold, #c9a84c);
  margin-bottom: 14px;
  width: 40px;
  transition: width 0.4s;
}
.capability-card:hover .cap-line { width: 100%; }
.capability-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* Operating companies section */
.companies-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.company-card {
  background: #fff;
  padding: 36px 40px;
  border-top: 3px solid var(--navy, #14213d);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-top-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.company-card:hover {
  border-top-color: var(--gold, #c9a84c);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.company-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.company-card__name {
  font-size: 24px;
  color: var(--navy, #14213d);
  font-weight: 600;
  font-family: var(--font-serif);
}
.company-card__subtitle {
  font-size: 12px;
  color: #9a7a2a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.company-card__body {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}
.company-card__link {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.1em;
}
.companies-cta {
  text-align: center;
  margin-top: 48px;
}

/* Where we operate section */
.regions-section {
  position: relative;
  padding: 100px 60px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.regions-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,40,0.88);
}
.regions-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}
.regions-header {
  text-align: center;
  margin-bottom: 60px;
}
.regions-header__title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.region-card {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold, #c9a84c);
  min-height: 220px;
}
.reg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.region-card:hover .reg-img { transform: scale(1.06); }
.reg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,40,0.75);
  transition: background 0.3s;
}
.region-card:hover .reg-overlay { background: rgba(11,22,40,0.55); }
.region-card__content {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
}
.region-card__name {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold, #c9a84c);
  margin-bottom: 12px;
}
.region-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* Home CTA section */
.home-cta-section {
  background: #fff;
  padding: 100px 60px;
  text-align: center;
}
.home-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.home-cta__title {
  font-size: 52px;
  color: var(--navy, #14213d);
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.home-cta__lead {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 44px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── About ──
   ═══════════════════════════════════════════════════════════════════════════ */

.about-intro-section {
  background: #fff;
  padding: 100px 60px;
}
.about-intro-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro__title {
  font-size: 44px;
  color: var(--navy, #14213d);
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.about-intro__body {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.pillar-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Integration / Why Traditional Models Fail */
.integration-section {
  background: var(--navy, #14213d);
  padding: 100px 60px;
}
.integration-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.integration__title {
  font-size: 44px;
  color: #fff;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.integration__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 32px;
}
.integration-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comparison-item__old {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  letter-spacing: 0.06em;
}
.comparison-item__new {
  font-size: 13px;
  color: var(--gold, #c9a84c);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.integration__image-wrap {
  position: relative;
}
.integration__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.integration__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold, #c9a84c);
  padding: 20px 24px;
  width: 200px;
  text-align: center;
}
.integration__badge-label {
  font-size: 11px;
  color: var(--navy, #14213d);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
}
.integration__badge-sub {
  font-size: 11px;
  color: var(--navy, #14213d);
  margin-top: 8px;
  line-height: 1.6;
}

/* Leadership section */
.leadership-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.leadership-header {
  text-align: center;
  margin-bottom: 64px;
}
.leadership-header__title {
  font-size: 48px;
  color: var(--navy, #14213d);
  font-family: var(--font-serif);
}
.leader-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
}
.leader-tab {
  flex: 1 1 auto;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  border-bottom: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
  min-width: 160px;
}
.leader-tab--active {
  background: var(--navy, #14213d);
  border-bottom-color: var(--gold, #c9a84c);
}
.leader-tab__name {
  font-size: 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy, #14213d);
  margin-bottom: 4px;
}
.leader-tab--active .leader-tab__name { color: #fff; }
.leader-tab__role {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.leader-tab--active .leader-tab__role { color: var(--gold, #c9a84c); }
.leader-panel {
  display: none;
  background: #fff;
  padding: 48px;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  border-top: 3px solid var(--gold, #c9a84c);
}
.leader-panel.is-active { display: grid !important; }
.leader-panel__name {
  font-size: 36px;
  color: var(--navy, #14213d);
  margin-bottom: 8px;
  font-family: var(--font-serif);
}
.leader-panel__role {
  font-size: 12px;
  color: #9a7a2a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.leader-panel__bio {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}
.leader-credentials__title {
  font-size: 10px;
  color: #9a7a2a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── Operating Model ──
   ═══════════════════════════════════════════════════════════════════════════ */

.operating-hero__title { font-size: 64px; }

/* Engagement phases */
.phases-section {
  background: #fff;
  padding: 100px 60px;
}
.phases-header {
  margin-bottom: 64px;
}
.phases-header__title {
  font-size: 44px;
  color: var(--navy, #14213d);
  max-width: 640px;
  font-family: var(--font-serif);
}
.phase-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}
.phase-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phase-tab {
  background: #f8f6f0;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  border-left: 3px solid transparent;
  transition: background 0.25s, border-left-color 0.25s;
}
.phase-tab--active {
  background: var(--navy, #14213d);
  border-left-color: var(--gold, #c9a84c);
}
.phase-tab__eyebrow {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.phase-tab--active .phase-tab__eyebrow { color: var(--gold, #c9a84c); }
.phase-tab__title {
  font-size: 15px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy, #14213d);
}
.phase-tab--active .phase-tab__title { color: #fff; }

.phase-panel {
  display: none;
  background: var(--navy, #14213d);
  padding: 56px;
}
.phase-panel--active { display: block !important; }
.phase-panel__number {
  font-size: 80px;
  font-family: var(--font-serif);
  color: rgba(201,168,76,0.2);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
}
.phase-panel__title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}
.phase-panel__rule {
  height: 1px;
  background: var(--gold, #c9a84c);
  width: 80px;
  margin-bottom: 28px;
}
.phase-panel__body {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}
.phase-panel__nav {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.phase-btn-prev,
.phase-btn-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  color: rgba(255,255,255,0.2);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.phase-btn-prev:not([disabled]),
.phase-btn-next:not([disabled]) {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
}
.phase-btn-next--active {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
  color: var(--navy, #14213d);
  font-weight: 600;
  cursor: pointer;
}

/* Entity roles section */
.entity-roles-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.entity-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.entity-role-card {
  background: #fff;
  padding: 40px 32px;
}
.entity-role-card--infrastructure { border-top: 4px solid #2a6496; }
.entity-role-card--policy         { border-top: 4px solid #3a7a4f; }
.entity-role-card--capital        { border-top: 4px solid #8b6914; }
.entity-role-card--federal        { border-top: 4px solid #6b3a8b; }
.entity-role-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.entity-role-card__icon--infrastructure { color: #2a6496; }
.entity-role-card__icon--policy         { color: #3a7a4f; }
.entity-role-card__icon--capital        { color: #8b6914; }
.entity-role-card__icon--federal        { color: #6b3a8b; }
.entity-role-card__title {
  font-size: 20px;
  color: var(--navy, #14213d);
  font-family: var(--font-serif);
  margin-bottom: 12px;
}
.entity-role-card__rule {
  height: 1px;
  background: #ede9df;
  margin-bottom: 16px;
}
.entity-role-card__body {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}

/* Risk + Outcomes section */
.risk-outcomes-section {
  background: var(--navy, #14213d);
  padding: 100px 60px;
}
.risk-outcomes-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.risk-outcomes__title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.risk-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.risk-item__text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.outcome-item {
  padding: 20px 24px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold, #c9a84c);
}
.outcome-item__text {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── Engage (Who We Engage) ──
   ═══════════════════════════════════════════════════════════════════════════ */

/* Region tabs */
.region-tabs-bar {
  background: var(--navy, #14213d);
  display: flex;
}
.region-tab {
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px;
  border-bottom: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.region-tab--active {
  background: rgba(201,168,76,0.15);
  border-bottom-color: var(--gold, #c9a84c);
}
.region-tab__name {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.region-tab--active .region-tab__name { color: #fff; }
.region-tab__sub {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.region-tab--active .region-tab__sub { color: var(--gold, #c9a84c); }

/* Region panels */
.region-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
}
.region-panel--active { display: grid !important; }
.region-panel__text {
  padding: 64px 60px;
}
.region-panel__eyebrow {
  font-size: 10px;
  color: #9a7a2a;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.region-panel__focus {
  font-size: 14px;
  color: var(--gold, #c9a84c);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.region-panel__title {
  font-size: 40px;
  color: var(--navy, #14213d);
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.region-panel__body {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 36px;
}
.region-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.region-panel__image-wrap {
  position: relative;
}
.region-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.region-panel__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.85) 0%, transparent 100%);
  padding: 40px 40px 32px;
}
.region-panel__caption-title {
  font-size: 24px;
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 600;
}
.region-panel__caption-sub {
  font-size: 11px;
  color: var(--gold, #c9a84c);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Partner types */
.partner-types-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.partner-card {
  background: #fff;
  padding: 40px 32px;
  transition: background 0.3s;
  border-top: 3px solid var(--gold, #c9a84c);
}
.partner-card:hover { background: var(--navy, #14213d); }
.partner-card__icon { font-size: 28px; margin-bottom: 20px; }
.partner-card__title {
  font-size: 18px;
  font-family: var(--font-serif);
  color: var(--navy, #14213d);
  font-weight: 600;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.partner-card:hover .partner-card__title { color: #fff; }
.partner-card__body {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  transition: color 0.3s;
}
.partner-card:hover .partner-card__body { color: rgba(255,255,255,0.7); }

/* Engagement process */
.process-section {
  background: var(--navy, #14213d);
  padding: 100px 60px;
}
.process-section__inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.process-section__title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 48px;
  font-family: var(--font-serif);
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  padding: 40px 48px;
  background: rgba(255,255,255,0.05);
  min-width: 220px;
}
.process-step__number {
  font-size: 48px;
  font-family: var(--font-serif);
  color: rgba(201,168,76,0.4);
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step__title {
  font-size: 16px;
  font-family: var(--font-serif);
  color: #fff;
  font-weight: 600;
}
.process-arrow {
  font-size: 24px;
  color: var(--gold, #c9a84c);
  padding: 0 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── Companies ──
   ═══════════════════════════════════════════════════════════════════════════ */

.companies-page-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.companies-page-list {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.company-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
}
.company-row__text {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-row__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.company-row__accent {
  width: 4px;
  height: 48px;
  flex-shrink: 0;
}
.company-row__accent--infrastructure { background: #2a6496; }
.company-row__accent--policy         { background: #3a7a4f; }
.company-row__accent--capital        { background: #8b6914; }
.company-row__accent--federal        { background: #6b3a8b; }
.company-row__name {
  font-size: 30px;
  color: var(--navy, #14213d);
  font-weight: 600;
  font-family: var(--font-serif);
}
.company-row__sub {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}
.company-row__body {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 28px;
}
.company-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.company-row__url {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.company-row__url--infrastructure { color: #2a6496; }
.company-row__url--policy         { color: #3a7a4f; }
.company-row__url--capital        { color: #8b6914; }
.company-row__url--federal        { color: #6b3a8b; }
.company-row__image-wrap {
  position: relative;
  overflow: hidden;
}
.company-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  display: block;
}
.company-row__image-overlay { position: absolute; inset: 0; }
.company-row__image-overlay--infrastructure {
  background: linear-gradient(to left, rgba(42,100,150,0.53), transparent);
}
.company-row__image-overlay--policy {
  background: linear-gradient(to right, rgba(58,122,79,0.53), transparent);
}
.company-row__image-overlay--capital {
  background: linear-gradient(to left, rgba(139,105,20,0.53), transparent);
}
.company-row__image-overlay--federal {
  background: linear-gradient(to right, rgba(107,58,139,0.53), transparent);
}

/* Integration callout */
.integration-callout-section {
  background: var(--navy, #14213d);
  padding: 80px 60px;
  text-align: center;
}
.integration-callout__inner {
  max-width: 800px;
  margin: 0 auto;
}
.integration-callout__title {
  font-size: 44px;
  color: #fff;
  margin-bottom: 24px;
  font-family: var(--font-serif);
}
.integration-callout__body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ── Contact ──
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-form-section {
  background: #f8f6f0;
  padding: 100px 60px;
}
.contact-form-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
}
.contact-form__title {
  font-size: 40px;
  color: var(--navy, #14213d);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field-wrap { margin-bottom: 16px; }
.form-field-wrap--spaced { margin-bottom: 28px; }

/* Contact sidebar */
.contact-sidebar {
  padding-top: 80px;
}
.sidebar-eval-box {
  background: var(--navy, #14213d);
  padding: 40px 36px;
  margin-bottom: 24px;
}
.sidebar-eval-box__title {
  font-size: 11px;
  color: var(--gold, #c9a84c);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.sidebar-eval-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.sidebar-eval-item__bullet {
  width: 5px;
  height: 5px;
  background: var(--gold, #c9a84c);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 6px;
}
.sidebar-eval-item__text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.sidebar-categories-box {
  background: #fff;
  padding: 36px;
  border-top: 3px solid var(--gold, #c9a84c);
  margin-bottom: 24px;
}
.sidebar-categories-box__title {
  font-size: 11px;
  color: #9a7a2a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.sidebar-note {
  padding: 28px;
  background: #ede9df;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  border-left: 3px solid var(--gold, #c9a84c);
}

/* Section headers that are centered */
.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-centered__title {
  font-size: 48px;
  color: var(--navy, #14213d);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.section-header-centered__divider {
  max-width: 360px;
  margin: 0 auto;
}

/* ── Gold divider spacing modifiers ── */
.gold-divider--mb-28  { margin-bottom: 28px; }
.gold-divider--mb-32  { margin-bottom: 32px; }
.gold-divider--mb-40  { margin-bottom: 40px; }
.gold-divider--mw-320 { max-width: 320px; margin-left: auto; margin-right: auto; }
.gold-divider--mw-360 { max-width: 360px; margin-left: auto; margin-right: auto; }
.gold-divider--mw-400 { max-width: 400px; margin-left: auto; margin-right: auto; }
.gold-divider--center { max-width: 400px; margin: 0 auto 32px; }
.gold-divider--center-sm { max-width: 360px; margin: 24px auto 0; }

/* About hero title is slightly larger than the shared page-hero__title */
.page-hero__title--xl { font-size: 68px; }

/* Region explorer plain-white wrapper section */
.region-explorer-section { background: #fff; }

/* Consent error bottom spacing */
.field-error--mb { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  /* Contact form sidebar stacks */
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  /* Section padding reduction */
  .section-pad,
  .what-dlg-section,
  .about-intro-section,
  .integration-section,
  .leadership-section,
  .phases-section,
  .entity-roles-section,
  .risk-outcomes-section,
  .partner-types-section,
  .process-section,
  .companies-page-section,
  .contact-form-section,
  .home-cta-section,
  .companies-section,
  .regions-section,
  .core-idea-section {
    padding: 60px 24px;
  }
  .integration-callout-section { padding: 60px 24px; }

  /* Hero adjustments */
  .page-hero,
  .page-hero--tall { height: auto; padding-top: 80px; }
  .page-hero__content,
  .home-hero__content { padding: 0 24px 48px; }
  .home-hero__content { padding-top: 120px; }
  .page-hero__title { font-size: clamp(36px, 8vw, 64px); }

  /* Two-column grids collapse */
  .what-dlg-grid,
  .about-intro-grid,
  .integration-grid,
  .risk-outcomes-grid,
  .companies-grid,
  .company-row { grid-template-columns: 1fr; }

  /* Three-column grids collapse */
  .capability-grid { grid-template-columns: 1fr; }

  /* Four-column grids go 2-col */
  .entity-roles-grid,
  .partner-types-grid { grid-template-columns: repeat(2, 1fr); }

  /* Five-column region grid goes 2-col */
  .region-grid { grid-template-columns: repeat(2, 1fr); }

  /* Phase container stacks */
  .phase-container { grid-template-columns: 1fr; }

  /* Leader panel stacks */
  .leader-panel { grid-template-columns: 1fr !important; }

  /* Region panel stacks */
  .region-panel--active { grid-template-columns: 1fr !important; }

  /* Process steps wrap vertically */
  .process-steps { flex-direction: column; }

  /* Company row text padding reduction */
  .company-row__text { padding: 36px 24px; }

  /* Stats bar wraps naturally — already flex-wrap */

  /* Home cta grid */
  .companies-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .form-grid-2col { grid-template-columns: 1fr; }
  .region-tabs-bar { flex-direction: column; }
  .integration-comparison { grid-template-columns: 1fr; }
}

/* ── Model Comparison (About page) ─────────────────────────────────────── */
.model-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(201,168,76,0.15);
}

/* Column shared */
.model-compare__col {
  padding: 32px 28px;
}
.model-compare__col--old {
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(201,168,76,0.1);
}
.model-compare__col--new {
  background: rgba(201,168,76,0.06);
}

/* Column header */
.model-compare__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.model-compare__heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.model-compare__col--new .model-compare__heading {
  color: var(--gold);
}

/* Icon badge */
.model-compare__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.model-compare__icon--old {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
}
.model-compare__icon--new {
  background: var(--gold);
  color: var(--navy-dark);
}

/* List */
.model-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.model-compare__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.model-compare__item:last-child {
  border-bottom: none;
}
.model-compare__col--new .model-compare__item {
  color: rgba(255,255,255,0.9);
}

/* Dot indicator */
.model-compare__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.model-compare__dot--old {
  background: rgba(255,255,255,0.2);
}
.model-compare__dot--new {
  background: var(--gold);
}

/* Centre arrow divider */
.model-compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 20px;
  border-left: 1px solid rgba(201,168,76,0.1);
  border-right: 1px solid rgba(201,168,76,0.1);
}

/* Responsive */
@media (max-width: 640px) {
  .model-compare {
    grid-template-columns: 1fr;
  }
  .model-compare__arrow {
    width: 100%;
    height: 36px;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transform: rotate(90deg);
  }
  .model-compare__col--old {
    border-right: none;
    border-bottom: none;
  }
}

/* ── Form error states ───────────────────────────────────────────────────── */
.form-error-banner {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.4);
  color: #e74c3c;
  padding: 12px 18px;
  font-size: 13px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.form-input--error {
  border-color: #c0392b !important;
}
.field-error {
  display: none;
  font-size: 11px;
  color: #c0392b;
  margin-top: 5px;
  letter-spacing: 0.04em;
}
.field-error--show {
  display: block;
}
.field-error--mb {
  margin-bottom: 12px;
}
.form-required {
  color: var(--gold);
}
.form-optional {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 400;
}
.gold-rule-centered {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  margin: 16px 0;
}
.gold-rule-centered::before,
.gold-rule-centered::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.gold-rule-centered::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* ── Thank You page ──────────────────────────────────────────────────────── */
.thankyou-section {
  background: var(--cream);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}
.thankyou-card {
  max-width: 680px;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--gold);
  padding: 56px 56px 48px;
  text-align: center;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.thankyou-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
}
.thankyou-check svg {
  width: 100%;
  height: 100%;
}
.thankyou-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.thankyou-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-align: left;
}
.thankyou-divider {
  height: 1px;
  background: rgba(201,168,76,0.25);
  margin: 32px 0;
}
.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 40px;
}
.thankyou-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.thankyou-step__num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  min-width: 36px;
  line-height: 1.2;
}
.thankyou-step__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  padding-top: 4px;
}
.thankyou-btn {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  transition: background 0.25s, color 0.25s;
}
.thankyou-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

@media (max-width: 640px) {
  .thankyou-card { padding: 36px 24px 32px; }
  .thankyou-title { font-size: 26px; }
}
