/* ==========================================================================
   Texas AI Lab — site styles (LMV brand grammar: Fraunces / Source Serif 4).
   Reference aesthetic: greetform.com, lightbreak.ai.
   ========================================================================== */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Fraunces-variable-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Fraunces-variable-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('/assets/fonts/SourceSerif4-variable-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url('/assets/fonts/SourceSerif4-variable-italic.woff2') format('woff2');
}
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/Inter-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/Inter-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/Inter-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/Inter-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/Inter-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/JetBrainsMono-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/JetBrainsMono-500-normal.woff2') format('woff2'); }

/* ---------- Design tokens ---------- */
:root {
  /* Paper / surface */
  --paper:       #faf7f1;
  --paper-2:     oklch(0.955 0.014 85);
  --paper-3:     oklch(0.93 0.018 82);
  --white:       #fff;

  /* Ink */
  --ink:         #1c1c1a;
  --ink-2:       #3a3a37;
  --ink-3:       #6b6b65;
  --ink-4:       oklch(0.66 0.015 260);

  /* Rules */
  --rule:        #d8d3c4;
  --rule-2:      oklch(0.78 0.015 85);

  /* Brand colors */
  --bluebonnet:    #2f4a7a;
  --bluebonnet-2:  oklch(0.42 0.1 258);
  --bluebonnet-ink: oklch(0.22 0.07 258);
  --rust:          #b3431d;
  --rust-2:        oklch(0.5 0.13 42);
  --rust-soft:     oklch(0.93 0.04 45);

  /* Dark section backgrounds */
  --bg-navy:     var(--bluebonnet);
  --bg-navy-2:   oklch(0.22 0.07 258);
  --bg-ink:      oklch(0.13 0.018 260);

  /* Footer */
  --footer-bg:   oklch(0.18 0.02 260);

  /* Type families */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Source Serif 4', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Shadows */
  --card-shadow:
    0 1px 2px rgba(20,18,30,0.04),
    0 4px 14px rgba(20,18,30,0.04);
  --card-shadow-hover:
    0 4px 14px rgba(20,18,30,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--rust); color: var(--paper); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--ink);
}

/* ---------- Brand wordmark ---------- */
.brand {
  display: inline-flex; align-items: baseline; gap: 0.18em;
  font-family: var(--display); line-height: 1;
}
.brand-place { font-style: italic; color: var(--rust); font-family: var(--display); font-weight: 500; }
.brand-tail  { font-style: normal; color: var(--ink);  font-family: var(--display); font-weight: 500; }
.nav .logo .brand  { font-size: 22px; }
.foot .logo .brand { font-size: 26px; }

.navlinks { display: flex; gap: 30px; align-items: center; }
.navlinks a {
  color: var(--ink-2); text-decoration: none;
  font-size: 14px; font-weight: 400;
  transition: color .2s ease;
}
.navlinks a:hover { color: var(--ink); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rust); color: var(--paper);
  padding: 10px 18px; border-radius: 3px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.nav .cta:hover { background: var(--rust-2); transform: translateY(-1px); }
@media (max-width: 880px) { .navlinks > a:not(.cta) { display: none; } }

/* ---------- Section header pattern ---------- */
section { position: relative; }

.section-head {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.section-head.on-dark,
.band-navy .section-head,
.band-ink .section-head {
  border-top-color: oklch(0.78 0.16 60);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.section-head .page-no {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Section bands ---------- */
.band-navy {
  background: var(--bg-navy);
  color: var(--paper);
  position: relative;
}
.band-navy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rust) 0, oklch(0.78 0.16 60) 100%);
}
.band-navy .eyebrow   { color: oklch(0.85 0.15 60); }
.band-navy .page-no   { color: oklch(0.78 0.08 80); }

