/* =========================================================================
   BROKKO — editorial insurance brokerage
   Manrope (brand) + Instrument Serif (editorial accent)
   Palette: warm off-white, deep graphite, brand red #F15750
   ========================================================================= */

:root {
  /* Palette — tweakable via JS */
  --bg: #F5F2EC;
  --bg-raised: #EDE9E2;
  --ink: #131313;
  --ink-60: rgba(19, 19, 19, 0.62);
  --ink-40: rgba(19, 19, 19, 0.38);
  --ink-12: rgba(19, 19, 19, 0.12);
  --ink-06: rgba(19, 19, 19, 0.06);
  --accent: #F15750;
  --gray: #58595B;
  --line: rgba(19,19,19,0.14);

  /* Overlay over video */
  --video-overlay: 0.18;

  /* Type */
  --ff-sans: "Manrope", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --ff-serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --ff-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html.dark {
  --bg: #0B0B0B;
  --bg-raised: #141414;
  --ink: #F5F2EC;
  --ink-60: rgba(245, 242, 236, 0.66);
  --ink-40: rgba(245, 242, 236, 0.40);
  --ink-12: rgba(245, 242, 236, 0.14);
  --ink-06: rgba(245, 242, 236, 0.07);
  --line: rgba(245,242,236,0.16);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 400ms ease, color 400ms ease;
}

body { overflow-x: hidden; }

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* smooth anchor scroll + offset for fixed header */
html { scroll-behavior: smooth; }
:target, section[id] { scroll-margin-top: 96px; }
@media (max-width: 768px) {
  :target, section[id] { scroll-margin-top: 72px; }
}

/* reduced motion */
html.no-motion *, html.no-motion *::before, html.no-motion *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}
html.no-motion { scroll-behavior: auto; }

/* =========================================================================
   Layout helpers
   ========================================================================= */

.wrap {
  width: min(92vw, 1440px);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* =========================================================================
   Nav
   ========================================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #fff;
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, padding 300ms ease, backdrop-filter 300ms ease;
}
/* Scrolled state — subtle cream bar with hairline + light blur */
.nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--ink-12);
}
.nav.scrolled .brand img { height: 26px; }
.nav > * { pointer-events: auto; }

.nav .brand {
  display: inline-flex;
  align-items: center;
}
.nav .brand img {
  height: 30px;
  width: auto;
  display: block;
  transition: filter 300ms ease;
}
/* On light body (post-hero) keep logo natural; on dark hero still works since it's brand-red */
.nav.on-light { color: var(--ink); }
.nav.on-light .links a { opacity: 0.85; }
.nav.on-light .lang { border-color: var(--ink-12); }
.nav.on-light .lang button.on { background: var(--ink); color: var(--bg); }
.nav.on-light .cta-pill { border-color: var(--ink-12); color: var(--ink); }
.nav.on-light .cta-pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.nav .links {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}
.nav .links a { opacity: 0.82; transition: opacity 200ms; }
.nav .links a:hover { opacity: 1; }

.nav .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
}
.lang button {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.7;
  transition: all 200ms;
}
.lang button.on {
  background: #fff;
  color: #000;
  opacity: 1;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 18px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 250ms;
}
.cta-pill:hover { background: #fff; color: #000; border-color: #fff; }
.cta-pill .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 999px;
  mix-blend-mode: normal;
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* scale will animate via GSAP */
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(28,28,30,0.25) 0%, rgba(28,28,30,0.0) 25%, rgba(28,28,30,0.0) 55%, rgba(28,28,30,0.35) 100%),
    rgba(60, 62, 66, var(--video-overlay));
  backdrop-filter: saturate(0.55) brightness(0.95);
  -webkit-backdrop-filter: saturate(0.55) brightness(0.95);
  pointer-events: none;
}
.hero-video {
  filter: grayscale(0.85) contrast(0.96) brightness(0.82);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 96px clamp(20px, 4vw, 48px) 48px;
  align-items: center;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-align: center;
}
.hero-meta .mid { text-align: center; }
.hero-meta strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: var(--ff-sans);
  font-size: 13px;
}

