/* Fairtide Capital — site stylesheet
   Design tokens from brand/BRAND-NOTES.md and brand/WEBSITE-NOTES.md */

:root {
  --navy: #0E3B4D;
  --graphite: #12181B;
  --sand: #F2EFE7;
  --sand-border: #D8D0BC;
  --teal: #2DD4BF;
  --teal-dark: #1E8F7A;
  --green: #2DD4BF;
  --white: #FFFFFF;
  --off-white: #F5F7F8;

  --text-on-dark: #F5F7F8;
  --text-on-dark-muted: #B7C4C8;
  --text-on-navy-muted: #B7C8C2;
  --text-on-light: #0E3B4D;
  --text-on-light-muted: #3B4A4F;
  --text-faint: #8A9490;

  --font-body: 'Manrope', -apple-system, 'Inter', Helvetica, Arial, sans-serif;

  --max-width: 1120px;
  --section-pad-y: clamp(56px, 8vw, 96px);
  --section-pad-x: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-on-light);
  background: var(--sand);
}

img, svg { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

h1, h2, h3 { font-family: var(--font-body); margin: 0; }

a { color: inherit; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 24, 27, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand .mark { width: 28px; height: 14px; }
.brand .lockup-text { display: flex; flex-direction: column; line-height: 1; }
.brand .wordmark { font-weight: 700; font-size: 15px; color: var(--text-on-dark); }
.brand .caption {
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 3px;
}

.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--graphite);
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 12vw, 120px);
  padding-bottom: clamp(72px, 12vw, 120px);
  text-align: center;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.hero .eyebrow .mark { width: 36px; height: 18px; }
.hero .eyebrow .lockup-text { display: flex; flex-direction: column; line-height: 1; }
.hero .eyebrow .wordmark { font-weight: 700; font-size: 22px; text-transform: none; color: var(--text-on-dark); }
.hero .eyebrow .caption {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 4px;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.2;
  color: var(--text-on-dark);
  max-width: 780px;
}

.hero .subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-on-dark-muted);
  max-width: 480px;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-teal { background: var(--teal); color: #0B1114; }
.btn-navy { background: var(--navy); color: var(--sand); }
.btn-green { background: var(--green); color: #0B1114; }

.hero .btn { margin-top: 8px; }

/* ---------- Who We Are ---------- */

.who-we-are {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #123F52 0%, #0E3B4D 45%, #09242F 100%);
  color: var(--text-on-dark);
}
.who-we-are .eyebrow { color: var(--green); }
.who-we-are .wrap { position: relative; z-index: 1; }

.story-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -16%;
  width: 116%;
  height: auto;
  color: #2DD4BF;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.story-lead {
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-on-dark);
  max-width: 640px;
  margin: 18px 0 44px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.story-sidebar {
  position: relative;
  padding-right: 32px;
}
.story-sidebar::after {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px; right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(45,212,191,.55) 15%, rgba(45,212,191,.55) 85%, transparent);
}

.story-term {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}

.story-pos {
  font-size: 12px;
  color: #8FA8A2;
  margin-bottom: 16px;
}

.story-def {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-on-navy-muted);
  max-width: 30ch;
}

.story-copy { padding-top: 10px; }
.story-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: #D5DCDE;
  margin: 0 0 20px;
  max-width: 52ch;
}

.story-copy p:last-child { margin-bottom: 0; }

/* Scroll reveal, staggered (used by Who We Are) */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.who-we-are .eyebrow[data-reveal] { transition-delay: 0ms; }
.story-lead[data-reveal] { transition-delay: 70ms; }
.story-sidebar[data-reveal] { transition-delay: 150ms; }
.story-copy p[data-reveal]:nth-of-type(1) { transition-delay: 220ms; }
.story-copy p[data-reveal]:nth-of-type(2) { transition-delay: 290ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}

/* ---------- Approach ---------- */

.approach { background: var(--sand); }
.approach .eyebrow { color: var(--teal-dark); }

.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.triad-col h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.triad-frame {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.sub {
  margin-bottom: 18px;
}
.sub:last-child { margin-bottom: 0; }

.sub-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sub-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-on-light-muted);
}

.value-block {
  border-top: 1px solid var(--sand-border);
  padding-top: 40px;
}

.value-intro {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 680px;
  margin-bottom: 32px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
}

.value-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h4 {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-on-light-muted);
  margin: 0;
}

/* ---------- For Owners / For Investors (numbered points) ---------- */

.points-section .lead {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  max-width: 680px;
  margin-bottom: 40px;
}

.points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  margin-bottom: 40px;
}

.point {
  display: flex;
  gap: 18px;
}

.point-num {
  font-weight: 800;
  font-size: 22px;
  width: 34px;
  flex-shrink: 0;
}

