/* ════════════════════════════════════════════════════════════════
   BRAVURA BUILD — branded architectural design system
   Inter Tight (display) + Inter (body) · copper / ink / ivory / blue
════════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "General Sans";
  src: url("../_assets/framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "General Sans";
  src: url("../_assets/framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "General Sans Placeholder";
  src: local("Arial");
  ascent-override: 99.89%;
  descent-override: 23.74%;
  line-gap-override: 9.89%;
  size-adjust: 101.11%;
}
:root {
  --brand-copper: #bc8d73;
  --brand-ink: #202020;
  --brand-ivory: #efe9e1;
  --brand-blue: #337ca0;
  --brand-copper-soft: #d8b9a7;
  --brand-blue-soft: #d8e7ee;
  --brand-copper-deep: #7a513d;
  --brand-blue-deep: #285f7a;

  --black: var(--brand-ink);
  --white: var(--brand-ivory);
  --g-f5:  #f7f2ec;
  --g-ed:  #d9d0c8;
  --g-a1:  #a99c93;
  --g-91:  #81756e;
  --g-63:  #5f5651;

  --f-d: 'Inter', system-ui, sans-serif;
  --f-b: 'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --px: clamp(20px, 4vw, 64px);
  --py: clamp(80px, 10vw, 140px);
  --max: 1560px;

  --e:  cubic-bezier(0.33, 1, 0.68, 1);   /* easeOutCubic ≈ bounce:0 spring */
  --e2: cubic-bezier(0.76, 0, 0.24, 1);   /* in-out (menu clip)     */
  --r:  40px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-b);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background-color .5s ease;   /* smooths dark↔light across SPA nav */
}
body.light { background: var(--white); color: var(--black); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
::selection { background: var(--brand-copper); color: var(--brand-ink); }
body.light ::selection { background: var(--brand-blue); color: var(--brand-ivory); }

/* ════════ PAGE TRANSITION — simple fade (matches Framer; no curtain) ════════ */
#pt { display: none; }            /* legacy curtain element, no longer used */
/* the page itself fades in on load and fades out on navigate */
#page { opacity: 0.001; overflow-x: clip; }
body.pt-done #page { opacity: 1; transition: opacity .22s ease; }
body.pt-leave #page { opacity: 0.001; transition: opacity .12s ease; }

/* ════════ NAV ════════ */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--px);
  transition: background .45s, backdrop-filter .45s;
}
#nav.scrolled {
  background: rgba(32,32,32,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-in {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.logo {
  font-family: var(--f-d);
  font-weight: 700; font-size: 17px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--white);
  display: inline-flex; align-items: center;
  transform: translateX(100px);
}
.logo img {
  height: auto;
  width: auto;
  margin-right: 8px;
}
.logo.logo-animated {
  width: 170px;
  height: 70px;
  overflow: hidden;
}
.formation-logo-frame,
.formation-logo-large {
  display: block;
  border: 0;
  background: transparent;
}
.formation-logo-frame {
  width: 130px;
  height: 70px;
  transform: translateX(40px);
  pointer-events: none;
}
.formation-logo-large {
  width: min(82vw, 720px);
  aspect-ratio: 8336 / 4501;
}
.logo-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-lks {
  display: flex; gap: 34px; list-style: none;
}
.nav-lks a {
  font-family: var(--f-d);
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color .25s;
}
.nav-lks a:hover, .nav-lks a.act { color: var(--brand-copper-soft); }
.nav-lks a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--brand-copper);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--e);
}
.nav-lks a:hover::after, .nav-lks a.act::after { transform: scaleX(1); transform-origin: left; }
.nav-r { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background: var(--brand-copper); color: var(--brand-ink);
  border: 1px solid var(--brand-copper);
  border-radius: var(--r);
  font-family: var(--f-d);
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--brand-ivory); color: var(--brand-ink); border-color: var(--brand-ivory); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); }
.menu-btn {
  display: none;
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
body.light:not(.detail-dark-nav) #nav:not(.scrolled) .nav-lks a { color: rgba(0,0,0,.68); }
body.light:not(.detail-dark-nav) #nav:not(.scrolled) .nav-lks a:hover,
body.light:not(.detail-dark-nav) #nav:not(.scrolled) .nav-lks a.act { color: var(--brand-blue-deep); }
body.light:not(.detail-dark-nav) #nav:not(.scrolled) .nav-lks a::after { background: var(--brand-copper); }
body.light:not(.detail-dark-nav) #nav:not(.scrolled) .menu-btn { color: var(--black); }

/* mobile menu */
#mmenu {
  position: fixed; inset: 0; z-index: 880;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--e2);
  pointer-events: none;
}
#mmenu.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
#mmenu a {
  font-family: var(--f-d);
  font-size: clamp(34px, 9vw, 56px); font-weight: 700;
  letter-spacing: -.03em; text-transform: uppercase;
  color: var(--white); line-height: 1.25;
  opacity: .85; transition: opacity .25s, padding-left .3s var(--e);
}
#mmenu a:hover { opacity: 1; padding-left: 12px; color: var(--brand-copper-soft); }

/* ════════ HERO ════════ */
.hero {
  position: sticky; top: 0; z-index: 0;        /* pins; next section scrolls up over it */
  height: 100vh; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
/* every section/footer after the hero rides above the pinned hero */
#page > section, #page > footer { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: -12% 0 0 0;
  background-size: cover; background-position: center;
  will-change: transform;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero video.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.22) 45%, rgba(0,0,0,.18) 100%);
}
.hero-in {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px) clamp(36px, 5vh, 64px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.hero-h {
  font-family: var(--f-d);
  font-size: clamp(46px, 9.2vw, 152px);
  font-weight: 700;
  line-height: .95; letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--brand-copper-soft);
}
.scroll-d {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; padding-bottom: 10px;
  font-family: var(--f-d);
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.8); cursor: pointer;
  transition: color .3s;
}
.scroll-d:hover { color: var(--white); }
.scroll-d svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* hero stats (studio page) */
.hero-stats { display: flex; gap: clamp(32px, 5vw, 80px); padding-bottom: 8px; }
.hstat .n {
  font-family: var(--f-d);
  font-size: clamp(34px, 4.5vw, 64px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1; color: var(--brand-copper-soft);
}
.hstat .l { font-size: 13px; color: var(--brand-blue-soft); margin-top: 8px; }

/* ════════ SHARED ════════ */
.sec { padding: var(--py) var(--px); }
.in { max-width: var(--max); margin: 0 auto; }

.lbl {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-d);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-copper-deep);
  margin-bottom: clamp(28px, 4vw, 56px);
}
.lbl::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-blue); box-shadow: 0 0 0 4px rgba(51,124,160,.12);
}
.sec-dark .lbl { color: var(--brand-copper-soft); }

.h2 {
  font-family: var(--f-d);
  font-size: clamp(38px, 5.4vw, 84px);
  font-weight: 600; line-height: 1;
  letter-spacing: -.04em;
}
.h3 {
  font-family: var(--f-d);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600; line-height: 1.05; letter-spacing: -.03em;
}
.p {
  font-size: 16px; line-height: 1.65;
  color: var(--g-63);
}
.sec-dark { background: var(--black); color: var(--white); }
.sec-dark .p { color: var(--g-a1); }
.sec-light { background: var(--white); color: var(--black); }

