/* ============================================================
   SYSTEMIZE TX  premium minimal, Texas flag palette
   Blue #00205B (PMS 281) · Red #BF0A30 (PMS 193) · White
   ============================================================ */

:root {
  --blue:       #00205B;
  --blue-deep:  #001233;
  --blue-ink:   #000C24;
  --red:        #BF0A30;
  --red-bright: #D8123C;
  --white:      #FFFFFF;
  --paper:      #F7F5F0;
  --paper-dim:  #EDEAE2;
  --ink:        #101528;
  --ink-soft:   rgba(16, 21, 40, 0.62);
  --light-soft: rgba(247, 245, 240, 0.66);
  --hairline:   rgba(16, 21, 40, 0.14);
  --hairline-l: rgba(247, 245, 240, 0.18);

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxe:  cubic-bezier(0.65, 0, 0.15, 1);

  --gutter: clamp(20px, 5vw, 72px);
  --section-pad: clamp(96px, 14vh, 180px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--blue-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }

.container {
  width: min(1280px, 100% - var(--gutter) * 2);
  margin-inline: auto;
}

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

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--blue-deep);
  color: var(--paper);
  transition: opacity 0.9s var(--ease-luxe), visibility 0.9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: grid; place-items: center; gap: 28px; }
.preloader__star { color: var(--red-bright); }
.preloader__star path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: starDraw 1.6s var(--ease-luxe) forwards;
}
@keyframes starDraw { to { stroke-dashoffset: 0; } }
.preloader__word {
  font-size: 12px; letter-spacing: 0.42em; font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 120;
  width: 100%; height: 2px;
  background: var(--red);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  color: var(--paper);
  transition: padding 0.5s var(--ease-out), background 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out), color 0.4s;
}
.nav.is-scrolled {
  padding: 12px var(--gutter);
  background: rgba(0, 14, 40, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--hairline-l);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.3em; font-weight: 600;
}
.nav__brand em { font-style: normal; color: var(--red-bright); }
.nav__star { color: var(--red-bright); flex: none; }
.nav__links { display: flex; gap: clamp(14px, 2.2vw, 36px); }
.nav__links a {
  position: relative;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  opacity: 0.78;
  padding: 6px 0;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--red-bright);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.45s var(--ease-luxe);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__cta {
  position: relative; overflow: hidden;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 12px 22px;
  border: 1px solid rgba(247, 245, 240, 0.35);
  white-space: nowrap;
  transition: border-color 0.35s, color 0.35s;
}
.nav__cta span { position: relative; z-index: 1; }
.nav__cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-luxe);
}
.nav__cta:hover { border-color: var(--red); }
.nav__cta:hover::before { transform: translateY(0); }

.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span {
  width: 26px; height: 1.5px; background: currentColor;
  transition: transform 0.4s var(--ease-luxe), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  background: var(--blue-ink);
  color: var(--paper);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.mobilemenu.is-open { opacity: 1; visibility: visible; }
.mobilemenu__links { display: grid; gap: 8px; text-align: center; }
.mobilemenu__links a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 44px); font-weight: 400;
  padding: 6px 0;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobilemenu.is-open .mobilemenu__links a { opacity: 1; transform: none; }
.mobilemenu__links a i {
  font-family: var(--sans); font-style: normal; font-size: 11px;
  letter-spacing: 0.3em; color: var(--red-bright);
  display: block; margin-bottom: 2px;
}
.mobilemenu__links a:nth-child(1) { transition-delay: 0.08s; }
.mobilemenu__links a:nth-child(2) { transition-delay: 0.14s; }
.mobilemenu__links a:nth-child(3) { transition-delay: 0.2s; }
.mobilemenu__links a:nth-child(4) { transition-delay: 0.26s; }
.mobilemenu__links a:nth-child(5) { transition-delay: 0.32s; }
.mobilemenu__links a:nth-child(6) { transition-delay: 0.4s; }
.mobilemenu__cta { color: var(--red-bright); }

