/* =========================================================================
   PAGES.CSS — inner-page components
   ========================================================================= */

/* ====================== SERVICES GRID ================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service-card {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--ink);
  transition: background 0.3s ease;
  position: relative;
}
.service-card:hover { background: var(--gunmetal); }
.service-card .code {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bronze);
}
.service-card h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--bone);
}
.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.82;
  max-width: 36ch;
}
.service-card ul {
  list-style: none;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
}
.service-card ul li::before { content: "→ "; color: var(--bronze); }
.service-card .lead-time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--slate);
  text-transform: uppercase;
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
  margin-top: 8px;
}
.service-card .lead-time strong { color: var(--bronze); font-weight: 400; }

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

/* ====================== BUILDS — BENCH CARDS =========================== */

.bench-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.bench-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  border-bottom: 1px solid var(--rule);
  min-height: 360px;
}
.bench-row:nth-child(even) { grid-template-columns: 1fr 1.4fr 1.1fr; }
.bench-row:nth-child(even) .bench-photo { order: 3; }
.bench-row:nth-child(even) .bench-meta  { order: 1; border-right: 1px solid var(--rule); border-left: none; }
.bench-row:nth-child(even) .bench-spec  { order: 2; }

.bench-photo {
  background: var(--gunmetal);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 320px;
}
.bench-photo .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14161A 0%, #2A2D31 45%, #1A1C1F 100%);
  color: var(--slate);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  line-height: 1.8;
}
.bench-photo .placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--rule);
}
.bench-photo .bench-stamp {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--ink);
  border: 1px solid var(--bronze);
  color: var(--bronze);
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}

.bench-meta {
  padding: clamp(28px, 3vw, 44px);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--ink);
}
.bench-meta .platform {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
}
.bench-meta h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  color: var(--bone);
  text-transform: uppercase;
}
.bench-meta p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.85;
}
.bench-meta .owner {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

.bench-spec {
  padding: clamp(24px, 3vw, 36px);
  background: var(--gunmetal);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone);
}
.bench-spec .spec-title {
  color: var(--slate);
  letter-spacing: 0.2em;
  font-size: 10px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.bench-spec .spec-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: baseline;
}
.bench-spec .spec-row:last-child { border-bottom: none; }
.bench-spec .spec-row .k { color: var(--slate); font-size: 9px; letter-spacing: 0.2em; }
.bench-spec .spec-row .v { color: var(--bone); font-size: 11px; letter-spacing: 0.04em; text-transform: none; }

@media (max-width: 900px) {
  .bench-row, .bench-row:nth-child(even) { grid-template-columns: 1fr; }
  .bench-row:nth-child(even) .bench-photo { order: 1; }
  .bench-row:nth-child(even) .bench-meta { order: 2; border-left: none; border-right: none; border-top: 1px solid var(--rule); }
  .bench-row:nth-child(even) .bench-spec { order: 3; }
  .bench-meta { border-left: none; border-right: none; }
  .bench-photo { min-height: 280px; }
}

/* ====================== CERAKOTE SWATCHES ============================== */

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.swatch {
  position: relative;
  aspect-ratio: 1;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: var(--gunmetal);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.swatch:hover { transform: scale(0.97); }
.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.16), transparent 55%);
  pointer-events: none;
}
.swatch::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.swatch .name {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}
.swatch .code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.swatch[data-tone="dark"]  .name,
.swatch[data-tone="dark"]  .code { color: rgba(255,255,255,0.92); }
.swatch[data-tone="light"] .name,
.swatch[data-tone="light"] .code { color: rgba(20,23,26,0.86); }
.swatch[data-tone="light"] .code { color: rgba(20,23,26,0.65); }

@media (max-width: 1000px) { .swatch-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .swatch-grid { grid-template-columns: repeat(2, 1fr); } }

/* ====================== PROCESS STEPS ================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.process-cell {
  padding: clamp(24px, 2.4vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.process-cell .num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--bronze);
  line-height: 1;
}
.process-cell .label {
  font-family: var(--f-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.process-cell .detail {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.78;
  margin-top: auto;
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ====================== PRICING TIERS ================================== */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.tier {
  padding: clamp(28px, 2.6vw, 40px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--ink);
  min-height: 540px;
}
.tier .code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bronze);
  text-transform: uppercase;
}
.tier .name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--bone);
}
.tier .range {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--bronze);
  line-height: 1;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.tier .summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone);
  opacity: 0.86;
}
.tier ul {
  list-style: none;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--bone);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tier ul li::before { content: "● "; color: var(--bronze); margin-right: 4px; }
.tier .examples {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  border-top: 1px dashed var(--rule);
  padding-top: 14px;
  line-height: 1.7;
}
@media (max-width: 1100px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tier-grid { grid-template-columns: 1fr; } }

/* ====================== TURNAROUND BAR ================================= */

