/* ============================================================
   ZENCHISE v3 — style.css
   Design: European Editorial — Linen & Navy
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Warm editorial palette */
  --linen:        #F8F5EF;
  --linen-2:      #F0EBE1;
  --linen-3:      #E3D9CA;
  --white:        #FFFFFF;
  --navy:         #0C1D33;
  --navy-2:       #16294A;
  --navy-3:       #1F3861;
  --blue:         #1B4A88;
  --blue-2:       #2560AA;
  --blue-pale:    rgba(27, 74, 136, 0.07);
  --blue-pale-2:  rgba(27, 74, 136, 0.12);
  --amber:        #B36920;
  --amber-2:      #CE8A3C;
  --amber-pale:   rgba(179, 105, 32, 0.09);

  /* Text — light sections */
  --text:         #1A1714;
  --text-60:      rgba(26, 23, 20, 0.58);
  --text-35:      rgba(26, 23, 20, 0.32);
  --border:       rgba(26, 23, 20, 0.1);
  --border-2:     rgba(26, 23, 20, 0.18);

  /* Text — dark sections */
  --dk-bg:        #0C1D33;
  --dk-bg-2:      #0A1829;
  --dk-text:      #EDE8DF;
  --dk-text-60:   rgba(237, 232, 223, 0.58);
  --dk-text-35:   rgba(237, 232, 223, 0.32);
  --dk-border:    rgba(237, 232, 223, 0.1);
  --dk-border-2:  rgba(237, 232, 223, 0.18);

  /* Typography */
  --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Plus Jakarta Sans', var(--sans);

  /* Spacing scale */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 20px;  --s6: 24px;  --s8: 32px;  --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px; --s32: 128px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.55s;
  --dur-fast: 0.2s;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--linen);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--linen-2); }
::-webkit-scrollbar-thumb { background: var(--linen-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-35); }

/* ── Layout ───────────────────────────────────────────────── */
.container      { max-width: 1180px; margin: 0 auto; padding: 0 var(--s8); }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 var(--s8); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--s8); }

/* ── Typography ───────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.label::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.label-dark {
  color: var(--amber-2);
}
.label-dark::before { background: var(--amber-2); }

h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}

h3, .h3 {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.text-lg   { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.75; }
.text-md   { font-size: 16px; line-height: 1.7; }
.text-sm   { font-size: 14px; line-height: 1.65; }
.text-xs   { font-size: 12px; line-height: 1.6; }

.muted     { color: var(--text-60); }
.muted-dk  { color: var(--dk-text-60); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-navy {
  padding: var(--s4) var(--s8);
  background: var(--navy);
  color: var(--dk-text);
  border-radius: var(--r-full);
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn-navy-lg {
  padding: var(--s5) var(--s10);
  font-size: 15px;
  border-radius: var(--r-full);
}

.btn-outline {
  padding: var(--s4) var(--s8);
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }

.btn-outline-light {
  padding: var(--s4) var(--s8);
  background: transparent;
  color: var(--dk-text);
  border: 1.5px solid var(--dk-border-2);
  border-radius: var(--r-full);
}
.btn-outline-light:hover { border-color: var(--dk-text); transform: translateY(-1px); }

.btn-amber {
  padding: var(--s4) var(--s8);
  background: var(--amber);
  color: #fff;
  border-radius: var(--r-full);
}
.btn-amber:hover { background: var(--amber-2); transform: translateY(-1px); }

.btn-text {
  padding: 0;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  gap: var(--s2);
}
.btn-text:hover { color: var(--blue-2); }
.btn-text svg { transition: transform var(--dur-fast) var(--ease); }
.btn-text:hover svg { transform: translateX(3px); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s8);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--s2);
  transition: opacity var(--dur-fast);
}
.nav-logo:hover { opacity: 0.65; }
.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s10);
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-60);
  transition: color var(--dur-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--s3); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--s2);
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--linen);
  z-index: 450;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-60);
  transition: color var(--dur-fast);
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu.open a {
  opacity: 1; transform: translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:hover { color: var(--navy); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--linen);
  padding-top: 140px;
  padding-bottom: var(--s32);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(27, 74, 136, 0.04), transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-eyebrow {
  margin-bottom: var(--s8);
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-35);
}
.hero-eyebrow-rule {
  display: block; width: 24px; height: 1px;
  background: var(--linen-3);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(60px, 8.5vw, 112px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--s8);
}
.hero-headline em {
  font-style: italic;
  color: var(--navy);
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.72;
  color: var(--text-60);
  max-width: 560px;
  margin-bottom: var(--s10);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Decorative rule below hero */
