/* ============================================================
   AIRCOUNSEL.AI — SHARED STYLESHEET
   Two-pillar redesign: ink / paper / single gold accent.
   NOTE: blog posts carry page-local <style> blocks that consume
   the custom properties below — every legacy token name must
   stay defined (e.g. --green is now an alias of --ink).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:          #191714;
  --ink-soft:     #2e2a24;
  --paper:        #faf9f7;

  /* legacy aliases — blog-local styles depend on these names */
  --green:        var(--ink);
  --green-hover:  var(--ink-soft);
  --green-muted:  #eceae4;

  --gold:         #c4962a;
  --gold-deep:    #a97f1f;
  --gold-bg:      rgba(196,150,42,0.10);
  --gold-border:  rgba(196,150,42,0.22);

  --bg:           #faf9f7;
  --bg-alt:       #f3f1ec;
  --bg-card:      #ffffff;
  --text:         var(--ink);
  --text-mid:     #4a4a46;
  --text-muted:   #78786e;
  --white:        #ffffff;
  --border:       #e3e0d8;
  --border-light: #eceae4;

  --shadow-xs:    0 1px 4px rgba(25,23,20,0.05);
  --shadow-sm:    0 2px 10px rgba(25,23,20,0.07);
  --shadow:       0 6px 28px rgba(25,23,20,0.09);
  --shadow-lg:    0 14px 56px rgba(25,23,20,0.14);

  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    18px;
  --ease:         0.25s ease;
  --ease-slow:    0.45s ease;
  --nav-h:        68px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem);  font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem);  font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem);   font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
h5 { font-size: 1rem;    font-weight: 600; }
p  { color: var(--text-mid); }

.lead { font-size: 1.15rem; line-height: 1.6; color: var(--text-mid); }

/* section label — gold, uppercase, triangle prefix (the mark) */
.label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label::before {
  content: "";
  width: 9px; height: 9px;
  flex: none;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────── */
.container { width: min(1140px, 92vw); margin: 0 auto; }
.container--narrow { width: min(760px, 92vw); }
.center { text-align: center; }
.center .label { justify-content: center; }
.page-top { padding-top: var(--nav-h); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* triangle divider between major sections */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1140px, 92vw);
  margin: 0 auto;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  width: 12px; height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* triangle-marker list */
.tri-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-mid);
}
.tri-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 9px; height: 9px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ─── SCROLL ANIMATION ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }
.d6 { transition-delay: 0.42s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--ink-soft); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); color: var(--paper); }

.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* ghost = for dark bands */
.btn--ghost { border-color: rgba(250,249,247,0.4); color: var(--paper); background: transparent; }
.btn--ghost:hover { border-color: var(--paper); background: rgba(250,249,247,0.08); }

/* WhatsApp button — quiet outline, no brand green */
.btn--wa { border-color: var(--border); color: var(--text); background: var(--bg-card); }
.btn--wa:hover { border-color: var(--ink); }
.btn--wa svg { fill: currentColor; }

