@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@400;500;700&display=swap');

:root {
  --primary: #780001;
  --primary-hover: #4a0001;
  --accent: #c11217;
  --bg: #fffaf0;
  --cream: #fef0d5;
  --surface: #ffffff;
  --ink: #002f49;
  --muted: #5c6670;
  --border: #e8dcc4;
  --display: 'Playfair Display', Georgia, serif;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; color: var(--primary); margin: 0; }

p { margin: 0 0 16px; }

.wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.measure { max-width: 680px; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow.ink { color: var(--ink); }
.eyebrow.muted { color: var(--muted); }

.lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  min-height: 48px;
  padding: 0 26px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--primary); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--primary); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: background-color .15s ease, color .15s ease;
}
.icon-btn:hover { background: var(--ink); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}
.wordmark {
  font-family: var(--display);
  font-size: 22px;
  color: var(--primary);
  letter-spacing: -0.4px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.wordmark:hover { text-decoration: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); }

.site-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 6px 0 16px;
}
.site-nav.open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-nav a {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 4px;
}
.site-nav a.active { color: var(--accent); }
.site-nav .nav-cta { margin-top: 10px; }
.site-nav .nav-cta a { color: #fff; padding: 0 22px; }

.hero { padding: 56px 0 44px; }
.hero .eyebrow { color: var(--muted); }
.hero h1 {
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -0.5px;
  max-width: 13ch;
  margin: 0 0 22px;
}
.hero .lede { max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.band { background: var(--cream); }
.section { padding: 52px 0; }
.section-sm { padding: 40px 0; }

.page-hero {
  padding: 60px 0 36px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: 40px;
  line-height: 1.03;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  max-width: 16ch;
}
.page-hero .lede { max-width: 620px; }
.page-hero .lede + .lede { margin-top: 16px; }

.statement {
  padding: 52px 0;
}
.statement p { font-family: var(--serif); font-size: 20px; line-height: 1.6; max-width: 760px; }
.statement p.pull {
  font-family: var(--display);
  color: var(--primary);
  font-size: 28px;
  line-height: 1.25;
  margin-top: 28px;
  max-width: 720px;
}

.block { padding: 48px 0; border-top: 1px solid var(--border); }
.block:first-of-type { border-top: none; }
.block-head { margin-bottom: 26px; }
.block-head h2 { font-size: 30px; line-height: 1.08; }
.block-body { }
.sub-lede {
  font-family: var(--display);
  color: var(--primary);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 18px;
}
.subhead {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin: 28px 0 12px;
}
.block-body p { max-width: 680px; }
.block-body p:last-child { margin-bottom: 0; }

.sub-group { margin-bottom: 32px; }
.sub-group:last-child { margin-bottom: 0; }
.sub-group h3 {
  font-family: var(--display);
  color: var(--primary);
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.sub-group p { max-width: 680px; }
.sub-group p:last-child { margin-bottom: 0; }

.focus { display: grid; gap: 0; }
.focus-item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.focus-item h3 { font-size: 28px; margin: 6px 0 14px; }
.focus-num {
  font-family: var(--display);
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.focus-item p { max-width: 680px; }
.focus-item p:last-child { margin-bottom: 0; }

.split { display: grid; gap: 28px; }
.split .label-col .eyebrow { margin-bottom: 0; }

.block-figure { margin-top: 22px; }
.block-figure img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--border);
}
.block-figure .lp-img {
  width: 100%; min-height: 300px; background: var(--cream);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.block-figure .lp-img span {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--muted);
}

.cta-band { padding: 56px 0; }
.cta-band h2 { font-size: 32px; line-height: 1.1; max-width: 600px; margin-bottom: 10px; }
.cta-band p { max-width: 600px; }
.cta-band .btn { margin-top: 14px; }

.insights-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.insight-card {
  background: var(--bg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-decoration: none;
  transition: background-color .15s ease;
}
.insight-card:hover { background: var(--cream); text-decoration: none; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: auto;
}
.insight-meta .cat { color: var(--accent); font-weight: 700; }
.insight-img {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 220px;
  object-fit: cover;
  margin: -30px -26px 24px;
  border-bottom: 1px solid var(--border);
}
.insight-card h3 {
  font-size: 25px;
  line-height: 1.12;
  margin-top: 24px;
}
.insight-card .more {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.article { padding: 36px 0 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
}
.article-head { max-width: 720px; margin: 28px 0 0; }
.article-head .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.article-head .meta .cat { color: var(--accent); font-weight: 700; }
.article-head h1 { font-size: 36px; line-height: 1.08; letter-spacing: -0.4px; }
.article-figure {
  margin: 32px 0 0;
  height: 260px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}
.article-figure:has(img) { padding: 0; }
.article-figure img { width: 100%; height: 100%; max-width: none; object-fit: cover; display: block; }
.fig-note {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}
.article-body { max-width: 680px; margin: 36px 0 0; }
.article-body p { font-size: 17px; line-height: 1.65; }
.article-body p.lead { font-size: 19px; line-height: 1.6; }
.article-body p.lead::first-letter {
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.7;
  float: left;
  color: var(--primary);
  padding: 6px 10px 0 0;
}
.article-end {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-grid { display: grid; gap: 40px; padding: 48px 0; }
.contact-form .field { margin-bottom: 18px; }
.field-label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.input, .select, .textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink);
  padding: 13px 15px;
  width: 100%;
}
.input { min-height: 50px; }
.select { min-height: 50px; appearance: none; background-image: none; }
.textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:focus, .select:focus, .textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.form-note { font-size: 13px; color: var(--muted); margin: 6px 0 0; font-family: var(--sans); }

.office h3 { font-size: 24px; margin-bottom: 18px; }
.office dl { margin: 0; }
.office dt {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 16px;
}
.office dd { margin: 4px 0 0; font-family: var(--sans); font-size: 15px; color: var(--muted); }

.site-footer { border-top: 2px solid var(--ink); background: var(--bg); }
.footer-top {
  display: grid;
  gap: 28px;
  padding: 44px 0 32px;
}
.footer-brand .wordmark { font-size: 23px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; margin: 14px 0 0; font-family: var(--sans); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.footer-nav a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.footer-bottom span, .footer-bottom a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}

.legal { padding: 48px 0; max-width: 720px; }.legal h2 { font-size: 24px; margin: 28px 0 12px; }
.legal p { font-family: var(--serif); line-height: 1.6; }
.legal ul { margin: 0 0 16px; padding: 0; list-style: none; }
.legal li { font-family: var(--serif); line-height: 1.6; position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 1px; background: var(--accent); }

@media (min-width: 760px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    align-items: center;
    border-top: none;
    padding: 0;
  }
  .site-nav ul { flex-direction: row; align-items: center; gap: 22px; }
  .site-nav a { padding: 0; font-size: 12.5px; }
  .site-nav .nav-cta { margin: 0 0 0 6px; }
  .site-nav .nav-cta a { display: inline-flex; min-height: 40px; align-items: center; }

  .hero { padding: 88px 0 68px; }
  .hero h1 { font-size: 58px; max-width: 15ch; }
  .hero .lede { font-size: 21px; }

  .page-hero { padding: 80px 0 44px; }
  .page-hero h1 { font-size: 52px; }

  .focus-item { display: grid; grid-template-columns: 0.4fr 1fr; gap: 32px; align-items: start; }
  .focus-item .focus-text { grid-column: 2; }
  .focus-item h3 { margin-top: 0; }

  .block { display: grid; grid-template-columns: 0.4fr 1fr; gap: 40px; }
  .block.block-img {
    grid-template-columns: 1fr 1fr; column-gap: 48px; row-gap: 0;
    grid-template-rows: auto auto; align-items: start;
  }
  .block.block-img .block-head { grid-column: 1 / -1; grid-row: 1; margin-bottom: 16px; }
  .block.block-img .block-figure { grid-column: 1; grid-row: 2; margin-top: 0; }
  .block.block-img .block-body { grid-column: 2; grid-row: 2; }
  .block-head { margin-bottom: 0; }
  .split { grid-template-columns: 1fr 1fr; gap: 48px; }

  .insights-grid { grid-template-columns: repeat(2, 1fr); }

  .article-head h1 { font-size: 46px; }
  .article-figure { height: 360px; }

  .contact-grid { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  .footer-top { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .footer-nav { justify-content: flex-end; }

  .cta-band h2 { font-size: 38px; }
  .section h2, .block-head h2 { font-size: 32px; }
}

@media (min-width: 1040px) {
  .hero h1 { font-size: 62px; }
  .page-hero h1 { font-size: 58px; }
}

/* (Refined premium layer appended below; gloss layer removed to honor the
   Design System: square corners, hairline rules, no drop shadows.) */

/* ----- Video hero (home) ----- */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vhero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  font-family: var(--sans);
}
.vhero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vhero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vhero-navwrap { padding: 24px 24px 0; }
.vhero-nav {
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vhero-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.4px;
  text-decoration: none;
  text-shadow: none;
}
.vhero-logo:hover { text-decoration: none; }
.vhero-links { display: none; align-items: center; gap: 32px; }
.vhero-links a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  transition: color .2s ease;
}
.vhero-links a:hover { color: #d1d5db; text-decoration: none; }
.vhero-cta {
  background: #fff;
  color: #000;
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-shadow: none;
  transition: background-color .2s ease;
}
.vhero-cta:hover { background: #f3f4f6; text-decoration: none; }

.vhero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 48px;
}
.vhero-grid { display: block; }
.vhero-heading {
  font-family: var(--display);
  font-weight: 400;
  color: #fff;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  text-shadow: none;
}
.vhero-heading .vhline { display: block; }
.vhword { display: inline-block; white-space: nowrap; }
.vhchar {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-duration: 500ms;
}
.is-in .vhchar { opacity: 1; transform: translateX(0); }
.vhero-sub {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 560px;
  margin: 0 0 20px;
  text-shadow: none;
}
.vhero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.vbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-shadow: none;
  transition: background-color .2s ease, color .2s ease;
}
.vbtn:hover { text-decoration: none; }
.vbtn-solid { background: #fff; color: #000; }
.vbtn-solid:hover { background: #f3f4f6; }
.vbtn-glass { color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.vbtn-glass:hover { background: #fff; color: #000; }
.vhero-tagwrap { display: flex; align-items: flex-end; justify-content: flex-start; margin-top: 28px; }
.vhero-tag {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 18px;
}
[data-fade] { opacity: 0; transition: opacity 1000ms ease; }
[data-fade].is-in { opacity: 1; }

/* Site-wide motion: scroll reveal + hero fades */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.hero-fade { opacity: 0; transition: opacity .8s ease; }
.hero-fade.is-in { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .vhchar, .reveal, .hero-fade, [data-fade] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 768px) {
  .vhero-navwrap { padding: 24px 48px 0; }
  .vhero-content { padding: 0 48px 48px; }
  .vhero-links { display: flex; }
  .vhero-heading { font-size: 48px; }
  .vhero-sub { font-size: 18px; }
  .vhero-tag { font-size: 20px; }
}
@media (min-width: 1024px) {
  .vhero-navwrap { padding: 24px 64px 0; }
  .vhero-content { padding: 0 64px 64px; }
  .vhero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: end; }
  .vhero-heading { font-size: 60px; }
  .vhero-tagwrap { justify-content: flex-end; margin-top: 0; }
  .vhero-tag { font-size: 24px; }
}
@media (min-width: 1280px) {
  .vhero-heading { font-size: 72px; }
}

/* ============================================================
   PREMIUM REFINEMENT LAYER
   Reference-inspired polish, kept faithful to the Design System
   (square corners, hairlines, no drop shadows).
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--accent); z-index: 60;
}

/* Header refinement */
.site-header { transition: box-shadow .3s ease, background-color .3s ease; }
.site-header.scrolled { border-bottom-color: var(--color-ink); }

/* Nav + footer links: underline grows from the left */
.site-nav a:not(.btn), .footer-nav a { position: relative; }
.site-nav a:not(.btn)::after, .footer-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: currentColor; transition: width .3s ease;
}
.site-nav a:not(.btn):hover::after, .footer-nav a:hover::after { width: 100%; }
.site-nav a:not(.btn):hover, .footer-nav a:hover { text-decoration: none; }

/* Buttons: refined micro-interaction (flat, DS-safe) */
.btn { transition: background-color .3s ease, color .3s ease, transform .3s ease, letter-spacing .3s ease; }
.btn:hover { transform: translateY(-2px); letter-spacing: 0.5px; }
.btn:active { transform: translateY(0); }
.vbtn { transition: background-color .3s ease, color .3s ease, transform .3s ease, letter-spacing .3s ease; }
.vbtn:hover { transform: translateY(-2px); }

/* Story rows / read links / back links: arrow nudge */
.more, .back-link { transition: gap .25s ease, color .25s ease; }
.insight-card:hover .more { gap: 12px; }

/* Insight cards (hairline grid): elegant tint on hover */
.insight-card { transition: background-color .35s ease, color .25s ease; }
.insight-card:hover { background: var(--cream); }
.insight-card:hover h3 { color: var(--color-primary); }

/* Focus rows: hover wash + numeral shift */
.focus-item { transition: background-color .35s ease; }
.focus-item:hover { background: rgba(120, 0, 1, 0.025); }
.focus-num { transition: transform .35s ease, color .35s ease; }
.focus-item:hover .focus-num { transform: translateX(4px); color: var(--color-primary); }

/* Roles & story rows hover (other pages) */
.role, .story { transition: background-color .3s ease, padding-left .3s ease; }
.role:hover, .story:hover { background: rgba(120, 0, 1, 0.02); padding-left: 8px; }

/* Generous type & rhythm — large, confident, premium spacing */
.hero h1, .page-hero h1, .vhero-heading { font-feature-settings: "liga" 1, "kern" 1; }
.page-hero h1 { letter-spacing: -0.6px; }
.statement p.pull { letter-spacing: -0.3px; }

/* Staggered scroll reveal (delay set inline by JS via --rd) */
.reveal { transition-delay: var(--rd, 0ms); }

/* Hero scroll cue */
.vhero-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-family: var(--sans); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; pointer-events: none;
}
.vhero-cue .line { width: 1px; height: 40px; background: rgba(255,255,255,0.45); position: relative; overflow: hidden; }
.vhero-cue .line::after {
  content: ''; position: absolute; left: 0; top: -40px; width: 1px; height: 40px;
  background: #fff; animation: cueDrop 2.2s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes cueDrop { 0% { top: -40px; } 60%, 100% { top: 40px; } }

/* Hero parallax */
.vhero-video { will-change: transform; transform: translateY(0) scale(1.12); }

/* Larger-screen rhythm — generous whitespace */
@media (min-width: 1024px) {
  .section { padding-top: 96px; padding-bottom: 96px; }
  .block { padding-top: 80px; padding-bottom: 80px; }
  .statement { padding-top: 96px; padding-bottom: 96px; }
  .page-hero { padding-top: 112px; padding-bottom: 60px; }
  .statement p.pull { font-size: 34px; }
  .cta-band { padding-top: 88px; padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .vhero-cue .line::after { animation: none; }
  .vhero-video { transform: none !important; }
}

/* ===== Shared minimal header (all pages) ===== */
.lp-header { position: sticky; top: 0; z-index: 40; background: var(--bg); border-bottom: 1px solid var(--border); }
.lp-mainbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; }
.lp-logo { font-family: var(--display); font-size: 24px; color: var(--primary); letter-spacing: -0.4px; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; }
.lp-logo .hg-mark, .lp-footer-logo .hg-mark { display: block; flex: none; }
.lp-logo .hg-mark { width: 30px; height: 30px; }
.lp-logo .lp-logo-word, .lp-footer-logo .lp-logo-word { line-height: 1; white-space: nowrap; }
.lp-logo:hover { text-decoration: none; }
.lp-nav { display: none; gap: 30px; }
.lp-nav a {
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink); text-decoration: none; position: relative;
}
.lp-nav a.active { color: var(--accent); }
.lp-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s ease;
}
.lp-nav a:hover { text-decoration: none; }
.lp-nav a:hover::after { width: 100%; }
.lp-nav a.active::after { width: 100%; }
.lp-nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: none; cursor: pointer;
}
.lp-nav-toggle span { display: block; height: 2px; background: var(--ink); }

.lp-nav.open { display: flex; flex-direction: column; gap: 4px; padding: 4px 0 16px; }
.lp-nav.open a { padding: 12px 2px; }
@media (min-width: 760px) {
  .lp-nav { display: flex; align-items: center; }
  .lp-nav-toggle { display: none; }
  .lp-nav.open { flex-direction: row; padding: 0; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: auto; right: 24px; bottom: 24px; z-index: 80;
  width: 360px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--ink);
  padding: 20px 22px; display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  font-family: var(--serif); font-size: 14px; line-height: 1.5; color: var(--ink);
  margin: 0 0 16px;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { min-height: 40px; padding: 0 18px; font-size: 12px; }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 18px 20px; }
  .cookie-actions .btn { flex: 1; }
}
}