.hero-headline-wrap {
  align-self: center;
  display: grid;
  gap: clamp(18px, 3vh, 36px);
  justify-items: center;
  text-align: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hero-kicker .swatch {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 999px;
}
.hero-kicker .line {
  flex: 0 0 64px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-headline {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(56px, 11.5vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.hero-headline > span {
  display: block;
  overflow: hidden;
  padding: 0.16em 0.14em 0.2em 0;
  line-height: 1;
}
.hero-headline .it {
  line-height: 1.05;
}
.hero-headline .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #fff;
  /* subtle shimmer so it reads as an accent */
}
.hero-headline .accent-dot {
  color: var(--accent);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
}
.hero-bottom .left {
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.hero-bottom .scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-bottom .scroll-hint .bar {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.7));
  animation: scrollBar 2.2s ease-in-out infinite;
}
@keyframes scrollBar {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.hero-bottom .right {
  text-align: right;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero-bottom .right .big {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

/* SplitText char masks — we set up clip via GSAP, these are fallback */
.split-line { overflow: hidden; display: block; padding-bottom: 0.14em; padding-right: 0.12em; }

/* Italic serif glyphs tend to overhang their box — give them breathing room everywhere */
.it, em {
  padding-right: 0.08em;
  display: inline-block;
}
.hero-headline .it,
.about-head h2 .it,
.offer h2 .it,
.contact h2 .it,
.map-title .it,
.team-head h2 .it {
  padding-right: 0.16em;
  padding-bottom: 0.04em;
}

/* =========================================================================
   Marquee ticker
   ========================================================================= */

.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
html.dark .ticker { background: var(--accent); color: #fff; }
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  animation: marquee 42s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 56px; }
.ticker-track .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  flex: none;
}
html.dark .ticker-track .dot { background: #fff; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   About
   ========================================================================= */

.about {
  padding: clamp(80px, 14vh, 160px) 0;
  position: relative;
}

.about-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(48px, 8vh, 96px);
}

.about-head .label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-head .label::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
}

.about-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.about-head h2 .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.about-card {
  grid-column: span 4;
  padding: 32px 28px 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-raised);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: background 300ms, transform 400ms;
}
.about-card:hover { background: var(--bg); }
.about-card .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
}
.about-card h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.about-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
}

.about-side {
  grid-column: span 5;
  padding-left: clamp(0px, 2vw, 32px);
}
.about-side p {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
  font-weight: 400;
  text-wrap: pretty;
}
.about-side p em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.about-figures {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.figure {
  background: var(--bg);
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.figure .num {
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--ink);
}
.figure .num sup {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--accent);
  margin-left: 4px;
  top: -0.9em;
  position: relative;
}
.figure .lbl {
  font-size: 13px;
  color: var(--ink-60);
  max-width: 22ch;
  line-height: 1.4;
}

/* =========================================================================
   Services / offerings list
   ========================================================================= */

.offer {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offer h2 {
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 64px 0;
  max-width: 24ch;
  text-wrap: balance;
}
.offer h2 .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
}

.offer-list { border-top: 1px solid var(--line); }
.offer-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 1fr 48px;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding 300ms;
}
.offer-row:hover { padding-left: 16px; }
.offer-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 400ms cubic-bezier(.2,.8,.2,1);
}
.offer-row:hover::before { width: 4px; }
.offer-row .no {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-40);
  letter-spacing: 0.14em;
}
.offer-row h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
}
.offer-row .tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.offer-row .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 44ch;
}
.offer-row .arr {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: all 300ms;
}
.offer-row:hover .arr {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(-45deg);
}

/* =========================================================================
   Contact
   ========================================================================= */

.contact {
  padding: clamp(96px, 14vh, 180px) 0;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact h2 {
  font-weight: 700;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 32px 0;
  text-wrap: balance;
}
.contact h2 .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
}
.contact h2 .accent { color: var(--accent); }