/* ════════ WHITE SUBPAGE HERO (projects / journals / gallery / contact) ════════ */
.subhero {
  background: var(--white); color: var(--black);
  min-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + clamp(60px,9vw,140px)) var(--px) clamp(26px,3.5vw,46px);
}
.subhero-in {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.subhero .scroll-d { color: var(--g-63); flex-shrink: 0; }
.subhero .scroll-d:hover { color: var(--brand-blue-deep); }
.subhero-tx { width: 62%; }
.subhero .lbl { margin-bottom: clamp(18px,2vw,30px); color: var(--brand-copper-deep); }
.subhero-h {
  font-family: var(--f-d);
  font-size: clamp(46px, 9.4vw, 156px);
  font-weight: 700; line-height: .9; letter-spacing: -.045em;
  text-transform: uppercase;
}

/* ════════ PROJECTS PAGE — text-left / image-right rows ════════ */
.prow {
  display: grid; grid-template-columns: 36% 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 56px) 0;
  border-top: 1px solid var(--g-ed);
  overflow: hidden;
}
.prow:last-child { border-bottom: 1px solid var(--g-ed); }
.prow-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-top: 6px;
}
.prow-name {
  font-family: var(--f-d);
  font-size: clamp(24px, 2.7vw, 46px);
  font-weight: 600; letter-spacing: -.03em; line-height: 1;
  text-transform: uppercase;
}
.prow-yr {
  font-family: var(--f-d);
  font-size: clamp(15px, 1.3vw, 19px); font-weight: 500;
  color: var(--g-91); white-space: nowrap;
}
.prow-media {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 1.34 / 1;
}
.prow-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--e), opacity 1.2s var(--e);
}
.prow-media:hover img { transform: scale(1.05); }
.prow-media .proj-arrow {
  position: absolute; top: clamp(16px,2vw,26px); right: clamp(16px,2vw,26px);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(188,141,115,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; color: var(--brand-ink);
  opacity: 0; transform: translateY(8px) rotate(-12deg);
  transition: opacity .4s, transform .45s var(--e);
}
.prow-media:hover .proj-arrow { opacity: 1; transform: none; }

/* big uppercase section heading (Selected Projects / Crafting Form / From Vision) */
.h-xl {
  font-family: var(--f-d);
  font-size: clamp(44px, 7.4vw, 120px);
  font-weight: 700; line-height: .92; letter-spacing: -.045em;
  text-transform: uppercase;
}

/* ════════ HOME · SELECTED PROJECTS (cards left, sticky heading right) ════════ */
/* sticky centred heading; projects alternate left / right as they scroll past */
.sel-stage { position: relative; }
.sel-title {
  position: sticky; top: 34vh; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center; pointer-events: none;
  margin-bottom: clamp(-360px, -32vh, -220px);
}
.sel-title .lbl { justify-content: center; }
.sel-title a { pointer-events: auto; }
.sel-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: clamp(40px, 7vw, 120px); }
.sel-row {
  display: grid; grid-template-columns: repeat(12, 1fr);
  align-items: center; min-height: 78vh;
}
.sel-title .h-xl { font-size: clamp(40px, 6vw, 96px); }
.sel-row:nth-child(odd)  .sel-pic  { grid-column: 1 / span 4; grid-row: 1; }
.sel-row:nth-child(odd)  .sel-info { grid-column: 11 / span 2; grid-row: 1; text-align: right; align-items: flex-end; }
.sel-row:nth-child(even) .sel-pic  { grid-column: 9 / span 4; grid-row: 1; }
.sel-row:nth-child(even) .sel-info { grid-column: 1 / span 2; grid-row: 1; }
.sel-pic { overflow: hidden; aspect-ratio: 0.8 / 1; }
.sel-pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--e), opacity 1.2s var(--e);
}
.sel-row:hover .sel-pic img { transform: scale(1.05); }
.sel-info { display: flex; flex-direction: column; gap: 8px; }
.sel-num { font-family: var(--f-d); font-size: clamp(28px,3vw,52px); font-weight: 700; letter-spacing: -.03em; color: var(--brand-blue); }
.sel-name {
  font-family: var(--f-d); font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600; letter-spacing: -.02em; text-transform: uppercase; line-height: 1.05;
}
.sel-yr { font-family: var(--f-d); font-size: 14px; font-weight: 500; color: var(--g-91); }

/* ════════ HOME · SERVICES (left image+card, right accordion w/ image row) ════════ */
.svc-top { margin-bottom: clamp(40px, 5vw, 72px); }
.svc-g2 {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 5vw, 90px); align-items: start;
}
.svc-left { position: sticky; top: calc(var(--nav-h) + 32px); }
.svc-left-img { overflow: hidden; aspect-ratio: 1 / 1; margin-bottom: 26px; }
.svc-left-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001); transition: transform 1.1s var(--e);
}
.svc-left:hover .svc-left-img img { transform: scale(1.04); }
.svc-left-tx { font-size: 15.5px; line-height: 1.7; color: var(--g-63); margin-bottom: 26px; max-width: 360px; }
.svc-bd-in .pill { margin: 6px 0 28px; }
.svc-imgs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
}
.svc-imgs .si-img { overflow: hidden; aspect-ratio: 1.1 / 1; }
.svc-imgs img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001); transition: transform 1s var(--e);
}
.svc-imgs .si-img:hover img { transform: scale(1.06); }
.svc-bd-in { padding-left: 62px; }
@media (max-width: 720px){ .svc-bd-in { padding-left: 0; } }

/* ════════ HOME · PROCESS — sticky stacking "pages" ════════ */
.proc-sec { background: var(--white); color: var(--black); }
.proc-head { padding: var(--py) var(--px) clamp(20px,3vw,40px); }
.proc2 { position: relative; }
.pstep {
  position: sticky; top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  background: var(--white);
  display: flex; align-items: center;
  padding: clamp(40px, 6vw, 70px) var(--px);
  border-top: 1px solid var(--g-ed);
  isolation: isolate;   /* keep each step's dim scrim within its own layer */
}
.pstep-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.5fr 1fr;
  gap: clamp(24px, 4vw, 72px); align-items: center;
}
/* dim scrim that fades in as the next step slides up over this one */
.pstep-dim {
  position: absolute; inset: 0; z-index: 6;
  background: #d7cec6; opacity: 0; pointer-events: none;
}
.pstep-no {
  font-family: var(--f-d);
  font-size: clamp(56px, 9vw, 150px);
  font-weight: 700; line-height: .9; letter-spacing: -.05em;
  color: var(--brand-copper);
}
.pstep-nm {
  font-family: var(--f-d);
  font-size: clamp(34px, 4.6vw, 74px);
  font-weight: 700; line-height: .98; letter-spacing: -.04em;
  text-transform: uppercase; margin-bottom: 22px;
}
.pstep-tx { font-size: clamp(15px,1.3vw,18px); line-height: 1.6; color: var(--g-63); max-width: 560px; margin-bottom: clamp(28px,3vw,44px); }
.pstep-img { overflow: hidden; aspect-ratio: 1.85 / 1; max-height: 50vh; }
.pstep-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--e);
}
.pstep:hover .pstep-img img { transform: scale(1.04); }

/* ════════ STUDIO · SCOPE OF WORK — sticky stacking pages ════════ */
.scope-sec { background: var(--white); color: var(--black); padding: 0; }
.scope-head {
  padding: var(--py) var(--px) clamp(20px,3vw,40px);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.scope-head > div:first-child { order: 2; }
.scope-head > div:last-child { order: 1; }
.scope-head .lbl { margin-bottom: 0; }
.scope-head h2 { text-align: left; }
.scope-head .p { text-align: left; margin-top: clamp(24px, 3vw, 40px); }
.scope2 { position: relative; }
.scope-step {
  position: sticky; top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  background: var(--white);
  display: flex; align-items: center;
  padding: clamp(40px, 6vw, 70px) var(--px);
  border-top: 1px solid var(--g-ed);
  isolation: isolate;
}
.scope-step-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 0.35fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.scope-step-dim {
  position: absolute; inset: 0; z-index: 6;
  background: #d7cec6; opacity: 0; pointer-events: none;
}
.scope-step-no {
  font-family: var(--f-d);
  font-size: clamp(56px, 9vw, 150px);
  font-weight: 700; line-height: .9; letter-spacing: -.05em;
  color: var(--brand-blue);
}
.scope-step-content h3 {
  font-family: var(--f-d);
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: clamp(18px, 2vw, 28px);
  color: var(--black);
}
.scope-step-content p {
  font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; color: var(--g-63); max-width: 520px;
}

/* ════════ HOME · GALLERY — 3D coverflow carousel ════════ */
.gal-sec { overflow: hidden; }
.gal-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px; margin-bottom: clamp(40px, 5vw, 70px);
}
.gal-head .lbl { justify-content: center; margin-bottom: 18px; }
.cflow {
  position: relative; width: 100%;
  height: clamp(340px, 48vw, 660px);
  perspective: 2200px;
  display: flex; align-items: center; justify-content: center;
  touch-action: pan-y; outline: none;
}
.cflow-track { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.cflow-slide {
  position: absolute; top: 50%; left: 50%;
  width: clamp(260px, 40vw, 600px);
  height: clamp(320px, 46vw, 600px);
  margin: 0; overflow: hidden;
  transform: translate(-50%, -50%);
  transition: transform .8s var(--e), opacity .8s var(--e);
  will-change: transform; cursor: pointer;
  background: var(--g-ed);
}
.cflow-slide img {
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.cflow-slide.is-active { cursor: grab; }
.cflow:active .cflow-slide.is-active { cursor: grabbing; }
.cflow-arw {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 150; width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-copper); color: var(--brand-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  transition: background .25s, transform .25s;
}
.cflow-arw:hover { background: var(--brand-blue); color: var(--brand-ivory); }
.cflow-prev { left: clamp(16px, 6vw, 8%); }
.cflow-next { right: clamp(16px, 6vw, 8%); }

/* ════════ HOME · JOURNAL CARDS ════════ */
.jcards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 36px);
}
.jc2 { display: block; }
.jc2-img { overflow: hidden; aspect-ratio: 1.18 / 1; margin-bottom: 22px; }
.jc2-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001); transition: transform 1s var(--e);
}
.jc2:hover .jc2-img img { transform: scale(1.05); }
.jc2-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.jc2-t {
  font-family: var(--f-d); font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
}
.jc2-dt { font-size: 13.5px; color: var(--g-91); white-space: nowrap; }

/* ════════ HOME · CTA (dome background) ════════ */
.cta2 {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(80px,12vw,160px) var(--px);
  color: var(--white);
}
.cta2-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.cta2-veil { position: absolute; inset: 0; z-index: 1; background: rgba(8,10,14,.5); }
.cta2-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta2 .cta-h { color: var(--brand-copper); margin: 14px 0 clamp(32px,4vw,52px); }
.cta2 .lbl { margin-bottom: 0; }