.hero-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-top: var(--s32);
}

/* ── Authority Bar ────────────────────────────────────────── */
.authority-bar {
  background: var(--linen-2);
  border-bottom: 1px solid var(--border);
  padding: var(--s10) 0;
}

.authority-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.authority-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s4) var(--s8);
  border-right: 1px solid var(--border);
}
.authority-item:last-child { border-right: none; }
.authority-item:first-child { padding-left: 0; }

.authority-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--blue);
}

.authority-text { flex: 1; }
.authority-text strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s1);
  letter-spacing: -0.01em;
}
.authority-text span {
  font-size: 13px;
  color: var(--text-60);
  line-height: 1.5;
}

/* ── The Problem ──────────────────────────────────────────── */
.problem {
  background: var(--white);
  padding: var(--s32) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s16);
  align-items: center;
}

.problem-left { padding-right: var(--s8); }
.problem-deadline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: var(--s4) 0;
}
.problem-deadline span {
  display: block;
  font-size: 0.45em;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-35);
  font-style: normal;
}

.problem-right {}
.problem-statement {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: var(--s6);
}
.problem-statement strong {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}

.problem-penalty {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-60);
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s4);
}
.problem-penalty-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Offerings / What We Do ───────────────────────────────── */
.offerings {
  background: var(--linen);
  padding: var(--s32) 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s16);
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur) var(--ease);
}
.offering-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 24px rgba(12, 29, 51, 0.06);
  transform: translateY(-3px);
}

.offering-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-35);
  margin-bottom: var(--s8);
}

.offering-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s6);
  color: var(--blue);
  transition: background var(--dur-fast);
}
.offering-card:hover .offering-icon { background: var(--blue-pale-2); }

.offering-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--s3);
  line-height: 1.25;
}

.offering-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  border-radius: var(--r-full);
  padding: 2px var(--s3);
  margin-bottom: var(--s4);
}

.offering-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-60);
  flex: 1;
  margin-bottom: var(--s8);
}

/* ── Who We Serve ─────────────────────────────────────────── */
.verticals {
  background: var(--white);
  padding: var(--s32) 0;
  border-top: 1px solid var(--border);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s16);
}

.vertical-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  background: var(--linen);
  transition: border-color var(--dur-fast), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.vertical-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.vertical-card.coming-soon {
  opacity: 0.6;
  cursor: default;
}
.vertical-card.coming-soon:hover { transform: none; }

.vertical-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-35);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 2px var(--s3);
  margin-bottom: var(--s8);
}

.vertical-icon {
  font-size: 28px;
  margin-bottom: var(--s5);
  line-height: 1;
}

.vertical-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--s3);
}

.vertical-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-60);
}

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}
.v-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: var(--r-full);
  padding: 2px var(--s3);
  letter-spacing: 0.03em;
}

/* ── The Founder ──────────────────────────────────────────── */
.founder {
  background: var(--linen);
  padding: var(--s32) 0;
  border-top: 1px solid var(--border);
}

.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--s16);
  align-items: start;
}

.founder-photo {
  position: sticky;
  top: 96px;
}

.founder-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--linen-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  color: var(--text-35);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: var(--s8);
}

.founder-photo-caption {
  margin-top: var(--s4);
  font-size: 13px;
  color: var(--text-35);
  text-align: center;
  font-style: italic;
}

.founder-content { padding-top: var(--s6); }

.founder-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: var(--s4) 0 var(--s2);
}

.founder-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: var(--s8);
}

.founder-bio p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-60);
  margin-bottom: var(--s5);
}
.founder-bio p:last-child { margin-bottom: 0; }

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s8);
}
.cred-pill {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-60);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s4);
  letter-spacing: 0.02em;
}

/* ── Insights ─────────────────────────────────────────────── */
.insights {
  background: var(--white);
  padding: var(--s32) 0;
  border-top: 1px solid var(--border);
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s16);
  gap: var(--s8);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s16);
}

.insight-card {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-fast), transform var(--dur) var(--ease), box-shadow var(--dur-fast);
  cursor: pointer;
}
.insight-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(12, 29, 51, 0.05);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.insight-meta-sep { width: 3px; height: 3px; background: var(--linen-3); border-radius: 50%; }

