/* ============================================================
   TrigR — Shared Stylesheet  v3
   The White Company editorial aesthetic + refined motion
   ============================================================ */

:root {
  --ivory: #fbfaf7;
  --stone: #f3f0ea;
  --stone-deep: #e8e3da;
  --taupe: #b6ad9e;
  --taupe-deep: #9a9080;
  --ink: #2b2926;
  --ink-soft: #6c665d;
  --line: #e3ddd2;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection { background: var(--stone-deep); color: var(--ink); }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  opacity: 0;
  transition: opacity .5s ease;
}
body.loaded { opacity: 1; }
body.fade-out { opacity: 0; transition: opacity .3s ease; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.6rem;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 760px; margin: 0 auto; }

/* ============ Motion system ============ */

/* Single-element reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s ease var(--d, 0s), transform 1.1s var(--ease-out) var(--d, 0s);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal].in { opacity: 1; transform: none; }

/* Staggered children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease var(--d, 0s), transform .95s var(--ease-out) var(--d, 0s);
}
[data-stagger].in > * { opacity: 1; transform: none; }

/* Masked line reveal (heroes, philosophy) */
.hl { display: block; overflow: hidden; }
.hl-in {
  display: block;
  transform: translateY(115%);
  transition: transform 1.25s var(--ease-out) var(--d, 0s);
}
body.loaded .hero-lines .hl-in,
.mask-lines.in .hl-in { transform: none; }
.hero-lines .hl:nth-child(1) .hl-in, .mask-lines .hl:nth-child(1) .hl-in { --d: .1s; }
.hero-lines .hl:nth-child(2) .hl-in, .mask-lines .hl:nth-child(2) .hl-in { --d: .24s; }
.hero-lines .hl:nth-child(3) .hl-in, .mask-lines .hl:nth-child(3) .hl-in { --d: .38s; }
.hero-lines .hl:nth-child(4) .hl-in, .mask-lines .hl:nth-child(4) .hl-in { --d: .52s; }

/* Hero secondary elements fade after headline */
.hero-fade {
  opacity: 0; transform: translateY(18px);
  transition: opacity 1s ease var(--d, .7s), transform 1s var(--ease-out) var(--d, .7s);
}
body.loaded .hero-fade { opacity: 1; transform: none; }

/* Gentle float (opportunity card) */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: floaty 7s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-stagger] > *, .hero-fade { opacity: 1 !important; transform: none !important; }
  .hl-in { transform: none !important; }
  body { opacity: 1; }
}

/* ============ Nav ============ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, transform .55s var(--ease-out);
}
header.scrolled { border-color: var(--line); }
header.hide { transform: translateY(-100%); }
nav {
  max-width: 1180px; margin: 0 auto; padding: 26px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: letter-spacing .5s ease;
  display: inline-block;
}
.logo::before {
  content: '';
  display: inline-block; vertical-align: -0.4em;
  width: 1.45em; height: 1.45em; margin-right: .5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%232b2926' stroke-width='1' opacity='.9'/%3E%3Ccircle cx='12' cy='12' r='6.6' fill='none' stroke='%232b2926' stroke-width='1' opacity='.45'/%3E%3Ccircle cx='12' cy='12' r='2.5' fill='%23b6ad9e'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  transition: transform .6s var(--ease-out);
}
.logo:hover::before { transform: rotate(90deg); }
.logo:hover { letter-spacing: 0.09em; }
.logo span { color: var(--taupe); }
.logo em { font-style: italic; color: var(--taupe); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: color .3s ease; position: relative; padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--taupe);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink); padding: 12px 26px !important;
  color: var(--ink) !important; transition: all .35s ease;
}
.nav-cta:hover, .nav-cta.active { background: var(--ink); color: var(--ivory) !important; }
.menu-btn { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--ink); line-height: 1; z-index: 120; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: var(--ink);
  text-decoration: none; padding: 10px 0; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s ease, transform .6s var(--ease-out);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .24s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .30s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .36s; }
.mobile-menu.open a:nth-child(6) { transition-delay: .42s; }
.mobile-menu a.menu-demo {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; border: 1px solid var(--ink); padding: 16px 36px; margin-top: 24px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 17px 42px; cursor: pointer;
  border: 1px solid var(--ink); background: var(--ink); color: var(--ivory);
  position: relative; overflow: hidden; z-index: 1;
  transition: color .45s ease;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ivory);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover { color: var(--ink); }
.btn:hover::before { transform: none; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover { color: var(--ivory); }
.ink-bg .btn { border-color: var(--ivory); background: var(--ivory); color: var(--ink); }
.ink-bg .btn::before { background: transparent; }
.ink-bg .btn:hover { color: var(--ivory); background: transparent; }

/* Arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.arrow-link i { font-style: normal; transition: transform .4s var(--ease-out); }
.arrow-link:hover i { transform: translateX(7px); }

/* ============ Heroes ============ */
.hero {
  padding: 235px 0 140px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,227,218,0.55), transparent 70%), var(--ivory);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.01em; margin-bottom: 2rem; color: var(--ink);
  position: relative; z-index: 2;
}
.hero h1 em { color: var(--taupe); }
.hero p.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 3rem; position: relative; z-index: 2; }
.hero .eyebrow, .hero .btn { position: relative; z-index: 2; }
.hero-tags {
  margin-top: 5rem; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 0; align-items: center; position: relative; z-index: 2;
  color: var(--taupe); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-tags span { padding: 0 26px; border-right: 1px solid var(--stone-deep); }
.hero-tags span:last-child { border-right: none; }

.page-hero {
  padding: 210px 0 100px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,227,218,0.55), transparent 70%), var(--ivory);
}
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 1.6rem; position: relative; z-index: 2; }
.page-hero h1 em { color: var(--taupe); }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 620px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero .eyebrow { position: relative; z-index: 2; }