/* -- Compact map under the contact form -- */
.map-mini {
  display: block;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.map-mini:hover {
  border-color: var(--ink-30, rgba(26,26,24,0.35));
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.map-mini-frame {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--ink-06, rgba(26,26,24,0.06));
}
.map-mini-frame iframe {
  filter: grayscale(0.4) contrast(0.95);
  transition: filter 300ms ease;
  display: block;
}
.map-mini:hover .map-mini-frame iframe { filter: grayscale(0) contrast(1); }
.map-mini-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.map-mini-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60, rgba(26,26,24,0.6));
  margin-bottom: 4px;
}
.map-mini-v {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.map-mini-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  transition: background 200ms ease;
}
.map-mini:hover .map-mini-arr { background: var(--brand); }

/* -- removed full map block (legacy) -- */
.map-block { display: none; }
.map-block {
  margin-top: clamp(64px, 10vh, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(48px, 6vh, 80px);
  border-top: 1px solid var(--line);
}
.map-meta .eyebrow { margin-bottom: 24px; }
.map-title {
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-wrap: balance;
}
.map-title .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-30, rgba(26,26,24,0.3));
  padding-bottom: 6px;
  transition: color 200ms ease, border-color 200ms ease;
}
.map-link:hover { color: var(--brand); border-color: var(--brand); }
.map-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-05, rgba(26,26,24,0.04));
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}
.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(26,26,24,0.04);
  border-radius: inherit;
}
.map-frame iframe {
  filter: grayscale(0.35) contrast(0.95);
  transition: filter 400ms ease;
  display: block;
}
.map-frame:hover iframe { filter: grayscale(0) contrast(1); }

.contact-lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 42ch;
  margin: 0 0 40px 0;
}

.contact-info {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-info .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  font-size: 15px;
}
.contact-info .row .k {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-40);
  padding-top: 3px;
}
.contact-info .row .v { line-height: 1.5; }
.contact-info .row .v strong { font-weight: 600; }

/* Form */
.form {
  background: var(--bg-raised);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
}

.field { display: grid; gap: 8px; position: relative; }
.field label {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-60);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  font-family: var(--ff-sans);
}
.field textarea { resize: none; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }

/* Custom select — cream chrome + coral caret */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23F15750' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
  padding-right: 28px;
}
.field select option {
  background: var(--bg);
  color: var(--ink);
  font: 14px var(--ff-sans);
  padding: 10px 14px;
}
.field select option:checked,
.field select option:hover {
  background: var(--brand);
  color: #fff;
}
.field select:focus { border-color: var(--brand); }

/* Custom combobox (fully on-brand open state) */
.combo { position: relative; }
.combo-btn {
  font: inherit;
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 28px 12px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 200ms;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.combo-btn:focus-visible { border-bottom-color: var(--brand); }
.combo.open .combo-btn { border-bottom-color: var(--brand); }
.combo-caret { color: var(--brand); transition: transform 240ms cubic-bezier(.2,.8,.2,1); flex-shrink: 0; }
.combo.open .combo-caret { transform: rotate(180deg); }
.combo-val { color: var(--ink); }
.combo-val.placeholder { color: var(--ink-60); }

.combo-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(26,26,24,0.12), 0 2px 8px rgba(26,26,24,0.06);
  z-index: 20;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
  max-height: 280px;
  overflow-y: auto;
}
.combo.open .combo-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.combo-list li {
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.combo-list li:hover,
.combo-list li[aria-selected="true"] { background: color-mix(in oklab, var(--brand) 14%, transparent); color: var(--ink); }
.combo-list li[data-value=""] { color: var(--ink-60); font-style: italic; }
.combo-list li[data-value=""]:hover { background: var(--ink-06); color: var(--ink); font-style: normal; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.form-submit .consent {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-40);
  max-width: 30ch;
}
.submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 300ms;
  white-space: nowrap;
}
.submit:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.submit .arr {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  transition: all 300ms;
}
.submit:hover .arr { background: #fff; color: var(--accent); }

/* Sent state */
.form.sent .form-body { display: none; }
.form-success {
  display: none;
  padding: 28px 4px;
  gap: 12px;
}
.form.sent .form-success { display: grid; }
.form-success .tick {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 22px; letter-spacing: -0.02em; margin: 0; }
.form-success p { color: var(--ink-60); margin: 0; font-size: 14px; }

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 10vh, 100px) 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-wordmark {
  font-weight: 800;
  font-size: clamp(80px, 20vw, 340px);
  letter-spacing: -0.05em;
  line-height: 0.82;
  margin: 0 0 48px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--bg);
  transition: color 400ms;
}
.footer-wordmark sup {
  font-size: 0.18em;
  font-weight: 700;
  letter-spacing: 0.06em;
  transform: translateY(-0.4em);
  color: var(--accent);
}
.footer-wordmark .dot {
  display: inline-block;
  width: 0.14em; height: 0.14em;
  background: var(--accent);
  border-radius: 999px;
  align-self: flex-end;
  margin-bottom: 0.15em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,242,236,0.2);
}
.footer-grid .col h4 {
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,242,236,0.56);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-grid .col a, .footer-grid .col p {
  display: block;
  font-size: 14px;
  line-height: 1.65;
  color: var(--bg);
  margin: 0;
  opacity: 0.88;
  transition: opacity 200ms;
}
.footer-grid .col a:hover { opacity: 1; color: var(--accent); }

