/* ================================================================
   HITCHENS GROUP — FLAGSHIP SITE
   Single stylesheet. Hand-written. No framework.
   Design tokens follow docs/04-brand-direction.md
   ================================================================ */

/* ---------- Fonts (self-hosted, Latin subset, woff2) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 300; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-300.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-600.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic; font-weight: 300; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-300-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

/* ---------- Reset (modern, minimal) ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }

/* ---------- Design tokens ---------- */
:root {
  --ink:         #0B0B0D;
  --ink-2:       #141418;
  --ink-3:       #1E1E24;
  --gold:        #C8A96A;
  --gold-2:      #E7C98B;
  --gold-3:      #8D7640;
  --cream:       #F6F1E7;
  --cream-mute:  #B6AE97;
  --paper:       #FAF7F2;
  --rule:        #2A2A30;
  --focus:       #E7C98B;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-tiny:  clamp(0.72rem, 0.69rem + 0.15vw, 0.80rem);
  --fs-small: clamp(0.84rem, 0.80rem + 0.20vw, 0.94rem);
  --fs-base:  clamp(1.00rem, 0.95rem + 0.25vw, 1.12rem);
  --fs-lead:  clamp(1.15rem, 1.05rem + 0.50vw, 1.32rem);
  --fs-h3:    clamp(1.30rem, 1.15rem + 0.75vw, 1.65rem);
  --fs-h2:    clamp(1.75rem, 1.40rem + 1.75vw, 2.50rem);
  --fs-h1:    clamp(2.25rem, 1.60rem + 3.25vw, 4.25rem);
  --fs-hero:  clamp(2.75rem, 1.90rem + 4.25vw, 5.75rem);

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Fluid section padding */
  --sp-section: clamp(4rem, 3rem + 5vw, 9rem);
  --sp-gutter:  clamp(1.25rem, 1rem + 1.5vw, 2.5rem);

  /* Layout */
  --max-w:         1240px;
  --max-w-prose:   920px;
  --max-w-narrow:  680px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.65, 0.25, 1);
  --t-fast: 150ms;
  --t-med:  300ms;
  --t-slow: 520ms;
}

/* ---------- Base body ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-gutter);
}
.container-prose {
  max-width: var(--max-w-prose);
  margin-inline: auto;
  padding-inline: var(--sp-gutter);
}
.section {
  padding-block: var(--sp-section);
  position: relative;
}
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max-w), calc(100% - (var(--sp-gutter) * 2)));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rule) 20%,
    var(--rule) 80%,
    transparent
  );
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
h1.display { font-size: var(--fs-hero); }
h2.display { font-size: var(--fs-h1); line-height: 1.08; }
h3.display { font-size: var(--fs-h2); line-height: 1.12; }

.lead {
  font-family: var(--sans);
  font-size: var(--fs-lead);
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  max-width: 60ch;
}

/* ---------- Links and buttons ---------- */
a { color: var(--cream); transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold); }

.link-gold {
  color: var(--gold);
  font-weight: 500;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size var(--t-med) var(--ease), color var(--t-fast) var(--ease);
}
.link-gold:hover {
  background-size: 100% 1px;
  color: var(--gold-2);
}
.link-gold .arrow {
  display: inline-block;
  margin-left: 0.4em;
  transition: transform var(--t-med) var(--ease);
}
.link-gold:hover .arrow { transform: translateX(4px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background-color var(--t-med) var(--ease),
              color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}
.btn:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.btn-ghost {
  border: 0;
  padding-inline: 0;
  color: var(--cream);
  position: relative;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform var(--t-med) var(--ease);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: scaleX(1); }

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.25rem;
  background: transparent;
  transition: background-color var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              padding var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: saturate(1.1) blur(12px);
  -webkit-backdrop-filter: saturate(1.1) blur(12px);
  border-bottom-color: var(--rule);
  padding-block: 0.9rem;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand img {
  height: 46px;
  width: auto;
}
.site-header.is-scrolled .brand img { height: 36px; }
.nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav a {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: 0.4rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--gold); }