/* ============ BUTTONS ============ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 34px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  text-align: center;
  transition: color 0.4s var(--ease-out), border-color 0.4s, transform 0.4s var(--ease-out);
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-luxe);
}
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: scale(0.98); }

.btn--solid { background: var(--red); color: var(--white); }
.btn--solid::before { background: var(--paper); }
.btn--solid:hover { color: var(--blue); }

.btn--ghost { border: 1px solid rgba(247, 245, 240, 0.35); color: var(--paper); }
.btn--ghost::before { background: var(--paper); }
.btn--ghost:hover { color: var(--blue); border-color: var(--paper); }

.btn--paper { background: var(--paper); color: var(--blue); }
.btn--paper::before { background: var(--blue-ink); }
.btn--paper:hover { color: var(--paper); }

.btn--blue { background: var(--blue); color: var(--paper); }
.btn--blue::before { background: var(--blue-ink); }
.btn--blue:hover { color: var(--paper); }

/* ============ SECTION SHELLS ============ */
.section--paper { background: var(--paper); color: var(--ink); }
.section--blue  { background: var(--blue-deep); color: var(--paper); }
.section--red   { background: var(--red); color: var(--paper); }

.section-head {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 18px; margin-bottom: clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--hairline);
}
.section-head--light { border-color: var(--hairline-l); }
.section-head--center { justify-content: center; }
.section-head__no {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--red);
}
.section-head--light .section-head__no { color: var(--red-bright); }
.section-head__label {
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600;
  opacity: 0.85;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--blue-ink);
}

.hero__slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-luxe);
}
.hero-slide.is-active { opacity: 1; }

.hero-slide__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-slide.is-active .hero-slide__img { animation: kenburns 9.5s var(--ease-out) forwards; }
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1); }
}

/* Brand tint + text scrim over the photograph */
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg,   rgba(0, 6, 18, 0.78) 0%, rgba(0, 6, 18, 0) 34%),
    linear-gradient(90deg,  rgba(0, 8, 26, 0.82) 0%, rgba(0, 12, 36, 0.5) 46%, rgba(0, 18, 51, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 12, 36, 0.62) 0%, rgba(0, 32, 91, 0.22) 55%, rgba(0, 12, 36, 0.3) 100%);
}

.hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative; z-index: 5;
  width: min(1280px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(200px, 30vh, 330px);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(48px, 8.4vw, 120px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: clamp(24px, 3.6vh, 40px);
  text-shadow: 0 2px 40px rgba(0, 6, 18, 0.45);
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__word {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-luxe);
}
.hero.is-in .hero__word { transform: translateY(0); }
.hero.is-in .hero__line:nth-child(1) .hero__word:nth-child(1) { transition-delay: 0.10s; }
.hero.is-in .hero__line:nth-child(1) .hero__word:nth-child(2) { transition-delay: 0.18s; }
.hero.is-in .hero__line:nth-child(2) .hero__word:nth-child(1) { transition-delay: 0.30s; }
.hero.is-in .hero__line:nth-child(2) .hero__word:nth-child(2) { transition-delay: 0.38s; }
.hero__word--accent { color: var(--red-bright); }
.hero__word--em { font-style: italic; font-weight: 340; }

.hero__sub {
  max-width: 560px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  color: rgba(247, 245, 240, 0.82);
  margin-bottom: clamp(28px, 4.4vh, 46px);
  text-shadow: 0 1px 18px rgba(0, 6, 18, 0.5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

[data-hero-fade] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero.is-in [data-hero-fade] { opacity: 1; transform: none; }
.hero.is-in .hero__sub     { transition-delay: 0.55s; }
.hero.is-in .hero__actions { transition-delay: 0.7s; }

.hero__city {
  position: absolute; right: var(--gutter); bottom: clamp(28px, 6vh, 56px); z-index: 6;
  text-align: right;
}
.hero__city-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  text-shadow: 0 1px 22px rgba(0, 6, 18, 0.6);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.hero__city-line {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--light-soft);
  margin-top: 4px;
  transition: opacity 0.5s var(--ease-out) 0.06s, transform 0.5s var(--ease-out) 0.06s;
}
.hero__city.is-switching .hero__city-name,
.hero__city.is-switching .hero__city-line { opacity: 0; transform: translateY(8px); }

.hero__city-progress { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.hero__city-dot { width: 34px; padding: 8px 0; }
.hero__city-dot i {
  display: block; height: 1.5px; background: rgba(247, 245, 240, 0.28);
  position: relative; overflow: hidden;
}
.hero__city-dot i::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red-bright);
  transform: scaleX(0); transform-origin: 0 50%;
}
.hero__city-dot.is-active i::after { animation: slideProgress 7s linear forwards; }
@keyframes slideProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__city-dot.is-played i::after { transform: scaleX(1); }

.hero__scrollcue {
  position: absolute; left: var(--gutter); bottom: clamp(28px, 6vh, 56px); z-index: 6;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--light-soft);
}
.hero__scrollcue-line { width: 56px; height: 1px; background: rgba(247, 245, 240, 0.3); position: relative; overflow: hidden; }
.hero__scrollcue-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--red-bright);
  animation: cue 2.4s var(--ease-luxe) infinite;
}
@keyframes cue {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ============ REVEAL SYSTEM ============ */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============ THE PROBLEM ============ */
.problem { padding: var(--section-pad) 0; }
.problem__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.problem__sticky { position: sticky; top: clamp(90px, 14vh, 140px); }
.problem__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.04; letter-spacing: -0.012em;
  margin-bottom: clamp(20px, 3vh, 30px);
}
.problem__title em { font-style: italic; color: var(--red); }
.problem__lede {
  max-width: 380px;
  font-size: clamp(15px, 1.3vw, 17.5px); line-height: 1.8;
  color: var(--ink-soft);
}
.problem__lede em { font-style: italic; font-family: var(--serif); color: var(--red); font-size: 1.06em; }

.problem__list { display: grid; }
.pain {
  display: grid; grid-template-columns: clamp(48px, 5vw, 76px) 1fr;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid var(--hairline);
  transition: background 0.4s;
}
.pain:last-child { border-bottom: 1px solid var(--hairline); }
.pain__no {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--red);
  line-height: 1.3;
}
.pain__body h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(21px, 2.2vw, 30px); line-height: 1.2;
  margin-bottom: 10px;
}
.pain__body p {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft);
  max-width: 480px;
}

.problem__coda {
  margin-top: clamp(56px, 9vh, 100px);
  padding: clamp(28px, 4vh, 44px) clamp(24px, 3vw, 48px);
  background: var(--blue-deep);
  color: var(--paper);
}
.problem__coda p {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(19px, 2.1vw, 28px); line-height: 1.5;
  max-width: 30em;
}
.problem__coda em { font-style: italic; color: var(--red-bright); }

/* ============ THE SYSTEM (sticky convergence) ============ */
.system__sticky-wrap { height: 260vh; position: relative; }
.system__sticky {
  position: sticky; top: 0;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(80px, 10vh, 120px) 0;
  overflow: hidden;
}
.system__container { text-align: center; }
.system__container .section-head { position: relative; z-index: 3; }
.system__title {
  position: relative; z-index: 3;
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.12; letter-spacing: -0.01em;
}
.system__title em { font-style: italic; color: var(--red-bright); }

