/* ============================================================
   MORPHO — Homepage
   A fresh editorial homepage built on the MORPHO design system.
   Tokens, fonts & color come from colors_and_type.css.
   This file holds only layout + component styling for the home view.
   ============================================================ */

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--sand-400); color: var(--ink-900); }

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

/* ---------- Layout primitives ---------- */
.wrap {
    max-width: var(--maxw) !important;
    margin-inline: auto !important;
    padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 7vw, 110px); }

/* Shared eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-muted);
}
.eyebrow--dark { color: var(--fg-on-dark-muted); }

/* Arrow link (underline wipe) */
.alink {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; color: var(--fg); padding-bottom: 5px; position: relative;
  width: max-content;
}
.alink svg { transition: transform .4s var(--ease-out); }
.alink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.alink:hover::after { transform: scaleX(1); }
.alink:hover svg { transform: translateX(5px); }
.alink--dark { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 17px 30px; border: 1px solid #000; border-radius: var(--radius-sm);
  transition: background .35s var(--ease-out), color .35s var(--ease-out),
              border-color .35s var(--ease-out), transform .2s var(--ease-out);
}
.btn svg { transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }
.btn:active { transform: scale(.985); }
.btn--ink { background: var(--ink-900); color: #fff; }
.btn--ink:hover { background: var(--sand-500); color: var(--ink-900); }
.btn--invert { background: #fff; color: var(--ink-900); }
.btn--invert:hover {
    background: #d6d2c4;
    box-shadow: 4px 3px 3px 0px #d6d2c4;
}
.btn--outline:hover {
    background: var(--ink-900);
    color: #fff;
    box-shadow: 4px 3px 3px 0px #000;
}
.btn--outline:hover { background: var(--ink-900); color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover {
    background: #fff;
    color: var(--ink-900);
    border-color: #fff;
    box-shadow: 4px 3px 3px 0px #d6d2c4;
}

/* Image placeholder (warm duotone, labelled — user drops in real photography) */
.media { position: relative; overflow: hidden; background: var(--sand-300); }
.media > img { width: 100%; height: 100%; object-fit: cover; }
.media[data-tone="0"] { background: linear-gradient(150deg,#d8d3c5,#b9b2a0); }
.media[data-tone="1"] { background: linear-gradient(150deg,#cdc7b6,#a59c87); }
.media[data-tone="2"] { background: linear-gradient(150deg,#c2bba8,#8f8773); }
.media[data-tone="3"] { background: linear-gradient(150deg,#d2cdbe,#ada691); }
.media[data-tone="4"] { background: linear-gradient(150deg,#bfb9a7,#928a75); }
.media[data-tone="5"] { background: linear-gradient(150deg,#3c3e3d,#1c1c1b); }
.media__label {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(0,0,0,.4);
}
.media[data-tone="5"] .media__label { color: rgba(255,255,255,.5); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   NAVIGATION — transparent over hero → frosted on scroll
   ============================================================ */
body:not(.home) .nav { 
    color: #000;
    border-bottom-color: var(--line);
}
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter); color: #000;
  transition: background .45s var(--ease-out), padding .45s var(--ease-out),
              border-color .45s var(--ease-out), color .25s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line); color: var(--ink-900);
  padding-block: 15px;
}
.nav__logo {
  font-family: var(--font-display); font-size: 25px; letter-spacing: var(--ls-logo);
  padding-left: var(--ls-logo); text-transform: uppercase; line-height: 1;
}
.nav__logo .dot { margin-left: -.06em; }
.nav__links { display: flex; gap: 36px; }
body.home .nav__link {
    color: #fff;
}
body.home .nav.is-solid .nav__link {
    color: #000;
}
body.home .nav__cta {
    border: 1px solid rgb(255 255 255);
    color: #fff;
}
.nav__link {
  font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: inherit; opacity: .68; position: relative; padding: 4px 0;
  transition: opacity .3s var(--ease-out);
}
.nav__link:hover { opacity: 1; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 11px 20px; border-radius: var(--radius-sm); border: 1px solid currentColor;
  transition: background .35s var(--ease-out), color .35s var(--ease-out);
}
.nav.is-solid .nav__cta { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.nav.is-solid .nav__cta:hover { background: var(--sand-500); color: var(--ink-900); border-color: var(--sand-500); }
.nav:not(.is-solid) .nav__cta:hover {
    background: #fff;
    color: var(--ink-900);
    box-shadow: 4px 3px 3px 0px #fff;
}
.nav__burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: #262523 center/cover no-repeat; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 26%, rgba(0,0,0,0) 50%, rgba(0,0,0,.62) 100%);
}
.hero__inner { position: relative; width: 100%; padding-bottom: clamp(40px, 6vw, 200px); }
.hero__eyebrow { color: rgba(255,255,255,.78); margin-bottom: clamp(18px, 3vw, 30px); }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--fs-display); line-height: .94; letter-spacing: -.015em;
  margin: 0; max-width: 16ch;
}
.hero__sub {
  font-size: var(--fs-lead); line-height: 1.6;
  color: rgba(255,255,255,.86); max-width: 44ch; margin: clamp(22px,3vw,32px) 0 0;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: clamp(28px, 4vw, 40px); }

/* Bottom meta bar */
.hero__bar {
  position: relative; width: 100%;
  border-top: 1px solid rgba(255,255,255,.22);
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(3, 1fr) auto;
  gap: 24px; padding-top: 22px; align-items: center;
}
.hero__bar-item { display: flex; flex-direction: column; gap: 6px; }
.hero__bar-k { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero__bar-v { font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 22px); letter-spacing: -.01em; }
.hero__scroll {
  display: inline-flex; align-items: center; gap: 12px; justify-self: end;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero__scroll .bar { width: 46px; height: 1px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll .bar::after { content: ""; position: absolute; inset: 0; background: #fff; animation: cue 2.4s var(--ease-inout) infinite; }
@keyframes cue { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.04; margin: 16px 0 0; max-width: 20ch; }
.sec-head__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-muted); line-height: 1.6; max-width: 38ch; }

/* ============================================================
   INTRO / MANIFESTO
   ============================================================ */
.intro { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.intro__title { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -.02em; margin: 18px 0 0; max-width: 16ch; }
.intro__body { color: var(--fg-muted); font-size: var(--fs-lead); font-weight: 400; line-height: 1.7; margin: 26px 0 0; max-width: 46ch; }
.intro__meta { display: flex; gap: clamp(40px, 5.5vw, 84px); margin: 46px 0 0; padding-top: 36px; border-top: 1px solid var(--line); }
.intro__meta-n { font-family: var(--font-display); font-size: clamp(46px, 5.4vw, 76px); font-weight: 500; letter-spacing: -.035em; line-height: .92; }
.intro__meta-l { font-size: var(--fs-caption); color: var(--fg-muted); margin-top: 14px; letter-spacing: .06em; text-transform: uppercase; }
.intro__cta { margin-top: 34px; }
.intro__figure { position: relative; }
.intro__figure .media { aspect-ratio: 4/5; }
.intro__tag {
  position: absolute; left: -1px; bottom: -1px; background: var(--bg); color: var(--fg);
  padding: 14px 20px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-muted);
  border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}

/* ============================================================
   SERVICES — editorial index list
   ============================================================ */
.svc { background: var(--sand-100); }
.svc__list { border-top: 1px solid var(--line-strong); }
.svc__row {
  display: grid; grid-template-columns: 64px minmax(0,1fr) minmax(0,1.1fr) 48px;
  gap: clamp(16px, 3vw, 40px); align-items: center;
  padding: clamp(22px, 2.6vw, 34px) 6px; border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left .45s var(--ease-out), background .45s var(--ease-out); cursor: pointer;
}
.svc__row::before {
  content: ""; position: absolute; inset: 0; background: var(--bg); opacity: 0;
  transition: opacity .45s var(--ease-out); z-index: 0;
}
.svc__row:hover { padding-left: 22px; }
.svc__row:hover::before { opacity: 1; }
.svc__row > * { position: relative; z-index: 1; }
.svc__n { font-size: var(--fs-caption); letter-spacing: .14em; color: var(--fg-faint); }
.svc__name { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 44px); letter-spacing: -.015em; line-height: 1.05; }
.svc__desc { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.55; max-width: 40ch; }
.svc__go { justify-self: end; color: var(--fg-muted); opacity: 0; transform: translateX(-10px); transition: all .4s var(--ease-out); }
.svc__row:hover .svc__go { opacity: 1; transform: none; }
.svc__foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: clamp(36px, 4vw, 54px); flex-wrap: wrap; }
.svc__foot p { color: var(--fg-muted); font-weight: 400; font-size: var(--fs-lead); max-width: 40ch; margin: 0; }

/* ============================================================
   SELECTED WORK
   ============================================================ */
.work__feature { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: end; margin-bottom: clamp(48px, 6vw, 96px); }
.work__feature .media { aspect-ratio: 16/10; }
.work__feature-body { padding-bottom: clamp(8px, 2vw, 28px); }
.work__cat { font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); }
.work__title { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -.02em; line-height: 1.02; margin: 16px 0 0; }
.work__feature-body p { color: var(--fg-muted); font-weight: 400; font-size: var(--fs-lead); line-height: 1.6; margin: 22px 0 30px; max-width: 38ch; }
.work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 44px); }
.work__card { cursor: pointer; }
.work__card:nth-child(2) { margin-top: clamp(40px, 8vw, 110px); }
.work__card .media { transition: transform 1.1s var(--ease-out); }
.work__card:hover .media { transform: scale(1.02); }
.work__card-cat { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); margin-top: 20px; }
.work__card-meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 6px; gap: 16px; }
.work__card-meta .t { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -.01em; }
.work__card-meta .y { font-size: var(--fs-caption); color: var(--fg-faint); letter-spacing: .08em; }

/* ============================================================
   WHY MORPHO — ink section
   ============================================================ */
.why { background: var(--bg-ink); color: var(--fg-on-dark); }
.why__head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: end; }
.why__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.06; margin: 16px 0 0; max-width: 16ch; }
.why__lead { color: var(--fg-on-dark-muted); font-size: var(--fs-lead); font-weight: 400; line-height: 1.7; max-width: 42ch; }
.why__stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line-on-dark); }
.why__stat { padding: clamp(32px, 4vw, 48px) clamp(20px, 2vw, 32px) 0; border-right: 1px solid var(--line-on-dark); }
.why__stat:last-child { border-right: 0; }
.why__stat-n { font-family: var(--font-display); font-size: clamp(48px, 5.2vw, 76px); line-height: .96; letter-spacing: -.03em; }
.why__stat-l { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin: 18px 0 0; }
.why__stat-d { font-size: var(--fs-small); color: rgba(255,255,255,.6); line-height: 1.6; margin: 12px 0 0; max-width: 26ch; }

/* ============================================================
   JOURNAL + PRESS
   ============================================================ */
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 44px); }
.post { display: flex; flex-direction: column; cursor: pointer; }
.post .media { aspect-ratio: 5/4; margin-bottom: 24px; transition: transform 1.1s var(--ease-out); }
.post:hover .media { transform: scale(1.02); }
.post__meta { display: flex; gap: 14px; align-items: center; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); }
.post__meta .dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.post__title { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -.01em; line-height: 1.15; margin: 16px 0 0; max-width: 22ch; }
.post__excerpt { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.6; margin: 14px 0 18px; max-width: 34ch; }
.post__read { margin-top: auto; }

