/* =============================================
   13th Street — site.css
   Editorial, navy + parchment. Cormorant Garamond + Manrope.
   ============================================= */

/* ---- Tokens ---- */
:root {
  --cream:    #f7f4ec;
  --paper:    #faf8f2;
  --ink:      #1a2640;
  --ink-60:   #34466a;
  --ink-40:   #64748b;
  --muted:    #8a96a8;
  --rule:     #d8d2c4;
  --brass:    #b09060;
  --brass-lt: #cdb888;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Manrope', -apple-system, sans-serif;

  --nav-h: 72px;
  --container: 1200px;
  --pad: clamp(24px, 5vw, 80px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Brand wordmark — mirrors the logo type treatment (Cormorant Garamond bold, tight tracking) */
.brand-wordmark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
}

/* Screen-reader only — visually hidden, readable by crawlers and assistive tech */
.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;
}

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

/* ---- App shell ---- */
.app { overflow-x: hidden; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  gap: 32px;
}

.nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__brand picture {
  display: flex;
  align-items: center;
}
.nav__brand img {
  height: 120px;
  width: auto;
}

.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__link {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-60);
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--ink); background: rgba(26,38,64,0.06); }
.nav__link.is-active { color: var(--ink); }

.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 4px;
  transition: opacity 0.15s;
}
.nav__cta:hover { opacity: 0.85; }
.nav__cta:active { transform: scale(0.98); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  padding: 4px;
}
.nav__burger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  flex-direction: column;
  padding: 24px var(--pad);
  gap: 8px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--ink);
  align-self: flex-end;
  margin-bottom: 16px;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__link {
  font-size: 24px;
  font-family: var(--ff-display);
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 0;
  padding-left: var(--pad);
  padding-right: var(--pad);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 60px;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 28px;
}

/* Hero title — large stacked display */
.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
}
.hero__title .a {
  font-size: clamp(72px, 9vw, 110px);
  color: var(--ink);
}
.hero__title .b {
  font-size: clamp(72px, 9vw, 110px);
  color: var(--ink-60);
  font-style: italic;
}
.hero__title .b em { font-style: italic; }
.hero__title .c {
  font-size: clamp(72px, 9vw, 110px);
  color: var(--ink-40);
}
.hero__title .dot {
  color: var(--brass);
}