.system__stage {
  position: relative;
  height: clamp(340px, 42vh, 440px);
  margin: clamp(24px, 4vh, 48px) 0;
  display: grid; place-items: center;
}
.system__chips { position: absolute; inset: 0; pointer-events: none; }
.chip {
  position: absolute;
  left: 50%; top: 50%;
  padding: 10px 18px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: rgba(247, 245, 240, 0.85);
  border: 1px solid var(--hairline-l);
  background: rgba(247, 245, 240, 0.04);
  border-radius: 999px;
  white-space: nowrap;
  transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--r));
  will-change: transform, opacity;
}
.system__core {
  position: relative; z-index: 2;
  display: grid; place-items: center; gap: 10px;
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(36px, 5vw, 64px);
  border: 1px solid rgba(216, 18, 60, 0.6);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(191, 10, 48, 0.18) 0%, transparent 60%),
    rgba(0, 12, 36, 0.72);
  opacity: 0; transform: scale(0.86);
  will-change: transform, opacity;
}
.system__core svg { color: var(--red-bright); }
.system__core strong {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(19px, 2vw, 26px); letter-spacing: 0.01em;
}
.system__core span { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-soft); }

.system__note {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(14px, 1.25vw, 17px); line-height: 1.8;
  color: var(--light-soft);
}

/* ============ OUTCOMES ============ */
.outcomes { padding: var(--section-pad) 0; }
.outcomes__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(34px, 4.8vw, 68px); line-height: 1.08; letter-spacing: -0.012em;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.outcomes__title em { font-style: italic; color: var(--red); }
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.outcome {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.5s var(--ease-out);
  overflow: hidden;
}
.outcome::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-luxe);
}
.outcome:hover { background: var(--white); }
.outcome:hover::after { transform: scaleX(1); }
.outcome__no {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--red);
  display: block; margin-bottom: clamp(28px, 5vh, 56px);
}
.outcome h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.2;
  margin-bottom: 12px;
}
.outcome p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

/* ============ THE PARTNERSHIP ============ */
.partnership { padding: var(--section-pad) 0; }
.partnership__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(34px, 4.8vw, 68px); line-height: 1.08;
}
.partnership__title em { font-style: italic; color: var(--red-bright); }
.partnership__lede {
  max-width: 560px;
  margin: clamp(20px, 3vh, 32px) 0 clamp(48px, 8vh, 88px);
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.8;
  color: var(--light-soft);
}
.partnership__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline-l);
  border-left: 1px solid var(--hairline-l);
}
.pillar {
  padding: clamp(28px, 3.4vw, 52px);
  border-right: 1px solid var(--hairline-l);
  border-bottom: 1px solid var(--hairline-l);
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease-out);
}
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--red-bright);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-luxe);
}
.pillar:hover { background: rgba(247, 245, 240, 0.04); }
.pillar:hover::after { transform: scaleX(1); }
.pillar__no {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--red-bright);
  display: block; margin-bottom: clamp(24px, 4vh, 44px);
}
.pillar h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.16;
  margin-bottom: 12px;
}
.pillar p { font-size: 14.5px; line-height: 1.75; color: rgba(247, 245, 240, 0.72); max-width: 440px; }

.partnership__band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(48px, 8vh, 88px);
  padding-top: clamp(28px, 4vh, 44px);
  border-top: 1px solid var(--hairline-l);
}
.partnership__band p {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(19px, 2.1vw, 28px); line-height: 1.5;
  max-width: 26em;
}
.partnership__band em { font-style: italic; color: var(--red-bright); }

/* ============ PROCESS ============ */
.process { padding: var(--section-pad) 0; }
.process__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(34px, 4.8vw, 68px); line-height: 1.08;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.process__title em { font-style: italic; color: var(--red); }
.process__steps { display: grid; }
.step {
  display: grid; grid-template-columns: clamp(90px, 12vw, 180px) 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(36px, 5vh, 64px) 0;
  border-top: 1px solid var(--hairline);
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step__no {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(44px, 6vw, 96px); line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 10, 48, 0.85);
}
.step__body { max-width: 640px; }
.step__body h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 14px;
}
.step__body p { font-size: 15px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 16px; }
.step__meta {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--red);
}