.btn--sm { padding: 9px 18px;  font-size: 0.85rem; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--xl { padding: 18px 40px; font-size: 1.05rem; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,249,247,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Fraunces', serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__logo svg { width: 30px; height: 30px; flex: none; }
.nav__links { display: flex; gap: 30px; }
.nav__link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--ink); }
.nav__link.active { color: var(--ink); }
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.nav__ctas { display: flex; align-items: center; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 4vw 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { padding: 10px 0; font-size: 1.02rem; }
.nav__mobile-ctas { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }

/* ─── PAGE HERO (shared dark band) ───────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 92px 0 76px;
}
.page-hero h1 { color: var(--paper); margin-bottom: 18px; }
.page-hero p { color: rgba(250,249,247,0.72); font-size: 1.1rem; max-width: 640px; }
.page-hero .label { color: var(--gold); }

/* ─── HOME: HERO + TWO-PATH SPLIT ────────────────────────── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 64px 0 44px;
}
.hero__narrative { max-width: 780px; margin-bottom: 48px; }
.hero__narrative h1 { margin-bottom: 18px; }
.hero__sub { font-size: 1.15rem; color: var(--text-mid); max-width: 620px; }

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.path-card {
  display: flex;
  flex-direction: column;
  padding: 34px 34px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--ink); }
.path-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.path-card__label::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.path-card__title { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-bottom: 10px; }
.path-card__desc { margin-bottom: 18px; }
.path-card .tri-list { margin-bottom: 24px; }
.path-card .tri-list li { font-size: 0.95rem; margin-bottom: 8px; }
.path-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.path-card__cta svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform var(--ease); }
.path-card:hover .path-card__cta svg { transform: translateX(4px); }

.path-card--dark { background: var(--ink); border-color: var(--ink); }
.path-card--dark .path-card__title { color: var(--paper); }
.path-card--dark .path-card__desc, .path-card--dark .tri-list li { color: rgba(250,249,247,0.72); }
.path-card--dark .path-card__cta { color: var(--gold); }
.path-card--dark:hover { border-color: var(--gold); }

/* ─── HOME: NARRATIVE / STEPS / PROOF ────────────────────── */
.doors { padding: 96px 0; background: var(--bg-alt); }
.doors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.doors__grid h2 { margin-bottom: 0; }
.doors__copy p { margin-bottom: 18px; font-size: 1.05rem; }
.doors__copy p:last-child { margin-bottom: 0; }
.doors__copy strong { color: var(--text); font-weight: 600; }

.steps { padding: 96px 0; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps__grid--4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step__num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.97rem; }

.proof { padding: 80px 0; background: var(--bg-alt); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
}
.proof__value {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  margin-bottom: 6px;
}
.proof__item p { font-size: 0.94rem; }

.home-blog { padding: 96px 0; }

/* ─── CTA BAND (shared, dark) ────────────────────────────── */
.cta-band { background: var(--ink); padding: 96px 0; }
.cta-band .label { color: var(--gold); }
.cta-band h2 { color: var(--paper); margin-bottom: 16px; }
.cta-band p { color: rgba(250,249,247,0.72); font-size: 1.08rem; max-width: 560px; margin-bottom: 34px; }
.cta-band__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── PILLAR PAGES ───────────────────────────────────────── */
.pillar-section { padding: 96px 0; }
.pillar-section--alt { background: var(--bg-alt); }

/* mechanics / specialist / engagement tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile-grid--2 { grid-template-columns: 1fr 1fr; }
.tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 30px 28px;
}
.tile__marker {
  width: 11px; height: 11px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  margin-bottom: 18px;
}
.tile h4 { margin-bottom: 10px; }
.tile p { font-size: 0.96rem; }

/* two-column scope list */
.scope-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.scope-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.scope-col__head {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.scope-col h3 { margin-bottom: 18px; }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-page { padding: 0 0 96px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card__thumb {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.article-card__thumb-text {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--ink);
}
.article-card--dark .article-card__thumb { background: var(--ink); }
.article-card--gold .article-card__thumb { background: var(--gold-bg); }
.article-card__body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.article-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-card__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.article-card__date { font-size: 0.8rem; color: var(--text-muted); }
.article-card__body h3 { font-size: 1.18rem; line-height: 1.3; margin-bottom: 10px; }
.article-card__body > p { font-size: 0.93rem; margin-bottom: 18px; }
.article-card__read {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.article-card__read svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform var(--ease); }
.article-card__read:hover svg { transform: translateX(4px); }

/* newsletter band (blog index) */
.newsletter { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 48px; margin-top: 64px; }
.newsletter h3 { margin-bottom: 8px; }
.newsletter p { margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; }
.newsletter-input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-card);
  color: var(--text);
}
.newsletter-input:focus { outline: none; border-color: var(--ink); }

/* ─── CAREERS ────────────────────────────────────────────── */
.careers-intro { padding: 96px 0; }
.careers-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.what-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.what-item__icon { font-size: 1.4rem; margin-bottom: 10px; }
.what-item h5 { margin-bottom: 6px; }
.what-item p { font-size: 0.87rem; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.why__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.why__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why__icon svg { width: 21px; height: 21px; stroke: var(--gold-deep); stroke-width: 1.8; fill: none; }
.why__card h4 { margin-bottom: 10px; }
.why__card p { font-size: 0.95rem; }

.opening { padding: 96px 0; background: var(--bg-alt); }
.opening-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 760px;
}
.opening-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.opening-card__meta { display: flex; gap: 8px; }
.opening-card__body { margin-bottom: 22px; }
.opening-card__list { margin-bottom: 24px; }
.opening-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.opening-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 8px; height: 8px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
}
.badge--green { background: var(--ink); color: var(--paper); }
.badge--gold { background: var(--gold-bg); color: var(--gold-deep); border: 1px solid var(--gold-border); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-page { padding: 80px 0 96px; }
.contact-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 72px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-info .label { margin-bottom: 10px; }
.contact-promise {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 28px;
}
.contact-promise svg { width: 17px; height: 17px; stroke: var(--gold-deep); stroke-width: 2; fill: none; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--ink); }
.form-textarea { min-height: 120px; resize: vertical; }

.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.radio-label:has(input:checked) { border-color: var(--ink); background: var(--bg-alt); }
.radio-label input { accent-color: var(--ink); }
.radio-dot { display: none; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 760px;
}
.founder-card__mark {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.founder-card__mark svg { width: 32px; height: 32px; }
.founder-card h3 { margin-bottom: 2px; }
.founder-card__role { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }

/* ─── FOOTER (dark) ──────────────────────────────────────── */
.footer { background: var(--ink); padding: 72px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,249,247,0.12);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer__logo svg { width: 26px; height: 26px; }
.footer__tagline { font-size: 0.92rem; color: rgba(250,249,247,0.6); max-width: 320px; }
.footer__col-head {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.45);
  margin-bottom: 16px;
}
.footer__links li { margin-bottom: 10px; }
.footer__link { font-size: 0.93rem; color: rgba(250,249,247,0.72); transition: color var(--ease); }
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.footer__copy { font-size: 0.84rem; color: rgba(250,249,247,0.45); }
.footer__bottom-right { display: flex; gap: 24px; align-items: center; }
.footer__email { font-size: 0.88rem; color: rgba(250,249,247,0.72); }
.footer__email:hover { color: var(--gold); }
.footer__login { font-size: 0.84rem; color: rgba(250,249,247,0.45); }
.footer__login:hover { color: var(--paper); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .proof__grid, .steps__grid, .steps__grid--4 { grid-template-columns: 1fr; gap: 28px; }
  .doors__grid, .careers-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  .nav__links, .nav__ctas { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { position: absolute; top: var(--nav-h); left: 0; right: 0; }

  .hero { min-height: 0; padding: 44px 0 40px; }
  .hero__narrative { margin-bottom: 32px; }
  .hero__split { grid-template-columns: 1fr; gap: 16px; }
  .path-card { padding: 26px 24px 24px; }

  .page-hero { padding: 64px 0 56px; }
  .pillar-section, .doors, .steps, .home-blog, .careers-intro, .opening, .cta-band { padding: 64px 0; }
  .proof { padding: 56px 0; }
  .scope-cols, .tile-grid, .tile-grid--2, .contact-paths { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .opening-card { padding: 28px 22px; }
  .founder-card { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
}

@media (max-width: 520px) {
  .blog-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .cta-band__ctas .btn { width: 100%; justify-content: center; }
}