/* Signal rings */
.rings {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  width: 980px; height: 980px; transform: translate(-50%, -50%);
  pointer-events: none; opacity: .8;
}
.rings svg { width: 100%; height: 100%; display: block; }
.rings .r { fill: none; stroke: var(--stone-deep); stroke-width: 1; }
.rings .pulse {
  fill: none; stroke: var(--taupe); stroke-width: 1; opacity: 0;
  transform-origin: 400px 400px;
  animation: ringPulse 5.5s ease-out infinite;
}
.rings .pulse.p2 { animation-delay: 2.75s; }
@keyframes ringPulse {
  0% { transform: scale(.42); opacity: .55; }
  100% { transform: scale(1.06); opacity: 0; }
}
.rings .orbit { transform-origin: 400px 400px; animation: orbitSpin 42s linear infinite; }
.rings .orbit.o2 { animation-duration: 64s; animation-direction: reverse; }
.rings .orbit.o3 { animation-duration: 88s; }
.rings .orbit circle { fill: var(--taupe); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Scroll cue */
.scroll-cue {
  margin: 4.5rem auto 0; width: 1px; height: 62px;
  background: var(--stone-deep); position: relative; overflow: hidden;
}
.scroll-cue::after {
  content: ''; position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%; background: var(--taupe-deep);
  animation: cueDrop 2.4s var(--ease-out) infinite;
}
@keyframes cueDrop { 0% { top: -40%; } 60%, 100% { top: 110%; } }

/* ============ Marquee ============ */
.marquee {
  overflow: hidden; padding: 34px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: var(--ink-soft);
  white-space: nowrap; padding: 0 28px;
  display: flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: '·'; color: var(--taupe); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
main { overflow-x: clip; }
section { padding: 120px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: 1.4rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.alt { background: var(--stone); }
.ink-bg { background: var(--ink); color: var(--ivory); position: relative; }
.ink-bg h2, .ink-bg h3 { color: var(--ivory); }
.ink-bg .eyebrow { color: var(--taupe); }
.ink-bg p { color: #cfc9bf; }

.lead-statement { text-align: center; max-width: 880px; margin: 0 auto; }
.lead-statement h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.3; margin-bottom: 2.2rem; }
.lead-statement h2 em { color: var(--taupe); }
.lead-statement p { font-size: 1.12rem; color: var(--ink-soft); }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats > div { text-align: center; padding: 20px 30px; border-right: 1px solid var(--line); }
.stats > div:last-child { border-right: none; }
.stats .stat-word { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--ink); line-height: 1.1; }
.stats .stat-label { margin-top: .9rem; font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split .eyebrow { margin-bottom: 1.4rem; }
.split h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1.8rem; }
.split p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.split-visual-frame { position: relative; display: flex; justify-content: center; }

/* Opportunity card */
.opp-card {
  background: #fffefb; border: 1px solid var(--line);
  padding: 40px 42px; max-width: 440px; width: 100%;
  box-shadow: 0 40px 90px -40px rgba(43, 41, 38, .22);
}
.opp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.7rem; }
.opp-tag { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); }
.live { display: flex; gap: 9px; align-items: center; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--taupe);
  animation: livePulse 2.2s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(182, 173, 158, .55); }
  70% { box-shadow: 0 0 0 10px rgba(182, 173, 158, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 173, 158, 0); }
}
.opp-co { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 1.5rem; }
.opp-row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 13px 0; border-top: 1px solid var(--line); font-size: 0.88rem;
}
.opp-row .l { color: var(--taupe); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; padding-top: 4px; white-space: nowrap; }
.opp-row .r { color: var(--ink); text-align: right; }
.opp-dots { display: flex; gap: 6px; align-items: center; padding-top: 6px; }
.opp-dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--taupe); display: block;
}
.opp-dots i.off { background: var(--stone-deep); }