/* Nav Contact — premium primary CTA (maroon), styled as a dedicated button */
.lp-nav .lp-nav-cta {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: #fff;
  background: var(--primary);
  padding: 12px 24px;
  font-weight: 700;
  letter-spacing: 0.6px;
  border: 1px solid var(--primary);
  transition: background-color .28s ease, border-color .28s ease, transform .28s ease, letter-spacing .28s ease;
}
.lp-nav .lp-nav-cta::after { display: none; }
.lp-nav .lp-nav-cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  letter-spacing: 1px;
}
.lp-nav .lp-nav-cta:active { transform: translateY(0); }
.lp-nav.open .lp-nav-cta { align-self: flex-start; margin-top: 6px; }
@media (min-width: 760px) {
  .lp-nav .lp-nav-cta { margin-left: 0; }
}

/* ===== Shared navy footer (all pages) ===== */
.lp-footer { background: var(--ink); color: #fff; }
.lp-footer-top { display: grid; gap: 32px; padding: 56px 20px 40px; }
.lp-footer-logo { font-family: var(--display); font-size: 26px; color: #fff; display: inline-flex; align-items: center; gap: 11px; }
.lp-footer-logo .hg-mark { outline: 1px solid rgba(255,255,255,0.28); }
.lp-tagline { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.72); max-width: 300px; margin: 14px 0 0; }
.lp-social { display: flex; gap: 10px; margin-top: 18px; }
.lp-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.3); border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.lp-social a:hover { background: #fff; color: var(--ink); text-decoration: none; transform: translateY(-2px); }
.lp-footer-col h4 {
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.6px;
  text-transform: uppercase; color: #fff; margin: 0 0 16px;
}
.lp-footer-col a, .lp-footer-addr {
  display: block; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.72);
  text-decoration: none; margin-bottom: 11px; transition: color .2s ease;
}
.lp-footer-col a:hover { color: #fff; text-decoration: none; }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding: 18px 20px;
  font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .lp-footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* ===== Careers ===== */
.careers-intro { padding: 0 20px 8px; max-width: 760px; }
.careers-intro .lede { margin: 0; }

.role-listing { border-top: 1px solid var(--border); padding: 44px 0; }
.role-listing:first-of-type { border-top: none; }
.role-listing > h2 {
  font-family: var(--display); font-weight: 400; color: var(--primary);
  font-size: 30px; line-height: 1.1; margin: 0 0 24px;
}
.role-detail { margin-bottom: 26px; }
.role-detail:last-child { margin-bottom: 0; }
.role-detail h3 {
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink); margin: 0 0 12px;
}
.role-detail p { max-width: 720px; margin: 0 0 14px; }
.role-detail p:last-child { margin-bottom: 0; }
.role-detail ul {
  list-style: none; margin: 0; padding: 0; max-width: 720px;
  display: grid; gap: 10px;
}
.role-detail li {
  position: relative; padding-left: 22px;
  font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--text);
}
.role-detail li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px; background: var(--accent);
}