/* ════════ HOME · OUR STUDIO — Full-width hero with floating cards ════════ */
.hero-studio {
  position: relative; min-height: 120vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: clamp(60px, 8vw, 120px) var(--px);
  background: var(--black);
}
.hero-studio-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-studio-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--e);
}
.hero-studio:hover .hero-studio-bg img { transform: scale(1.05); }
.hero-studio-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.54) 50%, rgba(0,0,0,.68) 100%);
}
.hero-studio-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1560px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-studio-head {
  margin-bottom: clamp(50px, 6vw, 90px);
  color: var(--white);
}
.hero-studio-head .lbl {
  margin-bottom: clamp(20px, 2vw, 32px);
  justify-content: center;
}
.hero-studio-head h2 {
  font-family: var(--f-d);
  font-size: clamp(52px, 10vw, 140px);
  font-weight: 700; line-height: .95; letter-spacing: -.045em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-studio-head h2 .w { display: inline-block; }
.hero-studio-head h2 .c {
  opacity: 0.001; transform: translateY(40px);
  transition: opacity 1s var(--e), transform 1s var(--e);
}
.hero-studio-head h2.go .c { opacity: 1; transform: none; }

/* Floating Cards */
.hero-studio-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 22vw, 280px), 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  margin-bottom: clamp(60px, 8vw, 100px);
  width: 100%;
}
.studio-card {
  background: rgba(188,141,115,.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(188,141,115,.25);
  border-radius: clamp(12px, 2vw, 24px);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: clamp(14px, 2vw, 20px);
  color: var(--white);
  transition: all .4s var(--e), transform .4s var(--e);
  cursor: pointer;
  opacity: 0.001; transform: translateY(40px);
  animation-fill-mode: forwards;
}
.studio-card:hover {
  background: rgba(188,141,115,.28);
  border-color: rgba(188,141,115,.5);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.studio-card.go { opacity: 1; transform: none; }
.studio-card .card-no {
  font-family: var(--f-d);
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--brand-copper-soft);
}
.studio-card strong {
  font-family: var(--f-d);
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 700; letter-spacing: -.02em;
  line-height: 1.1;
}

/* CTA Section */
.hero-studio-cta {
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: clamp(16px, 2.5vw, 32px);
  padding: clamp(32px, 4vw, 56px);
  max-width: 720px;
  color: var(--white);
  display: flex; flex-direction: column; gap: clamp(24px, 3vw, 36px);
}
.hero-studio-cta p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

/* ════════ HOME · OUR PROCESS (Hearthly services transfer) ════════ */
.home-process {
  position: relative;
  min-height: 400vh;
  border-top: clamp(48px, 6vw, 96px) solid var(--white);
  overflow: visible;
  background: #111;
  color: #fff;
}
.home-process-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}
.home-process-bg,
.home-process-veil {
  position: absolute;
  inset: 0;
}
.home-process-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity .7s var(--e), transform 1.15s var(--e);
  will-change: opacity, transform;
}
.home-process-bg-img.is-active {
  opacity: 1;
  transform: scale(1.015);
}
.home-process-veil {
  background:
    linear-gradient(90deg, rgba(7,10,12,.7) 0%, rgba(7,10,12,.5) 48%, rgba(7,10,12,.73) 100%),
    rgba(0,0,0,.32);
}
.home-process-in {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(130px, 18vh, 210px) var(--px) clamp(70px, 8vh, 110px);
  display: flex;
  flex-direction: column;
}
.home-process-title {
  margin: 0;
  text-align: center;
  font-family: var(--f-d);
  font-size: clamp(58px, 6.7vw, 112px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: 0;
  color: #fff;
}
.home-process-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(54px, 8vw, 150px);
  align-items: end;
}
.home-process-copy {
  padding-bottom: clamp(28px, 3.8vw, 58px);
}
.home-process-panels {
  position: relative;
  min-height: 170px;
}
.home-process-panel[hidden] { display: none; }
.home-process-panel {
  max-width: 560px;
  animation: homeProcessText .42s var(--e) both;
}
.home-process-panel h3 {
  margin-bottom: clamp(18px, 2vw, 28px);
  font-family: var(--f-d);
  font-size: clamp(26px, 2.1vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.home-process-panel p {
  max-width: 510px;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
}
.home-process-steps {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.5vw, 24px);
  margin-top: clamp(34px, 4vw, 62px);
}
.home-process-steps button {
  width: clamp(62px, 4.7vw, 82px);
  height: clamp(62px, 4.7vw, 82px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(9,9,9,.94);
  color: #fff;
  font-family: var(--f-d);
  font-size: clamp(23px, 1.8vw, 33px);
  font-weight: 800;
  letter-spacing: 0;
  transition: background .35s var(--e), box-shadow .35s var(--e), transform .35s var(--e);
}
.home-process-steps button:hover {
  transform: translateY(-3px);
}
.home-process-steps button.is-active {
  background: rgba(9,9,9,.26);
  box-shadow: inset 0 0 0 3px #fff;
}
.home-process-media {
  justify-self: end;
  width: min(100%, 690px);
  aspect-ratio: 575 / 345;
  overflow: hidden;
  background: #111;
}
.home-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: opacity .35s var(--e), transform .55s var(--e);
  will-change: opacity, transform;
}
.home-process-media.is-changing img {
  opacity: .2;
  transform: scale(.985);
}
@keyframes homeProcessText {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ════════ HOME · OUR STUDIO (About) — image left, text right ════════ */
.about-g {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px); align-items: stretch;
  padding-top: clamp(24px, 3vw, 44px);
  border-top: 1px solid var(--g-ed);
}
.about-img {
  grid-column: 1 / span 5;
  position: relative; overflow: hidden; min-height: 720px;
  background: var(--g-ed);
  border-radius: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 0 1px rgba(0,0,0,.08);
  transition: box-shadow .4s var(--e);
}
.about-img:hover {
  box-shadow: 0 32px 100px rgba(0,0,0,.16), 0 0 1px rgba(0,0,0,.1);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--e);
}
.about-img:hover img { transform: scale(1.08); }
.about-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(188,141,115,.1) 0%, transparent 50%);
  pointer-events: none;
}
.about-img::after {
  content: ''; position: absolute; inset: auto 0 0; height: 40%;
  background: linear-gradient(to top, rgba(32,32,32,.58), transparent);
  pointer-events: none;
  z-index: 2;
}
.about-img figcaption {
  position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--f-d); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand-ivory);
}
.about-content {
  grid-column: 7 / -1;
  display: flex; flex-direction: column; min-width: 0;
}
.about-phrases {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: start; margin-bottom: clamp(56px, 8vw, 120px);
}
.about-phrases .ap-we {
  font-family: var(--f-d);
  font-size: clamp(24px, 2.4vw, 36px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1;
  color: var(--brand-blue-deep); padding-top: .25em;
}
.about-phrases ul { list-style: none; border-top: 2px solid var(--g-ed); }
.about-phrases li {
  display: grid; grid-template-columns: 50px 1fr; align-items: baseline; gap: clamp(18px, 2.5vw, 32px);
  padding: clamp(18px, 2vw, 28px) 0;
  border-bottom: 1px solid var(--g-ed);
  transition: padding-left .3s var(--e), background .3s;
}
.about-phrases li:hover {
  padding-left: clamp(8px, 1vw, 12px);
  background: rgba(188,141,115,.04);
}
.about-phrases li > span {
  font-family: var(--f-d); font-size: clamp(10px, 0.8vw, 13px); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--brand-blue);
}
.about-phrases li strong {
  font-family: var(--f-d); font-size: clamp(32px, 4vw, 62px);
  font-weight: 700; letter-spacing: -.045em; line-height: 1.02;
  color: var(--black);
  transition: color .3s var(--e), transform .4s var(--e);
}
.about-phrases li:hover strong {
  color: var(--brand-copper-deep); transform: translateX(clamp(6px, 1vw, 12px));
}
.about-text { margin-top: auto; }
.about-copy {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--g-ed);
}
.about-copy .p { max-width: 470px; }
.about-text .p + .p { margin-top: 0; }
.about-action {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: clamp(32px, 4vw, 58px);
}
.about-action > span {
  max-width: 230px; font-size: 12px; line-height: 1.5;
  letter-spacing: .06em; text-transform: uppercase; color: var(--g-91);
}
.about-text .pill { flex-shrink: 0; }

/* ════════ HOME · full-bleed image + OUR STORY (image left, text right) ════════ */
.fullbleed { line-height: 0; }
.fullbleed img { width: 100%; height: min(100vh, 68vw); object-fit: cover; }
.story2 {
  background: var(--white); color: var(--black);
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.story2-img { overflow: hidden; }
.story2-img img {
  width: 100%; height: 100%; min-height: 80vh; object-fit: cover;
  transition: transform 1.4s var(--e);
}
.story2-img:hover img { transform: scale(1.03); }
.story2-logo-embed {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(245, 245, 245);
  padding: clamp(40px, 6vw, 90px);
}
.story2-logo-embed .formation-logo-large {
  width: min(88%, 820px);
}
.story2-tx {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(56px, 8vw, 120px) var(--px);
}
.story2-tx .lbl { color: var(--brand-copper); margin-bottom: clamp(24px, 3vw, 38px); }
.story2-tx p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--brand-ink); max-width: 560px; }
.story2-tx p + p { margin-top: clamp(24px, 2.5vw, 36px); }