.press { margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(36px, 4vw, 52px); border-top: 1px solid var(--line); }
.press__row { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 60px); flex-wrap: wrap; }
.press__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-faint); white-space: nowrap; }
.press__logos { display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); flex-wrap: wrap; }
.press__logo { font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); letter-spacing: .04em; color: var(--stone-400); transition: color .3s var(--ease-out); }
.press__logo:hover { color: var(--ink-900); }

/* ============================================================
   TESTIMONIALS — sand
   ============================================================ */
.testi { background: var(--sand-200); }
.testi__inner { max-width: 1100px; }
.testi__quote {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 54px); line-height: 1.18; letter-spacing: -.01em;
  margin: 26px 0 0; max-width: 24ch; min-height: 3.5em;
  transition: opacity .5s var(--ease-out);
}
.testi__by { display: flex; align-items: center; gap: 16px; margin-top: 44px; transition: opacity .5s var(--ease-out); }
.testi__av { width: 54px; height: 54px; border-radius: 50%; background: var(--sand-500); flex: none; }
.testi__nm { font-size: var(--fs-small); }
.testi__rl { font-size: var(--fs-caption); color: var(--fg-muted); margin-top: 3px; }
.testi.is-fading .testi__quote, .testi.is-fading .testi__by { opacity: 0; }
.testi__dots { display: flex; gap: 9px; margin-top: 40px; }
.testi__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand-500); transition: background .3s, width .3s; }
.testi__dot.is-on { background: var(--ink-900); width: 26px; border-radius: 4px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { position: relative; background: var(--ink-900); color: #fff; text-align: center; overflow: hidden; }
.cta__bg { position: absolute; inset: -6% 0; z-index: 0; will-change: transform; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,9,.5) 0%, rgba(18,14,9,.66) 100%); }
.cta__title { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -.02em; color: #fff; margin: 18px auto 34px; max-width: 15ch; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER — ink
   ============================================================ */
.footer { background: var(--bg-ink); color: var(--fg-on-dark); padding: clamp(64px, 9vw, 100px) var(--gutter) 36px; }
.footer__top { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px,6vw,70px); padding-bottom: clamp(48px, 7vw, 80px); }
.footer__h { font-family: var(--font-display); font-size: clamp(44px, 7vw, 92px); line-height: .98; letter-spacing: -.02em; margin: 16px 0 34px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fcol { display: flex; flex-direction: column; gap: 14px; }
.fcol__t {
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--fg-on-dark-muted);
    margin-bottom: 4px;
    font-family: 'Condor';
}
.contact-details ul li a {
    text-decoration: underline !important;
}
.fcol a, .fcol ul li a, .fcol span:not(.fcol__t) { font-size: var(--fs-small); color: rgba(255,255,255,.82); line-height: 1.6; transition: color .3s; width: max-content; }
.fcol a:hover { color: #fff; }
.footer__bot { max-width: var(--maxw); margin-inline: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 20px; flex-wrap: wrap; }
.footer__wm { font-family: var(--font-display); font-size: 22px; letter-spacing: var(--ls-logo); text-transform: uppercase; }
.fcol ul li a, .fcol ul li span {
	font-family: 'Poppins'; 
    font-weight: 400;
    font-display: swap;
}
.footer__legal {
    color: #fff;
    font-size: var(--fs-caption);
}
.footer__bot .wrap { padding: 0; }
.terms-link,
#menu-footer-bottom-menu {
    padding: 0;
}
.terms-link li,
#menu-footer-bottom-menu li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}
.terms-link li a,
#menu-footer-bottom-menu li a {
    font-size: 0.8rem;
    line-height: 1rem;
}
/* ============================================================
   MOBILE MENU
   ============================================================ */