/* Read More toggle */
.role-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink); background: transparent;
  border: 1px solid var(--ink); padding: 12px 22px; margin-top: 22px; cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}
.role-toggle:hover { background: var(--ink); color: #fff; }
.role-toggle-ic { font-size: 16px; line-height: 1; }
.role-collapsed .role-cols { display: none; }

.apply { max-width: 760px; }
.apply-head { margin-bottom: 28px; }
.apply-head h2 { font-size: 30px; line-height: 1.1; margin: 4px 0 14px; }
.apply-head p { margin: 0 0 8px; }
.careers-form .field { margin-bottom: 18px; }
.careers-form input[type="file"] {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--ink); padding: 12px 14px; width: 100%;
}
.careers-form input[type="file"]::file-selector-button {
  font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.4px;
  text-transform: uppercase; color: #fff; background: var(--ink); border: none;
  padding: 9px 16px; margin-right: 14px; cursor: pointer; transition: background-color .2s ease;
}
.careers-form input[type="file"]::file-selector-button:hover { background: var(--primary); }
.careers-form .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 11px; }
@media (min-width: 768px) {
  .role-listing { display: grid; grid-template-columns: 0.5fr 4fr; gap: 40px; }
  .role-listing > h2 { grid-column: 1 / -1; }
  .role-detail.role-overview { grid-column: 2; }
  .role-toggle { grid-column: 2; justify-self: start; }
  .role-cols { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .careers-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .role-listing > h2 { font-size: 34px; }
}