/* Buying moments grid */
.grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.grid div {
  padding: 34px 28px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  font-size: 0.92rem; letter-spacing: 0.04em; color: var(--ink-soft);
  transition: background .4s ease, color .4s ease, box-shadow .4s ease;
}
.grid div:hover { background: var(--ivory); color: var(--ink); box-shadow: inset 3px 0 0 var(--taupe); }
.ink-bg .grid { border-color: rgba(255,255,255,0.12); }
.ink-bg .grid div { border-color: rgba(255,255,255,0.12); color: #cfc9bf; }
.ink-bg .grid div:hover { background: rgba(255,255,255,0.045); color: #fff; box-shadow: inset 3px 0 0 var(--taupe); }

/* Category blocks */
.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cats article { background: var(--ivory); padding: 48px 44px; transition: background .45s ease; }
.cats article:hover { background: #fffefb; }
.cats h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.cats .eyebrow { margin-bottom: 1.6rem; }
.cats ul { list-style: none; }
.cats li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.94rem; transition: padding-left .35s var(--ease-out), color .35s ease; }
.cats li:hover { padding-left: 10px; color: var(--ink); }
.cats li:last-child { border-bottom: none; }

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 920px; margin: 0 auto; }
.pills span {
  border: 1px solid var(--line); padding: 13px 28px; border-radius: 40px;
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-soft);
  background: var(--ivory); transition: border-color .35s ease, color .35s ease, transform .35s var(--ease-out);
}
.pills span:hover { border-color: var(--taupe); color: var(--ink); transform: translateY(-3px); }

/* Brand groups */
.brand-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.brand-groups h3 { font-size: 1.6rem; margin-bottom: 1.4rem; }
.brand-groups ul { list-style: none; }
.brand-groups li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.95rem; transition: padding-left .35s var(--ease-out), color .35s ease; }
.brand-groups li:hover { padding-left: 10px; color: var(--ink); }
.brand-groups li:last-child { border-bottom: none; }

/* Three intelligences */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.three article { padding: 56px 44px; border-right: 1px solid var(--line); transition: background .5s ease; }
.three article:hover { background: rgba(243, 240, 234, .6); }
.three article:last-child { border-right: none; }
.three .num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--taupe); margin-bottom: 1.4rem; }
.three h3 { font-size: 1.7rem; margin-bottom: 1.2rem; }
.three p { color: var(--ink-soft); font-size: 0.98rem; }

/* Includes */
.includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.includes > div { background: var(--ivory); padding: 44px 36px; transition: background .45s ease; }
.includes > div:hover { background: #fffefb; }
.includes .k { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--taupe); margin-bottom: 0.6rem; }
.includes .v { font-size: 0.92rem; color: var(--ink-soft); }