.nav-cta {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background-color var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-cta::after { display: none; }

.nav-toggle { display: none; }

/* Mobile panel is hidden by default at all widths, shown only when .is-open */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  flex-direction: column;
  padding: 6rem var(--sp-gutter) 3rem;
}
.mobile-panel.is-open { display: flex; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--cream);
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    position: relative;
  }
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 1px;
    background: currentColor;
  }
  .nav-toggle span::before { top: -7px; }
  .nav-toggle span::after  { top:  7px; }

  .mobile-panel .nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .mobile-panel .nav a {
    font-size: var(--fs-h3);
    letter-spacing: -0.01em;
    text-transform: none;
    font-family: var(--serif);
    font-weight: 400;
  }
  .mobile-panel .nav a::after { display: none; }
  .mobile-close {
    position: absolute;
    top: 1.25rem;
    right: var(--sp-gutter);
    color: var(--cream);
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    line-height: 1;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: var(--sp-section);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(200, 169, 106, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 85%, rgba(200, 169, 106, 0.05), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, #0a0a0c 100%);
  z-index: -1;
}
.hero::after {
  /* extremely subtle film grain feel via a tiny noise-free vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 2.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-lead {
  font-family: var(--sans);
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--cream-mute);
  max-width: 52ch;
  margin-bottom: 3rem;
}
.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-meta-label {
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
}
.hero-meta-value {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--cream);
}
.hero-meta-value em {
  color: var(--gold);
  font-style: italic;
}

/* ---------- Ecosystem strip ---------- */
.ecosystem {
  background: var(--ink);
}
.ecosystem .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .ecosystem .section-head { grid-template-columns: 1fr; }
}
.ecosystem .section-head h2 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 14ch;
}
.ecosystem .section-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.ecosystem .section-head p {
  font-size: var(--fs-lead);
  color: var(--cream-mute);
  max-width: 52ch;
}

.eco-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .eco-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .eco-list { grid-template-columns: repeat(4, 1fr); }
}

.eco-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.25rem 2rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background-color var(--t-med) var(--ease);
  min-height: 220px;
}
.eco-item:hover { background: var(--ink-2); }
.eco-item a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.eco-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.eco-item h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.eco-num {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.eco-sector {
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
}
.eco-desc {
  font-size: var(--fs-small);
  color: var(--cream-mute);
  line-height: 1.6;
  max-width: 30ch;
}
.eco-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eco-go .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease);
}
.eco-item:hover .eco-go .arrow { transform: translateX(4px); }

/* ---------- Standards ---------- */
.standards {
  background: var(--ink-2);
  position: relative;
}
.standards-head {
  max-width: 60ch;
  margin-bottom: 5rem;
}
.standards-head h2 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-top: 1.5rem;
}
.standards-head h2 em { font-style: italic; color: var(--gold); font-weight: 300; }

.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.principle:last-child { border-bottom: 1px solid var(--rule); }
.principle-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 4rem;
}
.principle-body h3 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.principle-body p {
  font-size: var(--fs-base);
  color: var(--cream-mute);
  line-height: 1.7;
  max-width: 62ch;
}
@media (max-width: 700px) {
  .principle { grid-template-columns: 1fr; gap: 1rem; }
  .principle-num { font-size: 2.25rem; }
}

/* ---------- Vision ---------- */
.vision {
  background: var(--ink);
}
.vision .container {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) {
  .vision .container { grid-template-columns: 1fr; gap: 3rem; }
}
.vision h2 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.vision h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.vision-body p {
  font-family: var(--sans);
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.vision-body p:last-of-type { color: var(--cream-mute); }
.vision-cta {
  margin-top: 2.5rem;
}

/* ---------- Partnerships CTA ---------- */
.partnerships-cta {
  background: var(--ink);
  text-align: center;
  padding-block: var(--sp-section);
  border-top: 1px solid var(--rule);
}
.partnerships-cta h2 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 20ch;
  margin: 0 auto 2rem;
}
.partnerships-cta h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.partnerships-cta p {
  font-size: var(--fs-lead);
  color: var(--cream-mute);
  max-width: 52ch;
  margin: 0 auto 3rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  padding-block: 5rem 2rem;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-size: var(--fs-small);
  color: var(--cream-mute);
  max-width: 38ch;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: var(--cream-mute);
  font-size: var(--fs-small);
  font-weight: 400;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: var(--fs-tiny);
  color: var(--cream-mute);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--cream-mute); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease),
              transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* ---------- Focus states ---------- */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Prose (for blog + group + standards pages) ---------- */
.prose {
  max-width: 62ch;
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--cream);
}
.prose p { margin-bottom: 1.3em; }
.prose h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.12;
  color: var(--cream);
  margin: 2.5em 0 0.7em;
}
.prose h3 {
  font-family: var(--sans);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--cream);
  margin: 2em 0 0.6em;
}
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--gold-2); }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1.3em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--cream); font-weight: 600; }

/* ---------- Article header ---------- */
.article-hero {
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--rule);
}
.article-hero .eyebrow { margin-bottom: 1.5rem; }
.article-hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 24ch;
}
.article-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.article-meta {
  font-size: var(--fs-small);
  color: var(--cream-mute);
  letter-spacing: 0.02em;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 10rem 0 4.5rem;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--cream);
  max-width: 24ch;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.page-hero p {
  font-size: var(--fs-lead);
  color: var(--cream-mute);
  max-width: 60ch;
  line-height: 1.65;
}