.mm { position: fixed; inset: 0; z-index: 200; background: var(--ink-900); color: #fff; display: flex; flex-direction: column; padding: 24px var(--gutter); transform: translateY(-100%); visibility: hidden; transition: transform .6s var(--ease-inout), visibility .6s; }
.mm.is-open { transform: none; visibility: visible; }
.mm__top { display: flex; justify-content: space-between; align-items: center; }
.mm__top .nav__logo { color: #fff; }
.mm__links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.mm__link { font-family: var(--font-display); font-size: clamp(40px, 12vw, 72px); text-align: left; letter-spacing: -.01em; color: #fff; opacity: .9; transition: padding-left .4s var(--ease-out); }
.mm__link:hover { padding-left: 16px; opacity: 1; }
.mm__foot { display: flex; gap: 28px; font-size: var(--fs-caption); color: var(--fg-on-dark-muted); border-top: 1px solid var(--line-on-dark); padding-top: 22px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .intro, .why__head, .footer__top { grid-template-columns: 1fr; }
  .why__stats { grid-template-columns: 1fr 1fr; }
  .why__stat:nth-child(2) { border-right: 0; }
  .why__stat:nth-child(3), .why__stat:nth-child(4) { border-top: 1px solid var(--line-on-dark); }
  .work__feature { grid-template-columns: 1fr; }
  .journal__grid { grid-template-columns: 1fr 1fr; }
  .journal__grid .post:nth-child(3) { display: none; }
}
@media (max-width: 680px) {
  .hero__bar { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__scroll { display: none; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head__lead { max-width: none; }
  .svc__row { grid-template-columns: 40px 1fr 28px; padding-block: 20px; }
  .svc__desc { display: none; }
  .work__grid, .journal__grid, .footer__cols, .why__stats { grid-template-columns: 1fr; }
  .work__card:nth-child(2) { margin-top: 0; }
  .why__stat { border-right: 0 !important; border-top: 1px solid var(--line-on-dark); }
  .why__stat:first-child { border-top: 0; }
  .footer__bot { flex-direction: column; align-items: flex-start; }
  .intro__meta { flex-wrap: wrap; gap: 28px 40px; }
}

/* ============================================================
   ADDED — imagery & revised sections
   ============================================================ */

/* Intro figure now holds a real image */
.intro__figure .media { aspect-ratio: 4/5; }

/* ---- OUR EXPERTISE — text index (all 14, no images) ---- */
.svct { background: var(--sand-100); }
.svct__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 5vw, 84px);
  margin-top: clamp(34px, 4vw, 56px); border-top: 1px solid var(--line-strong); }
.svct__row { position: relative; display: grid; grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 1.6vw, 26px); align-items: center;
  padding: clamp(20px, 2vw, 28px) 8px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: padding-left .45s var(--ease-out); }
.svct__row::before { content: ""; position: absolute; inset: 0 -8px; z-index: 0;
  background: var(--bg); opacity: 0; transition: opacity .4s var(--ease-out); }
.svct__row:hover { padding-left: 22px; }
.svct__row:hover::before { opacity: 1; }
.svct__row > * { position: relative; z-index: 1; }
.svct__n { font-size: var(--fs-caption); letter-spacing: .14em; color: var(--fg-faint);
  font-variant-numeric: tabular-nums; align-self: start; padding-top: .55em; }
.svct__main { min-width: 0; display: grid; align-items: center; }
.svct__name, .svct__desc { grid-area: 1 / 1; }
.svct__name { font-family: var(--font-display); font-size: clamp(23px, 2.5vw, 33px);
  letter-spacing: -.015em; line-height: 1.06;
  transition: opacity .4s var(--ease-out), transform .45s var(--ease-out); }
.svct__desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; max-width: 40ch;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .45s var(--ease-out); }
.svct__row:hover .svct__name { opacity: 0; transform: translateY(-8px); }
.svct__row:hover .svct__desc { opacity: 1; transform: none; }
.svct__go { color: var(--fg-muted); opacity: 0; transform: translateX(-10px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); align-self: center; }
.svct__row:hover .svct__go { opacity: 1; transform: none; }
.svct__foot { display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-top: clamp(36px, 4vw, 56px); flex-wrap: wrap; }
.svct__foot p { color: var(--fg-muted); font-weight: 400; font-size: var(--fs-lead); max-width: 42ch; margin: 0; }

/* ---- WORK / PORTFOLIO images ---- */
.work__feature .media > img, .work__card .media > img { width: 100%; height: 100%; object-fit: cover; }

/* ---- WHY: edge-to-edge image (replaces stats) ---- */
.why__image { position: relative; width: 100%; margin-top: clamp(50px, 6vw, 92px);
  aspect-ratio: 16/9; overflow: hidden; }
.why__image-shift { position: absolute; inset: -9% 0; will-change: transform; }
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__image figcaption { position: absolute; left: var(--gutter); bottom: clamp(20px, 3vw, 34px);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.82);
  text-shadow: 0 1px 8px rgba(0,0,0,.45); }

/* ---- TESTIMONIALS avatar image ---- */
.testi__av { width: 56px; height: 56px; border-radius: 50%; background: var(--sand-500);
  flex: none; object-fit: cover; }

@media (max-width: 900px) {
  .why__image { aspect-ratio: 16/10; }
}
@media (max-width: 680px) {
  .svct__cols { grid-template-columns: 1fr; }
  .why__image { aspect-ratio: 4/5; }
  .work__grid, .footer__cols, .why__stats { grid-template-columns: 1fr; }
  .work__card:nth-child(2) { margin-top: 0; }
  .svct__main { display: block; }
  .svct__name { opacity: 1; transform: none; }
  .svct__desc { opacity: 1; transform: none; margin-top: 7px; pointer-events: auto; }
}
.text-justify {
    text-align: justify;
}
.logo img {
    width: 250px;
    filter: brightness(0) invert(1);
}
body:not(.home) img {
    filter: none;
}
.is-solid .logo img {
    filter: none;
}
#curtain img {
    width: 400px;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcol ul {
    padding: 0;
    margin: 0;
}
.fcol ul li {
    list-style: none;
    font-size: 1rem;
    font-weight: lighter;
}
.fcol ul li a {
    text-decoration: none;
}
.footer__top .fcol {
    gap: 0;
}
.footer-tagline h3 {
    color: var(--fg-on-dark-muted);
    margin-top: 0;
}
.footer-tagline {
	margin-top: 0;
	align-self: flex-start;
}
.text-right {
    text-align: right;
}
@media (max-width: 767px) {
    #curtain img {
        width: 300px;
    }
    .intro__meta {
        flex-wrap: inherit; 
    }
    .svct__name { 
        width: 100%;
        display: block;
    }
    .text-justify {
        text-align: left;
    }
    .footer__cols {
    	display: grid;
    	grid-template-columns: 1fr 1fr;
    	gap: 30px;
    }
    .footer__cols > :last-child {
    	grid-column: 1 / -1;
    }
   .footer-tagline-wrapper {
        display: none;
    } 
    span.footer-link {
        display: none;
    }
    .mm.is-open .mobile-logo img {
        width: 250px;
        filter: brightness(0) invert(1);
    }
    .mm__link { 
        text-align: center; 
    }
    .mm__foot {
        display: initial; 
        text-align: center;
    }
    .mb-20 {
        margin-bottom: 20px;
    }
    
    
}