.insight-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: var(--s4);
  flex: 1;
}

.insight-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-60);
  margin-bottom: var(--s6);
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--dur-fast);
}
.insight-card:hover .insight-link { gap: var(--s3); }

/* Newsletter */
.newsletter {
  background: var(--linen-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s8);
  align-items: center;
}

.newsletter-left {}
.newsletter-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--s2);
}
.newsletter-desc {
  font-size: 14px;
  color: var(--text-60);
}

.newsletter-form {
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.newsletter-input {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  padding: var(--s3) var(--s5);
  width: 260px;
  outline: none;
  transition: border-color var(--dur-fast);
}
.newsletter-input:focus { border-color: var(--blue); }
.newsletter-input::placeholder { color: var(--text-35); }

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--navy);
  padding: var(--s32) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27, 74, 136, 0.3), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s20);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left { padding-top: var(--s4); }

.contact-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dk-text);
  margin: var(--s5) 0 var(--s6);
}
.contact-headline em { font-style: italic; color: var(--amber-2); }

.contact-body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--dk-text-60);
  margin-bottom: var(--s10);
}

.contact-intents {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s10);
}

.contact-intent-btn {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dk-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
  text-align: left;
}
.contact-intent-btn:hover { background: rgba(255,255,255,0.08); border-color: var(--dk-border-2); }

.contact-intent-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-2);
}
.contact-intent-text strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--dk-text);
  margin-bottom: 2px;
}
.contact-intent-text span {
  font-size: 12px;
  color: var(--dk-text-60);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 14px;
  color: var(--dk-text-60);
}
.contact-info-item a { transition: color var(--dur-fast); }
.contact-info-item a:hover { color: var(--dk-text); }

/* Form */
.form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group { margin-bottom: var(--s5); }

.form-group label {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-35);
  margin-bottom: var(--s2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--linen);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  outline: none;
  appearance: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale-2);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: var(--s5);
  background: var(--navy);
  color: var(--dk-text);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s6);
  transition: background var(--dur-fast), transform var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.form-submit:hover { background: var(--navy-2); transform: translateY(-1px); }

.form-note {
  font-size: 12px;
  color: var(--text-35);
  text-align: center;
  margin-top: var(--s4);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--s12) var(--s8);
}
.form-success.visible { display: block; }
.form-success-mark {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--blue);
  margin-bottom: var(--s4);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--dk-border);
  padding: var(--s16) 0 var(--s10);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--dk-border);
  margin-bottom: var(--s8);
}

.footer-logo {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--dk-text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.footer-dot { width: 7px; height: 7px; background: var(--blue-2); border-radius: 50%; }

.footer-desc {
  font-size: 13px;
  color: var(--dk-text-35);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dk-text-35);
  margin-bottom: var(--s5);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
  font-size: 13px;
  color: var(--dk-text-60);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--dk-text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 12px;
  color: var(--dk-text-35);
}
.footer-bottom-right { display: flex; gap: var(--s6); }
.footer-bottom-right a { color: var(--dk-text-35); transition: color var(--dur-fast); }
.footer-bottom-right a:hover { color: var(--dk-text-60); }

/* Newsletter in footer */
.footer-newsletter { margin-top: var(--s8); }
.footer-newsletter-form {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
}
.footer-newsletter-input {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dk-text);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dk-border-2);
  border-radius: var(--r-full);
  padding: var(--s3) var(--s5);
  outline: none;
  transition: border-color var(--dur-fast);
}
.footer-newsletter-input:focus { border-color: rgba(255,255,255,0.35); }
.footer-newsletter-input::placeholder { color: var(--dk-text-35); }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: var(--s16); }
.section-header .label { margin-bottom: var(--s5); }
.section-header h2 { max-width: 600px; }

/* ── Utility ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .authority-bar-inner { grid-template-columns: 1fr; gap: var(--s5); }
  .authority-item { border-right: none; border-bottom: 1px solid var(--border); padding: var(--s4) 0; }
  .authority-item:last-child { border-bottom: none; }
  .authority-item:first-child { padding-left: 0; }

  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 280px 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-hamburger { display: flex; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-left { padding-right: 0; margin-bottom: var(--s6); }

  .offerings-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { position: static; max-width: 280px; }

  .insights-header { flex-direction: column; align-items: flex-start; }
  .insights-grid { grid-template-columns: 1fr; }

  .newsletter { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-input { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--s3); text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