.tagline-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bg);
  max-width: 28ch;
  margin: 0 0 24px 0;
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  margin-top: 64px;
  border-top: 1px solid rgba(245,242,236,0.16);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
}

/* =========================================================================
   Scroll to top FAB
   ========================================================================= */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease, background 200ms ease, color 200ms ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  font-family: 'JetBrains Mono', monospace;
}
.to-top span {
  font-size: 8px;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-top: 2px;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* =========================================================================
   Tweaks panel
   ========================================================================= */

.tweaks {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  width: 300px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  display: none;
  overflow: hidden;
}
.tweaks.open { display: block; }
.tweaks header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.tweaks h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-60);
}
.tweaks .close {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--ink-60);
}
.tweaks .close:hover { background: var(--ink-06); }

.tweaks .body {
  padding: 14px;
  display: grid;
  gap: 16px;
  max-height: 70vh;
  overflow-y: auto;
}

.tweak-group { display: grid; gap: 8px; }
.tweak-group > label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.seg button {
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-60);
  border-right: 1px solid var(--line);
}
.seg button:last-child { border-right: 0; }
.seg button.on { background: var(--ink); color: var(--bg); }

.swatches { display: flex; gap: 6px; }
.swatches button {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: border 200ms, transform 200ms;
}
.swatches button.on { border-color: var(--ink); transform: scale(1.1); }

.tweaks input[type="range"] { width: 100%; accent-color: var(--accent); }
.tweaks input[type="text"] {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 12px;
  font-family: var(--ff-sans);
  width: 100%;
  border-radius: 2px;
}
.tweaks .hint { font-size: 10px; color: var(--ink-40); margin-top: 2px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .nav .links { display: none; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-bottom .right, .hero-bottom .scroll-hint { display: none; }
  .about-head, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .map-block { grid-template-columns: 1fr; gap: 28px; }
  .about-card, .about-side, .about-figures { grid-column: span 12; }
  .about-figures { grid-template-columns: 1fr 1fr; }
  .offer-row { grid-template-columns: 40px 1fr auto; }
  .offer-row .tag, .offer-row .desc { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* =========================================================================
   TEAM SECTION
   ========================================================================= */

.team {
  padding: clamp(80px, 12vh, 140px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.team-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: end;
}
.team-head .label {
  display: flex; align-items: center; gap: 10px;
}
.team-head .label::before {
  content: ""; width: 32px; height: 1px; background: var(--accent);
}
.team-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.team-head h2 .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}
.team-lead {
  grid-column: 2 / -1;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.5;
  opacity: 0.72;
  max-width: 56ch;
  margin: 24px 0 0;
}

@media (max-width: 860px) {
  .team-head { grid-template-columns: 1fr; gap: 24px; }
  .team-lead { grid-column: auto; }
}

/* Toggle visibility */
.team-editorial, .team-filmstrip { display: none; }
.team[data-team-layout="editorial"] .team-editorial { display: grid; }
.team[data-team-layout="filmstrip"] .team-filmstrip { display: block; }

/* ============ EDITORIAL LAYOUT ============ */
.team-editorial {
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
}

.tm {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.tm.tm-lead {
  grid-column: span 4;
  grid-row: span 1;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.tm.tm-lead .photo {
  flex: 0 0 58%;
  aspect-ratio: 5 / 6;
}
.tm.tm-lead .meta { flex: 1; padding-bottom: 8px; }

.tm .photo {
  position: relative;
  overflow: hidden;
  background: var(--ink-06);
  aspect-ratio: 4 / 5;
}
.tm .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.02);
  transition: filter 500ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
}
.tm:hover .photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.tm .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19,19,19,0.15));
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms;
}
.tm:hover .photo::after { opacity: 1; }