/* ============================================================
   MORPHO — Work / Projects page
   A fresh editorial work page built on the MORPHO design system. 
   ============================================================ */
   
/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Statement hero ---------- */
.whero { position: relative; padding-top: clamp(150px, 18vh, 230px); padding-bottom: clamp(34px, 4vw, 56px); }
.whero__row { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.whero__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.whero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 11vw, 168px); line-height: .9; letter-spacing: -.025em;
  margin: 0;
}
.whero__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-muted); line-height: 1.6; max-width: 32ch; padding-bottom: 10px; }

/* ============================================================
   FEATURED CAROUSEL (01 / 04) — full-bleed rotating projects
   ============================================================ */
.feat { position: relative; }
.feat__viewport { position: relative; width: 100%; height: clamp(540px, 82vh, 940px); overflow: hidden; background: var(--ink-900); }
.feat__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease-out), visibility 1s; }
.feat__slide.is-on { opacity: 1; visibility: visible; }
.feat__slide-media { position: absolute; inset: 0; overflow: hidden; }
.feat__slide-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s var(--ease-out); }
.feat__slide.is-on .feat__slide-media img { transform: scale(1); }
.feat__scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 52%, rgba(0,0,0,.72) 100%); }

.feat__meta { position: absolute; left: 0; right: 0; bottom: clamp(96px, 12vw, 150px); color: #fff; z-index: 2; }
.feat__cat { font-size: var(--fs-eyebrow); letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.feat__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 92px); line-height: .98; letter-spacing: -.02em; margin: 16px 0 0; }
.feat__desc { font-size: var(--fs-lead); font-weight: 400; color: rgba(255,255,255,.84); line-height: 1.55; max-width: 46ch; margin: 18px 0 0; }
.feat__link { margin-top: clamp(20px, 2.4vw, 28px); }

/* Bottom control bar */
.feat__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 4vw, 48px); align-items: center;
  padding: clamp(20px, 2.4vw, 30px) var(--gutter);
  border-top: 1px solid rgba(255,255,255,.2);
}
.feat__count { font-family: var(--font-display); font-size: clamp(16px, 1.5vw, 20px); letter-spacing: .08em; color: #fff; font-variant-numeric: tabular-nums; }
.feat__count .sep { color: rgba(255,255,255,.5); margin: 0 4px; }
.feat__count .tot { color: rgba(255,255,255,.5); }
.feat__progress { position: relative; height: 1px; background: rgba(255,255,255,.28); overflow: hidden; }
.feat__progress > i { position: absolute; inset: 0; transform-origin: left; transform: scaleX(0); background: #fff; }
.feat__progress > i.run { animation: feat-fill var(--feat-dur, 6s) linear forwards; }
@keyframes feat-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.feat__nav { display: flex; gap: 12px; }
.feat__arrow {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s;
}
.feat__arrow:hover { background: #fff; color: var(--ink-900); border-color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .feat__slide-media img { transform: none !important; }
  .feat__progress > i.run { animation: none; transform: scaleX(1); }
}

/* ============================================================
   PROJECT INDEX — large text list + cursor-follow image preview
   ============================================================ */
.index { background: var(--bg); }
.index__head { display: grid; grid-template-columns: 1fr auto; gap: 28px 40px; align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.index__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.04; margin: 16px 0 0; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: var(--fs-eyebrow); letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: 11px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line-strong);
  color: var(--fg-muted); background: transparent; white-space: nowrap;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.chip:hover { color: var(--ink-900); border-color: var(--ink-900); }
.chip.is-on { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.plist { border-top: 1px solid var(--line-strong); }
.prow {
  position: relative; display: grid;
  grid-template-columns: 58px minmax(0,1.4fr) auto 44px;
  gap: clamp(14px, 2.6vw, 40px); align-items: center;
  padding: clamp(20px, 2.5vw, 34px) 6px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: padding-left .45s var(--ease-out), opacity .4s var(--ease-out);
}
.prow::before { content: ""; position: absolute; inset: 0 -6px; background: var(--sand-100); opacity: 0; transition: opacity .4s var(--ease-out); z-index: 0; }
.prow:hover::before { opacity: 1; }
.prow > * { position: relative; z-index: 1; }
.prow:hover { padding-left: 22px; }
.prow__n { font-size: var(--fs-caption); letter-spacing: .14em; color: var(--fg-faint); font-variant-numeric: tabular-nums; }
.prow__name { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 50px); letter-spacing: -.015em; line-height: 1.02; }
.prow__tags { display: flex; gap: 8px; flex-wrap: wrap; justify-self: end; }
.ptag {
  font-size: var(--fs-eyebrow); letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  color: var(--fg-muted); padding: 7px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill); white-space: nowrap;
  transition: border-color .35s var(--ease-out), color .35s var(--ease-out);
}
.ptag--year { color: var(--fg-faint); font-variant-numeric: tabular-nums; }
.prow:hover .ptag { border-color: var(--ink-900); color: var(--ink-900); }
.prow__go { justify-self: end; color: var(--fg-muted); opacity: 0; transform: translateX(-10px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.prow:hover .prow__go { opacity: 1; transform: none; }
.prow.is-hidden { display: none; }
.index.wrap .wpb_wrapper {
    padding: 80px 60px;
}
/* Cursor-follow preview (desktop only) */
.preview {
  position: fixed; top: 0; left: 0; z-index: 90; width: clamp(300px, 26vw, 420px); aspect-ratio: 4/3;
  pointer-events: none; overflow: hidden; opacity: 0;
  transform: translate(-50%, -50%) scale(.92); transition: opacity .45s var(--ease-out), transform .55s var(--ease-out);
  box-shadow: var(--shadow-lg); will-change: transform, left, top;
}
.preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s var(--ease-out); }
.preview img.is-on { opacity: 1; }
@media (hover: none) { .preview { display: none; } }

.index__foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: clamp(34px, 4vw, 54px); flex-wrap: wrap; }
.index__foot p { color: var(--fg-muted); font-weight: 400; font-size: var(--fs-lead); margin: 0; max-width: 40ch; }
.index__empty { display: none; padding: clamp(40px, 6vw, 80px) 0; color: var(--fg-muted); font-size: var(--fs-lead); font-weight: 400; }
.index__empty.is-on { display: block; }

/* ============================================================
   CLOSING STATEMENT BAND (image)
   ============================================================ */
.wcta { position: relative; background: var(--bg-ink); color: var(--fg-on-dark); text-align: center; overflow: hidden; padding-block: 0; }
.wcta__bg { position: absolute; inset: -6% 0; z-index: 0; will-change: transform; }
.wcta__bg img { width: 100%; height: 100%; object-fit: cover; }
.wcta__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,15,11,.62) 0%, rgba(18,15,11,.5) 45%, rgba(18,15,11,.72) 100%); }
.wcta .wrap { position: relative; z-index: 1; }
.wcta__title { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.0; letter-spacing: -.02em; color: #fff; margin: 0 auto 22px; max-width: 16ch; }
.wcta__lead { font-size: var(--fs-lead); font-weight: 400; color: rgba(255,255,255,.84); line-height: 1.6; max-width: 46ch; margin: 0 auto clamp(32px, 4vw, 44px); }
.wcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.wcta .wrap { 
    padding: 240px 0;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .whero__row { grid-template-columns: 1fr; align-items: start; }
  .whero__lead { padding-bottom: 0; max-width: 46ch; }
  .index__head { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .feat__meta { bottom: clamp(104px, 22vw, 140px); }
  .feat__bar { grid-template-columns: auto auto; gap: 16px; }
  .feat__progress { grid-column: 1 / -1; order: 3; width: 100%; }
  .prow { grid-template-columns: 40px 1fr; gap: 8px 14px; padding-block: 18px; }
  .prow__name { grid-column: 2; }
  .prow__tags { grid-column: 2; justify-self: start; gap: 6px; }
  .ptag { padding: 5px 11px; }
  .prow__go { display: none; }
}


/* ============================================================
   MORPHO — Services page
   Strictly modelled on fluid.glass/approach "Services" section:
   a sticky two-column layout — heading + intro pinned left,
   service blocks (title + body, divider lines) scrolling right.
   Loaded AFTER home.css + cinematic.css (shared tokens, nav,
   footer, buttons, eyebrows, reveals, grid-lines).
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Statement hero ---------- */
.svh { position: relative; padding-top: clamp(150px, 18vh, 230px); padding-bottom: clamp(20px, 3vw, 40px); }
.svh__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.svh__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5.2vw, 76px); line-height: 1.08; letter-spacing: -.02em; margin: 0;
}