.band-ink {
  background: var(--bg-ink);
  color: var(--paper);
  position: relative;
}
.band-ink::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rust);
}
.band-ink .eyebrow  { color: oklch(0.85 0.15 60); }
.band-ink .page-no  { color: oklch(0.78 0.08 80); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

h1.display {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-size: clamp(52px, 6.8vw, 108px);
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin: 20px 0 28px;
  text-wrap: balance;
  color: var(--ink);
}
h1.display .it {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 144, "SOFT" 90;
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.lede em {
  font-style: normal;
  font-weight: 600;
  color: var(--rust);
}
.band-navy .lede,
.band-ink .lede { color: oklch(0.88 0.03 80); }
.band-navy .lede em,
.band-ink .lede em { color: oklch(0.88 0.14 60); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 3px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, transform 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn-primary   { background: var(--rust); color: var(--paper); }
.btn-primary:hover { background: var(--rust-2); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-secondary:hover { background: var(--paper-2); border-color: var(--ink-3); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero animation (right column) ---------- */
.hero-anim {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero-anim-head {
  border-top: 2px solid var(--ink);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.hero-anim-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-anim-head .page-no {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-anim-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 0 rgba(179, 67, 29, 0.55);
  animation: heroAnimPulse 2.2s ease-out infinite;
}
@keyframes heroAnimPulse {
  0%   { box-shadow: 0 0 0 0 rgba(179, 67, 29, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(179, 67, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(179, 67, 29, 0); }
}
.hero-anim-stage {
  position: relative;
  aspect-ratio: 1/1;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.97 0.012 85) 0%, var(--paper) 70%);
  overflow: hidden;
}
.hero-anim-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Dot grid (added by JS) - small dots */
.hero-grid-dots circle {
  opacity: 0.55;
}
.hero-grid-dots circle.lit {
  fill: #b3431d;
  opacity: 1;
}

/* Concentric rings ripple out */
.ring {
  transform-origin: 210px 210px;
}
.ring.r1 { animation: ringPulse 4.5s ease-out infinite; }
.ring.r2 { animation: ringPulse 4.5s ease-out infinite 1.5s; }
.ring.r3 { animation: ringPulse 4.5s ease-out infinite 3s; }
@keyframes ringPulse {
  0%   { transform: scale(0.2); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Satellite nodes */
.sat { transform-box: fill-box; transform-origin: center; }
.sat-1 { animation: satPulse 3.6s ease-in-out infinite; }
.sat-2 { animation: satPulse 3.6s ease-in-out infinite 0.9s; }
.sat-3 { animation: satPulse 3.6s ease-in-out infinite 1.8s; }
.sat-4 { animation: satPulse 3.6s ease-in-out infinite 2.7s; }
@keyframes satPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.6); opacity: 1; }
}

/* Connecting lines: draw in and out */
.link {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  opacity: 0;
}
.link-1 { animation: linkDraw 3.6s ease-in-out infinite 0.2s; }
.link-2 { animation: linkDraw 3.6s ease-in-out infinite 1.1s; }
.link-3 { animation: linkDraw 3.6s ease-in-out infinite 2.0s; }
.link-4 { animation: linkDraw 3.6s ease-in-out infinite 2.9s; }
@keyframes linkDraw {
  0%   { stroke-dashoffset: 240; opacity: 0; }
  25%  { opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -240; opacity: 0; }
}

/* Central halo and core */
.halo {
  transform-box: fill-box;
  transform-origin: center;
  animation: haloBreathe 4s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%, 100% { transform: scale(0.85); opacity: 0.7; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.core {
  transform-box: fill-box;
  transform-origin: center;
  animation: coreBeat 1.8s ease-in-out infinite;
}
@keyframes coreBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

/* Cycling labels */
.hero-anim-foot {
  padding: 14px 22px 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  min-height: 52px;
}
.hero-anim-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  flex-shrink: 0;
}
.hero-anim-cycle {
  position: relative;
  flex: 1;
  height: 24px;
  display: block;
  overflow: hidden;
}
.cyc {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  animation: cycRotate 12s ease-in-out infinite;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.cyc-1 { animation-delay: 0s; }
.cyc-2 { animation-delay: 3s; }
.cyc-3 { animation-delay: 6s; }
.cyc-4 { animation-delay: 9s; }
@keyframes cycRotate {
  0%   { opacity: 0; transform: translateY(8px); }
  4%   { opacity: 1; transform: translateY(0); }
  21%  { opacity: 1; transform: translateY(0); }
  25%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* Reduced motion: kill the animations */
@media (prefers-reduced-motion: reduce) {
  .hero-anim-pulse, .ring, .sat, .link, .halo, .core, .cyc {
    animation: none !important;
  }
  .link { stroke-dashoffset: 0; opacity: 1; }
  .cyc-1 { opacity: 1; transform: none; }
}

/* ---------- Section headlines ---------- */
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.section-title .it {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.band-navy .section-title,
.band-ink .section-title { color: var(--paper); }
.band-navy .section-title .it,
.band-ink .section-title .it {
  color: oklch(0.88 0.14 60);
}

.section-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 16px 0 0;
  text-wrap: pretty;
}
.band-navy .section-desc,
.band-ink .section-desc {
  color: oklch(0.88 0.03 80);
}

/* ---------- Capabilities ---------- */
.capabilities { padding: 100px 0; }
.cap-head { margin-bottom: 56px; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 3px;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-card {
  background: var(--white);
  padding: 32px 28px 36px;
  position: relative;
  border-radius: 3px;
  border: 1px solid var(--rule);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(20,18,30,0.25);
  border-color: var(--rust);
}
.cap-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
  opacity: 0;
  transition: opacity 0.2s;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.cap-card:hover::after { opacity: 1; }

.cap-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cap-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
}
.cap-glyph {
  color: var(--bluebonnet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cap-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 40;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 12px;
}
.cap-title .it {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.cap-card p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- Process ---------- */
.process { padding: 100px 0; background: var(--paper-2); }
.proc-head { margin-bottom: 64px; }
.proc-head .section-desc { max-width: 56ch; }

.proc-timeline {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.proc-step:last-child { border-bottom: none; }

.proc-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--rule-2);
  transition: color 0.3s;
}
.proc-step:hover .proc-num { color: var(--rust); }

.proc-body { min-width: 0; }

.proc-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.proc-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 40;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
}
.proc-step p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
}
@media (max-width: 720px) {
  .proc-step { grid-template-columns: 56px 1fr; gap: 18px; padding: 28px 0; }
  .proc-num { font-size: 44px; }
}

/* ---------- Services ---------- */
.services { padding: 100px 0; }
.services-head { margin-bottom: 56px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-radius: 3px;
}
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--paper);
  padding: 36px 36px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 3px;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rust);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,0.3); }
.svc:hover::after { opacity: 1; }

.svc-icon {
  width: 28px; height: 28px;
  color: var(--bluebonnet);
  margin-bottom: 20px;
}
.svc-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 8px;
}
.svc-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--rust);
  margin: 16px 0 0;
  display: block;
}
.svc-price.compact { font-size: 30px; }
.svc-price-unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin: 6px 0 20px;
}
.svc-list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.svc-list li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: "—";
  color: var(--rust);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--paper);
  background: var(--rust);
  border: 1px solid transparent;
  transition: background 0.15s, transform 0.15s;
}
.svc-cta:hover { background: var(--rust-2); transform: translateY(-1px); }
.svc-cta.outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.svc-cta.outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ---------- Chapters ---------- */
.chapters { padding: 100px 0; }
.chap-head { margin-bottom: 56px; }