.tm .meta { display: flex; flex-direction: column; gap: 6px; }
.tm .idx {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
}
.tm h3 {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.tm.tm-lead h3 {
  font-size: clamp(40px, 4.2vw, 64px);
}
.tm.tm-lead h3::after {
  content: ".";
  color: var(--accent);
}
.tm .role {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 2px;
}
.tm .bio {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.78;
  margin: 10px 0 0;
  max-width: 44ch;
}
.tm:not(.tm-lead) .bio {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: max-height 500ms cubic-bezier(.2,.8,.2,1), opacity 300ms, margin-top 300ms;
}
.tm:not(.tm-lead):hover .bio,
.tm:not(.tm-lead).open .bio {
  max-height: 240px;
  opacity: 0.82;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .team-editorial { grid-template-columns: repeat(4, 1fr); }
  .tm { grid-column: span 2; }
  .tm.tm-lead { grid-column: span 4; flex-direction: column; align-items: stretch; }
  .tm.tm-lead .photo { flex: none; aspect-ratio: 5 / 4; }
}
@media (max-width: 560px) {
  .team-editorial { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .tm, .tm.tm-lead { grid-column: span 2; }
  .tm.tm-lead { flex-direction: column; }
}

/* ============ FILMSTRIP LAYOUT ============ */
.team-filmstrip {
  margin: 0 calc(var(--pad) * -1);
  position: relative;
}
.fs-track {
  display: flex;
  gap: 16px;
  padding: 8px var(--pad) 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fs-track::-webkit-scrollbar { display: none; }

.fs-card {
  flex: 0 0 clamp(280px, 28vw, 420px);
  scroll-snap-align: start;
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-06);
  cursor: pointer;
}
.fs-card .photo { position: absolute; inset: 0; }
.fs-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 600ms, transform 900ms cubic-bezier(.2,.8,.2,1);
}
.fs-card:hover .photo img { filter: grayscale(0%) brightness(1); transform: scale(1.04); }

.fs-card .fs-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px 22px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(19,19,19,0.82) 70%);
  display: flex; flex-direction: column; gap: 4px;
}
.fs-card .fs-role {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.fs-card h3 {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 8px;
  color: #fff;
}
.fs-card .bio {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms cubic-bezier(.2,.8,.2,1);
}
.fs-card:hover .bio { max-height: 120px; }

.fs-hint {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 0 var(--pad);
  margin-top: 8px;
}

/* Dark mode adjustments */
html.dark .tm .photo { background: rgba(255,255,255,0.06); }
html.dark .fs-card { background: rgba(255,255,255,0.06); }
html.dark .tm .role { color: rgba(245,242,236,0.6); }

/* =========================================================================
   CLAIM PAGE
   ========================================================================= */

body.page-claim { background: var(--bg); color: var(--ink); }

/* Inner hero */
.inner-hero {
  padding: 120px 0 clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.inner-hero .crumbs {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60, rgba(26,26,24,0.6));
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 3vh, 40px);
}
.inner-hero .crumbs a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 200ms; }
.inner-hero .crumbs a:hover { border-color: currentColor; }
.inner-hero .crumbs span:not([data-i18n]) { opacity: 0.4; }

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.inner-hero-h {
  font-weight: 700;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.inner-hero-h .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.inner-hero-h .accent { color: var(--brand); }

.inner-hero-side .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-80, rgba(26,26,24,0.82));
  max-width: 38ch;
  margin: 0 0 36px 0;
}
.inner-hero-meta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
  column-gap: 24px;
}
.inner-hero-meta .k {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 4px;
}
.inner-hero-meta .v { font-size: 14px; }