/* Hero actions */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); opacity: 0.9; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn:disabled:hover { transform: none; opacity: 0.4; }
.btn svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:active svg { transform: translateX(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
}

.btn--on-dark {
  background: var(--cream);
  color: var(--ink);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.15s;
}
.link:hover { opacity: 0.8; }
.link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.link:hover svg { transform: translateX(3px); }

/* Hero meta aside */
.hero__meta {
  padding-top: 8px;
}
.hero__lede {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 36px;
}
.hero__meta-card {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.hero__meta-card:last-child { border-bottom: 1px solid var(--rule); }
.hero__meta-card .k {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero__meta-card .v {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* Hero ticker */
.hero__ticker {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.hero__ticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--rule);
}
.hero__ticker-items {
  display: flex;
  gap: 0;
  align-items: center;
}
.hero__ticker-item {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-60);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid var(--rule);
}
.hero__ticker-item:first-child { padding-left: 0; }
.hero__ticker-item > span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================================
   RISE ANIMATIONS
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise {
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.rise-delay-1 { animation-delay: 0.1s; }
.rise-delay-2 { animation-delay: 0.22s; }
.rise-delay-3 { animation-delay: 0.34s; }
.rise-delay-4 { animation-delay: 0.48s; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 100px var(--pad);
  background: var(--cream);
}
.section--alt {
  background: var(--paper);
}
.section--tight {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section--xl {
  padding: 120px var(--pad);
}
.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.sec-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 48px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.sec-head__index {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
}
.sec-head__index .num {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
}
.sec-head__index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-head__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.sec-head__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 580px;
}

/* ============================================================
   APPROACH — DIAGNOSTIC LIST
   ============================================================ */
.diag {
  counter-reset: none;
}
.diag__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.diag__item:first-child { border-top: 1px solid var(--rule); }
.diag__num {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--rule);
}
.diag__text {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.diag__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   SERVICES — PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pillar {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar__num {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--brass);
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.pillar__num-spacer {
  flex: 1 1 0%;
}
.pillar__title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.pillar__title a {
  color: inherit;
  text-decoration: none;
}
.pillar__title a:hover {
  color: inherit;
}
.pillar__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
  flex: 1;
}
.pillar__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillar__list li {
  font-size: 13px;
  color: var(--ink-60);
  padding-left: 14px;
  position: relative;
}
.pillar__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 11px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.process__step {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process__step .meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.process__step h3 {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.process__step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
  flex: 1;
}
.process__step .dur {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PRINCIPLES — WHEEL (desktop) + LIST (mobile)
   ============================================================ */

/* ---- Wheel ---- */
.principles-wheel {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The stage is a fixed square that maps 1:1 to the SVG viewBox (560×560).
   Petals are absolutely positioned within it. */
.principles-wheel__stage {
  position: relative;
  width: 560px;
  height: 560px;
  flex-shrink: 0;
}

.principles-wheel__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Centre circle */
.principles-wheel__centre {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.principles-wheel__centre-label {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 0 16px;
}
.principles-wheel__logo {
  width: 116px;
  height: auto;
  display: block;
  opacity: 1;
}
.principles-wheel__centre picture {
  display: block;
}

/* Centred heading above the wheel */
.principles-head {
  text-align: center;
  margin-bottom: 56px;
}
.principles-head__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 600px;
  margin: 0 auto;
}

/* Petals */
.principles-wheel__petal {
  position: absolute;
  /* Anchor point is the centre of the petal box; translate back by 50% each axis */
  transform: translate(-50%, -50%);
  width: 148px;
  text-align: center;
  z-index: 2;
}
.principles-wheel__petal--1 { left: 280px; top: 88px; }
.principles-wheel__petal--2 { left: 446.277px; top: 184px; }
.principles-wheel__petal--3 { left: 446.277px; top: 376px; }
.principles-wheel__petal--4 { left: 280px; top: 472px; }
.principles-wheel__petal--5 { left: 113.723px; top: 376px; }
.principles-wheel__petal--6 { left: 113.723px; top: 184px; }
.pw-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  line-height: 1;
  text-shadow: 0 0 8px var(--cream), 0 0 8px var(--cream), 0 0 12px var(--cream);
}
.pw-title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 0 8px var(--cream), 0 0 8px var(--cream), 0 0 12px var(--cream);
}
.pw-desc {
  font-family: var(--ff-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 0 8px var(--cream), 0 0 8px var(--cream), 0 0 10px var(--cream);
}

/* ---- Mobile list (hidden on desktop, shown ≤ 767px) ---- */
.principles-mobile {
  display: none;
}

/* ---- Shared principle list item (used by mobile) ---- */
.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.principle:first-child { border-top: 1px solid var(--rule); }
.principle__num {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--rule);
  padding-top: 2px;
}
.principle h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.principle p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull {
  padding: 80px var(--pad);
  background: var(--cream);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pull__rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 8px;
}
.pull__quote {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  max-width: 760px;
}
.pull__attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 240px 300px;
  gap: 0 60px;
  align-items: start;
}
.about__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-60);
}
.about__sig {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink) !important;
  margin-top: 12px;
}
.about__photo-col {
  /* dedicated photo column — sits between copy and credentials */
}
.about__photo-col picture {
  display: block;
}
.about__photo {
  display: block;
  width: calc(100% - 7px);
  height: 233px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 10px;
  filter: grayscale(100%) sepia(20%) brightness(0.97);
  mix-blend-mode: multiply;
  box-shadow: 7px 7px 0 0 var(--brass);
}
.about__photo-credit {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__panel h4,
.about__panel-title {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.about__credits {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__credits li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.about__credits li:first-child { border-top: 1px solid var(--rule); }
.about__credits .yr {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--brass);
  padding-top: 2px;
}
.about__credits li > span:last-child {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors__eyebrow {
  margin-bottom: 36px;
}
.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.sectors__item {
  background: var(--cream);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sectors__item .meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.sectors__item .name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

/* ============================================================
   FIELD NOTES
   ============================================================ */
.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.note {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.note__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}
.note__title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  flex: 1;
}
.note__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-60);
}
.note__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.note__meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.note__meta svg { color: var(--ink-60); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item:first-child { border-top: 1px solid var(--rule); }
.faq__item:nth-child(2) { border-top: 1px solid var(--rule); }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--ink-40);
  position: relative;
  transition: transform 0.25s ease, border-color 0.15s ease;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ink-40);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.15s ease;
}
.faq__icon::before { width: 8px; height: 1px; }
.faq__icon::after { width: 1px; height: 8px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); border-color: var(--ink); }
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after { background: var(--ink); }
.faq__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__body { max-height: 300px; }
.faq__body-inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-60);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}
.eyebrow--ink {
  color: rgba(247,244,236,0.5);
}
.contact__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin: 20px 0 24px;
}
.contact__lede {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,244,236,0.7);
  margin-bottom: 40px;
}
.contact__direct {
  display: flex;
  flex-direction: column;
}
.contact__direct-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247,244,236,0.15);
  align-items: baseline;
}
.contact__direct-row:first-child { border-top: 1px solid rgba(247,244,236,0.15); }
.contact__direct-row .k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.45);
}
.contact__direct-row .v {
  font-size: 14px;
  color: var(--cream);
}
.contact__direct-row .v a { color: var(--brass-lt); }
.contact__direct-row .v a:hover { text-decoration: underline; }

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__honey {
  display: none;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__row--single {
  grid-template-columns: 1fr;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.5);
}
.form__field input,
.form__field textarea,
.form__field select {
  background: rgba(247,244,236,0.08);
  border: 1px solid rgba(247,244,236,0.2);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  -webkit-appearance: none;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(247,244,236,0.3);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: rgba(247,244,236,0.5);
}
.form__field textarea { resize: vertical; }
.form__field select { cursor: pointer; }
.form__field select option { background: var(--ink); color: var(--cream); }