/* Cards (home) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cards a { text-decoration: none; background: var(--ivory); padding: 50px 40px; display: block; transition: background .45s ease; }
.cards a:hover { background: var(--stone); }
.cards .num { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--taupe); margin-bottom: 1.2rem; }
.cards h3 { font-size: 1.5rem; margin-bottom: 0.9rem; color: var(--ink); }
.cards p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.cards .more { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: 8px; }
.cards .more i { font-style: normal; transition: transform .4s var(--ease-out); }
.cards a:hover .more i { transform: translateX(6px); }

/* Growth flow — animated timeline */
.flow { display: flex; flex-direction: column; align-items: center; position: relative; }
.flow-line {
  position: absolute; top: 14px; bottom: 14px; left: 50%;
  width: 1px; background: var(--stone-deep);
  transform: scaleY(0); transform-origin: top;
  transition: transform 2.4s var(--ease-out) .2s;
}
.flow.in .flow-line { transform: scaleY(1); }
.flow-step {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink); letter-spacing: 0.02em;
  background: inherit; position: relative; z-index: 2;
  padding: 22px 46px; background: var(--stone);
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s ease, transform .9s var(--ease-out);
}
section:not(.alt) .flow-step { background: var(--ivory); }
.flow.in .flow-step { opacity: 1; transform: none; }
.flow.in .flow-step:nth-child(2) { transition-delay: .15s; }
.flow.in .flow-step:nth-child(3) { transition-delay: .55s; }
.flow.in .flow-step:nth-child(4) { transition-delay: .95s; }
.flow.in .flow-step:nth-child(5) { transition-delay: 1.35s; }
.flow.in .flow-step:nth-child(6) { transition-delay: 1.75s; }
.flow-step.final { color: var(--taupe); font-style: italic; }

/* Steps */
.steps { max-width: 760px; margin: 0 auto; }
.step { display: flex; gap: 36px; padding: 40px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.step:last-child { border-bottom: none; }
.step .step-n { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--taupe); min-width: 60px; }
.step h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); }

/* Philosophy */
.philosophy { text-align: center; }
.philosophy .phrase {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.6; color: var(--ink);
}
.ink-bg.philosophy .phrase { color: var(--ivory); }
.philosophy .phrase em { color: var(--taupe); }

/* CTA */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.8rem; max-width: 820px; margin-inline: auto; }
.cta p { color: var(--ink-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 3rem; }
.ink-bg.cta h2 { color: var(--ivory); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-grid .eyebrow { margin-bottom: 1.4rem; }
.contact-grid h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 1.6rem; }
.contact-grid > div > p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact-detail { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail .k { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.3rem; }
.contact-detail .v { color: var(--ink); }
.contact-detail a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .3s ease; }
.contact-detail a:hover { border-color: var(--taupe-deep); }

/* Editorial form */
form .field { margin-bottom: 30px; }
form label { display: block; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
form input, form textarea, form select {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 10px 2px 12px; border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .4s ease;
}
form select { cursor: pointer; }
form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--ink); }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
form button { width: 100%; margin-top: 14px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1.2rem; text-align: center; }

/* Footer */
footer { background: var(--ink); color: #cfc9bf; padding: 100px 0 40px; }
.footer-statement {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--ivory); max-width: 640px; line-height: 1.3; margin-bottom: 3.5rem;
}
.footer-statement em { color: var(--taupe); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer .logo { color: var(--ivory); }
footer .logo span { color: var(--taupe); }
footer .logo::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%23fbfaf7' stroke-width='1' opacity='.85'/%3E%3Ccircle cx='12' cy='12' r='6.6' fill='none' stroke='%23fbfaf7' stroke-width='1' opacity='.4'/%3E%3Ccircle cx='12' cy='12' r='2.5' fill='%23b6ad9e'/%3E%3C/svg%3E");
}
.footer-tag { max-width: 320px; font-size: 0.92rem; margin-top: 1rem; color: #a8a297; }
.footer-cols { display: flex; gap: 80px; }
.footer-cols h4 { font-family: var(--sans); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 1.4rem; }
.footer-cols a { display: block; color: #cfc9bf; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.8rem; transition: color .3s ease, padding-left .35s var(--ease-out); }
.footer-cols a:hover { color: var(--ivory); padding-left: 6px; }
.footer-bot { padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; letter-spacing: 0.05em; color: #8a8479; }

/* ============ Responsive ============ */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 60px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .three { grid-template-columns: 1fr; }
  .three article { border-right: none; border-bottom: 1px solid var(--line); }
  .includes { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .brand-groups { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: none; border-bottom: 1px solid var(--line); padding: 34px 20px; }
  .stats > div:last-child { border-bottom: none; }
  form .row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 50px; flex-wrap: wrap; }
  section { padding: 80px 0; }
  .hero { padding: 175px 0 100px; }
  .page-hero { padding: 155px 0 75px; }
  .wrap { padding: 0 26px; }
  .rings { width: 720px; height: 720px; }
  .marquee-track span { font-size: 1.2rem; }
}