/* ============================================================
   SERVICES — sticky two-column
   ============================================================ */
.sv { position: relative; }
.sv__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px, 7vw, 120px); align-items: start; }

/* Left: pinned heading + intro */
.sv__aside { position: sticky; top: clamp(110px, 14vh, 150px); padding-top: clamp(28px, 3.4vw, 46px); }
.sv__label { display: flex; align-items: baseline; gap: 12px; margin-bottom: clamp(20px, 2.4vw, 30px); }
.sv__label .k { font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-muted); }
.sv__label .v { font-family: var(--font-display); font-size: clamp(15px, 1.3vw, 19px); color: var(--fg-faint); font-variant-numeric: tabular-nums; }
.sv__heading { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); line-height: 1.04; letter-spacing: -.02em; margin: 0; max-width: 16ch; }
.sv__intro { font-size: var(--fs-body); font-weight: 400; color: var(--fg-muted); line-height: 1.7; margin: 0; max-width: 40ch; }

/* Right: scrolling service blocks */
.sv__list { border-top: 1px solid var(--line-strong); }
.svc-item {
  position: relative; padding: clamp(28px, 3.4vw, 46px) 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 64px 1fr; gap: clamp(14px, 2vw, 30px); align-items: baseline;
}
.svc-item__n { font-family: var(--font-display); font-size: clamp(14px, 1.2vw, 17px); letter-spacing: .04em; color: var(--fg-faint); font-variant-numeric: tabular-nums; }
.svc-item__main { min-width: 0; }
.svc-item__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 42px); letter-spacing: -.015em; line-height: 1.04; margin: 0; }
.svc-item__body { font-size: var(--fs-body); font-weight: 400; color: var(--fg-muted); line-height: 1.6; margin: clamp(12px, 1.4vw, 18px) 0 0; max-width: 48ch; }

/* ============================================================
   CLOSING STATEMENT (ink)
   ============================================================ */
.svcta { position: relative; background: var(--bg-ink); color: var(--fg-on-dark); text-align: center; overflow: hidden; }
.svcta .gridlines { --grid-line: rgba(255,255,255,.07); }
.svcta__title { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.0; letter-spacing: -.02em; margin: 18px auto 22px; max-width: 18ch; }
.svcta__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-on-dark-muted); line-height: 1.6; max-width: 46ch; margin: 0 auto clamp(32px, 4vw, 44px); }
.svcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .sv__grid { grid-template-columns: 1fr; gap: clamp(36px, 6vw, 56px); }
  .sv__aside { position: static; }
  .sv__intro { max-width: 52ch; }
}
@media (max-width: 600px) {
  .svc-item { grid-template-columns: 1fr; gap: 4px; }
  .svc-item__n { font-size: 13px; }
}


/* ============================================================
   MORPHO — Our Process page
   Loaded AFTER home.css + cinematic.css (shared tokens, nav,
   footer, buttons, eyebrows, reveals, grid-lines). A stepped
   editorial sequence: statement hero → numbered process steps
   with oversized ghost numerals → homepage CTA → footer.
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Statement hero ---------- */
.ph { position: relative; padding-top: clamp(150px, 18vh, 230px); padding-bottom: clamp(24px, 3vw, 44px); }
.ph__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.ph__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 8.5vw, 132px); line-height: 1.0; letter-spacing: -.02em; margin: 0;
}
.ph__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-muted); line-height: 1.6; max-width: 46ch; margin: clamp(24px, 3vw, 36px) 0 0; }

/* ============================================================
   PROCESS STEPS — oversized ghost numerals
   ============================================================ */
.proc { position: relative; }
.proc__rows { border-top: 1px solid var(--line-strong); }
.pstep {
  position: relative; display: grid;
  grid-template-columns: minmax(180px, 0.46fr) 1fr;
  gap: clamp(20px, 5vw, 90px); align-items: start;
  padding: clamp(40px, 5.5vw, 84px) 6px; border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--ease-out);
}
.pstep::before { content: ""; position: absolute; inset: 0 -6px; background: var(--sand-100); opacity: 0; transition: opacity .95s var(--ease-out); z-index: 0; }
.pstep:hover::before { opacity: 1; }
.pstep > * { position: relative; z-index: 1; }
.pstep:hover { padding-left: 22px; }

.pstep__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(58px, 8vw, 124px); line-height: .82; letter-spacing: -.03em;
  color: var(--sand-500); display: flex; align-items: baseline; gap: .12em;
}
.pstep__num .slash { font-size: .42em; color: var(--fg-faint); }

.pstep__main { min-width: 0; max-width: 46ch; padding-top: clamp(6px, 1vw, 14px); }
.pstep__label { font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); }
.pstep__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -.015em; line-height: 1.04; margin: clamp(12px, 1.4vw, 18px) 0 0; }
.pstep__body { font-size: var(--fs-body); font-weight: 400; color: var(--fg-muted); line-height: 1.65; margin: clamp(14px, 1.6vw, 20px) 0 0; }