/* ════════ HOME · THE STORY (Hearthly about transfer) ════════ */
.hearthly-story {
  position: relative;
  height: 940px;
  min-height: 940px;
  overflow: hidden;
  contain: paint;
  container-type: inline-size;
  background: var(--white);
  color: rgb(25, 25, 25);
  padding: 0;
}
.hearthly-story-title {
  position: absolute;
  z-index: 2;
  top: 190px;
  left: 40px;
  right: 40px;
  height: 200px;
  margin: 0;
}
.hearthly-story-word {
  position: absolute;
  top: 0;
  margin: 0;
  font-family: var(--f-d);
  font-size: 200px;
  font-weight: 700;
  line-height: 200px;
  letter-spacing: 0;
  color: rgb(25, 25, 25);
  text-transform: uppercase;
}
.hearthly-story .story-word-left { left: 0; will-change: transform; }
.hearthly-story .story-word-right { right: 0; will-change: transform; }
.hearthly-story-image {
  position: absolute;
  z-index: 2;
  top: 368px;
  left: 0;
  right: 0;
  width: min(54%, 1039px);
  min-width: 0;
  aspect-ratio: 1039 / 685;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
}
.hearthly-story-image { will-change: transform; }
.hearthly-story-image img,
.hearthly-story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.hearthly-story-image img {
  transition: transform 1.35s var(--e);
}
.hearthly-story-image:hover img {
  transform: scale(1.035);
}
.hearthly-story-bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 388px;
  height: 552px;
  overflow: hidden;
  opacity: 1;
  background: linear-gradient(158deg, #c69472 0%, #bc8d73 48%, #a8775c 100%);
}
.hearthly-story-bg.rv { transform: none; }
.hearthly-story-bg img { display: none; }
.hearthly-story-copy {
  position: absolute;
  z-index: 3;
  top: 408px;
  width: clamp(196px, 19.5vw, 296px);
  font-family: var(--f-b);
  font-size: clamp(12.5px, 0.92vw, 13.75px);
  line-height: 1.72;
  color: rgba(26, 22, 18, 0.9);
}
.hearthly-story-copy p { margin: 0 0 0.95em; }
.hearthly-story-copy p:last-child { margin-bottom: 0; }
.story-copy-left { left: 40px; }
.story-copy-right { right: 40px; }

/* eyebrow label with leading rule */
.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  font-family: var(--f-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-ink);
}
.story-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: rgba(26, 22, 18, 0.55);
}
/* larger opening statement */
.story-lead {
  font-family: var(--f-d);
  font-size: clamp(15px, 1.3vw, 18.5px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--brand-ink);
  margin-bottom: 1.05em !important;
}
/* emphasized brand line */
.story-emph {
  color: var(--brand-ink);
  font-weight: 500;
}
/* pulled-out stat */
.story-stat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 22, 18, 0.28);
}
.story-stat-num {
  font-family: var(--f-d);
  font-size: clamp(40px, 3.6vw, 56px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--brand-ink);
}
.story-stat-num sup { font-size: 0.46em; top: -0.55em; }
.story-stat-lbl {
  font-family: var(--f-d);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 22, 18, 0.72);
}
@media (min-width: 1081px) and (max-width: 1199px) {
  .hearthly-story {
    height: 810px;
    min-height: 810px;
  }
  .hearthly-story-title {
    top: 190px;
    left: 25px;
    right: 25px;
    height: calc((100vw - 15px) * .12);
    height: calc(12cqw - .08px);
  }
  .hearthly-story-word {
    font-size: calc((100vw - 15px) * .12);
    line-height: calc((100vw - 15px) * .12);
    font-size: calc(12cqw - .08px);
    line-height: calc(12cqw - .08px);
    font-weight: 700;
  }
  .hearthly-story-image {
    top: 245px;
    width: 85%;
  }
  .hearthly-story-bg {
    top: 362px;
    height: 448px;
  }
}

/* ════════ STUDIO · PARTNERS marquee ════════ */
.pmarq {
  overflow: hidden;
  border-top: 1px solid var(--g-ed);
  border-bottom: 1px solid var(--g-ed);
}
.pmarq-track {
  display: flex; align-items: center; width: max-content;
  padding: clamp(22px, 3vw, 40px) 0;
  animation: pmarq 96s linear infinite;
  will-change: transform;
}
.pmarq:hover .pmarq-track { animation-play-state: paused; }
.partner-mark {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  gap: clamp(12px, 1.8vw, 24px);
  padding-left: clamp(26px, 4vw, 64px);
  color: var(--brand-ink); white-space: nowrap;
}
.partner-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(82px, 9vw, 140px); height: clamp(42px, 5vw, 68px);
  flex: 0 0 auto;
}
.partner-logo img {
  display: block; width: 100%; height: 100%;
  object-fit: contain;
}
.partner-name {
  font-family: var(--f-d); font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 600; letter-spacing: -.02em; text-transform: uppercase;
}
.partner-mark::after {
  content: '✦';
  padding-left: clamp(12px, 2vw, 34px);
  font-size: clamp(11px, .8vw, 15px);
  color: var(--brand-blue);
}
@keyframes pmarq { to { transform: translateX(-50%); } }

/* ════════ FOOTER wordmark ════════ */
.ft-wordmark {
  font-family: var(--f-d); font-weight: 700;
  font-size: clamp(90px, 21.5vw, 400px);
  line-height: .78; letter-spacing: -.04em; text-transform: uppercase;
  text-align: center; white-space: nowrap;
  margin: clamp(40px,6vw,90px) 0 -.12em;
  background: var(--brand-copper);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  user-select: none;
}
.ft-wordmark-home {
  font-size: clamp(82px, 19vw, 360px);
  padding-inline: .02em;
}

/* split-text reveal — fade + rise (matches Framer "Appear": y 40px, opacity, ~1s spring) */
.split .w { display: inline-block; vertical-align: top; }
.split .c {
  display: inline-block;
  opacity: 0.001;
  transform: translateY(40px);
  transition: opacity 1s var(--e), transform 1s var(--e);
}
.split.go .c { opacity: 1; transform: none; }

/* fade-up reveal — same Framer appear, slightly longer */
.rv { opacity: 0.001; transform: translateY(40px); transition: opacity 1.15s var(--e), transform 1.15s var(--e); }
.rv.go { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* horizontal slide-in reveal — matches Framer project images (translateX 200px → 0) */
.rv-x { opacity: 0.001; transform: translateY(150px); transition: opacity 1.2s var(--e), transform 1.2s var(--e); will-change: transform; }
.rv-x.go { opacity: 1; transform: none; }
/* the media frame itself clips so the inner image never overflows during the slide */
.sel-pic, .prow-media { overflow: hidden; }

/* pill buttons */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--r);
  font-family: var(--f-d);
  font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color .35s;
}
.pill span { position: relative; z-index: 1; }
.pill svg { position: relative; z-index: 1; transition: transform .3s var(--e); }
.pill:hover svg { transform: translate(3px, -3px); }
.pill-b { background: var(--brand-ink); color: var(--brand-ivory); border: 1px solid var(--brand-ink); }
.pill-b:hover { background: var(--brand-copper); color: var(--brand-ink); border-color: var(--brand-copper); }
.pill-w { background: var(--brand-ivory); color: var(--brand-ink); border: 1px solid rgba(188,141,115,.55); }
.pill-w:hover { background: var(--brand-blue-deep); color: var(--brand-ivory); border-color: var(--brand-blue-deep); }
.lnk {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-d);
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity .3s, gap .3s;
}
.lnk:hover { opacity: 1; gap: 13px; color: var(--brand-blue-deep); }

/* ════════ HOME · STUDIO INTRO ════════ */
.studio-g {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.cycle-h {
  font-family: var(--f-d);
  font-size: clamp(40px, 5.8vw, 92px);
  font-weight: 600; line-height: 1.02; letter-spacing: -.04em;
  margin-top: clamp(20px, 2.5vw, 36px);
}
.cycle-box {
  display: inline-grid; vertical-align: top;
  overflow: hidden; height: 1.05em;
}
.cycle-box span {
  grid-area: 1/1;
  transform: translateY(110%);
  transition: transform .65s var(--e);
  color: var(--brand-copper); white-space: nowrap;
}
.cycle-box span.cur { transform: translateY(0); }
.cycle-box span.out { transform: translateY(-110%); }
.studio-r .p + .p { margin-top: 22px; }
.studio-r .pill { margin-top: 40px; }

/* ════════ HOME · STORY ════════ */
.story-big {
  font-family: var(--f-d);
  font-size: clamp(24px, 3.1vw, 48px);
  font-weight: 500; line-height: 1.22; letter-spacing: -.02em;
  max-width: 1180px;
  color: var(--g-91);
}
.story-big .hl { color: var(--white); }
.story-stats {
  display: flex; gap: clamp(40px, 7vw, 120px);
  margin-top: clamp(44px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.sstat .n {
  font-family: var(--f-d);
  font-size: clamp(40px, 5vw, 76px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1; color: var(--brand-copper-soft);
}
.sstat .l { font-size: 14px; color: var(--g-91); margin-top: 10px; }

/* ════════ PROJECTS ════════ */
.proj-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(36px, 5vw, 72px);
}
.proj-list { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); }
.proj {
  position: relative; display: block;
  border-radius: 0; overflow: hidden;
}
.proj-img {
  height: clamp(320px, 60vw, 720px);
  overflow: hidden; position: relative;
}
.proj-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform 1.1s var(--e);
}
.proj:hover .proj-img img { transform: scale(1.045); }
.proj-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 52%);
}
.proj-meta {
  position: absolute; left: clamp(20px, 3vw, 44px); right: clamp(20px, 3vw, 44px);
  bottom: clamp(20px, 3vw, 40px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  color: var(--white); z-index: 1;
}
.proj-name {
  font-family: var(--f-d);
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 600; letter-spacing: -.03em; line-height: 1;
}
.proj-yr {
  font-family: var(--f-d);
  font-size: clamp(15px, 1.4vw, 20px); font-weight: 500;
  color: rgba(255,255,255,.8);
}
.proj-arrow {
  position: absolute; top: clamp(18px, 2.5vw, 32px); right: clamp(18px, 2.5vw, 32px);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(188,141,115,.86);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-ink); z-index: 1;
  opacity: 0; transform: translateY(8px) rotate(-12deg);
  transition: opacity .4s, transform .45s var(--e);
}
.proj:hover .proj-arrow { opacity: 1; transform: none; }

