/* Singing River Benefits — Website Styleguide */

@font-face {
  font-family: "OC Highway";
  src: url("fonts/OCHighwayVAR2VF.ttf") format("truetype-variations"),
       url("fonts/OCHighwayVAR2VF.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 50% 300%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Luminaire";
  src: url("fonts/Luminaire.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --navy: #092c48;
  --navy-80: #2b4a64;
  --navy-60: #557087;
  --navy-20: #c1ccd6;
  --seafoam: #0199a6;
  --seafoam-70: #4cb6c0;
  --seafoam-20: #c2e6ea;
  --red: #b72b33;
  --red-70: #cc5860;
  --offwhite: #e9f2f6;
  --offwhite-50: #f4f8fa;
  --paper: #ffffff;
  --ink-1: var(--navy);
  --ink-2: #3a4a5a;
  --ink-3: #6e7c8a;
  --rule: #d7dfe4;

  /* Type */
  --f-display: "OC Highway", "Sora", system-ui, sans-serif;
  --f-body: "DM Sans", "OC Highway", system-ui, sans-serif;
  --f-script: "Luminaire", "Allura", cursive;
  /* OC Highway VAR2 instance settings */
  --vf-primary: "wdth" 275, "grad" -100, "oblq" 0;   /* Series 8 G-1 — headers, titles */
  --vf-secondary: "wdth" 250, "grad" -200, "oblq" 0; /* Series 7 G-2 — subheadings */

  /* Radii */
  --r-pill: 999px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(9,44,72,.06), 0 1px 1px rgba(9,44,72,.04);
  --shadow-md: 0 8px 24px rgba(9,44,72,.08), 0 2px 6px rgba(9,44,72,.04);
  --shadow-lg: 0 20px 48px rgba(9,44,72,.14), 0 6px 14px rgba(9,44,72,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink-1);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* OC Highway always renders as Series 8 G-1 unless explicitly overridden. */
  font-variation-settings: var(--vf-primary);
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ---------- Typography ---------- */
/* OC Highway VAR2 — every OC-Highway run renders as Series 8 G-1 by default
   (set on body). The list below switches specific roles to Series 7 G-2. */
.eyebrow,
.subhead,
.section-head .num,
.tint-row h4,
.swatch .body-info h4,
.swatch .body-info .role,
.hero-meta dt,
.tag-chip,
.type-row .label .name,
.type-row.t-eyebrow .specimen,
.footer h5 {
  font-variation-settings: var(--vf-secondary);
}

.display, h1.display { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; color: var(--navy); margin: 0; }
.h1 { font-family: var(--f-display); font-weight: 700; font-size: 64px; letter-spacing: -0.025em; line-height: 1.05; color: var(--navy); margin: 0; }
.h2 { font-family: var(--f-display); font-weight: 700; font-size: 44px; letter-spacing: -0.02em; line-height: 1.08; color: var(--navy); margin: 0; }
.h3 { font-family: var(--f-display); font-weight: 600; font-size: 28px; letter-spacing: -0.015em; line-height: 1.18; color: var(--navy); margin: 0; }
.h4 { font-family: var(--f-display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; line-height: 1.3; color: var(--navy); margin: 0; }
.eyebrow { font-family: var(--f-body); font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--seafoam); }
/* All script/Luminaire uses must carry this class — font-weight:normal and letter-spacing:0em always. */
.script { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; color: var(--navy); }
.body-lg { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.body { font-size: 16px; color: var(--ink-2); }
.caption { font-size: 13px; color: var(--ink-3); }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: 0.02em; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner { display: flex; align-items: center; gap: 32px; height: 88px; }
.brand-lock { display: flex; align-items: center; gap: 10px; }
.brand-lock .mark { width: 28px; height: 28px; }
.brand-lock .name { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; font-size: 22px; color: var(--navy); line-height: 1; padding-top: 6px; }
.topbar nav { display: flex; gap: 28px; margin-left: auto; }
.topbar nav a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.topbar nav a:hover { color: var(--navy); }
.topbar .v { font-family: var(--f-body); font-size: 12px; color: var(--ink-3); padding-left: 16px; border-left: 1px solid var(--rule); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 64px; }
.hero .tag { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--offwhite); border-radius: var(--r-pill); font-size: 13px; color: var(--navy); font-weight: 500; }
.hero .tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--seafoam); }
.hero h1 { margin-top: 24px; font-family: var(--f-display); font-weight: 700; font-size: 96px; line-height: 0.98; letter-spacing: -0.035em; color: var(--navy); }
.hero h1 .script-accent { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; font-style: normal; color: var(--red); display: inline-block; transform: translateY(8px); padding: 0 6px; }
.hero .lede { margin-top: 28px; max-width: 720px; font-size: 20px; color: var(--ink-2); line-height: 1.55; }
.hero-meta { margin-top: 40px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; padding: 24px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hero-meta dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.hero-meta dd { margin: 6px 0 0; font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 15px; }

/* ---------- Section shell ---------- */
section.sg { padding: 88px 0; border-top: 1px solid var(--rule); }
section.sg.alt { background: var(--offwhite-50); }
.section-head { display: grid; grid-template-columns: 280px 1fr; gap: 64px; margin-bottom: 48px; align-items: end; }
.section-head .num { font-family: var(--f-display); font-weight: 600; color: var(--seafoam); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.section-head h2 { margin-top: 8px; }
.section-head .lede { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 640px; }

/* chevron divider used in brand sheet */
.chev-rule { display: flex; align-items: center; justify-content: center; padding: 32px 0; }
.chev-rule .chev-mark { width: 72px; height: auto; display: block; }

/* ---------- LOGO section ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.logo-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 28px; min-height: 240px; display: flex; flex-direction: column; }
.logo-card .preview { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px 0; }
.logo-card.dark { background: var(--navy); border-color: var(--navy); }
.logo-card.dark .label-title, .logo-card.dark .label-desc { color: var(--offwhite); }
.logo-card.dark .label-desc { color: rgba(233,242,246,0.7); }
.logo-card.seafoam { background: var(--seafoam); border-color: var(--seafoam); }
.logo-card.seafoam .label-title, .logo-card.seafoam .label-desc { color: #fff; }
.label-title { font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--navy); }
.label-desc { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.do-dont { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.do-dont .item { border: 1px solid var(--rule); border-radius: var(--r-md); padding: 18px; display: flex; gap: 14px; align-items: flex-start; background: var(--paper); }
.do-dont .badge { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.do-dont .item.do .badge { background: var(--seafoam); }
.do-dont .item.dont .badge { background: var(--red); }
.do-dont .item p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.do-dont .item strong { color: var(--navy); display: block; font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Color section ---------- */
.color-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.swatch { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule); background: var(--paper); }
.swatch .chip { height: 180px; position: relative; }
.swatch .body-info { padding: 18px 20px 20px; }
.swatch .body-info .top { display: flex; justify-content: space-between; align-items: baseline; }
.swatch .body-info h4 { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--navy); margin: 0; }
.swatch .body-info .role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.swatch .vals { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--rule); }
.swatch .vals span:nth-child(odd) { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.swatch .vals span:nth-child(even) { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; color: var(--navy); }

.tint-row { margin-top: 32px; }
.tint-row h4 { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.tint-track { display: grid; grid-template-columns: repeat(10, 1fr); gap: 0; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--rule); }
.tint { height: 56px; position: relative; display: flex; align-items: flex-end; padding: 8px 10px; }
.tint span { font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 0.04em; }
.tint.dark span { color: rgba(255,255,255,0.85); }
.tint.light span { color: rgba(9,44,72,0.7); }

.pairings { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pair { border-radius: var(--r-md); padding: 24px; display: flex; flex-direction: column; gap: 6px; min-height: 130px; }
.pair .pl { font-family: var(--f-display); font-weight: 600; font-size: 18px; }
.pair .pd { font-size: 13px; opacity: 0.85; }
.pair .meta { margin-top: auto; font-family: ui-monospace, Menlo, monospace; font-size: 11px; opacity: 0.7; }

/* ---------- Type section ---------- */
.type-stack { display: grid; grid-template-columns: 1fr; gap: 28px; }
.type-row { display: grid; grid-template-columns: 220px 1fr 200px; gap: 32px; align-items: baseline; padding: 28px 0; border-top: 1px solid var(--rule); }
.type-row:first-child { border-top: none; padding-top: 0; }
.type-row .label .name { font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.type-row .label .role { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.type-row .specimen { color: var(--navy); }
.type-row .spec { display: flex; flex-direction: column; gap: 4px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--ink-3); }
.type-row .spec span { display: block; }

.type-row.t-display .specimen { font-family: var(--f-display); font-weight: 700; font-size: 72px; letter-spacing: -0.03em; line-height: 0.95; }
.type-row.t-h1 .specimen { font-family: var(--f-display); font-weight: 700; font-size: 56px; letter-spacing: -0.025em; line-height: 1.04; }
.type-row.t-h2 .specimen { font-family: var(--f-display); font-weight: 700; font-size: 38px; letter-spacing: -0.02em; line-height: 1.1; }
.type-row.t-h3 .specimen { font-family: var(--f-display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; }
.type-row.t-body .specimen { font-family: var(--f-body); font-weight: 400; font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 560px; }
.type-row.t-caption .specimen { font-family: var(--f-body); font-weight: 500; font-size: 13px; color: var(--ink-3); }
.type-row.t-script .specimen { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; font-size: 64px; color: var(--red); line-height: 1; }
.type-row.t-eyebrow .specimen { font-family: var(--f-body); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--seafoam); }

/* ---------- Components ---------- */
.subhead { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin: 0 0 16px; display: flex; align-items: center; gap: 12px; }
.subhead:before { content: ""; width: 18px; height: 2px; background: var(--red); }

.comp-block { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 32px; }
.comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.comp-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Form controls (button, input, select, textarea) don't inherit font properties
   from body in some UAs — re-assert the primary variation so OC Highway never
   falls back to its base instance. */
button, input, select, textarea {
  font-variation-settings: var(--vf-primary);
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: 0.005em; padding: 14px 22px; border-radius: var(--r-pill); border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; text-decoration: none; font-variation-settings: var(--vf-primary); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #0d3a5d; }
.btn-secondary { background: var(--red); color: #fff; }
.btn-secondary:hover { background: #cc333c; }
.btn-tertiary { background: var(--seafoam); color: #fff; }
.btn-tertiary:hover { background: #02adbc; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy-20); }
.btn-ghost:hover { border-color: var(--navy); background: var(--offwhite-50); }
.btn-link { background: transparent; color: var(--navy); padding: 4px 0; border-radius: 0; border-bottom: 2px solid var(--red); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }
.btn .arr { width: 16px; height: 16px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.state-row { display: grid; grid-template-columns: 80px repeat(4, 1fr); gap: 12px; align-items: center; padding: 14px 0; border-top: 1px dashed var(--rule); }
.state-row:first-of-type { border-top: none; }
.state-row .state-label { font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--navy); letter-spacing: 0.02em; }
.field .input, .field input[type="text"], .field input[type="email"], .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px; color: var(--navy);
  padding: 13px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--rule); background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.field .input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--seafoam); box-shadow: 0 0 0 4px rgba(1,153,166,0.14);
}
.field.error .input { border-color: var(--red); }
.field .hint { font-size: 12px; color: var(--ink-3); }
.field .err { font-size: 12px; color: var(--red); font-weight: 500; }
.checkbox, .radio { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; }
.checkbox input, .radio input { margin-top: 3px; accent-color: var(--seafoam); }
.toggle { position: relative; width: 44px; height: 24px; background: var(--navy-20); border-radius: 999px; cursor: pointer; transition: background .15s; }
.toggle.on { background: var(--seafoam); }
.toggle .knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: left .15s; box-shadow: 0 1px 2px rgba(0,0,0,0.18); }
.toggle.on .knob { left: 22px; }

/* Cards */
.card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.card .img { aspect-ratio: 16/10; background: var(--offwhite); position: relative; overflow: hidden; display: grid; place-items: center; color: var(--navy-60); font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.08em; }
.card .img.stripes { background: repeating-linear-gradient(135deg, var(--offwhite) 0 14px, #dfe9ee 14px 28px); }
.card .img.navy { background: var(--navy); color: var(--offwhite); }
.card .img.navy.stripes { background: repeating-linear-gradient(135deg, var(--navy) 0 14px, #0e3658 14px 28px); }
.card .img.red { background: var(--red); color: #fff; }
.card .pad { padding: 24px; }
.card .tag-row { display: flex; gap: 8px; margin-bottom: 12px; }
.tag-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; background: var(--offwhite); border-radius: var(--r-pill); font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; }
.tag-chip.seafoam { background: var(--seafoam-20); color: #045b62; }
.tag-chip.red { background: #f4d7d9; color: #7a1c22; }
.card h4 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.card .meta-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 12px; color: var(--ink-3); }
.avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--seafoam); display: grid; place-items: center; color: #fff; font-family: var(--f-display); font-weight: 600; font-size: 12px; }

/* Stat cards */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 24px; }
.stat.navy { background: var(--navy); border-color: var(--navy); color: var(--offwhite); }
.stat.navy .stat-label { color: rgba(233,242,246,0.75); }
.stat.navy .stat-value { color: #fff; }
.stat .stat-value { font-family: var(--f-display); font-weight: 700; font-size: 44px; letter-spacing: -0.025em; color: var(--navy); line-height: 1; }
.stat .stat-label { font-size: 13px; color: var(--ink-3); margin-top: 10px; }
.stat .trend { display: inline-flex; align-items: center; gap: 4px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--seafoam); margin-top: 14px; padding: 4px 8px; background: var(--seafoam-20); border-radius: var(--r-pill); }

/* Spacing scale */
.scale-list { display: grid; gap: 6px; }
.scale-row { display: grid; grid-template-columns: 80px 90px 1fr 80px; align-items: center; gap: 16px; padding: 6px 0; }
.scale-row .token { font-family: var(--f-display); font-weight: 600; font-size: 13px; color: var(--navy); }
.scale-row .val { font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: var(--ink-3); }
.scale-row .bar { height: 10px; background: var(--seafoam); border-radius: 4px; }
.scale-row .use { font-size: 12px; color: var(--ink-3); text-align: right; }

/* Radii display */
.radii-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 12px; }
.radii-row .ri { background: var(--offwhite); aspect-ratio: 1.6; display: grid; place-items: end center; padding-bottom: 12px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--ink-2); }

/* Iconography motif */
.motif-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.motif { aspect-ratio: 1; background: var(--offwhite); border-radius: var(--r-md); display: grid; place-items: center; }
.motif.navy { background: var(--navy); }
.motif.seafoam { background: var(--seafoam); }
.motif.red { background: var(--red); }

/* Imagery direction */
.img-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.img-tile { aspect-ratio: 4/5; border-radius: var(--r-lg); position: relative; overflow: hidden; display: grid; place-items: end; padding: 24px; color: #fff; }
.img-tile.t1 { background: linear-gradient(180deg, rgba(9,44,72,0) 40%, rgba(9,44,72,0.65)), repeating-linear-gradient(135deg, #6b8a73 0 18px, #5e7d66 18px 36px); }
.img-tile.t2 { background: linear-gradient(180deg, rgba(9,44,72,0) 40%, rgba(9,44,72,0.65)), repeating-linear-gradient(135deg, #d1d8de 0 18px, #c2cbd2 18px 36px); color: var(--navy); }
.img-tile.t3 { background: linear-gradient(180deg, rgba(9,44,72,0) 40%, rgba(9,44,72,0.65)), repeating-linear-gradient(135deg, #8a6b6e 0 18px, #7c5e62 18px 36px); }
.img-tile.bridge-photo { background-image: linear-gradient(180deg, rgba(9,44,72,0) 30%, rgba(9,44,72,0.7)), url("assets/hero-bridge.jpg"); background-size: cover; background-position: center; }
.img-tile .cap { font-family: ui-monospace, Menlo, monospace; font-size: 12px; opacity: 0.85; }
.img-tile h4 { color: inherit; font-family: var(--f-display); font-weight: 700; font-size: 22px; }

/* Hero showcase in context */
.preview-frame { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.frame-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--rule); background: var(--offwhite-50); }
.frame-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--navy-20); }
.frame-bar .url { margin-left: 12px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; color: var(--ink-3); padding: 4px 12px; background: #fff; border: 1px solid var(--rule); border-radius: var(--r-pill); }
.frame-bar .url b { color: var(--navy); font-weight: 500; }
.preview-hero { padding: 60px 56px 56px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; background: var(--paper); }
.preview-hero .eyebrow { color: var(--seafoam); }
.preview-hero h1 { font-family: var(--f-display); font-weight: 700; font-size: 56px; letter-spacing: -0.025em; line-height: 1.02; color: var(--navy); margin: 16px 0 0; }
.preview-hero h1 .scr { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; color: var(--red); font-size: 64px; line-height: 0.9; }
.preview-hero p { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 460px; margin: 22px 0 28px; }
.preview-hero .btns { display: flex; gap: 12px; }
.preview-hero .visual { aspect-ratio: 4/5; background: var(--navy); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.preview-hero .visual .bridge-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.preview-hero .visual .bridge-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,44,72,0.15) 0%, rgba(9,44,72,0.55) 60%, rgba(9,44,72,0.78) 100%); z-index: 1; }
.preview-hero .visual .hero-lockup { position: absolute; left: 50%; bottom: 64px; transform: translateX(-50%); width: 70%; z-index: 2; filter: brightness(0) invert(1); }
.preview-hero .visual .chip-row { position: absolute; bottom: 24px; left: 24px; right: 24px; display: flex; gap: 8px; z-index: 2; }
.preview-hero .visual .chip { padding: 8px 14px; background: rgba(255,255,255,0.1); border-radius: var(--r-pill); color: rgba(255,255,255,0.85); font-size: 11px; font-family: ui-monospace, Menlo, monospace; letter-spacing: 0.04em; backdrop-filter: blur(8px); }

/* Site nav preview */
.nav-preview { display: flex; align-items: center; padding: 18px 28px; border: 1px solid var(--rule); border-radius: var(--r-pill); background: var(--paper); gap: 28px; }
.nav-preview .lockup { display: flex; align-items: center; gap: 10px; }
.nav-preview .lockup .name { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; font-size: 22px; color: var(--navy); line-height: 1; padding-top: 6px; }
.nav-preview .links { display: flex; gap: 22px; margin-left: 16px; }
.nav-preview .links a { color: var(--ink-2); font-size: 14px; font-weight: 500; text-decoration: none; }
.nav-preview .links a.current { color: var(--navy); }
.nav-preview .right { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* Footer */
.footer { background: var(--navy); color: var(--offwhite); padding: 72px 0 40px; margin-top: 0; }
.footer .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer h5 { font-family: var(--f-display); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(233,242,246,0.6); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: var(--offwhite); text-decoration: none; font-size: 14px; opacity: 0.85; }
.footer a:hover { opacity: 1; }
.footer .bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid rgba(233,242,246,0.15); font-size: 12px; color: rgba(233,242,246,0.55); }
.footer .script-tag { font-family: var(--f-script); font-weight: normal; letter-spacing: 0em; font-size: 26px; color: var(--offwhite); line-height: 1; }

@media (max-width: 900px) {
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer .bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 540px) {
  .footer .grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 56px 0 32px; }
}
.footer .grid > * { min-width: 0; }

/* Misc utilities */
.flex { display: flex; }
.col { flex-direction: column; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