/* ============ TEXAS ============ */
.texas { padding: var(--section-pad) 0; overflow: hidden; }
.texas__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.texas__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(34px, 4.8vw, 68px); line-height: 1.08;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.texas__title em { font-style: italic; color: var(--red-bright); }
.texas__copy p {
  max-width: 520px;
  font-size: clamp(14.5px, 1.25vw, 17px); line-height: 1.85;
  color: var(--light-soft);
  margin-bottom: 18px;
}
.texas__stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(28px, 5vh, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--hairline-l);
}
.texas-stat strong {
  display: block;
  white-space: nowrap;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.4vw, 52px); line-height: 1;
  margin-bottom: 8px;
}
.texas-stat strong span { font: inherit; }
.texas-stat strong em { font-style: normal; color: var(--red-bright); font-size: 0.6em; vertical-align: 0.35em; }
.texas-stat > span {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light-soft); line-height: 1.6; display: block; max-width: 150px;
}
.texas__map { color: rgba(247, 245, 240, 0.9); }
.texas__map svg { width: 100%; height: auto; }
#texasPath { stroke-dasharray: var(--pathlen, 2600); stroke-dashoffset: var(--pathlen, 2600); }
.texas__map.is-visible #texasPath { animation: mapDraw 3s var(--ease-luxe) 0.2s forwards; }
@keyframes mapDraw { to { stroke-dashoffset: 0; } }
.texas__map-star { color: var(--red-bright); opacity: 0; transform-origin: 268px 260px; }
.texas__map.is-visible .texas__map-star { animation: starPop 0.8s var(--ease-out) 2.6s forwards; }
@keyframes starPop {
  0%   { opacity: 0; transform: scale(0.3); }
  70%  { opacity: 1; transform: scale(1.18); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============ BOOKING / CTA ============ */
.cta { padding: var(--section-pad) 0; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 50% 110%, rgba(0, 12, 36, 0.35) 0%, transparent 60%),
    radial-gradient(70% 60% at 50% -10%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta > .container { position: relative; }
.cta__eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
  opacity: 0.85; margin-bottom: clamp(20px, 3vh, 32px);
}
.cta__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(42px, 7vw, 100px); line-height: 1.02; letter-spacing: -0.015em;
  margin-bottom: clamp(24px, 4vh, 40px);
}
.cta__title em { font-style: italic; font-weight: 340; }
.cta__sub {
  max-width: 560px; margin: 0 auto clamp(36px, 5.6vh, 60px);
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.booking { max-width: 860px; margin: 0 auto; }
.booking__embed {
  background: var(--paper);
  color: var(--ink);
  min-height: clamp(320px, 44vh, 460px);
  display: grid; place-items: center;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 30px 80px -30px rgba(0, 6, 18, 0.45);
}
.booking__placeholder { display: grid; place-items: center; gap: 14px; }
.booking__placeholder svg { color: var(--red); margin-bottom: 6px; }
.booking__placeholder strong {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(20px, 2.2vw, 28px);
}
.booking__placeholder > span {
  font-size: 14px; line-height: 1.7; color: var(--ink-soft);
  max-width: 380px;
  margin-bottom: 12px;
}
.cta__fineprint {
  margin-top: clamp(24px, 4vh, 36px);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--blue-ink);
  color: var(--paper);
  padding: clamp(48px, 8vh, 80px) 0 40px;
}
.footer__grid { display: grid; gap: 22px; justify-items: center; text-align: center; }
.footer__brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.3em; font-weight: 600;
}
.footer__brand em { font-style: normal; color: var(--red-bright); }
.footer__brand svg { color: var(--red-bright); }
.footer__tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--light-soft);
}
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 2.4vw, 32px); }
.footer__links a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; transition: opacity 0.3s, color 0.3s;
}
.footer__links a:hover { opacity: 1; color: var(--red-bright); }
.footer__legal {
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(247, 245, 240, 0.42);
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 16px;
}
.footer__flag { display: inline-block; flex: none; }