/* ════════ SERVICES ════════ */
.svc-g {
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.svc-l { position: sticky; top: calc(var(--nav-h) + 32px); }
.svc-card {
  margin-top: clamp(32px, 4vw, 56px);
  padding: clamp(26px, 3vw, 40px);
  background: #292929;
  border: 1px solid rgba(188,141,115,.28);
  border-radius: 20px;
}
.svc-card p { font-size: 15px; line-height: 1.7; color: var(--g-a1); margin-bottom: 26px; }
.svc-list { list-style: none; border-top: 1px solid var(--g-ed); }
.svc {
  border-bottom: 1px solid var(--g-ed);
}
.svc-hd {
  display: flex; align-items: baseline; gap: clamp(18px, 3vw, 40px);
  padding: clamp(24px, 3vw, 38px) 0;
  cursor: pointer; width: 100%; text-align: left;
}
.svc-no {
  font-family: var(--f-d);
  font-size: 14px; font-weight: 600;
  color: var(--brand-blue); min-width: 38px;
  transition: color .3s;
}
.svc.open .svc-no, .svc-hd:hover .svc-no { color: var(--brand-copper); }
.svc-nm {
  font-family: var(--f-d);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 600; letter-spacing: -.03em;
  color: var(--black); flex: 1;
  transition: color .35s;
}
.svc-x {
  align-self: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(51,124,160,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); flex-shrink: 0;
  transition: transform .45s var(--e), background .3s, color .3s;
}
.svc.open .svc-x { transform: rotate(45deg); background: var(--brand-blue); color: var(--brand-ivory); }
.svc-bd {
  max-height: 0; overflow: hidden;
  transition: max-height .6s var(--e);
}
.svc-bd-in { padding: 0 0 38px 62px; max-width: 760px; }
.svc-bd p { font-size: clamp(15px,1.3vw,18px); line-height: 1.6; color: var(--g-63); margin-bottom: 24px; max-width: 520px; }

/* ════════ PROCESS ════════ */
.proc-hd { margin-bottom: clamp(40px, 6vw, 80px); }
.proc { border-top: 1px solid var(--g-ed); }
.step {
  display: grid; grid-template-columns: 160px 1.1fr 1.4fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(32px, 4.5vw, 64px) 0;
  border-bottom: 1px solid var(--g-ed);
}
.step-no {
  font-family: var(--f-d);
  font-size: clamp(22px, 2.4vw, 34px); font-weight: 600;
  color: var(--brand-copper); letter-spacing: -.02em;
}
.step-nm {
  font-family: var(--f-d);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.1;
  text-transform: uppercase;
}
.step-p { font-size: 15.5px; line-height: 1.7; color: var(--g-63); max-width: 560px; }

/* ════════ GALLERY ════════ */
.gal-g {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(160px, 24vw, 360px);
  gap: clamp(10px, 1.2vw, 18px);
}
.gal-it { position: relative; overflow: hidden; cursor: pointer; }
.gal-it.tall { grid-row: span 2; }
.gal-it.wide { grid-column: span 2; }
.gal-it img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform 1s var(--e), filter .5s;
}
.gal-it:hover img { transform: scale(1.05); }

/* ════════ JOURNALS ════════ */
.jrn-list { border-top: 1px solid var(--g-ed); }
.jrn {
  display: grid; grid-template-columns: 300px 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(26px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--g-ed);
  transition: background .35s;
}
.jrn:hover { background: rgba(188,141,115,.09); }
.jrn-img { width: 300px; height: 190px; overflow: hidden; }
.jrn-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--e);
}
.jrn:hover .jrn-img img { transform: scale(1.06); }
.jrn-t {
  font-family: var(--f-d);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 12px;
}
.jrn-x { font-size: 15px; line-height: 1.65; color: var(--g-63); max-width: 620px; }
.jrn-dt {
  font-family: var(--f-d);
  font-size: 14px; font-weight: 500; color: var(--g-91);
  white-space: nowrap;
}

/* journal cards grid (journals page) */
.jrn-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.jcard { display: block; }
.jcard-img { height: clamp(220px, 24vw, 340px); overflow: hidden; }
.jcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--e);
}
.jcard:hover .jcard-img img { transform: scale(1.05); }
.jcard-dt { font-size: 13px; color: var(--brand-blue-deep); margin: 18px 0 8px; }
.jcard-t {
  font-family: var(--f-d);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.15;
  margin-bottom: 10px;
}
.jcard-x { font-size: 14.5px; line-height: 1.6; color: var(--g-63); }

/* ════════ STUDIO PAGE ════════ */
.about-big {
  font-family: var(--f-d);
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 400; line-height: 1.52; letter-spacing: 0;
  color: var(--g-63); max-width: 920px;
}
.about-big + .about-big { margin-top: clamp(20px, 2.2vw, 34px); }
.about-big .hl { color: var(--black); }

/* ════════ STUDIO ABOUT SECTION ════════ */
.about-sec { padding: var(--py) var(--px); }
.about-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-logo {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--g-f5); border-radius: var(--r);
  padding: clamp(20px, 3vw, 40px);
}
.about-logo img {
  width: 100%; height: auto; object-fit: contain;
}
.about-logo .formation-logo-large {
  width: min(100%, 520px);
}
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); }
  .about-logo { aspect-ratio: auto; max-width: 380px; margin: 0 auto; }
}

.partners { border-top: 1px solid var(--g-ed); }
.partner {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(22px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--g-ed);
  transition: padding-left .35s var(--e);
}
.partner:hover { padding-left: 16px; }
.partner-n {
  font-family: var(--f-d);
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 600; letter-spacing: -.03em;
}
.partner-y { font-family: var(--f-d); font-size: 15px; color: var(--g-91); }

.team-g {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.tm { }
.tm-img {
  aspect-ratio: 3/3.6; overflow: hidden; background: var(--g-f5);
}
.tm-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: transform .9s var(--e), filter .5s;
}
.tm:hover .tm-img img { transform: scale(1.05); filter: grayscale(0); }
.tm-role { font-size: 12.5px; color: var(--brand-blue-deep); margin: 16px 0 4px; text-transform: uppercase; letter-spacing: .06em; }
.tm-name {
  font-family: var(--f-d);
  font-size: clamp(18px, 1.8vw, 24px); font-weight: 600; letter-spacing: -.02em;
}

.awards { border-top: 1px solid var(--g-ed); counter-reset: aw; }
.award {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 56px);
  padding: clamp(20px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--g-ed);
  counter-increment: aw;
  transition: padding-left .35s var(--e);
}
.award:hover { padding-left: 16px; }
.award::before {
  content: counter(aw, decimal-leading-zero) " /";
  font-family: var(--f-d); font-size: 14px; font-weight: 600; color: var(--brand-copper);
  min-width: 48px;
}
.award-n {
  font-family: var(--f-d);
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 600; letter-spacing: -.025em;
}
.award-y { margin-left: auto; font-family: var(--f-d); font-size: 14px; color: var(--g-91); }

/* ════════ STUDIO · NICHE AWARD ════════ */
.niche-sec { padding-top: 0; }

/* Niche Gallery */
.niche-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(40px, 6vw, 80px);
}
.niche-item { }
.niche-img {
  aspect-ratio: 3/3.6; overflow: hidden; background: var(--g-f5);
}
.niche-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: transform .9s var(--e), filter .5s;
}
.niche-item:hover .niche-img img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.niche-label {
  font-size: 12.5px; color: var(--brand-blue-deep);
  margin: 16px 0 4px; text-transform: uppercase;
  letter-spacing: .06em;
}
.niche-year {
  font-family: var(--f-d);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600; letter-spacing: -.02em;
  color: var(--black);
}
.niche-info {
  padding: 0;
}

@media (max-width: 1080px) {
  .niche-gallery { grid-template-columns: repeat(2, 1fr); }
  .niche-award-badge { width: clamp(160px, 25vw, 300px); height: clamp(160px, 25vw, 300px); }
}
@media (max-width: 720px) {
  .niche-gallery { grid-template-columns: 1fr; }
  .niche-award-badge { width: clamp(140px, 50vw, 250px); height: clamp(140px, 50vw, 250px); }
}