/* ============================================================
   PRINCIPLES STRIP (ink) — small reassurance row
   ============================================================ */
.principles { background: var(--bg-ink); color: var(--fg-on-dark); }
.principles .gridlines { --grid-line: rgba(255,255,255,.07); }
.principles__head { max-width: none; margin-bottom: clamp(40px, 5vw, 64px); }
.principles__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.06; margin: 16px 0 0; white-space: nowrap; }
.principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-on-dark); }
.principle { padding: clamp(28px, 3vw, 42px) clamp(20px, 2vw, 30px) 0; border-right: 1px solid var(--line-on-dark); }
.principle:last-child { border-right: 0; }
.principle__k { font-family: var(--font-display); font-size: clamp(20px, 2vw, 27px); letter-spacing: -.01em; }
.principle__v { font-size: var(--fs-small); color: var(--fg-on-dark-muted); line-height: 1.6; margin: 12px 0 0; max-width: 30ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .pstep { grid-template-columns: 1fr; gap: 14px; }
  .pstep__num { font-size: clamp(52px, 14vw, 88px); }
  .principles__grid { grid-template-columns: 1fr; }
  .principle { border-right: 0; border-bottom: 1px solid var(--line-on-dark); padding-bottom: clamp(24px, 3vw, 36px); }
  .principle:last-child { border-bottom: 0; }
}
/* ============================================================
   MORPHO — Studio (About) page
   Page-specific styles. Loaded AFTER home.css + cinematic.css,
   so it reuses every shared token, button, eyebrow, reveal,
   grid-line, nav, footer and CTA style from the homepage.
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Statement hero (text-led, editorial) ---------- */
.shero { position: relative; padding-top: clamp(150px, 18vh, 230px); padding-bottom: clamp(40px, 5vw, 70px); }
.shero__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.shero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 8.5vw, 132px); line-height: .96; letter-spacing: -.02em;
  margin: 0; max-width: 18ch;
}
.shero__meta {
  display: grid; grid-template-columns: repeat(3, 1fr) 1.3fr; gap: 28px;
  margin-top: clamp(44px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line);
  align-items: start;
}
.shero__meta-k { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-faint); }
.shero__meta-v { font-family: var(--font-display); font-size: clamp(17px, 1.7vw, 23px); letter-spacing: -.01em; margin-top: 10px; line-height: 1.15; }
.shero__meta-lead { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.6; max-width: 36ch; }

/* Full-bleed hero image band */
.sband { position: relative; width: 100%; aspect-ratio: 21/9; overflow: hidden; }
.sband__shift { position: absolute; inset: -8% 0; will-change: transform; }
.sband img { width: 100%; object-fit: cover; }
.sband__cap {
  position: absolute; left: var(--gutter); bottom: clamp(18px, 2.5vw, 30px);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85);
  text-shadow: 0 1px 8px rgba(0,0,0,.5); z-index: 1;
}

/* ---------- Who we are (offset split) ---------- */
.who2 { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 125px); align-items: center; }
.who2__figure { position: relative; margin: 0; }
.who2__figure .media { aspect-ratio: 4/5; }
.who2__figure .media img { width: 100%; height: 100%; object-fit: cover; }
.who2__tag {
  position: absolute; right: -1px; bottom: -1px; background: var(--bg); color: var(--fg-muted);
  padding: 14px 20px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.who2__title { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -.02em; margin: 18px 0 0; max-width: 16ch; }
.who2__body { color: var(--fg-muted); font-size: var(--fs-lead); font-weight: 400; line-height: 1.7; margin: 26px 0 0; max-width: 46ch; }
.who2__body + .who2__body { margin-top: 18px; }
.who2__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: clamp(28px, 3vw, 40px); }
.who2__cta-note { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); }
.who2__sign { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.who2__sign-name { font-family: var(--font-display); font-size: 24px; letter-spacing: -.01em; }
.who2__sign-role { font-size: var(--fs-caption); color: var(--fg-muted); margin-top: 3px; }

/* ---------- Our story (editorial statement) ---------- */
.story { background: var(--sand-100); }
.story2 { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 96px); align-items: start; }
.story2__lead { position: sticky; top: 120px; }
.story2__title { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -.02em; margin: 16px 0 0; max-width: 15ch; }
.story2__body p { color: var(--fg-muted); font-size: var(--fs-lead); font-weight: 400; line-height: 1.75; margin: 0; max-width: 52ch; }
.story2__body p + p { margin-top: 24px; }

@media (max-width: 1000px) {
  .story2 { grid-template-columns: 1fr; }
  .story2__lead { position: static; }
  .story2__body { margin-top: 30px; }
}

/* ---------- Mission & Vision (ink) ---------- */
.mv { background: var(--bg-ink); color: var(--fg-on-dark); padding-bottom: 0; }
.mv__head { max-width: 60ch; }
.mv__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.06; margin: 16px 0 0; }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); }
.mv__card { }
.mv__k { display: flex; align-items: baseline; gap: 14px; }
.mv__k .num { font-family: var(--font-display); font-size: 15px; color: var(--fg-on-dark-muted); letter-spacing: .1em; }
.mv__k .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-on-dark-muted); }
.mv__stmt { font-family: var(--font-display); color: var(--fg-on-dark); font-size: clamp(26px, 3.2vw, 42px); line-height: 1.16; letter-spacing: -.01em; margin: 22px 0 0; max-width: 18ch; }
.mv__body { color: var(--fg-on-dark-muted); font-size: var(--fs-small); font-weight: 400; line-height: 1.7; margin: 22px 0 0; max-width: 40ch; }
.mv__band { position: relative; width: 100%; aspect-ratio: 24/9; overflow: hidden; margin-top: clamp(56px, 7vw, 104px); }
.mv__band-shift { position: absolute; inset: -8% 0; will-change: transform; }
.mv__band img { width: 100%; height: 100%; object-fit: cover; }

/* Stat row on dark */
.mv__stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(48px, 6vw, 84px); border-top: 1px solid var(--line-on-dark); }
.mv__stat { padding: clamp(28px, 3.4vw, 44px) clamp(18px, 2vw, 30px) 0; border-right: 1px solid var(--line-on-dark); }
.mv__stat:last-child { border-right: 0; }
.mv__stat-n { font-family: var(--font-display); font-size: clamp(40px, 4.6vw, 66px); line-height: .96; letter-spacing: -.03em; }
.mv__stat-l { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin: 16px 0 0; }

/* ---------- Brands we've worked with (statement + marquee) ---------- */
.awards__head { }
.awards__statement {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 7.2vw, 100px); line-height: 1.0; letter-spacing: -.025em;
  margin: 0; white-space: nowrap;
}