/* ============ SUBPAGES ============ */
.nav__links a.is-current { opacity: 1; }
.nav__links a.is-current::after { transform: scaleX(1); }

.pagehero {
  background: var(--blue-deep);
  color: var(--paper);
  padding: clamp(150px, 22vh, 240px) 0 clamp(64px, 9vh, 110px);
  position: relative;
  overflow: hidden;
}
.pagehero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 80% 0%, rgba(191, 10, 48, 0.14) 0%, transparent 55%);
}
.pagehero > .container { position: relative; z-index: 1; }
.pagehero__eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
  color: var(--light-soft);
  margin-bottom: clamp(18px, 3vh, 28px);
}
.pagehero__eyebrow i { font-style: normal; color: var(--red-bright); margin-right: 8px; }
.pagehero__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.04; letter-spacing: -0.014em;
  margin-bottom: clamp(20px, 3vh, 32px);
}
.pagehero__title em { font-style: italic; color: var(--red-bright); }
.pagehero__lede {
  max-width: 620px;
  font-size: clamp(15px, 1.35vw, 18px); line-height: 1.8;
  color: var(--light-soft);
}

/* stats strip */
.stats-strip { background: var(--blue-ink); color: var(--paper); padding: clamp(36px, 6vh, 64px) 0; }
.stats-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 48px); }
.stat { text-align: center; }
.stat strong {
  display: block; white-space: nowrap;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.4vw, 52px); line-height: 1;
  margin-bottom: 10px;
}
.stat strong span { font: inherit; }
.stat strong em { font-style: normal; color: var(--red-bright); font-size: 0.6em; vertical-align: 0.35em; }
.stat > span {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light-soft); line-height: 1.6;
}

/* principles / who we serve */
.principles { padding: var(--section-pad) 0; }
.principles__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline);
}
.principle {
  padding: clamp(28px, 3.4vw, 52px);
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  position: relative; overflow: hidden;
  transition: background 0.5s var(--ease-out);
}
.principle::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-luxe);
}
.principle:hover { background: var(--white); }
.principle:hover::after { transform: scaleX(1); }
.principle__no {
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--red);
  display: block; margin-bottom: clamp(22px, 4vh, 40px);
}
.principle h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(21px, 2.1vw, 28px); line-height: 1.18;
  margin-bottom: 12px;
}
.principle h3 em { font-style: italic; color: var(--red); }
.principle p { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); max-width: 460px; }

.serve { padding: var(--section-pad) 0; }
.serve__rows { display: grid; }
.serve-row {
  display: grid; grid-template-columns: clamp(120px, 16vw, 220px) 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(28px, 4vh, 48px) 0;
  border-top: 1px solid var(--hairline-l);
}
.serve-row:last-child { border-bottom: 1px solid var(--hairline-l); }
.serve-row__tag {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--red-bright); padding-top: 8px;
}
.serve-row h3 {
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(21px, 2.2vw, 30px); margin-bottom: 10px;
}
.serve-row p { font-size: 15px; line-height: 1.8; color: var(--light-soft); max-width: 640px; }

/* phases (services) */
.phases { padding: var(--section-pad) 0; }
.phase {
  display: grid; grid-template-columns: clamp(90px, 12vw, 180px) 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(36px, 5vh, 64px) 0;
  border-top: 1px solid var(--hairline);
}
.phase:last-child { border-bottom: 1px solid var(--hairline); }
.phase__no {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(44px, 6vw, 96px); line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 10, 48, 0.85);
}
.phase__body { max-width: 720px; }
.phase__body h3 {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(22px, 2.4vw, 32px); margin-bottom: 6px;
}
.phase__body > em {
  display: block; font-style: italic; font-family: var(--serif);
  color: var(--red); margin-bottom: 14px; font-size: 15px;
}
.phase__body p { font-size: 15px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }
.phase__list { display: grid; gap: 10px; }
.phase__list li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
}
.phase__list li::before {
  content: "\2605"; position: absolute; left: 0; top: 1px;
  font-size: 10px; color: var(--red);
}
.phase__list b { color: var(--ink); font-weight: 600; }