.chap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .chap-grid { grid-template-columns: 1fr; } }

.chap {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.chap:hover {
  border-color: var(--bluebonnet);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
.chap-photo {
  height: 180px;
  overflow: hidden;
  background: var(--paper-2);
}
.chap-photo img, .chap-photo svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.chap:hover .chap-photo img { transform: scale(1.03); }

.chap-name {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  padding: 20px 22px 6px;
}
.chap-cities {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 22px 16px;
}
.chap-link {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.01em;
}

/* ---------- Articles ---------- */
.articles { padding: 100px 0; }
.art-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.art-head .more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: oklch(0.85 0.15 60);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.art-head .more:hover { color: var(--paper); }

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: 3px;
}
@media (max-width: 860px) { .art-grid { grid-template-columns: 1fr; } }

.art {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  padding: 0;
  border-radius: 3px;
  border: 1px solid var(--rule);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.art:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -10px rgba(20,18,30,0.25);
  border-color: var(--rust);
}

.art-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
.art-thumb img, .art-thumb svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.art:hover .art-thumb img { transform: scale(1.03); }

.art-meta {
  padding: 18px 22px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}
.art-meta .cat {
  color: var(--rust);
  font-weight: 700;
}
.art-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 40;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 10px;
  padding: 0 22px;
  text-wrap: balance;
}
.art:hover .art-title { color: var(--rust); }
.art-excerpt {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
  padding: 0 22px;
  text-wrap: pretty;
  flex: 1;
}
.art-read {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rust);
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.02em;
  background: var(--paper);
}

/* ---------- Founder ---------- */
.founder { padding: 100px 0; }
.founder-head { margin-bottom: 48px; }

.founder-grid {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 72px;
  align-items: start;
}
@media (max-width: 1100px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } }

.portrait {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  box-shadow: 0 8px 28px -10px rgba(20,18,30,0.18);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

.founder-name {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 6px;
}
.founder-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 24px;
}
.founder p {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.founder p b { color: var(--ink); font-weight: 600; }

.founder-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.founder-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s;
}
.founder-links a:hover { color: var(--rust); }
.founder-links svg { width: 16px; height: 16px; flex-shrink: 0; }