.marquee {
  position: relative; width: 100%; overflow: hidden;
  margin-top: clamp(48px, 6vw, 80px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; width: max-content; align-items: stretch;
  gap: clamp(16px, 2vw, 36px);
  animation: marquee-scroll 36s linear infinite;
}
.marquee__item {
  flex: none; display: flex; align-items: center; justify-content: center;
  padding: clamp(30px, 4vw, 56px) clamp(38px, 5vw, 78px);
  border: 1px solid transparent;
  transition: border-color .35s var(--ease-out);
}
.marquee__item img {
  height: clamp(40px, 4.6vw, 62px); width: auto; object-fit: contain; display: block;
  opacity: .78; transition: opacity .35s var(--ease-out);
}
.marquee__item:hover { border-color: var(--line-strong); }
.marquee__item:hover img { opacity: 1; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .who2, .story__grid, .mv__grid { grid-template-columns: 1fr; }
  .story__lead { position: static; }
  .shero__meta { grid-template-columns: 1fr 1fr; }
  .mv__stats { grid-template-columns: 1fr 1fr; }
  .mv__stat:nth-child(2) { border-right: 0; }
  .mv__stat:nth-child(3), .mv__stat:nth-child(4) { border-top: 1px solid var(--line-on-dark); }
  .who2__figure { max-width: 460px; }
}
@media (max-width: 600px) {
  .shero__meta { grid-template-columns: 1fr; gap: 20px; }
  .sband { aspect-ratio: 4/3; }
  .mv__band { aspect-ratio: 4/3; }
  .mv__stats { grid-template-columns: 1fr; }
  .mv__stat { border-right: 0; border-top: 1px solid var(--line-on-dark); }
  .mv__stat:first-child { border-top: 0; }
}
/* ============================================================
   MORPHO — Project detail (subpage)
   One reusable template populated from a JS data map via a
   ?p=<slug> query param. Loaded AFTER home.css + cinematic.css
   (shared tokens, nav, footer, buttons, eyebrows, reveals,
   grid-lines). Editorial case-study layout in MORPHO language.
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ============================================================
   HERO — title block + meta
   ============================================================ */
.ph-hero { position: relative; padding-top: clamp(132px, 16vh, 200px); padding-bottom: clamp(28px, 3.4vw, 48px); }
.ph-back { display: inline-flex; align-items: center; gap: 9px; font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: clamp(24px, 3vw, 38px); transition: color .3s var(--ease-out); }
.ph-back svg { transition: transform .35s var(--ease-out); }
.ph-back:hover { color: var(--ink-900); }
.ph-back:hover svg { transform: translateX(-4px); }

.ph-hero__eyebrow { color: var(--fg-muted); margin-bottom: clamp(16px, 2vw, 24px); }
.ph-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 8.5vw, 132px); line-height: .94; letter-spacing: -.025em; margin: 0;
}
.ph-hero__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-muted); line-height: 1.6; max-width: 50ch; margin: clamp(24px, 3vw, 36px) 0 0; }

/* Meta row */
/*.ph-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 60px); margin-top: clamp(36px, 4.4vw, 60px); border-top: 1px solid var(--line-strong); padding-top: clamp(24px, 2.6vw, 34px); }*/
.ph-meta {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 0.2fr;
    gap: clamp(20px, 3vw, 60px);
    margin-top: clamp(36px, 4.4vw, 60px);
    border-top: 1px solid var(--line-strong);
    padding-top: clamp(24px, 2.6vw, 34px);
}
.ph-meta__k { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); }
.ph-meta__v { font-family: var(--font-display); font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -.01em; line-height: 1.25; margin-top: 10px; }

/* ============================================================
   HERO IMAGE — full-bleed
   ============================================================ */
.ph-cover { position: relative; width: 100%; aspect-ratio: 16 / 8.5; overflow: hidden; background: var(--sand-200); }
.ph-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   OVERVIEW — two-column editorial
   ============================================================ */
.ph-over { position: relative; }
.ph-over__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 110px); align-items: start; }
.ph-over__label { display: flex; flex-direction: column; gap: 12px; position: sticky; top: clamp(110px, 14vh, 140px); }
.ph-over__k { font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); }
.ph-over__h { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -.015em; line-height: 1.12; }
.ph-over__body { font-size: var(--fs-lead); font-weight: 400; color: var(--fg); line-height: 1.7; }
.ph-over__body p { margin: 0 0 clamp(18px, 1.8vw, 26px); max-width: 52ch; }
.ph-over__body p:last-child { margin-bottom: 0; }
.ph-over__body em { font-style: italic; color: var(--fg-muted); }

/* ============================================================
   GALLERY — arrow-navigated carousel
   ============================================================ */
.ph-gal { position: relative; }

/* Pull-quote above the carousel */
.ph-quote { padding: 0 0 clamp(24px, 3vw, 44px); max-width: 24ch; }
.ph-quote__t { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 50px); line-height: 1.08; letter-spacing: -.02em; }

/* Carousel */
.ph-car { position: relative; overflow: hidden; background: var(--sand-200); aspect-ratio: 16 / 9; }
.ph-car__track { display: flex; height: 100%; will-change: transform; transition: transform .8s var(--ease-out); }
.ph-car__slide { flex: 0 0 100%; height: 100%; margin: 0; }
.ph-car__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ph-car__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(46px, 4vw, 58px); height: clamp(46px, 4vw, 58px); border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink-900);
  display: flex; align-items: center; justify-content: center; z-index: 3;
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out), opacity .3s;
}
.ph-car__arrow:hover { background: #fff; }
.ph-car__arrow:active { transform: translateY(-50%) scale(.94); }
.ph-car__arrow--prev { left: clamp(14px, 2vw, 26px); }
.ph-car__arrow--next { right: clamp(14px, 2vw, 26px); }

.ph-car__count {
  position: absolute; bottom: clamp(14px, 2vw, 24px); right: clamp(14px, 2vw, 26px); z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--fs-caption); letter-spacing: .12em; color: #fff;
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  padding: 9px 15px; font-variant-numeric: tabular-nums;
}
.ph-car__count .sep { opacity: .55; }
.ph-car__count #carCur { font-weight: 600; }

.ph-car__dots { display: flex; gap: 10px; justify-content: center; margin-top: clamp(18px, 2vw, 28px); }
.ph-car__dot { width: 36px; height: 2px; background: var(--line-strong); cursor: pointer; padding: 0; border: 0; transition: background .3s var(--ease-out), transform .3s var(--ease-out); }
.ph-car__dot:hover { background: var(--fg-muted); }
.ph-car__dot.is-on { background: var(--ink-900); transform: scaleY(2); }

/* ============================================================
   MORE PROJECTS (ink) — previous / next split
   ============================================================ */