/* ════════ CTA ════════ */
.cta { text-align: center; padding: clamp(100px, 14vw, 200px) var(--px); }
.cta .lbl { justify-content: center; }
.cta-h {
  font-family: var(--f-d);
  font-size: clamp(48px, 9vw, 150px);
  font-weight: 700; line-height: .98; letter-spacing: -.04em;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.cta-p { font-size: 16px; color: var(--g-a1); max-width: 560px; margin: 0 auto clamp(36px, 4vw, 56px); line-height: 1.7; }

/* ════════ FOOTER ════════ */
footer {
  background: var(--black); color: var(--white);
  padding: clamp(56px, 7vw, 100px) var(--px) 28px;
  overflow: hidden; border-top: 1px solid rgba(188,141,115,.34);
}
.ft-g {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(32px, 4vw, 70px);
  padding-bottom: clamp(48px, 6vw, 90px);
}
.ft-h {
  font-family: var(--f-d); font-size: 12.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-copper); margin-bottom: clamp(26px, 3vw, 42px);
  display: flex; align-items: center; gap: 9px;
}
.ft-h::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); }
.ft-addr {
  font-style: normal;
  font-size: clamp(21px, 2.1vw, 30px); line-height: 1.28;
  letter-spacing: -.01em; color: var(--white);
  margin-bottom: clamp(22px, 2.4vw, 34px);
}
.ft-sm {
  display: block; font-family: var(--f-d);
  font-size: 12.5px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: var(--g-a1); margin-top: 9px; transition: color .25s;
}
.ft-sm:hover { color: var(--brand-copper-soft); }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: clamp(7px, 0.8vw, 14px); }
.ft-links a {
  font-size: clamp(21px, 2.1vw, 30px); line-height: 1.2; letter-spacing: -.01em;
  color: var(--white); transition: color .25s, padding-left .3s var(--e);
}
.ft-links a:hover { color: var(--brand-copper-soft); padding-left: 6px; }
.ft-bt {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(32px, 4vw, 70px);
  align-items: center; padding-bottom: clamp(40px, 5vw, 64px);
}
.ft-soc {
  grid-column: 1; display: flex; flex-wrap: wrap;
  gap: 12px clamp(20px, 3vw, 40px);
}
.ft-soc a {
  font-family: var(--f-d); font-size: 13px; font-weight: 500;
  letter-spacing: .05em; color: var(--g-a1); text-transform: uppercase;
  transition: color .25s;
}
.ft-soc a:hover { color: var(--brand-blue-soft); }
.ft-cp { grid-column: 2; font-size: 14.5px; color: var(--g-91); }

/* ════════ CONTACT FORM ════════ */
.cf-g {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 110px); align-items: start;
}
.cf-info .h3 { margin-bottom: 24px; }
.cf-info .p { margin-bottom: 32px; max-width: 420px; }
.cf-meta { display: flex; flex-direction: column; gap: 14px; }
.cf-meta a, .cf-meta span { font-size: 15.5px; color: var(--g-63); }
.cf-meta a:hover { color: var(--brand-blue-deep); }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fld { margin-bottom: 22px; }
.fld label {
  display: block;
  font-family: var(--f-d); font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--g-63); margin-bottom: 9px;
}
.fld input, .fld select, .fld textarea {
  width: 100%;
  font: 500 15.5px/1.5 var(--f-b);
  color: var(--black);
  background: #f8f3ed;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .3s, background .3s;
  appearance: none;
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: var(--brand-blue); background: var(--brand-ivory);
  box-shadow: 0 0 0 3px rgba(51,124,160,.12);
}
.fld textarea { min-height: 150px; resize: vertical; }

/* ════════ PROJECT + JOURNAL DETAIL PAGES ════════ */
.detail-loading,
.detail-missing { min-height: 72vh; padding-top: calc(var(--nav-h) + var(--py)); }
.detail-missing .h-xl { max-width: 1000px; margin: 22px 0 42px; }
.detail-page { background: var(--white); color: var(--black); }

.detail-hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: flex-end; color: var(--white); background: var(--black);
}
.detail-hero-img,
.detail-hero-veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-hero-img { object-fit: cover; }
.detail-hero-veil { background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82)); }
.detail-hero-inner {
  position: relative; z-index: 1; width: 100%; max-width: var(--max); margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) var(--px) clamp(48px, 7vw, 100px);
}
.detail-back {
  display: inline-flex; margin-bottom: clamp(60px, 10vh, 120px);
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid currentColor;
  color: var(--brand-copper-soft);
}
.detail-title {
  max-width: 1450px; margin-top: 18px;
  font-family: var(--f-d); font-size: clamp(46px, 8.2vw, 132px);
  font-weight: 700; line-height: .92; letter-spacing: -.045em; text-transform: uppercase;
}
.detail-overview { padding-bottom: clamp(70px, 8vw, 120px); }
.detail-overview .in {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  gap: clamp(50px, 9vw, 150px); align-items: start;
}
.detail-summary {
  font-family: var(--f-d); font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 500; line-height: 1.12; letter-spacing: -.035em;
}
.detail-facts { border-top: 1px solid var(--g-ed); }
.detail-facts > div {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--g-ed);
}
.detail-facts dt {
  font-family: var(--f-d); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand-blue-deep);
}
.detail-facts dd { font-size: 14px; color: var(--brand-ink); }
.detail-story { padding-top: 0; }
.detail-story .in {
  display: grid; grid-template-columns: minmax(180px, .5fr) minmax(0, 1.5fr);
  gap: clamp(40px, 8vw, 130px); align-items: start;
}
.detail-copy { max-width: 850px; }
.detail-copy p,
.article-copy p { font-size: clamp(17px, 1.45vw, 21px); line-height: 1.72; color: var(--brand-ink); }
.detail-copy p + p,
.article-copy p + p { margin-top: 28px; }
.detail-gallery { padding: clamp(80px, 10vw, 150px) 0 var(--py); overflow: hidden; }
.detail-gallery-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  padding: 0 var(--px); margin-bottom: clamp(44px, 6vw, 86px);
}
.detail-gallery-head .lbl { margin-bottom: 18px; }
.detail-gallery-head .h-xl { max-width: 900px; }
.detail-gallery-head .pill { flex-shrink: 0; }
.detail-cflow {
  height: clamp(430px, 58vw, 820px);
  margin-inline: auto;
}
.detail-cflow .cflow-slide {
  width: clamp(300px, 52vw, 820px);
  height: clamp(380px, 54vw, 760px);
  box-shadow: 0 30px 80px rgba(32,32,32,.12);
}
.detail-cflow .cflow-slide img { transition: transform 1s var(--e); }
.detail-cflow .cflow-slide.is-active:hover img { transform: scale(1.015); }
.detail-cflow .cflow-prev { left: clamp(18px, 7vw, 9%); }
.detail-cflow .cflow-next { right: clamp(18px, 7vw, 9%); }
.detail-cflow-count {
  position: absolute; z-index: 120; left: 50%; bottom: 0;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-d); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; color: var(--brand-blue-deep);
}
.detail-cflow-count i { display: block; width: 42px; height: 1px; background: var(--brand-copper); }
.detail-next {
  position: relative; display: flex; min-height: 76vh; overflow: hidden;
  align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.detail-next > img,
.detail-next-veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-next > img { object-fit: cover; transition: transform 1.2s var(--e); }
.detail-next:hover > img { transform: scale(1.04); }
.detail-next-veil { background: rgba(0,0,0,.58); }
.detail-next-inner { position: relative; z-index: 1; padding: var(--px); }
.detail-next-inner .lbl { display: flex; justify-content: center; margin-bottom: 20px; color: var(--brand-copper-soft); }
.detail-next-inner strong {
  display: block; max-width: 1200px;
  font-family: var(--f-d); font-size: clamp(42px, 7vw, 110px);
  line-height: .95; letter-spacing: -.04em; text-transform: uppercase;
}

.article-hero { padding: calc(var(--nav-h) + clamp(70px, 10vw, 150px)) var(--px) clamp(70px, 9vw, 130px); }
.article-hero .detail-back {
  margin-bottom: clamp(54px, 7vw, 90px);
  color: var(--brand-blue-deep);
}
.article-hero .lbl { margin-bottom: 22px; }
.article-title {
  max-width: 1250px; font-family: var(--f-d); font-size: clamp(52px, 9vw, 148px);
  font-weight: 700; line-height: .9; letter-spacing: -.05em; text-transform: uppercase;
}
.article-intro {
  max-width: 820px; margin-top: clamp(32px, 4vw, 58px);
  font-family: var(--f-d); font-size: clamp(22px, 2.4vw, 36px); line-height: 1.32; color: var(--g-63);
}
.article-cover { height: min(82vh, 920px); overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-copy { width: min(820px, 100%); margin: 0 auto; }

/* ════════ VERIFIED COMPANY CAPABILITIES ════════ */
.vm-sec { padding: var(--py) var(--px); background: var(--brand-ink); color: var(--brand-ivory); overflow: hidden; scroll-margin-top: var(--nav-h); }
.vm-head { max-width: 980px; margin-bottom: clamp(54px, 8vw, 110px); }
.vm-head .lbl { color: var(--brand-copper-soft); }
.vm-head .h-xl { color: var(--brand-ivory); margin-top: 18px; }
.vm-grid { display: grid; grid-template-columns: 1.2fr .8fr; border-top: 1px solid rgba(239,233,225,.22); }
.vm-card {
  min-height: clamp(420px, 43vw, 650px); padding: clamp(28px, 4vw, 60px);
  display: grid; grid-template-columns: 70px 1fr; align-content: space-between; gap: 24px;
  border-right: 1px solid rgba(239,233,225,.22); position: relative; overflow: hidden;
}
.vm-card:last-child { border-right: 0; }
.vm-card::after {
  content: ''; position: absolute; inset: auto -20% -65% 20%; aspect-ratio: 1;
  border: 1px solid rgba(188,141,115,.23); border-radius: 50%; transition: transform .9s var(--e);
}
.vm-card:hover::after { transform: translate(-6%, -8%) scale(1.08); }
.vm-vision { background: var(--brand-copper); color: var(--brand-ink); }
.vm-vision::after { border-color: rgba(32,32,32,.18); }
.vm-no { font: 600 12px/1 var(--f-d); letter-spacing: .14em; position: relative; z-index: 1; }
.vm-card > div { grid-column: 2; position: relative; z-index: 1; align-self: end; }
.vm-kicker { font: 600 13px/1 var(--f-d); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 28px; }
.vm-card p { font: 500 clamp(25px, 2.6vw, 42px)/1.18 var(--f-d); letter-spacing: -.035em; max-width: 780px; }
.vm-card .vm-note { margin-top: 30px; font: 400 15px/1.65 var(--f-b); letter-spacing: 0; max-width: 520px; opacity: .76; }
.vm-points { display: grid; }
.vm-points span { padding: 20px 0; border-bottom: 1px solid rgba(239,233,225,.18); font: 500 clamp(18px, 1.7vw, 26px)/1.25 var(--f-d); }

.design-world { min-height: min(92vh, 960px); display: flex; align-items: flex-end; overflow: hidden; color: var(--brand-ivory); }
.design-world > img, .design-world-veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.design-world > img { object-fit: cover; transition: transform 1.4s var(--e); }
.design-world:hover > img { transform: scale(1.025); }
.design-world-veil { background: linear-gradient(90deg, rgba(20,20,20,.88) 0%, rgba(20,20,20,.62) 48%, rgba(20,20,20,.18) 100%); }
.design-world-in { position: relative; z-index: 1; padding: clamp(90px, 12vw, 170px) var(--px); margin: 0 auto; }
.design-world .lbl { color: var(--brand-copper-soft); }
.design-world h2 { margin-top: 22px; max-width: 1000px; font: 700 clamp(58px, 9vw, 146px)/.88 var(--f-d); letter-spacing: -.055em; text-transform: uppercase; }
.design-world p { max-width: 620px; margin: 38px 0 32px; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; color: rgba(239,233,225,.8); }
.design-values { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; font: 600 11px/1 var(--f-d); letter-spacing: .14em; text-transform: uppercase; }
.design-values i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-copper); }