.pullquote {
  max-width: 280px;
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.pullquote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 36, "SOFT" 80;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.pullquote .attr {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer.foot {
  background: var(--footer-bg);
  color: var(--paper);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid oklch(0.28 0.03 260);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

.foot .logo { margin-bottom: 14px; display: inline-flex; }
.foot .logo .brand-place { color: oklch(0.78 0.16 60); }
.foot .logo .brand-tail  { color: var(--paper); }

.foot p.tag {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(0.78 0.03 80);
  margin: 16px 0 0;
  max-width: 32ch;
  text-wrap: pretty;
}
.foot h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.78 0.16 60);
  font-weight: 700;
  margin: 0 0 18px;
}
.foot a {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  color: oklch(0.78 0.03 80);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.foot a:hover { color: var(--paper); }

.news-form { display: flex; gap: 8px; margin-top: 12px; max-width: 360px; }
.news-form input {
  flex: 1; background: transparent;
  border: 1px solid oklch(0.32 0.03 260);
  border-radius: 3px; padding: 11px 14px;
  color: var(--paper); font-family: var(--sans); font-size: 13.5px; outline: none;
  transition: border-color .2s ease;
}
.news-form input::placeholder { color: oklch(0.6 0.02 260); }
.news-form input:focus { border-color: var(--rust); }
.news-form button {
  background: var(--rust); color: var(--paper);
  border: 0; border-radius: 3px; padding: 11px 18px; cursor: pointer;
  font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  transition: background .2s ease;
}
.news-form button:hover { background: var(--rust-2); }
.foot-newsletter-tag { font-size: 12.5px; color: oklch(0.6 0.02 260); margin-top: 10px; font-family: var(--mono); letter-spacing: 0.04em; }

.foot-socials { display: flex; gap: 14px; align-items: center; margin-top: 14px; }
.foot-socials a {
  width: 32px; height: 32px; border-radius: 3px;
  border: 1px solid oklch(0.32 0.03 260);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; margin: 0;
}
.foot-socials a:hover { border-color: var(--rust); color: var(--rust); }
.foot-socials svg { width: 14px; height: 14px; }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: oklch(0.55 0.02 260);
  gap: 16px; flex-wrap: wrap;
}
.back-to-top {
  background: var(--rust); color: var(--paper); border-radius: 3px;
  padding: 8px 16px; font-size: 12px; font-weight: 600; cursor: pointer; border: 0;
  text-decoration: none;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.back-to-top:hover { background: var(--rust-2); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Chapter hero ---------- */
.chap-hero {
  padding: 72px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.chap-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  text-wrap: balance;
  color: var(--ink);
}
.chap-hero h1 .it,
.chap-hero h1 i {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.chap-hero .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.chap-hero p.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}

/* ---------- Article (long-form post) ---------- */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 60px 0 80px; }
.article-back {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust); text-decoration: none;
  font-weight: 600;
}
.article-eyebrow { display: block; margin: 36px 0 14px; }
.article-hero {
  margin: 28px 0 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  aspect-ratio: 2.4 / 1;
  overflow: hidden;
  position: relative;
  padding: 24px;
}
.article-hero img { width: 100%; height: 100%; display: block; object-fit: contain; }
.article-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 20;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 20px 0 28px;
  text-wrap: balance;
}
.article-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 36px;
}
.article-body { font-size: 18px; line-height: 1.7; color: var(--ink-2); }
.article-body p, .article-body ul, .article-body ol {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 60, "SOFT" 20;
  font-size: 32px;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 44px 0 16px;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.article-body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 24px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 32px 0 12px;
}
.article-body a { color: var(--rust); text-decoration: underline; text-decoration-color: oklch(0.5 0.13 42 / 0.35); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--rust); }
.article-body blockquote {
  border-left: 3px solid var(--rust);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 80;
  font-size: 20px;
  color: var(--ink-2);
}
.article-body strong, .article-body b { font-weight: 600; color: var(--ink); }
.article-body em, .article-body i { font-style: italic; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-size: 72px;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--rust);
}
.article-author {
  margin-top: 56px; padding: 24px;
  border: 1px solid var(--rule); border-radius: 3px;
  background: var(--paper-2);
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.article-author img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--rule);
}
.article-author .ab-name {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--ink);
}
.article-author .ab-bio {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* ---------- Articles index (magazine layout) ---------- */
.articles-index { padding: 60px 0 80px; }
.articles-index .ix-head { margin-bottom: 36px; }

.ix-featured { margin: 36px 0 56px; }
.ix-featured-link {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px;
  align-items: stretch;
  text-decoration: none; color: inherit;
}
.ix-featured-illo {
  display: flex; align-items: center; justify-content: center;
  min-height: 100%;
  max-height: 480px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.ix-featured-illo img { width: 100%; max-width: 480px; height: auto; display: block; }
.ix-featured-text { display: flex; flex-direction: column; gap: 14px; padding: 4px 0; }
.ix-featured-eyebrow { color: var(--rust); }
.ix-featured-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.ix-featured-title .it { font-style: italic; color: var(--rust); }
.ix-featured-lede {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.ix-featured-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}
.ix-featured-cta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust);
  margin-top: 4px;
  font-weight: 700;
}
.ix-featured-link:hover .ix-featured-title { color: var(--rust); }
@media (max-width: 880px) {
  .ix-featured-link { grid-template-columns: 1fr; gap: 20px; }
  .ix-featured-illo { aspect-ratio: 1.6 / 1; min-height: 0; max-height: none; padding: 28px; }
}