.turnaround {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.turnaround-cell {
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.turnaround-cell:last-child { border-right: none; }
.turnaround-cell .what {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.turnaround-cell .when {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  color: var(--bone);
  text-transform: uppercase;
}
.turnaround-cell .when em {
  font-family: "Fraunces", Georgia, serif;
  color: var(--bronze);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}
@media (max-width: 1000px) { .turnaround { grid-template-columns: repeat(2, 1fr); } .turnaround-cell:nth-child(2) { border-right: none; } }
@media (max-width: 600px)  { .turnaround { grid-template-columns: 1fr; } .turnaround-cell { border-right: none; border-bottom: 1px solid var(--rule); } }

/* ====================== ABOUT — OWNER SECTION ========================== */

.about-spread {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-portrait {
  background: var(--gunmetal);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.about-portrait .placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1F2226 0%, #3A3F45 50%, #1F2226 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-portrait .placeholder::before {
  content: ""; position: absolute; inset: 28px;
  border: 1px solid var(--rule);
}
.about-portrait .stamp {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--ink);
  border: 1px solid var(--bronze);
  padding: 10px 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.about-prose h2 { margin-bottom: 32px; }
.about-prose .dropcap::first-letter {
  font-family: var(--f-display);
  font-size: 3.2em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--bronze);
}
.about-prose p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--bone);
}
.credential-list {
  margin-top: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}
.credential-row {
  display: grid;
  grid-template-columns: 24px 1fr 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: baseline;
}
.credential-row:last-child { border-bottom: none; }
.credential-row .idx {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--bronze);
  letter-spacing: 0.16em;
}
.credential-row .label {
  font-family: var(--f-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.credential-row .issuer {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: right;
}
@media (max-width: 900px) {
  .about-spread { grid-template-columns: 1fr; }
  .credential-row { grid-template-columns: 24px 1fr; }
  .credential-row .issuer { grid-column: 1 / -1; padding-left: 40px; text-align: left; }
}

/* ====================== FAQ ============================================ */

.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: clamp(20px, 2.4vw, 32px) 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 26px);
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--bronze); }
.faq-q .toggle {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 15px;
  line-height: 1.75;
  color: var(--bone);
  opacity: 0.88;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }
.faq-a p { max-width: 72ch; }

/* ====================== FORM =========================================== */

.form-spread {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
}
.form-side .form-meta {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-meta .row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: baseline;
}
.form-meta .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-meta .v { font-size: 14px; color: var(--bone); line-height: 1.5; }
.form-meta .v a { color: var(--bone); border-bottom: 1px solid var(--bronze); }

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form .full { grid-column: 1 / -1; }
.quote-form label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule-strong);
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus { border-color: var(--bronze); }
.quote-form textarea { min-height: 140px; resize: vertical; }
.quote-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.quote-form .legal {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  max-width: 38ch;
  line-height: 1.7;
}
@media (max-width: 800px) {
  .form-spread { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
}

/* ====================== CONTACT MAP ==================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.contact-cell {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-cell h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--slate);
  margin-bottom: 18px;
}
.contact-cell .big {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--bone);
  line-height: 1.15;
  text-transform: uppercase;
}
.contact-cell .reg {
  font-size: 14px;
  color: var(--bone);
  opacity: 0.88;
  line-height: 1.6;
  margin-top: 8px;
}
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule);
  filter: invert(0.92) hue-rotate(180deg) contrast(0.9);
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ====================== CTA BAND ======================================= */

.cta-band {
  background: var(--bronze);
  color: var(--ink);
  padding: clamp(56px, 7vw, 100px) 0;
  border-top: 1px solid var(--bronze-deep);
}
.cta-band .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.cta-band h2 { color: var(--ink); max-width: 14ch; }
.cta-band p { color: var(--ink); opacity: 0.85; max-width: 40ch; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn { border-color: var(--ink); color: var(--ink); }
.cta-band .btn:hover { background: var(--ink); color: var(--bronze); }
.cta-band .btn--primary { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.cta-band .btn--primary:hover { background: var(--bone); color: var(--ink); }
@media (max-width: 800px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ====================== INDEX — PRESENTED RECENT BENCH ================= */

.recent-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.recent-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  background: var(--ink);
  transition: background 0.3s ease;
}
.recent-card:hover { background: var(--gunmetal); }
.recent-card .photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #14161A 0%, #2A2D31 45%, #1A1C1F 100%);
  position: relative;
}
.recent-card .photo .stamp {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); border: 1px solid var(--bronze);
  color: var(--bronze);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px;
}
.recent-card .body {
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.recent-card .body .platform {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
}
.recent-card .body h3 {
  font-family: var(--f-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.05;
}
.recent-card .body .colors {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 8px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
@media (max-width: 900px) { .recent-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .recent-row { grid-template-columns: 1fr; } }

/* ====================== PAGE HEAD (inner pages) ======================== */

.page-head {
  border-bottom: 1px solid var(--rule);
  padding: clamp(80px, 9vw, 140px) 0 clamp(40px, 5vw, 64px);
}
.page-head .crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-head .crumb a:hover { color: var(--bronze); }
.page-head h1 { max-width: 18ch; margin-bottom: 24px; }
.page-head .lede { max-width: 60ch; }

/* ====================== 404 ============================================ */

.fourohfour {
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.fourohfour h1 { font-size: clamp(80px, 16vw, 220px); color: var(--bronze); }
.fourohfour p { max-width: 40ch; margin: 0 auto; }

/* ====================== INTRO BLOCK (index split) ====================== */

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-top: 24px;
}
.intro-split .quote {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  color: var(--bronze);
  border-left: 2px solid var(--bronze);
  padding-left: 24px;
  max-width: 36ch;
}
@media (max-width: 800px) { .intro-split { grid-template-columns: 1fr; } }

/* ====================== TGW MASTHEAD STRIP ============================= */

.tgw-strip {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
}
.tgw-strip-inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  animation: stripScroll 36s linear infinite;
  width: max-content;
}
.tgw-strip-inner span { display: inline-flex; align-items: center; gap: 64px; }
.tgw-strip-inner .dot {
  width: 8px; height: 8px; background: var(--bronze); border-radius: 50%;
}
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