/* Select wrapper */
.select {
  position: relative;
}
.select__caret {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(247,244,236,0.4);
  pointer-events: none;
}

/* Phone field */
.form__field--phone .phone {
  display: flex;
  gap: 8px;
}
.form__field--phone .phone input {
  flex: 1;
}

/* Country picker */
.cpick { position: relative; flex-shrink: 0; }
.cpick__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(247,244,236,0.08);
  border: 1px solid rgba(247,244,236,0.2);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 13px;
  padding: 10px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.cpick__btn:hover { background: rgba(247,244,236,0.14); border-color: rgba(247,244,236,0.35); }
.cpick__code { font-weight: 600; }
.cpick__dial { color: rgba(247,244,236,0.55); font-size: 12px; }
.cpick__caret { width: 14px; height: 14px; color: rgba(247,244,236,0.4); }
.cpick__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  background: var(--ink);
  border: 1px solid rgba(247,244,236,0.2);
  border-radius: 4px;
  width: 260px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cpick__search input {
  border: none;
  border-bottom: 1px solid rgba(247,244,236,0.15);
  border-radius: 0;
  width: 100%;
}
.cpick__list { max-height: 220px; overflow-y: auto; }
.cpick__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 14px;
  color: var(--cream);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
}
.cpick__opt:hover { background: rgba(247,244,236,0.07); }
.cpick__opt.is-on { background: rgba(247,244,236,0.1); }
.cpick__opt-name { flex: 1; }
.cpick__opt-meta {
  font-size: 11px;
  color: rgba(247,244,236,0.4);
  margin-left: 12px;
}
.cpick__empty { padding: 14px; font-size: 13px; color: rgba(247,244,236,0.4); }

/* Form submit */
.form__submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.form__note {
  font-size: 12px;
  color: rgba(247,244,236,0.4);
  line-height: 1.5;
}
.form__error {
  font-size: 13px;
  color: var(--brass-lt);
  line-height: 1.5;
}

/* Thank you */
.thank { padding: 40px 0; }
.brass-rule {
  width: 40px;
  height: 2px;
  background: var(--brass-lt);
  margin-bottom: 28px;
}
.thank__title {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.thank__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,244,236,0.65);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px var(--pad) 40px;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 0 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,244,236,0.12);
}
.footer__brand .mark {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.footer__brand .tag {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(247,244,236,0.5);
  max-width: 220px;
}
.footer__col h5,
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.4);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 13px;
  color: rgba(247,244,236,0.7);
  transition: color 0.15s;
  cursor: pointer;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: var(--container);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247,244,236,0.35);
}
.footer__bottom div:last-child {
  display: flex;
  gap: 20px;
}
.footer__bottom a {
  color: rgba(247,244,236,0.35);
  transition: color 0.15s;
}
.footer__bottom a:hover { color: rgba(247,244,236,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__meta { display: grid; grid-template-columns: 1fr repeat(3, auto); gap: 0 32px; align-items: start; }
  .hero__lede { grid-column: 1 / -1; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-col { max-width: 320px; }
  .about__photo { height: min(320px, calc(100vw - (var(--pad) * 2) - 7px)); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  /* Switch principles from wheel to list */
  .principles-wheel { display: none; }
  .principles-mobile { display: flex; flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__title .a, .hero__title .b, .hero__title .c { font-size: 56px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__meta { display: flex; flex-direction: column; }
  .hero__ticker { display: none; }
  .faq { grid-template-columns: 1fr; }
  .faq__item:nth-child(2) { border-top: none; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head__index { display: none; }
  .diag__item { grid-template-columns: 36px 1fr; }
  .diag__tag { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .notes { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