.ix-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin: 0 0 56px;
}
@media (max-width: 720px) { .ix-grid { grid-template-columns: 1fr; gap: 24px; } }
.ix-grid-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ix-grid-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--bluebonnet);
}
.ix-grid-thumb {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  position: relative;
  padding: 24px;
  margin-bottom: 8px;
}
.ix-grid-thumb img { width: 100%; height: 100%; display: block; object-fit: contain; }
.ix-grid-eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; gap: 14px; flex-wrap: wrap;
  font-weight: 600;
}
.ix-grid-eyebrow .cat { color: var(--rust); font-weight: 700; }
.ix-grid-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ix-grid-card:hover .ix-grid-title { color: var(--rust); }
.ix-grid-dek {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ix-grid-read {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  margin-top: auto;
  font-weight: 600;
}

.ix-list { display: flex; flex-direction: column; }
.ix-list-row {
  display: grid; grid-template-columns: 0.8fr 2fr; gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  align-items: start;
}
.ix-list-row:last-child { border-bottom: 1px solid var(--rule); }
@media (max-width: 720px) { .ix-list-row { grid-template-columns: 1fr; gap: 8px; } }
.ix-list-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 600;
}
.ix-list-meta .cat { color: var(--rust); font-weight: 700; }
.ix-list-body { display: flex; flex-direction: column; gap: 8px; }
.ix-list-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.ix-list-row:hover .ix-list-title { color: var(--rust); }
.ix-list-dek {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
}
.ix-list-read {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}

/* ---------- Chapter inner section spacing (was .chap-section) ---------- */
.chap-section { /* legacy class kept for non-band sections; band classes own background */ }

/* ---------- Inquiry forms ---------- */
.form-section {
  padding: 60px 0 100px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.form-wrap { max-width: 720px; margin: 0 auto; }

.inquiry-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 40px 44px 36px;
  box-shadow: var(--card-shadow);
}
@media (max-width: 600px) {
  .inquiry-form { padding: 28px 22px 24px; }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-row-split > div { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 600px) {
  .form-row-split { grid-template-columns: 1fr; }
}

.inquiry-form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
}
.inquiry-form .req { color: var(--rust); margin-left: 2px; }

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.inquiry-form select { padding-right: 38px; }
.inquiry-form textarea {
  resize: vertical;
  min-height: 110px;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--rust);
  background: var(--white);
  box-shadow: 0 0 0 3px oklch(0.78 0.16 60 / 0.18);
}
.inquiry-form ::placeholder {
  color: var(--ink-3);
  opacity: 0.7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-submit {
  font-size: 15px;
  padding: 15px 28px;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.form-status {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
}
.form-status.is-error { color: var(--rust); font-weight: 600; }

.form-fine {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 22px 0 0;
  line-height: 1.5;
}

/* Thank-you page list */
.thanks-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thanks-list li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.thanks-list li::before {
  content: "—";
  color: var(--rust);
  font-family: var(--mono);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.thanks-list strong { color: var(--ink); font-weight: 600; }
.thanks-list a { color: var(--rust); text-decoration: underline; text-decoration-color: oklch(0.5 0.13 42 / 0.35); text-underline-offset: 3px; }
.thanks-list a:hover { text-decoration-color: var(--rust); }