/* what the system owns */
.owns { padding: var(--section-pad) 0; }
.owns__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-l); border-left: 1px solid var(--hairline-l);
}
.own {
  padding: clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--hairline-l); border-bottom: 1px solid var(--hairline-l);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: rgba(247, 245, 240, 0.85);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.4s, color 0.4s;
}
.own i { font-style: normal; font-size: 9px; color: var(--red-bright); }
.own:hover { background: rgba(247, 245, 240, 0.05); color: var(--paper); }

/* every build ships with */
.ships { padding: var(--section-pad) 0; }
.ships__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px clamp(24px, 4vw, 64px); max-width: 940px; }
.ships__grid li {
  position: relative; padding-left: 26px;
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
}
.ships__grid li::before {
  content: "\2605"; position: absolute; left: 0; top: 2px;
  font-size: 11px; color: var(--red);
}
.ships__grid b { color: var(--ink); font-weight: 600; }

/* engagement models */
.models { padding: var(--section-pad) 0; }
.models__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px); }
.model {
  padding: clamp(32px, 3.6vw, 56px);
  border: 1px solid var(--hairline-l);
  background: rgba(247, 245, 240, 0.03);
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease-out), border-color 0.5s;
}
.model:hover { transform: translateY(-6px); border-color: rgba(216, 18, 60, 0.55); }
.model__tag {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600;
  color: var(--red-bright); margin-bottom: 20px;
}
.model h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px); line-height: 1.16; margin-bottom: 16px;
}
.model p { font-size: 14.5px; line-height: 1.75; color: rgba(247, 245, 240, 0.75); margin-bottom: 18px; }
.model__list { display: grid; gap: 12px; margin-bottom: 24px; flex: 1; }
.model__list li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; line-height: 1.65; color: rgba(247, 245, 240, 0.82);
}
.model__list li::before {
  content: "\2605"; position: absolute; left: 0; top: 1px;
  font-size: 10px; color: var(--red-bright);
}
.model__note {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--light-soft);
  padding-top: 18px; border-top: 1px solid var(--hairline-l);
}

/* FAQ accordion */
.faq { padding: var(--section-pad) 0; }
.faq__list { max-width: 860px; }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(20px, 3vh, 30px) 0;
  text-align: left;
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(17px, 1.7vw, 22px);
  transition: color 0.3s;
}
.faq-item__q:hover { color: var(--red); }
.faq-item__icon {
  flex: none; width: 28px; height: 28px; position: relative;
  border: 1px solid var(--hairline); border-radius: 50%;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; background: var(--red);
  top: 50%; left: 50%;
}
.faq-item__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after {
  width: 1.5px; height: 12px; transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-luxe), opacity 0.3s;
}
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-luxe);
}
.faq-item__a p {
  padding: 0 0 clamp(20px, 3vh, 28px);
  max-width: 700px;
  font-size: 15px; line-height: 1.8; color: var(--ink-soft);
}

/* case studies */
.cs-note {
  font-size: 13px; line-height: 1.7; color: var(--light-soft);
  max-width: 560px; margin-top: 16px;
  padding-left: 14px; border-left: 2px solid var(--red-bright);
}
.cs-list { padding: var(--section-pad) 0; display: grid; gap: clamp(24px, 4vh, 44px); }
.cs {
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: clamp(28px, 3.6vw, 56px);
  position: relative; overflow: hidden;
}
.cs::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--red);
  transform: scaleY(0); transform-origin: 50% 0;
  transition: transform 0.5s var(--ease-luxe);
}
.cs:hover::after { transform: scaleY(1); }
.cs__tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--red);
  border: 1px solid rgba(191, 10, 48, 0.35);
  padding: 6px 12px; margin-bottom: 18px;
}
.cs h3 {
  font-family: var(--serif); font-weight: 460;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15;
  margin-bottom: clamp(20px, 3vh, 28px);
  max-width: 20em;
}
.cs__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.cs__col h4 {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600;
  color: var(--red); margin-bottom: 10px;
}
.cs__col p { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); }