.ph-more { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-ink); color: var(--fg-on-dark); }
.ph-more__cell { position: relative; min-height: clamp(260px, 32vw, 440px); display: flex; align-items: center; overflow: hidden; color: var(--fg-on-dark); }
.ph-more__cell--prev { border-right: 1px solid var(--line-on-dark); }
.ph-more__bg { position: absolute; inset: 0; opacity: .24; transition: opacity .6s var(--ease-out), transform 1.2s var(--ease-out); }
.ph-more__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-more__cell:hover .ph-more__bg { opacity: .42; transform: scale(1.04); }
.ph-more__inner { position: relative; z-index: 1; padding: clamp(28px, 5vw, 80px); width: 100%; }
.ph-more__cell--next { text-align: right; }
.ph-more__k { display: inline-flex; align-items: center; gap: 10px; font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-on-dark-muted); }
.ph-more__cell--next .ph-more__k { flex-direction: row; justify-content: flex-end; }
.ph-more__name { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 68px); line-height: 1.0; letter-spacing: -.02em; margin: clamp(12px, 1.4vw, 20px) 0 0; transition: opacity .3s var(--ease-out); }
.ph-more__svg { transition: transform .4s var(--ease-out); }
.ph-more__cell--prev:hover .ph-more__k svg { transform: translateX(-5px); }
.ph-more__cell--next:hover .ph-more__k svg { transform: translateX(5px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .ph-over__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 44px); }
  .ph-over__label { position: static; }
}
@media (max-width: 760px) {
  .ph-meta { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .ph-car { aspect-ratio: 4 / 3; }
  .ph-more { grid-template-columns: 1fr; }
  .ph-more__cell--prev { border-right: 0; border-bottom: 1px solid var(--line-on-dark); }
  .ph-more__cell--next { text-align: left; }
  .ph-more__cell--next .ph-more__k { justify-content: flex-start; }
}

/* ============================================================
   MORPHO — Contact page
   Page-specific styles. Loaded AFTER home.css + cinematic.css,
   reusing tokens, nav, footer, buttons, eyebrows, reveals,
   grid-lines. Adds: statement hero, two-column form + details,
   form fields, hours, and a small FAQ.
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { opacity: 1; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Statement hero ---------- */
.chero { position: relative; padding-top: clamp(132px, 15vh, 196px); padding-bottom: clamp(20px, 2.4vw, 32px); }
.chero__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.chero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 10vw, 150px); line-height: .9; letter-spacing: -.025em; margin: 0;
}
.chero__lead { font-size: var(--fs-lead); font-weight: 400; color: var(--fg-muted); line-height: 1.6; max-width: 44ch; margin: clamp(22px, 3vw, 32px) 0 0; }

/* ============================================================
   CONTACT BODY — form + details
   ============================================================ */
.contact { position: relative; padding-top: clamp(28px, 4vw, 52px); }
.contact__grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(40px, 7vw, 120px); align-items: start; }

/* ----- Form ----- */
.cform__head { margin-bottom: clamp(28px, 3vw, 40px); }
.cform__title { font-family: var(--font-display); font-size: var(--fs-h3); letter-spacing: -.01em; line-height: 1.1; margin: 0; }
.cform__note { font-size: var(--fs-small); color: var(--fg-muted); margin: 12px 0 0; }

.cform { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 2.6vw, 32px); }
.field { display: flex; flex-direction: column; gap: 10px; position: relative; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--fg-muted); }
.field__label .req { color: var(--fg-faint); }
.field input,
.field textarea,
.field select {
  font-family: var(--font-body); font-size: var(--fs-body); color: var(--fg);
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding: 12px 2px; width: 100%;
  transition: border-color .35s var(--ease-out);
  appearance: none; -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field input:focus,
.field textarea:focus,
.field select:focus { outline: none; border-bottom-color: var(--ink-900); }
.field select { cursor: pointer; padding-right: 28px; }
.field__selwrap { position: relative; }
.field__selwrap::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 9px; height: 9px;
  border-right: 1.5px solid var(--fg-muted); border-bottom: 1.5px solid var(--fg-muted);
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}

/* Validation */
.field.is-error input,
.field.is-error textarea,
.field.is-error select { border-bottom-color: var(--error); }
.field__err { font-size: var(--fs-caption); color: var(--error); min-height: 0; opacity: 0; transition: opacity .3s var(--ease-out); }
.field.is-error .field__err { opacity: 1; }

/* Budget chips */
.budget { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 14px; }
.budget__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bchip {
  font-size: var(--fs-eyebrow); letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  padding: 11px 18px; border-radius: var(--radius-pill); border: 1px solid var(--line-strong);
  color: var(--fg-muted); background: transparent;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.bchip:hover { color: var(--ink-900); border-color: var(--ink-900); }
.bchip.is-on { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.cform__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.cform__priv { font-size: var(--fs-caption); color: var(--fg-faint); max-width: 34ch; line-height: 1.5; }

/* Success state */
.cform__success {
  display: none; grid-column: 1 / -1;
  border: 1px solid var(--line-strong); padding: clamp(28px, 4vw, 44px);
  background: var(--sand-100);
}
.cform__success.is-on { display: block; }
.cform.is-sent .field,
.cform.is-sent .budget,
.cform.is-sent .cform__actions { display: none; }
.cform__success-k { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); }
.cform__success-t { font-family: var(--font-display); font-size: var(--fs-h3); letter-spacing: -.01em; margin: 12px 0 0; }
.cform__success-b { color: var(--fg-muted); font-size: var(--fs-small); line-height: 1.6; margin: 12px 0 0; max-width: 40ch; }

/* ----- Details column ----- */
.cdetails { display: flex; flex-direction: column; gap: clamp(34px, 4vw, 48px); }
.cblock__t { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 16px; }
.cblock__big { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -.01em; line-height: 1.3; }
.cblock a.cblock__big { display: inline-block; position: relative; width: max-content; }
.cblock a.cblock__big::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.cblock a.cblock__big:hover::after { transform: scaleX(1); }
.cblock__line { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.7; }
.cblock__rows { display: flex; flex-direction: column; gap: 8px; }
.crow { display: flex; justify-content: space-between; gap: 16px; font-size: var(--fs-small); padding: 9px 0; border-bottom: 1px solid var(--line); }
.crow:last-child { border-bottom: 0; }
.crow span:first-child { color: var(--fg-muted); }
.crow span:last-child { color: var(--fg); }
.csocial { display: flex; gap: 10px; flex-wrap: wrap; }
.csocial a {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--fg-muted);
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s;
}
.csocial a:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

/* ============================================================
   FAQ (ink)
   ============================================================ */
.faq { background: var(--bg-ink); color: var(--fg-on-dark); }
.faq .gridlines { --grid-line: rgba(255,255,255,.07); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.faq__title { font-family: var(--font-display); font-size: var(--fs-h2); letter-spacing: -.02em; line-height: 1.06; margin: 16px 0 0; max-width: 14ch; }
.faq__list { border-top: 1px solid var(--line-on-dark); }
.faq__item { border-bottom: 1px solid var(--line-on-dark); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 2.6vw, 30px) 0; color: #fff;
  font-family: var(--font-display); font-size: clamp(19px, 1.9vw, 25px); letter-spacing: -.01em; line-height: 1.25;
}
.faq__ico { position: relative; flex: none; width: 18px; height: 18px; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: rgba(255,255,255,.7); transition: transform .4s var(--ease-out), opacity .3s; }
.faq__ico::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__ico::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item.is-open .faq__ico::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease-out); }
.faq__a-inner { padding: 0 0 clamp(22px, 2.6vw, 30px); color: var(--fg-on-dark-muted); font-size: var(--fs-small); line-height: 1.7; max-width: 56ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .contact__grid { grid-template-columns: 1fr; gap: clamp(44px, 6vw, 64px); }
  .faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cform { grid-template-columns: 1fr; }
}
 #contact {
    border-top: 1px solid #222222;
}
select { 
    padding: 15px 2px !important; 
}
.story2__title { 
    font-size: 2.8rem; 
}
#story {
    padding: 140px 0 !important;
}
figure.mv__band.reveal-img { 
    margin: 80px 0;
}