.scope-head, .specialized-head {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 8vw, 130px);
  align-items: end; margin-bottom: clamp(56px, 8vw, 110px);
}
.scope-head .h-xl, .specialized-head .h-xl { margin-top: 18px; }
.scope-head > .p, .specialized-head > .p { max-width: 520px; padding-bottom: 10px; }
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--g-ed); border-left: 1px solid var(--g-ed); }
.scope-card {
  min-height: 330px; padding: clamp(24px, 2.6vw, 42px); border-right: 1px solid var(--g-ed); border-bottom: 1px solid var(--g-ed);
  display: flex; flex-direction: column; transition: background .35s, color .35s, transform .45s var(--e);
}
.scope-card:hover { background: var(--brand-ink); color: var(--brand-ivory); transform: translateY(-5px); }
.scope-card > span { font: 600 11px/1 var(--f-d); color: var(--brand-copper-deep); letter-spacing: .15em; }
.scope-card:hover > span { color: var(--brand-copper-soft); }
.scope-card h3 { margin: auto 0 18px; font: 600 clamp(22px, 2vw, 31px)/1.08 var(--f-d); letter-spacing: -.035em; }
.scope-card p { font-size: 14px; line-height: 1.65; color: var(--g-63); max-width: 260px; }
.scope-card:hover p { color: rgba(239,233,225,.68); }

.specialized-sec { padding: var(--py) var(--px); background: var(--brand-ivory); color: var(--brand-ink); }
.specialized-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(42px, 7vw, 110px); align-items: stretch; }
.specialized-media { min-height: 680px; position: relative; overflow: hidden; background: var(--brand-ink); }
.specialized-media img,
.specialized-video { width: 100%; height: 100%; object-fit: cover; transition: opacity .22s ease, transform .8s var(--e); }
.specialized-media:hover img,
.specialized-media:hover .specialized-video { transform: scale(1.025); }
.specialized-media.is-changing img { opacity: .18; }
.specialized-count {
  position: absolute; left: 26px; right: 26px; bottom: 24px; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: rgba(32,32,32,.82); color: var(--brand-ivory); backdrop-filter: blur(12px);
  font: 600 11px/1 var(--f-d); letter-spacing: .15em;
}
.specialized-count i { height: 1px; flex: 1; background: rgba(239,233,225,.32); }
.specialized-content { display: flex; flex-direction: column; }
.specialized-tabs { display: grid; border-top: 1px solid var(--g-ed); counter-reset: service; }
.specialized-tabs button {
  width: 100%; padding: 21px 0; border-bottom: 1px solid var(--g-ed); text-align: left;
  font: 500 clamp(17px, 1.5vw, 22px)/1.2 var(--f-d); color: var(--g-91); transition: color .25s, padding-left .35s var(--e);
}
.specialized-tabs button::before { content: '0' counter(service); counter-increment: service; display: inline-block; width: 48px; font-size: 11px; color: var(--brand-copper-deep); letter-spacing: .12em; }
.specialized-tabs button:hover, .specialized-tabs button.is-active { color: var(--brand-ink); padding-left: 10px; }
.specialized-panels { margin-top: auto; padding-top: clamp(48px, 7vw, 96px); }
.specialized-panel[hidden] { display: none; }
.specialized-kicker { color: var(--brand-blue-deep); font: 600 11px/1 var(--f-d); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 20px; }
.specialized-panel h3 { max-width: 620px; font: 600 clamp(34px, 3.7vw, 62px)/1 var(--f-d); letter-spacing: -.045em; }
.specialized-panel ul { list-style: none; margin-top: 34px; border-top: 1px solid var(--g-ed); }
.specialized-panel li { padding: 14px 0; border-bottom: 1px solid var(--g-ed); font-size: 15px; color: var(--g-63); }