/* CTA band (subpages) */
.cta-band { background: var(--red); color: var(--paper); padding: clamp(56px, 9vh, 100px) 0; }
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.cta-band__inner h2 {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(26px, 3.4vw, 46px); line-height: 1.12;
}
.cta-band__inner h2 em { font-style: italic; }

/* crosslinks */
.crosslinks { padding: var(--section-pad) 0; }
.crosslinks__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 36px); }
.crosslink {
  display: block;
  padding: clamp(28px, 3.4vw, 52px);
  border: 1px solid var(--hairline-l);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.crosslink:hover { transform: translateY(-5px); border-color: rgba(216, 18, 60, 0.55); background: rgba(247, 245, 240, 0.04); }
.crosslink span {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  color: var(--red-bright); display: block; margin-bottom: 14px;
}
.crosslink h3 {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(21px, 2.2vw, 30px); line-height: 1.2; margin-bottom: 8px;
}
.crosslink p { font-size: 14px; line-height: 1.7; color: var(--light-soft); }

/* generic section title on subpages */
.sec-title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(30px, 4.2vw, 60px); line-height: 1.1;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.sec-title em { font-style: italic; }
.section--paper .sec-title em { color: var(--red); }
.section--blue .sec-title em { color: var(--red-bright); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .problem__layout { grid-template-columns: 1fr; }
  .problem__sticky { position: static; }
  .outcomes__grid { grid-template-columns: 1fr 1fr; }
  .partnership__grid { grid-template-columns: 1fr; }
  .partnership__band { flex-direction: column; align-items: flex-start; }
  .texas__grid { grid-template-columns: 1fr; }
  .texas__map { max-width: 420px; margin-inline: auto; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .principles__grid { grid-template-columns: 1fr; }
  .owns__grid { grid-template-columns: repeat(2, 1fr); }
  .models__grid { grid-template-columns: 1fr; }
  .cs__cols { grid-template-columns: 1fr; gap: 20px; }
  .crosslinks__grid { grid-template-columns: 1fr; }
  .ships__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-pad: clamp(72px, 12vh, 120px); }
  .outcomes__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .hero__content { padding-bottom: clamp(170px, 24vh, 240px); }
  .hero__title { font-size: clamp(42px, 12vw, 60px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__city { right: var(--gutter); bottom: 92px; }
  .hero__scrollcue { display: none; }
  .texas__stats { grid-template-columns: 1fr 1fr; }
  .texas-stat strong { font-size: clamp(26px, 8vw, 36px); }
  .system__stage { height: 340px; }
  .chip { padding: 8px 14px; font-size: 10.5px; }
  .chip:nth-child(n+10) { display: none; }
  .system__core { padding: 24px 28px; }
  .cta__title { font-size: clamp(38px, 11vw, 56px); }
  .booking__embed { min-height: 300px; padding: 24px 18px; }
  .booking__placeholder .btn { width: 100%; }
  .partnership__band .btn { width: 100%; }
  .problem__coda { margin-inline: calc(var(--gutter) * -0); }
  .pain__body p { font-size: 14px; }
  .footer__links { gap: 12px 18px; }
  .serve-row { grid-template-columns: 1fr; gap: 8px; }
  .phase { grid-template-columns: 1fr; gap: 14px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band .btn { width: 100%; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  .hero__word { transform: none !important; }
  .chip { opacity: 0.3 !important; }
  .system__core { opacity: 1 !important; transform: none !important; }
  #texasPath { stroke-dashoffset: 0; }
  .texas__map-star { opacity: 1; }
}