/* ---------- Founder split panel (group page) ---------- */
.founder {
  padding-block: var(--sp-section);
  background: var(--ink);
}
.founder .container {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) {
  .founder .container { grid-template-columns: 1fr; gap: 2.5rem; }
}
.founder-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 11, 13, 0.4) 100%);
  pointer-events: none;
}
.founder-body {
  padding-top: 1rem;
}
.founder.founder-solo .container-prose {
  max-width: 72ch;
}
.founder.founder-solo .founder-body {
  padding-top: 0;
}
.founder-body h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.founder-body h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.founder-body p {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 58ch;
}
.founder-body p.muted { color: var(--cream-mute); }

/* ---------- Business profile (businesses page) ---------- */
.biz-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.biz-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 3rem;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.biz-row:last-child { border-bottom: 1px solid var(--rule); }
.biz-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.biz-head h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.biz-sector {
  display: inline-block;
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.biz-row p {
  font-size: var(--fs-base);
  color: var(--cream-mute);
  line-height: 1.7;
  max-width: 60ch;
}
.biz-visit {
  white-space: nowrap;
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gold);
  transition: background-color var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.biz-visit:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 800px) {
  .biz-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-block: 2.25rem;
  }
  .biz-num { font-size: 1.5rem; }
  .biz-visit { justify-self: start; margin-top: 0.75rem; }
}

/* ---------- Partnerships form ---------- */
.form-panel {
  max-width: 680px;
  margin: 0 auto;
  padding-block: var(--sp-section);
}
.form-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.field label {
  display: block;
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--cream);
  font-size: var(--fs-base);
  font-family: var(--sans);
  line-height: 1.5;
  transition: border-color var(--t-med) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder { color: #5a5a63; }
.form-submit { margin-top: 1rem; }
.form-note {
  font-size: var(--fs-small);
  color: var(--cream-mute);
  line-height: 1.6;
  margin-top: 1.5rem;
  max-width: 60ch;
}

/* ---------- Blog hub (insights) ---------- */
.posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
  align-items: center;
  transition: background-color var(--t-med) var(--ease);
}
.post-row:last-child { border-bottom: 1px solid var(--rule); }
.post-row:hover { background: var(--ink-2); }
.post-row a {
  position: absolute;
  inset: 0;
}
.post-row { position: relative; }
.post-meta-label {
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.post-row h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.01em;
  max-width: 36ch;
}
.post-row p {
  font-size: var(--fs-small);
  color: var(--cream-mute);
  max-width: 60ch;
  line-height: 1.6;
}
.post-cta {
  font-size: var(--fs-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.post-cta .arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease);
}
.post-row:hover .post-cta .arrow { transform: translateX(4px); }
@media (max-width: 800px) {
  .post-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .post-cta { justify-self: start; margin-top: 0.5rem; }
}

/* ---------- Blog post article ---------- */
.article {
  padding: 10rem 0 5rem;
}
.article-hero {
  padding: 0 0 3.5rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3.5rem;
}
.article-hero .eyebrow { margin-bottom: 1.5rem; }
.article-hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 26ch;
}
.article-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.article-meta {
  font-size: var(--fs-tiny);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
}
.article-body {
  max-width: 62ch;
  margin: 0 auto;
}
.article-body img.biz-logo {
  max-width: 260px;
  margin: 2.5rem 0 1.5rem;
  display: block;
}
.article-body p {
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 1.4em;
}
.article-body p.muted { color: var(--cream-mute); }
.article-body h2 {
  font-family: var(--serif);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 3rem 0 1rem;
}
.article-body h3 {
  font-family: var(--sans);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--cream);
  margin: 2.25rem 0 0.8rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4em;
}
.article-body li {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 0.5em;
}
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(200, 169, 106, 0.5);
}
.article-body a:hover {
  color: var(--gold-2);
  text-decoration-color: var(--gold-2);
}
.article-body strong { color: var(--cream); font-weight: 600; }
.article-footer {
  max-width: 62ch;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.article-footer .btn { margin-top: 0; }

/* ---------- Legal page (light prose on dark) ---------- */
.legal {
  padding: 10rem 0 5rem;
}
.legal .container { max-width: 720px; }
.legal h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 1rem;
}
.legal .updated {
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 2.5rem;
}
.legal .prose {
  max-width: 68ch;
  color: var(--cream);
}
.legal .prose p { margin-bottom: 1.2em; }
.legal .prose h2 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--cream);
  margin: 2.2em 0 0.6em;
}

/* ---------- 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;
}