/* Section head */
.claim-grid-section { padding: clamp(56px, 7vh, 80px) 0 clamp(80px, 10vh, 120px); }
.claim-grid-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(32px, 4vh, 56px);
}
.claim-grid-section .section-h {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.claim-grid-section .section-h .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Grid of 4 big cards */
.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.claim-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  padding: 28px;
  min-height: 420px;
  transition: border-color 350ms ease, transform 400ms cubic-bezier(.2,.8,.2,1);
}
.claim-bg {
  position: absolute;
  inset: 0;
  background: var(--brand);
  opacity: 0;
  transition: opacity 350ms ease;
  z-index: 0;
  pointer-events: none;
}
.claim-card > *:not(.claim-bg) { position: relative; z-index: 1; }

/* Hover: text + accents flip to coral. No bg fill. */
.claim-card:hover,
.claim-card.force-hover {
  border-color: var(--brand);
  color: var(--brand);
}
.claim-card:hover .claim-bg,
.claim-card.force-hover .claim-bg { opacity: 0; }
.claim-card:hover .claim-tag,
.claim-card:hover .claim-no,
.claim-card.force-hover .claim-tag,
.claim-card.force-hover .claim-no {
  color: var(--brand);
  border-color: var(--brand);
}
/* Ink-colored illustration parts flip to coral on hover */
.claim-card:hover .claim-art [fill="#1A1A18"],
.claim-card.force-hover .claim-art [fill="#1A1A18"],
.claim-card:hover .claim-art [stroke="#1A1A18"],
.claim-card.force-hover .claim-art [stroke="#1A1A18"] { fill: var(--brand); stroke: var(--brand); }

.claim-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-mono);
}
.claim-no {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-60);
  padding: 4px 0;
  border-top: 1px solid var(--ink-20, rgba(26,26,24,0.2));
  padding-top: 6px;
  min-width: 44px;
}
.claim-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: right;
}

.claim-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  color: var(--ink);
  transition: color 300ms ease;
}
.claim-art svg {
  width: 72%;
  max-width: 320px;
  height: auto;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.claim-card:hover .claim-art svg { transform: scale(1.04); }

.claim-card-foot h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px 0;
}
.claim-card-foot p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-70, rgba(26,26,24,0.7));
  margin: 0 0 20px 0;
  max-width: 34ch;
  transition: color 250ms ease;
}
.claim-card:hover .claim-card-foot p,
.claim-card.force-hover .claim-card-foot p { color: var(--brand); }

.claim-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 0;
  border-top: 1px solid var(--ink-20, rgba(26,26,24,0.2));
  width: 100%;
  justify-content: space-between;
  transition: border-color 250ms ease;
}
.claim-card:hover .claim-cta,
.claim-card.force-hover .claim-cta { border-color: var(--brand); }
.claim-arr {
  font-family: var(--ff-sans);
  font-size: 16px;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.claim-card:hover .claim-arr { transform: translateX(6px); }

/* Help strip */
.claim-help {
  margin-top: clamp(48px, 6vh, 80px);
  padding: clamp(32px, 4vh, 48px);
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 40px;
  align-items: center;
}
.claim-help .eyebrow { color: rgba(245,242,236,0.6); margin-bottom: 14px; }
.claim-help .eyebrow::before { background: var(--brand); }
.claim-help h3 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.claim-help h3 .it {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
}
.claim-help-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 280px;
}
.claim-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid rgba(245,242,236,0.25);
  border-radius: 999px;
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.claim-help-btn:hover { background: rgba(245,242,236,0.08); }
.claim-help-btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.claim-help-btn.primary:hover { background: #D93F38; border-color: #D93F38; }

/* Current page nav indicator */
.nav .links a.current {
  color: var(--ink);
  position: relative;
}
.nav .links a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand);
}

/* Responsive */
@media (max-width: 900px) {
  .inner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .claim-grid-section .section-head { grid-template-columns: 1fr; }
  .claim-grid { grid-template-columns: 1fr; }
  .claim-card { min-height: 360px; }
  .claim-help { grid-template-columns: 1fr; gap: 24px; }
  .claim-help-ctas { min-width: 0; }
}