.point h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.point p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Explore by Trade (homepage) ---------- */

.trades-home {
  background: var(--graphite);
  color: var(--text-on-dark);
}
.trades-home .eyebrow { color: var(--teal); }
.trades-home .value-intro { color: var(--text-on-dark); }
.trades-home .value-item h4 { color: var(--text-on-dark); }
.trades-home .value-item p { color: var(--text-on-dark-muted); }
.trades-home .value-icon svg { stroke: var(--teal); }
.trades-home .value-item {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.trades-home .value-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.for-owners {
  background: var(--navy);
  color: var(--text-on-dark);
}
.for-owners .eyebrow { color: var(--green); }
.for-owners .lead { color: var(--text-on-dark); }
.for-owners .point-num { color: #3D6E5F; }
.for-owners .point h3 { color: var(--text-on-dark); }
.for-owners .point p { color: var(--text-on-navy-muted); }

.for-investors {
  background: var(--sand);
  color: var(--text-on-light);
}
.for-investors .eyebrow { color: var(--teal-dark); }
.for-investors .lead { color: var(--text-on-light); }
.for-investors .point-num { color: var(--sand-border); }
.for-investors .point h3 { color: var(--text-on-light); }
.for-investors .point p { color: var(--text-on-light-muted); }

/* ---------- Team ---------- */

.team { background: var(--graphite); color: var(--text-on-dark); }
.team .eyebrow { color: var(--teal); }

.team-intro {
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid #24303A;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.bio h3 {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 2px;
}

.bio .role {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bio .superpower {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 10px;
}

.bio p.body {
  font-size: 13.5px;
  line-height: 1.65;
  color: #D5DCDE;
}

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

.contact { background: var(--sand); }
.contact .eyebrow { color: var(--teal-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-lead {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  max-width: 340px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--teal-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-on-light);
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: 6px;
  padding: 9px 12px;
}

.field textarea { resize: vertical; min-height: 90px; }

form.contact-form .btn { align-self: flex-start; margin-top: 4px; }
form.contact-form .btn:disabled { opacity: 0.65; cursor: wait; }

.form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
.form-status.is-success { color: var(--teal-dark, #0F766E); }
.form-status.is-error { color: #9B1C1C; }

/* Visually hide honeypot fields from humans (still in DOM for bots) */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-sent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0 4px;
}
.contact-sent[hidden],
.contact-fields[hidden] {
  display: none !important;
}
.sent-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy, #0E3B4D);
  letter-spacing: -0.02em;
}
.sent-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted, #3d5a63);
  max-width: 32ch;
}

.site-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--sand-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-legal { flex-basis: 100%; display: flex; gap: 16px; margin-top: 14px; font-size: 11px; }
.footer-legal a { color: var(--text-on-light-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--navy); text-decoration: underline; }
.footer-disclaimer { flex-basis: 100%; font-size: 10px; color: var(--text-on-light-muted); margin-top: 8px; line-height: 1.5; }

.site-footer .mark { width: 24px; height: 12px; }
.site-footer .lockup-text { display: flex; flex-direction: column; line-height: 1; }
.site-footer .wordmark { font-weight: 700; font-size: 13px; color: var(--navy); }
.site-footer .caption {
  font-weight: 700;
  font-size: 7.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-top: 2px;
}
.site-footer .copyright { font-size: 11px; color: var(--text-faint); margin-left: auto; }

.policy-page h1 { font-size: clamp(32px, 5vw, 44px); margin-bottom: 4px; }
.policy-page h2 { font-size: 20px; margin: 32px 0 12px; color: var(--navy); }
.policy-page p { margin: 0 0 16px; line-height: 1.6; color: var(--text-on-light-muted); }
.policy-page a { color: var(--teal-dark); text-decoration: underline; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 16px clamp(20px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13px; max-width: 640px; }
.cookie-banner-actions { display: flex; align-items: center; gap: 18px; }
.cookie-decline { background: none; border: none; color: var(--text-on-dark-muted); font-size: 13px; font-weight: 600; text-decoration: underline; cursor: pointer; padding: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 10px 18px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .triad { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-lead { max-width: none; }
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-sidebar { padding-right: 0; padding-bottom: 24px; }
  .story-sidebar::after { top: auto; left: 0; right: 0; bottom: 0; height: 1px; width: auto; background: linear-gradient(90deg, transparent, rgba(45,212,191,.55) 15%, rgba(45,212,191,.55) 85%, transparent); }
  .who-we-are .story-wave { bottom: -8%; opacity: 0.14; }
  .trade-band .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 620px) {
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .point { gap: 14px; }
}

.site-header.nav-open .site-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 100%);
  overflow-y: auto;
  flex-direction: column;
  background: var(--graphite);
  padding: 16px var(--section-pad-x) 20px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ---------- Trades Mega-Menu ---------- */

.nav-item-mega { position: relative; }
.mega-trigger-text {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
}
.mega-trigger-text:hover { color: var(--teal); }
.mega-caret {
  background: none;
  border: none;
  padding: 0;
  margin-left: 4px;
  color: inherit;
  font-size: 9px;
  cursor: pointer;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  background: #1A2226;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  width: 340px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  z-index: 60;
}
.nav-item-mega.is-open .mega-menu { display: block; }

.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mega-item { display: flex; gap: 8px; align-items: flex-start; text-decoration: none; }
.mega-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.mega-icon svg { width: 100%; height: 100%; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mega-name { display: block; font-size: 12px; font-weight: 700; color: var(--text-on-dark); }
.mega-blurb { display: block; font-size: 10.5px; color: var(--text-on-dark-muted); margin-top: 2px; line-height: 1.4; }

.mega-all {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

@media (max-width: 820px) {
  .mega-menu { position: static; transform: none; width: auto; margin-top: 10px; box-shadow: none; }
  .mega-grid { grid-template-columns: 1fr; }
}

/* ---------- Trade Page Bands ---------- */

.trade-band {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.trade-band::before {
  content: '';
  position: absolute;
  inset: 0;
  filter: grayscale(1);
  background-image: inherit;
  background-size: cover;
  background-position: center;
}
.trade-band::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.trade-band[data-treatment="dark"]::after { background: var(--graphite); }
.trade-band[data-treatment="light"]::after { background: var(--sand); }
.trade-band[data-treatment="navy"]::after { background: var(--navy); }

.trade-band .wrap { position: relative; z-index: 1; }

.trade-band[data-treatment="dark"] .eyebrow,
.trade-band[data-treatment="navy"] .eyebrow { color: var(--teal); }
/* --navy (not --teal-dark): on the light chip, teal-dark's contrast ceiling
   tops out around 4:1 even at full chip opacity, below the 4.5:1 AA bar for
   this bold-but-not-"large" 15px text. --navy clears it with comfortable
   headroom (measured 6.4:1+ against the darkest sampled chip patches). */
.trade-band[data-treatment="light"] .eyebrow { color: var(--navy); }

/* Trade-band eyebrows sit on photo backgrounds where contrast varies, so make
   them bigger/bolder and give them a chip background — legibility no longer
   depends on the photo underneath. Scoped to .trade-band only; homepage
   .eyebrow usage (solid-color sections) is untouched. */
.trade-band .eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
}
/* 0.55 (not 0.35): measured against real rendered chip pixels on the
   brightest photo patches across all 6 trade pages, 0.35 dropped as low as
   ~2.9:1 (e.g. HVAC's "Retention & Oversight" hazy-sky band measured
   ~3.3:1). 0.55 keeps every measured worst case at 4.8:1 or better. */
.trade-band[data-treatment="dark"] .eyebrow,
.trade-band[data-treatment="navy"] .eyebrow {
  background: rgba(0, 0, 0, 0.55);
}
.trade-band[data-treatment="light"] .eyebrow {
  background: rgba(255, 255, 255, 0.55);
}

.trade-band .value-grid { margin-top: 20px; }
.trade-band[data-treatment="dark"] .value-item,
.trade-band[data-treatment="navy"] .value-item {
  background: rgba(18,24,27,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px;
}
.trade-band[data-treatment="dark"] .value-item h4,
.trade-band[data-treatment="navy"] .value-item h4 { color: var(--text-on-dark); }
.trade-band[data-treatment="dark"] .value-item p,
.trade-band[data-treatment="navy"] .value-item p { color: var(--text-on-dark-muted); }
.trade-band[data-treatment="light"] .value-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--sand-border);
  border-radius: 8px;
  padding: 18px;
}

.trade-crosslinks {
  background: var(--sand);
  text-align: center;
}
.trade-crosslinks .label { font-size: 11px; font-weight: 700; color: var(--text-faint); margin-bottom: 10px; }
.trade-crosslinks a { font-size: 13px; font-weight: 700; color: var(--teal-dark); text-decoration: none; }
.trade-crosslinks .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }

/* Pure color/treatment tokens for trade-page bands that aren't part of a homepage section
   (avoids borrowing .approach / .for-owners, which would let homepage edits leak into trade pages) */
.band-sand { background: var(--sand); }
/* .value-intro's only margin here should be the section's own (symmetric) padding;
   its UA-default paragraph margin-top and its homepage-context margin-bottom (meant
   to separate it from an immediately-following .value-grid, which doesn't exist in
   this standalone usage) both need resetting or the section reads top-heavy. */
.band-sand .value-intro { margin: 0; }
.band-navy-cta { background: var(--navy); color: var(--text-on-dark); }