.home-studio-preview { padding: clamp(72px, 9vw, 130px) var(--px); }
.home-studio-preview-in {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(44px, 9vw, 150px); align-items: end;
  padding: clamp(38px, 6vw, 82px); background: var(--brand-copper); color: var(--brand-ink);
}
.home-studio-preview h2 { margin-top: 18px; font: 700 clamp(50px, 6vw, 94px)/.9 var(--f-d); letter-spacing: -.05em; text-transform: uppercase; }
.home-studio-preview-copy > p { max-width: 560px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.home-studio-pillars { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.home-studio-pillars span { padding: 9px 13px; border: 1px solid rgba(32,32,32,.32); border-radius: 30px; font: 600 10px/1 var(--f-d); letter-spacing: .12em; text-transform: uppercase; }

/* ════════ KEYFRAMES / MISC ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rv, .rv-x, .split .c { opacity: 1 !important; transform: none !important; }
  #pt { display: none; }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1080px) {
  .studio-g, .svc-g, .cf-g { grid-template-columns: 1fr; }
  .svc-l { position: static; }
  .svc-bd-in { padding-left: 0; }
  .team-g { grid-template-columns: repeat(2, 1fr); }
  .jrn-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 90px 1fr; }
  .step-p { grid-column: 2; }
  .ft-g, .ft-bt { grid-template-columns: 1fr 1fr; }
  .vm-grid, .scope-head, .specialized-head, .home-studio-preview-in { grid-template-columns: 1fr; }
  .vm-card { min-height: 440px; border-right: 0; border-bottom: 1px solid rgba(239,233,225,.22); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .specialized-grid { grid-template-columns: 1fr; }
  .specialized-media { min-height: 580px; }
  .specialized-panels { margin-top: 0; }
}
@media (max-width: 1080px) {
  .subhero-tx { width: 74%; }
  .prow { grid-template-columns: 1fr; gap: 16px; }
  .prow-media { aspect-ratio: 1.6 / 1; }
  .svc-g2 { grid-template-columns: 1fr; }
  .svc-left { position: static; max-width: 460px; }
  .pstep-inner { grid-template-columns: 1fr; gap: 14px; }
  .scope-step-inner { grid-template-columns: 1fr; gap: 14px; }
  .scope-step-dim { display: none; }
  .jcards { grid-template-columns: 1fr; gap: clamp(36px,6vw,56px); }
  .cflow-slide { width: clamp(240px, 64vw, 480px); }
  .about-g { grid-template-columns: 1fr; gap: clamp(36px,6vw,64px); }
  .about-img,
  .about-content { grid-column: 1; }
  .about-img { min-height: 0; aspect-ratio: 1.35 / 1; }
  .about-content { display: block; }
  .about-phrases { margin-bottom: clamp(42px,6vw,72px); }
  .story2 { grid-template-columns: 1fr; }
  .story2-img img { min-height: 0; aspect-ratio: 1.3 / 1; }
  .hearthly-story {
    height: 810px;
    min-height: 810px;
    padding: 0;
  }
  .hearthly-story-title {
    top: 190px;
    left: 25px;
    right: 25px;
    height: calc((100vw - 15px) * .12);
    height: calc(12cqw - .08px);
  }
  .hearthly-story-word {
    font-size: calc((100vw - 15px) * .12);
    line-height: calc((100vw - 15px) * .12);
    font-size: calc(12cqw - .08px);
    line-height: calc(12cqw - .08px);
    font-weight: 700;
  }
  .hearthly-story-image {
    top: 245px;
    width: 85%;
  }
  .hearthly-story-bg { top: 362px; height: 448px; }
  /* selected projects → simple stacked list */
  .sel-title { position: static; align-items: flex-start; text-align: left; margin-bottom: clamp(32px,5vw,56px); }
  .sel-title .lbl { justify-content: flex-start; }
  .sel-rows { gap: clamp(40px,7vw,72px); }
  .sel-row { display: block; min-height: 0; }
  .sel-row .sel-pic { aspect-ratio: 1.3 / 1; }
  .sel-row:nth-child(odd) .sel-info,
  .sel-row:nth-child(even) .sel-info {
    display: flex; flex-direction: row; align-items: baseline; gap: 16px;
    text-align: left; margin-top: 18px;
  }
  .sel-num { font-size: 22px; }
  .sel-name { font-size: clamp(20px,3vw,30px); }
  .detail-overview .in { grid-template-columns: 1fr; }
  .detail-facts { max-width: 620px; }
  .detail-story .in { grid-template-columns: 1fr; }
}
/* ════════ HOME PROCESS RESPONSIVE ════════ */
@media (max-width: 1080px) {
  .home-process-in {
    padding-top: clamp(110px, 14vh, 160px);
    padding-bottom: clamp(60px, 8vw, 90px);
  }
  .home-process-grid {
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 58px);
  }
  .home-process-copy {
    padding-bottom: 0;
    max-width: 640px;
  }
  .home-process-media {
    justify-self: stretch;
    width: 100%;
    max-width: 760px;
  }
}
@media (max-width: 720px) {
  .home-process {
    min-height: 360vh;
  }
  .home-process-pin {
    min-height: 100svh;
  }
  .home-process-in {
    min-height: 100svh;
    padding: clamp(92px, 15vh, 120px) var(--px) clamp(48px, 8vh, 70px);
  }
  .home-process-title {
    font-size: clamp(44px, 14vw, 68px);
    text-align: left;
  }
  .home-process-grid {
    margin-top: clamp(58px, 10vh, 90px);
  }
  .home-process-panels {
    min-height: 190px;
  }
  .home-process-steps {
    gap: 12px;
    margin-top: 28px;
  }
  .home-process-steps button {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
  .home-process-media {
    aspect-ratio: 1.35 / 1;
  }
}
/* ════════ HERO STUDIO RESPONSIVE ════════ */
@media (max-width: 1080px) {
  .hero-studio { min-height: 100vh; }
  .hero-studio-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero-studio { min-height: 140vh; padding: clamp(40px, 5vw, 60px) var(--px); }
  .hero-studio-head h2 { font-size: clamp(40px, 8vw, 80px); }
  .hero-studio-cards { grid-template-columns: 1fr; }
  .hero-studio-cta { padding: clamp(24px, 3vw, 40px); }
}

@media (max-width: 720px) {
  :root { --nav-h: 68px; }
  .nav-lks, .nav-cta { display: none; }
  .subhero-in { flex-direction: column-reverse; align-items: flex-start; gap: 28px; }
  .subhero-tx { width: 100%; }
  .nav-in { grid-template-columns: 1fr auto; }
  .logo { transform: none !important; }
  .logo img { transform: none !important; width: 110px !important; height: auto !important; max-width: 110px !important; }
  .logo.logo-animated { width: 110px !important; height: 60px !important; }
  .formation-logo-frame { width: 110px !important; height: 60px !important; transform: none !important; }
  .menu-btn { display: block; background: none; border: none; cursor: pointer; }
  .hero-in { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-bg { object-fit: cover; object-position: center; }
  video.hero-bg { width: 100%; height: 100%; display: block; }
  .scroll-d { font-size: 12px; }
  img { height: auto; }
  button, a.pill, .nav-cta { min-height: 44px; padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px); }
  .hero-stats { gap: 36px; }
  .gal-g { grid-template-columns: 1fr 1fr; }
  .gal-it.wide { grid-column: span 2; }
  .jrn { grid-template-columns: 1fr; align-items: start; }
  .jrn-img { width: 100%; }
  .jrn-dt { order: -1; }
  .jrn-grid { grid-template-columns: 1fr; }
  .proj-img { height: 62vw; }
  .about-img { aspect-ratio: .92 / 1; }
  .about-img figcaption { left: 16px; right: 16px; bottom: 16px; }
  .hearthly-story {
    height: 415px;
    min-height: 415px;
    padding: 0;
  }
  .hearthly-story-title {
    top: 140px;
    left: 25px;
    right: 25px;
    height: 60px;
  }
  .hearthly-story-word {
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
  }
  .hearthly-story .story-word-left { transform: translateX(-70px); }
  .hearthly-story .story-word-right { transform: translateX(70px); }
  .hearthly-story-image {
    top: 196px;
    width: 85%;
  }
  .hearthly-story-bg {
    top: 235px;
    height: 180px;
  }
  .about-phrases { grid-template-columns: 1fr; gap: 18px; }
  .about-phrases .ap-we { padding-top: 0; }
  .about-phrases li { grid-template-columns: 32px 1fr; gap: 12px; }
  .about-copy { grid-template-columns: 1fr; gap: 24px; }
  .about-text .p + .p { margin-top: 0; }
  .about-action { align-items: flex-start; flex-direction: column; }
  .about-action > span { max-width: 300px; }
  .vm-card { min-height: 400px; grid-template-columns: 44px 1fr; padding: 26px 20px; }
  .vm-card > div { grid-column: 1 / -1; }
  .design-world { min-height: 82vh; }
  .design-world-veil { background: linear-gradient(0deg, rgba(20,20,20,.88), rgba(20,20,20,.32)); }
  .design-world-in { padding-top: 110px; padding-bottom: 76px; }
  .design-world h2 { font-size: clamp(48px, 15vw, 72px); }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 270px; }
  .specialized-media { min-height: 430px; }
  .specialized-tabs button { padding: 17px 0; }
  .home-studio-preview { padding-inline: 0; }
  .home-studio-preview-in { padding: 52px 20px; }
  .ft-g, .ft-bt { grid-template-columns: 1fr; gap: 24px; }
  .ft-soc, .ft-cp { grid-column: 1; }
  form .row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .step-p { grid-column: 1; }
  .detail-hero { min-height: 86svh; }
  .detail-back { margin-bottom: 46px; }
  .detail-overview { padding-top: 70px; }
  .detail-facts > div { grid-template-columns: 72px 1fr; }
  .detail-gallery { padding-top: 72px; }
  .detail-gallery-head { align-items: flex-start; flex-direction: column; gap: 28px; margin-bottom: 34px; }
  .detail-gallery-head .pill { align-self: flex-start; }
  .detail-cflow { height: min(132vw, 620px); }
  .detail-cflow .cflow-slide { width: min(76vw, 430px); height: min(104vw, 560px); }
  .detail-cflow .cflow-prev { left: 12px; }
  .detail-cflow .cflow-next { right: 12px; }
  .detail-cflow .cflow-arw { width: 48px; height: 48px; }
  .detail-next { min-height: 62vh; }
  .article-hero { padding-top: calc(var(--nav-h) + 68px); }
  .article-cover { height: 62vh; }
  .ft-wordmark, .ft-wordmark-home { font-size: 14vw; }
  /* On mobile, replace per-character split with whole-block fade-up (more reliable on iOS Safari) */
  .split .c { opacity: 1 !important; transform: none !important; transition: none !important; }
  .split { opacity: 0.001; transform: translateY(40px); transition: opacity 1.15s var(--e), transform 1.15s var(--e); }
  .split.go { opacity: 1 !important; transform: none !important; }
}

/* THE STORY — narrow/mobile: natural stacked flow (title → house → text below) */
@media (max-width: 1199px) {
  .hearthly-story {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: clamp(56px, 12vw, 90px) 25px clamp(40px, 9vw, 64px);
  }
  .hearthly-story-title {
    order: 1;
    position: static;
    height: auto;
    left: auto; right: auto; top: auto;
    display: flex;
    justify-content: space-between;
    gap: .15em;
  }
  .hearthly-story-word { position: static; transform: none !important; }
  .hearthly-story-image {
    order: 2;
    position: relative;
    top: auto; left: auto; right: auto;
    width: 100%;
    margin: clamp(22px, 5vw, 36px) auto;
    transform: none !important;
  }
  .story-copy-left  { order: 3; }
  .story-copy-right { order: 4; }
  .hearthly-story-copy {
    position: static;
    top: auto; left: auto; right: auto;
    width: auto;
    max-width: 680px;
    margin: 0 auto 1.4em;
    font-size: clamp(14px, 3.6vw, 16px);
  }
  .hearthly-story-copy:last-of-type { margin-bottom: 0; }
  .hearthly-story-bg { display: none; }
  /* light background on mobile → switch text back to dark/copper tones */
  .hearthly-story-copy { color: rgba(32, 32, 32, 0.82); }
  .story-eyebrow { color: var(--brand-copper-deep); }
  .story-eyebrow::before { background: var(--brand-copper); }
  .story-lead, .story-emph { color: var(--brand-ink); }
  .story-stat { border-top-color: var(--g-ed); margin-top: 6px; }
  .story-stat-num { color: var(--brand-copper-deep); }
  .story-stat-lbl { color: var(--g-91); }
}
