:root {
  --paper: #eee3d6;
  --paper-2: #f4ece3;
  --paper-3: #e8d6c1;
  --clay: #d0aa82;
  --clay-soft: #dcc09f;
  --gold: #ab956c;
  --green: #2e4744;
  --green-2: #3f5a56;
  --green-soft: #647570;
  --ink: #1d2b29;
  --ivory: #faf6f0;
  --line: rgba(46,71,68,.18);
  --glass-x: 50%;
  --glass-y: 30%;
  --pointer-x: 50vw;
  --pointer-y: 40vh;
  --hero-shift: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  position: relative;
  color: var(--green);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-loading { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(244,236,227,.73), rgba(244,236,227,.73)),
    url("../images/paper-texture-luxe.png") repeat center top / 528px 360px;
  filter: saturate(.86) contrast(.94) brightness(1.03);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(640px circle at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.20), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.13), transparent 24%, rgba(255,255,255,.06));
  mix-blend-mode: screen;
  opacity: .7;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.page-shell { position: relative; z-index: 2; overflow: clip; }

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(244,236,227,.88), rgba(244,236,227,.88)),
    url("../images/paper-texture-luxe.png") repeat center / 528px 360px;
  transition: transform 1s cubic-bezier(.76,0,.24,1), visibility 1s;
}
.intro-lockup { display: flex; align-items: baseline; gap: 14px; }
.intro-lockup span,
.intro-lockup em {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px,4.7vw,64px);
  font-weight: 400;
  line-height: 1;
}
.intro-lockup em { font-style: italic; }
.intro-lockup i { width: 0; height: 1px; background: var(--green); animation: introLine .75s .08s cubic-bezier(.2,.8,.2,1) forwards; }
body.ready .page-intro { transform: translateY(-103%); visibility: hidden; }

/* Liquid glass navigation */
.topbar {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  min-height: 66px;
  padding: 10px 12px 10px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-radius: 999px;
  transform: translate(-50%,-16px);
  opacity: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.54);
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.08)),
    rgba(238,227,214,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(46,71,68,.08),
    0 16px 40px rgba(29,43,41,.08),
    0 1px 2px rgba(29,43,41,.05);
  backdrop-filter: blur(26px) saturate(165%) brightness(1.06);
  -webkit-backdrop-filter: blur(26px) saturate(165%) brightness(1.06);
}
.topbar::before {
  content: "";
  position: absolute;
  inset: -65% -15%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(210px 96px at var(--glass-x) var(--glass-y), rgba(255,255,255,.74), rgba(255,255,255,.16) 42%, transparent 72%),
    radial-gradient(340px 90px at 16% 0%, rgba(255,255,255,.36), transparent 70%),
    radial-gradient(280px 86px at 86% 110%, rgba(255,255,255,.18), transparent 70%);
  filter: blur(5px);
  opacity: .88;
  transition: opacity .35s ease;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    inset 0 11px 18px rgba(255,255,255,.10),
    inset 0 -10px 18px rgba(46,71,68,.025);
}
.glass-specular {
  position: absolute;
  z-index: 0;
  width: 170px;
  height: 54px;
  left: calc(var(--glass-x) - 85px);
  top: calc(var(--glass-y) - 27px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.36), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  opacity: .72;
  transform: translateZ(0);
}
body.ready .topbar {
  opacity: 1;
  transform: translate(-50%,0);
  transition: opacity .7s .38s ease, transform .85s .38s cubic-bezier(.2,.8,.2,1), width .45s ease, top .45s ease, box-shadow .45s ease;
}
body.is-scrolled .topbar {
  top: 10px;
  width: min(1080px, calc(100% - 24px));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.86),
    inset 0 -1px 0 rgba(46,71,68,.08),
    0 12px 34px rgba(29,43,41,.11),
    0 1px 2px rgba(29,43,41,.05);
}
.topbar > * { position: relative; z-index: 2; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(46,71,68,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.brand:hover .brand-mark { transform: rotate(-10deg) scale(1.04); background: var(--green); color: var(--ivory); }
.brand-name { font-size: 14px; font-weight: 600; letter-spacing: -.02em; }
.brand-name span { display: block; margin-top: -2px; font-size: 9px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; color: var(--green-soft); }
.nav-links { display: flex; gap: 31px; font-size: 11px; font-weight: 500; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 4px; height: 4px; border-radius: 50%; background: var(--green); opacity: 0; transform: translate(-50%,4px) scale(.5); transition: .25s ease; }
.nav-links a:hover::after { opacity: .9; transform: translate(-50%,0) scale(1); }
.nav-cta {
  justify-self: end;
  min-width: 94px;
  padding: 12px 16px 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--ivory);
  background: linear-gradient(180deg, #36514d, #29413e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 4px 14px rgba(46,71,68,.15);
  font-size: 11px;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav-cta b { font-size: 15px; font-weight: 400; transition: transform .3s ease; }
.nav-cta:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 20px rgba(46,71,68,.20); }
.nav-cta:hover b { transform: translate(2px,2px); }

.hero {
  min-height: 100svh;
  position: relative;
  padding: 150px max(28px,calc((100vw - 1180px)/2)) 58px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.hero-aura { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aura { position: absolute; display: block; border-radius: 50%; filter: blur(70px); opacity: .22; }
.aura-a { width: 420px; height: 420px; right: 3%; top: 18%; background: #d6b28d; animation: auraFloat 11s ease-in-out infinite alternate; }
.aura-b { width: 270px; height: 270px; right: 27%; top: 31%; background: #f7efe6; animation: auraFloat 15s -4s ease-in-out infinite alternate-reverse; }
.aura-c { width: 250px; height: 250px; left: 8%; bottom: -7%; background: #d4c3ac; animation: auraFloat 14s -7s ease-in-out infinite alternate; }
.hero-kicker,
.eyebrow,
.section-index,
.card-topline,
.service-mini,
.art-note,
.editorial-note {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.hero-main {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 60px;
  align-items: center;
}
.hero-title h1 {
  margin: 36px 0 28px;
  max-width: 900px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(76px,9.7vw,148px);
  font-weight: 400;
  line-height: .80;
  letter-spacing: -.055em;
}
.hero-title h1 span { position: relative; display: inline-block; color: var(--green-soft); font-style: italic; }
.hero-title h1 span::after {
  content: "";
  position: absolute;
  left: 2%; right: 0; bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}
body.ready .hero-title h1 span::after { animation: drawLine 1.15s 1.15s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-lead { max-width: 660px; margin: 0; font-size: clamp(15px,1.1vw,17px); line-height: 1.72; color: rgba(46,71,68,.82); }
.hero-lead strong { font-weight: 600; color: var(--green); }
.hero-object {
  --px: 0px;
  --py: 0px;
  position: relative;
  width: 310px;
  height: 310px;
  justify-self: end;
  transform: translate3d(var(--px),var(--py),0);
  transition: transform .18s ease-out;
}
.glass-orbit,
.glass-core {
  position: absolute;
  border: 1px solid rgba(255,255,255,.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.78),
    inset 0 -1px 0 rgba(46,71,68,.08),
    0 20px 50px rgba(45,63,60,.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.glass-orbit { border-radius: 50%; background: linear-gradient(145deg,rgba(255,255,255,.24),rgba(255,255,255,.05)); }
.orbit-one { inset: 1px; animation: orbitBreath 9s ease-in-out infinite alternate; }
.orbit-two { inset: 42px; border-color: rgba(46,71,68,.12); animation: orbitSpin 19s linear infinite; }
.orbit-two::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(255,255,255,.12); }
.glass-core {
  left: 50%; top: 50%;
  width: 128px; height: 128px;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  border-radius: 43% 57% 54% 46% / 47% 43% 57% 53%;
  background: linear-gradient(145deg,rgba(255,255,255,.42),rgba(255,255,255,.11));
  animation: coreMorph 8s ease-in-out infinite alternate;
}
.glass-core span { font-family: "Instrument Serif", Georgia, serif; font-size: 52px; line-height: .8; }
.glass-core small { position: absolute; bottom: 25px; font-size: 7px; letter-spacing: .16em; }
.glass-caption { position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%); width: max-content; font-size: 7px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .68; }
.hero-footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta { display: flex; gap: 34px; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px; background: var(--green); transform: scaleX(.22); transform-origin: right; transition: transform .35s ease; }
.text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.text-link span { font-size: 16px; transition: transform .3s ease; }
.text-link:hover span { transform: translate(3px,3px); }
.hero-word {
  position: absolute;
  z-index: 0;
  left: max(28px,calc((100vw - 1180px)/2));
  bottom: -15px;
  font-size: clamp(76px,14vw,228px);
  font-weight: 600;
  line-height: .6;
  letter-spacing: -.08em;
  opacity: .025;
  white-space: nowrap;
  user-select: none;
  transform: translate3d(var(--hero-shift),0,0);
  will-change: transform;
}
.load-in { opacity: 0; transform: translateY(24px); }
body.ready .load-in { animation: loadIn .85s .58s cubic-bezier(.2,.8,.2,1) forwards; }
body.ready .load-delay-1 { animation-delay: .72s; }
body.ready .load-delay-2 { animation-delay: .9s; }
body.ready .load-delay-3 { animation-delay: 1.04s; }

.studio-strip {
  min-height: 50px;
  padding: 0 max(28px,calc((100vw - 1180px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(46,71,68,.70);
}
.studio-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); opacity: .33; }

.manifesto {
  max-width: 1180px;
  margin: 0 auto;
  padding: 128px 0 144px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}
.section-index { display: flex; align-items: baseline; gap: 11px; padding-top: 6px; }
.section-index span { font-family: "Instrument Serif", Georgia, serif; font-size: 34px; font-weight: 400; letter-spacing: -.02em; }
.section-index small { font-size: 8px; letter-spacing: .18em; }
.manifesto-overline { margin: 0 0 20px; font-size: 13px; }
.manifesto-copy h2 {
  margin: 0;
  max-width: 980px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(50px,5.9vw,88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.038em;
}
.manifesto-copy h2 em { color: var(--green-soft); font-weight: 400; }
.manifesto-bottom { margin-top: 58px; display: grid; grid-template-columns: .85fr 1.4fr; gap: 72px; align-items: start; }
.manifesto-bottom > p { margin: 0; max-width: 430px; font-size: 13px; line-height: 1.75; color: rgba(46,71,68,.78); }
.process { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.process-item { position: relative; padding: 28px 18px 0 0; min-height: 120px; border-right: 1px solid var(--line); opacity: 0; transform: translateY(15px); }
.process-item:last-child { border-right: 0; padding-left: 18px; }
.process-item:nth-child(2) { padding-left: 18px; }
.process-item::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.process-item span { display: block; margin-bottom: 12px; font-size: 8px; letter-spacing: .15em; }
.process-item strong { display: block; margin-bottom: 6px; font-family: "Instrument Serif", Georgia, serif; font-size: 27px; font-weight: 400; }
.process-item small { font-size: 9px; letter-spacing: .04em; color: var(--green-soft); }
.manifesto.is-visible .process-item { animation: nodeIn .65s .38s ease forwards; }
.manifesto.is-visible .process-item:nth-child(2) { animation-delay: .53s; }
.manifesto.is-visible .process-item:nth-child(3) { animation-delay: .68s; }

.services { max-width: 1180px; margin: 0 auto; padding: 126px 0 154px; }
.section-head { display: flex; justify-content: space-between; gap: 38px; align-items: end; margin-bottom: 52px; }
.section-head h2 { margin: 13px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(48px,5.4vw,78px); font-weight: 400; line-height: .94; letter-spacing: -.038em; }
.section-head h2 em { color: var(--green-soft); font-weight: 400; }
.section-head > p { max-width: 320px; margin: 0 0 6px; text-align: right; font-size: 12px; line-height: 1.65; color: rgba(46,71,68,.72); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  --rx: 0deg;
  --ry: 0deg;
  --gx: 50%;
  --gy: 50%;
  position: relative;
  min-height: 820px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border-radius: 28px;
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .35s ease-out, box-shadow .45s ease, border-color .45s ease;
  will-change: transform;
}
.service-card::after { content: ""; position: absolute; inset: 1px; border-radius: 27px; pointer-events: none; border: 1px solid rgba(255,255,255,.16); }
.card-glare { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(350px circle at var(--gx) var(--gy), rgba(255,255,255,.18), transparent 66%); opacity: 0; transition: opacity .3s ease; }
.service-card:hover .card-glare { opacity: 1; }
.wallpaper-card {
  color: var(--ivory);
  background: linear-gradient(150deg,#304b47,#29413e 72%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(34,55,52,.12);
}
.brand-card {
  color: var(--green);
  background:
    linear-gradient(rgba(250,246,240,.86),rgba(250,246,240,.86)),
    url("../images/paper-texture-luxe.png") repeat center / 528px 360px;
  border: 1px solid rgba(46,71,68,.14);
  box-shadow: 0 20px 50px rgba(34,55,52,.07);
}
.service-card:hover { box-shadow: 0 30px 70px rgba(34,55,52,.16); }
.card-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; opacity: .82; }
.card-art {
  --mx: 0px;
  --my: 0px;
  position: relative;
  z-index: 2;
  min-height: 328px;
  margin: 34px 0 30px;
  overflow: hidden;
  border-radius: 18px;
  transform: translate3d(var(--mx),var(--my),22px);
  transition: transform .25s ease-out;
}
.art-wallpaper { background: linear-gradient(145deg,#d9c4a9,#cdb493); box-shadow: inset 0 1px 0 rgba(255,255,255,.25); }
.material { position: absolute; width: 55%; height: 75%; border-radius: 3px; border: 1px solid rgba(46,71,68,.32); box-shadow: 0 22px 38px rgba(29,43,41,.12); transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.material span { position: absolute; left: 16px; top: 14px; font-size: 8px; letter-spacing: .14em; opacity: .46; }
.material-a { left: 7%; top: 8%; background: #f2e9df; transform: rotate(-7deg); animation: paperA 7s ease-in-out infinite alternate; }
.material-b { left: 26%; top: 14%; background: #b5a47d; transform: rotate(3deg); animation: paperB 8.5s -2s ease-in-out infinite alternate; }
.material-c { left: 44%; top: 20%; background: #5f706c; transform: rotate(11deg); animation: paperC 9s -4s ease-in-out infinite alternate; }
.wallpaper-card:hover .material-a { animation-play-state: paused; transform: rotate(-10deg) translate(-11px,-8px); }
.wallpaper-card:hover .material-b { animation-play-state: paused; transform: rotate(1deg) translate(0,7px); }
.wallpaper-card:hover .material-c { animation-play-state: paused; transform: rotate(15deg) translate(13px,-5px); }
.art-brand { background: linear-gradient(145deg,#ddd0bc,#d2c4ae); }
.brand-sheet { position: absolute; width: 68%; height: 76%; left: 50%; top: 50%; border-radius: 2px; border: 1px solid rgba(46,71,68,.17); box-shadow: 0 19px 34px rgba(29,43,41,.09); transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.sheet-shadow { transform: translate(-39%,-45%) rotate(9deg); background: rgba(46,71,68,.08); filter: blur(.3px); }
.sheet-back { transform: translate(-44%,-48%) rotate(6deg); background: #b8aa83; padding: 18px; font-size: 7px; letter-spacing: .14em; animation: sheetBack 9s ease-in-out infinite alternate; }
.sheet-front { transform: translate(-54%,-52%) rotate(-3deg); background: #f7f3ed; padding: 22px; animation: sheetFront 8s -2s ease-in-out infinite alternate; }
.brand-card:hover .sheet-back { animation-play-state: paused; transform: translate(-42%,-46%) rotate(10deg); }
.brand-card:hover .sheet-front { animation-play-state: paused; transform: translate(-56%,-54%) rotate(-5deg); }
.tiny-label { font-size: 7px; letter-spacing: .17em; }
.brand-symbol { margin-top: 38px; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--ivory); font-family: "Instrument Serif", Georgia, serif; font-size: 56px; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.brand-card:hover .brand-symbol { transform: rotate(12deg) scale(1.05); }
.brand-lines { position: absolute; left: 22px; right: 22px; bottom: 25px; display: grid; gap: 8px; }
.brand-lines i { height: 1px; background: var(--green); opacity: .28; transform-origin: left; }
.brand-lines i:nth-child(2) { width: 72%; }
.brand-lines i:nth-child(3) { width: 48%; }
.brand-card:hover .brand-lines i { animation: linePulse 1.15s ease both; }
.art-note { position: absolute; left: 16px; bottom: 14px; z-index: 5; font-size: 7px; }
.card-content { position: relative; z-index: 2; padding-top: 24px; border-top: 1px solid currentColor; transform: translateZ(24px); }
.service-mini { display: block; margin-bottom: 14px; opacity: .68; }
.service-name {
  margin: 0;
  max-width: 100%;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(72px,6.4vw,96px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.service-tagline { margin: 17px 0 0; font-family: "Instrument Serif", Georgia, serif; font-size: 22px; line-height: 1.05; font-style: italic; opacity: .78; }
.service-description { max-width: 475px; margin: 24px 0 30px; font-size: 12px; line-height: 1.7; opacity: .74; }
.card-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 600; }
.card-link b { font-size: 20px; font-weight: 400; transition: transform .3s ease; }
.service-card:hover .card-link b { transform: translate(4px,-4px); }
.reveal-card { opacity: 0; transform: translateY(34px) scale(.985); }
.reveal-card.is-visible { opacity: 1; transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry)); transition: opacity .8s ease, transform 1s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease; }

.editorial-break {
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 0 118px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 45px;
  align-items: end;
  border-top: 1px solid var(--line);
}
.editorial-number { font-family: "Instrument Serif", Georgia, serif; font-size: 66px; line-height: .8; opacity: .3; }
.editorial-copy p { margin: 0 0 8px; font-size: 12px; }
.editorial-copy h2 { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(52px,6.3vw,88px); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.editorial-copy h2 em { color: var(--green-soft); font-weight: 400; }
.editorial-note { writing-mode: vertical-rl; transform: rotate(180deg); opacity: .52; }

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 118px max(28px,calc((100vw - 1180px)/2));
  color: var(--ivory);
  background: linear-gradient(150deg,#304b47,#28403d);
}
.quote-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px circle at 80% 15%, rgba(255,255,255,.07), transparent 52%); pointer-events: none; }
.quote-glow { position: absolute; right: 7%; top: 50%; width: 360px; height: 360px; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.10),rgba(255,255,255,.02) 46%,transparent 70%); filter: blur(3px); animation: quoteGlow 7s ease-in-out infinite alternate; }
.quote-line { position: relative; z-index: 2; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(72px,10vw,150px); line-height: .78; letter-spacing: -.053em; opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform 1s cubic-bezier(.2,.8,.2,1); }
.quote-line.accent { margin-left: 12%; color: #d9c29d; font-style: italic; transition-delay: .11s; }
.quote-band.is-visible .quote-line { opacity: 1; transform: translateY(0); }
.quote-meta { position: relative; z-index: 2; width: fit-content; margin: 56px 0 0 auto; font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .65; }

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 128px 0 136px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: end;
}
.contact-copy h2 { margin: 16px 0 22px; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(54px,5.8vw,84px); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.contact-copy p { max-width: 480px; margin: 0; font-size: 12px; line-height: 1.7; color: rgba(46,71,68,.72); }
.contact-glass {
  --cx: 50%;
  --cy: 40%;
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.56);
  background:
    radial-gradient(250px circle at var(--cx) var(--cy), rgba(255,255,255,.34), transparent 64%),
    linear-gradient(145deg,rgba(255,255,255,.24),rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), inset 0 -1px 0 rgba(46,71,68,.07), 0 22px 58px rgba(29,43,41,.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: transform .35s ease, box-shadow .35s ease;
}
.contact-glass::after { content: ""; position: absolute; inset: 1px; border-radius: 29px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.contact-specular { position: absolute; width: 190px; height: 90px; left: calc(var(--cx) - 95px); top: calc(var(--cy) - 45px); border-radius: 50%; background: radial-gradient(ellipse,rgba(255,255,255,.36),transparent 68%); filter: blur(12px); opacity: .76; pointer-events: none; }
.contact-glass small { position: absolute; left: 28px; top: 26px; font-size: 8px; font-weight: 600; letter-spacing: .19em; }
.contact-glass strong { position: relative; z-index: 2; display: block; max-width: 90%; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(27px,3vw,42px); font-weight: 400; line-height: 1; letter-spacing: -.02em; }
.contact-glass > span { position: absolute; right: 27px; bottom: 26px; font-size: 28px; transition: transform .3s ease; }
.contact-glass:hover { transform: translateY(-5px); box-shadow: inset 0 1px 0 rgba(255,255,255,.86), inset 0 -1px 0 rgba(46,71,68,.07), 0 30px 70px rgba(29,43,41,.11); }
.contact-glass:hover > span { transform: translate(5px,-5px); }

footer { padding: 24px max(28px,calc((100vw - 1180px)/2)); display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); font-size: 8px; font-weight: 600; letter-spacing: .15em; }
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .85s ease, transform 1s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.quote-band.reveal { transform: none; }

.manuals-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(29,43,41,.34);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.manuals-modal.is-open { opacity: 1; visibility: visible; }
.manuals-modal-card {
  position: relative;
  width: min(560px,100%);
  padding: 46px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.58);
  background:
    linear-gradient(rgba(244,236,227,.82),rgba(244,236,227,.82)),
    url("../images/paper-texture-luxe.png") repeat center / 528px 360px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.80), 0 30px 90px rgba(29,43,41,.18);
  backdrop-filter: blur(20px);
  transform: translateY(24px) scale(.98);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.manuals-modal.is-open .manuals-modal-card { transform: translateY(0) scale(1); }
.manuals-modal-card h2 { margin: 16px 0; font-family: "Instrument Serif", Georgia, serif; font-size: 48px; line-height: .96; font-weight: 400; }
.manuals-modal-card p { color: var(--green-soft); line-height: 1.65; }
.modal-close { position: absolute; right: 18px; top: 12px; border: 0; background: none; color: var(--green); font-size: 31px; cursor: pointer; }
.modal-ok { margin-top: 14px; padding: 12px 18px; border: 0; border-radius: 999px; background: var(--green); color: var(--ivory); cursor: pointer; }

@keyframes introLine { to { width: 58px; } }
@keyframes loadIn { to { opacity: 1; transform: translateY(0); } }
@keyframes drawLine { to { transform: scaleX(1); } }
@keyframes nodeIn { to { opacity: 1; transform: translateY(0); } }
@keyframes auraFloat { to { transform: translate3d(-25px,22px,0) scale(1.06); } }
@keyframes orbitBreath { to { transform: scale(.96); border-radius: 48% 52% 45% 55% / 54% 45% 55% 46%; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes coreMorph { to { border-radius: 58% 42% 45% 55% / 54% 59% 41% 46%; transform: translate(-50%,-50%) rotate(7deg); } }
@keyframes paperA { to { transform: rotate(-4deg) translate(5px,-5px); } }
@keyframes paperB { to { transform: rotate(6deg) translate(-4px,4px); } }
@keyframes paperC { to { transform: rotate(8deg) translate(4px,-5px); } }
@keyframes sheetBack { to { transform: translate(-43%,-49%) rotate(8deg); } }
@keyframes sheetFront { to { transform: translate(-55%,-51%) rotate(-1deg); } }
@keyframes linePulse { 0% { transform: scaleX(1); } 45% { transform: scaleX(.46); } 100% { transform: scaleX(1); } }
@keyframes quoteGlow { to { transform: translateY(-50%) scale(1.12); opacity: .72; } }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-main { grid-template-columns: 1fr; }
  .hero-object { display: none; }
  .manifesto, .services, .editorial-break, .contact { margin-left: 24px; margin-right: 24px; }
  .manifesto { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-bottom { grid-template-columns: 1fr; gap: 46px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 790px; }
  .editorial-break { grid-template-columns: 80px 1fr; }
  .editorial-note { display: none; }
  .contact { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 620px) {
  body::before, .page-intro, .brand-card, .manuals-modal-card { background-size: 396px 270px; }
  body::after { display: none; }
  .topbar { top: 10px; width: calc(100% - 20px); min-height: 58px; padding-left: 13px; }
  body.is-scrolled .topbar { width: calc(100% - 16px); top: 8px; }
  .brand-name { font-size: 13px; }
  .nav-cta { min-width: auto; padding: 11px 14px; }
  .nav-cta b { display: none; }
  .hero { min-height: 92svh; padding-top: 122px; }
  .hero-title h1 { font-size: clamp(66px,20vw,96px); }
  .hero-footer { align-items: start; flex-direction: column; }
  .hero-meta { flex-direction: column; gap: 5px; }
  .hero-word { bottom: -3px; }
  .studio-strip { justify-content: flex-start; overflow: hidden; gap: 16px; white-space: nowrap; }
  .studio-strip span:nth-of-type(3), .studio-strip span:nth-of-type(4), .studio-strip i:nth-of-type(3) { display: none; }
  .manifesto, .services { padding-top: 92px; padding-bottom: 104px; }
  .process { grid-template-columns: 1fr; border-top: 0; }
  .process-item, .process-item:nth-child(2), .process-item:last-child { padding: 22px 0 22px 28px; border-right: 0; border-top: 1px solid var(--line); min-height: auto; }
  .process-item::before { top: 27px; }
  .section-head { flex-direction: column; align-items: start; }
  .section-head > p { text-align: left; }
  .service-card { min-height: 690px; padding: 16px; border-radius: 22px; }
  .service-card::after { border-radius: 21px; }
  .card-art { min-height: 280px; margin-top: 26px; border-radius: 14px; }
  .service-name { font-size: clamp(60px,17vw,80px); }
  .service-tagline { font-size: 19px; }
  .editorial-break { grid-template-columns: 1fr; gap: 24px; padding-top: 90px; padding-bottom: 96px; }
  .editorial-number { font-size: 48px; }
  .quote-band { padding-top: 92px; padding-bottom: 94px; }
  .quote-line { font-size: 20vw; }
  .quote-line.accent { margin-left: 0; }
  .quote-meta { margin-left: 0; line-height: 1.5; }
  .contact { padding-top: 94px; padding-bottom: 96px; }
  .contact-glass { min-height: 180px; padding: 22px; border-radius: 24px; }
  .contact-glass small { left: 22px; top: 22px; }
  .contact-glass > span { right: 21px; bottom: 21px; }
  footer { flex-direction: column; }
  .manuals-modal-card { padding: 36px 25px; border-radius: 24px; }
  .manuals-modal-card h2 { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .page-intro { display: none; }
  .topbar, .load-in, .reveal, .reveal-card, .quote-line, .process-item { opacity: 1 !important; transform: none !important; }
  .hero-title h1 span::after { transform: scaleX(1) !important; }
}

/* =========================================================
   V6 — Responsive system / layout hardening
   ========================================================= */
:root {
  --content-max: 1180px;
  --page-gutter: clamp(18px, 3.6vw, 42px);
  --nav-height: 64px;
}

html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; }

/* Keep the glass bar visually compact at every viewport. */
.topbar,
body.is-scrolled .topbar {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  height: var(--nav-height);
  min-height: var(--nav-height);
  max-height: var(--nav-height);
  padding: 9px 10px 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
body.is-scrolled .topbar { width: min(1080px, calc(100% - (var(--page-gutter) * 2))); }

.brand { flex: 0 0 auto; min-width: 0; }
.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex: 0 0 auto;
  white-space: nowrap;
}
.nav-cta { flex: 0 0 auto; margin-left: auto; }

/* One consistent container rule instead of viewport-specific margins. */
.manifesto,
.services,
.editorial-break,
.contact {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hero,
.studio-strip,
.quote-band,
footer {
  padding-left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
}

.hero-word { left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2)); }

/* Desktop typography/layout resilience. */
.hero-main { grid-template-columns: minmax(0, 1fr) minmax(250px, 310px); gap: clamp(34px, 5vw, 72px); }
.hero-title { min-width: 0; }
.hero-title h1 {
  font-size: clamp(70px, 8.8vw, 142px);
  max-width: 100%;
  overflow-wrap: normal;
}
.hero-lead { max-width: 640px; }
.hero-object { width: min(100%, 300px); aspect-ratio: 1; height: auto; }

.section-head > div,
.manifesto-copy,
.editorial-copy,
.contact-copy { min-width: 0; }

.service-grid { align-items: stretch; }
.service-card {
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.card-art {
  min-height: 0;
  aspect-ratio: 1.48 / 1;
}
.service-name {
  font-size: clamp(62px, 5.8vw, 92px);
  line-height: .84;
  overflow-wrap: normal;
  hyphens: none;
}
.service-description { min-height: 3.4em; }

.contact-glass strong { overflow-wrap: anywhere; }

/* Small desktop / large tablet. */
@media (max-width: 1120px) {
  :root { --page-gutter: clamp(22px, 3.4vw, 34px); }
  .topbar { width: calc(100% - (var(--page-gutter) * 2)); }
  body.is-scrolled .topbar { width: calc(100% - (var(--page-gutter) * 2)); }
  .nav-links { gap: 24px; }
  .hero { padding-top: 132px; }
  .hero-main { grid-template-columns: minmax(0, 1fr) 250px; gap: 34px; }
  .hero-object { width: 250px; }
  .hero-title h1 { font-size: clamp(68px, 9.4vw, 112px); }
  .manifesto { grid-template-columns: 112px minmax(0,1fr); gap: 46px; }
  .manifesto-bottom { gap: 44px; }
  .service-card { padding: 20px; }
  .service-name { font-size: clamp(58px, 6.2vw, 78px); }
  .card-art { aspect-ratio: 1.38 / 1; margin: 28px 0 26px; }
}

/* Tablet: simplify the nav and let content breathe vertically. */
@media (max-width: 900px) {
  :root { --page-gutter: 24px; --nav-height: 60px; }

  .topbar,
  body.is-scrolled .topbar {
    top: 12px;
    width: calc(100% - 32px);
    height: var(--nav-height);
    min-height: var(--nav-height);
    max-height: var(--nav-height);
    padding: 8px 9px 8px 12px;
  }
  body.is-scrolled .topbar { top: 8px; width: calc(100% - 24px); }
  .nav-links { display: none; }
  .brand-mark { width: 32px; height: 32px; font-size: 22px; }
  .brand-name { font-size: 13px; }
  .nav-cta { min-width: 88px; padding: 11px 14px 11px 16px; }

  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 42px;
    gap: 52px;
  }
  .hero-main {
    grid-template-columns: minmax(0,1fr);
    gap: 42px;
    align-items: start;
  }
  .hero-title h1 {
    margin: 28px 0 24px;
    font-size: clamp(70px, 13.2vw, 108px);
    line-height: .82;
  }
  .hero-lead { max-width: 700px; font-size: 15px; }
  .hero-object {
    display: block;
    width: clamp(210px, 34vw, 260px);
    justify-self: end;
    margin-right: 3vw;
  }
  .hero-footer { margin-top: 8px; }
  .hero-word { font-size: clamp(72px, 17vw, 150px); }

  .studio-strip {
    min-height: 46px;
    justify-content: flex-start;
    gap: 18px;
    overflow: hidden;
    white-space: nowrap;
  }

  .manifesto {
    padding-top: 96px;
    padding-bottom: 108px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-index { padding-top: 0; }
  .manifesto-copy h2 { font-size: clamp(48px, 8.5vw, 74px); }
  .manifesto-bottom { margin-top: 42px; grid-template-columns: 1fr; gap: 38px; }
  .manifesto-bottom > p { max-width: 620px; }

  .services { padding-top: 98px; padding-bottom: 118px; }
  .section-head { margin-bottom: 38px; align-items: start; }
  .section-head h2 { font-size: clamp(48px, 8.7vw, 72px); }
  .section-head > p { max-width: 300px; }
  .service-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card,
  .reveal-card.is-visible {
    transform: none !important;
  }
  .service-card { padding: 22px; border-radius: 26px; }
  .service-card::after { border-radius: 25px; }
  .card-art {
    aspect-ratio: 1.72 / 1;
    margin: 28px 0 26px;
    transform: none !important;
  }
  .service-name { font-size: clamp(64px, 10.5vw, 88px); }
  .service-description { min-height: 0; max-width: 610px; }

  .editorial-break {
    padding-top: 92px;
    padding-bottom: 98px;
    grid-template-columns: 72px minmax(0,1fr);
    gap: 30px;
  }
  .editorial-copy h2 { font-size: clamp(50px, 8.8vw, 74px); }
  .editorial-note { display: none; }

  .quote-band { padding-top: 94px; padding-bottom: 98px; }
  .quote-line { font-size: clamp(72px, 14vw, 112px); }

  .contact {
    padding-top: 98px;
    padding-bottom: 104px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-copy h2 { font-size: clamp(52px, 8.8vw, 76px); }
}

/* Phone / narrow tablet. */
@media (max-width: 640px) {
  :root { --page-gutter: 18px; --nav-height: 56px; }
  body::before, .page-intro, .brand-card, .manuals-modal-card { background-size: 396px 270px; }
  body::after { display: none; }

  .topbar,
  body.is-scrolled .topbar {
    top: 9px;
    width: calc(100% - 20px);
    height: var(--nav-height);
    min-height: var(--nav-height);
    max-height: var(--nav-height);
    padding: 7px 8px 7px 10px;
    gap: 10px;
  }
  body.is-scrolled .topbar { top: 7px; width: calc(100% - 14px); }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; font-size: 21px; }
  .brand-name { font-size: 12px; line-height: 1.05; }
  .brand-name span { font-size: 7px; letter-spacing: .16em; margin-top: 1px; }
  .nav-cta { min-width: 0; padding: 10px 13px; font-size: 10px; }
  .nav-cta b { display: none; }

  .hero {
    padding-top: 102px;
    padding-bottom: 34px;
    gap: 42px;
  }
  .hero-kicker { max-width: 260px; line-height: 1.55; }
  .hero-main { gap: 30px; }
  .hero-title h1 {
    margin: 22px 0 22px;
    font-size: clamp(54px, 16.2vw, 78px);
    line-height: .84;
    letter-spacing: -.047em;
  }
  .hero-title h1 span::after { bottom: -5px; }
  .hero-lead { font-size: 14px; line-height: 1.65; }
  .hero-object {
    width: clamp(176px, 54vw, 220px);
    justify-self: center;
    margin: 2px 0 10px;
  }
  .glass-caption { font-size: 6px; letter-spacing: .13em; }
  .hero-footer { align-items: flex-start; flex-direction: column; gap: 18px; padding-top: 18px; }
  .hero-meta { flex-direction: column; gap: 5px; font-size: 8px; }
  .hero-word { bottom: -2px; font-size: clamp(68px, 23vw, 102px); }

  .studio-strip { min-height: 44px; gap: 14px; font-size: 7px; }
  .studio-strip span:nth-of-type(3),
  .studio-strip span:nth-of-type(4),
  .studio-strip i:nth-of-type(3) { display: none; }

  .manifesto,
  .services,
  .editorial-break,
  .contact { width: calc(100% - 36px); }

  .manifesto { padding-top: 82px; padding-bottom: 88px; }
  .manifesto-overline { font-size: 12px; }
  .manifesto-copy h2 { font-size: clamp(42px, 12vw, 62px); line-height: .97; }
  .manifesto-bottom { margin-top: 34px; gap: 34px; }
  .process { grid-template-columns: 1fr; border-top: 0; }
  .process-item,
  .process-item:nth-child(2),
  .process-item:last-child {
    min-height: auto;
    padding: 20px 0 20px 25px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .process-item::before { top: 25px; }

  .services { padding-top: 82px; padding-bottom: 96px; }
  .section-head { flex-direction: column; gap: 22px; margin-bottom: 30px; }
  .section-head h2 { font-size: clamp(44px, 12vw, 62px); }
  .section-head > p { max-width: 100%; text-align: left; margin: 0; }

  .service-card { padding: 15px; border-radius: 22px; }
  .service-card::after { border-radius: 21px; }
  .card-topline { gap: 12px; font-size: 7px; letter-spacing: .15em; }
  .card-topline span:last-child { text-align: right; }
  .card-art {
    aspect-ratio: 1.18 / 1;
    margin: 22px 0 22px;
    border-radius: 14px;
  }
  .material { width: 58%; height: 72%; }
  .brand-sheet { width: 76%; height: 70%; }
  .sheet-front { padding: 16px; }
  .brand-symbol { width: 72px; height: 72px; font-size: 45px; margin-top: 26px; }
  .service-mini { margin-bottom: 10px; font-size: 7px; }
  .service-name {
    font-size: clamp(52px, 14.8vw, 70px);
    line-height: .86;
    letter-spacing: -.048em;
  }
  .service-tagline { margin-top: 12px; font-size: 18px; }
  .service-description { margin: 18px 0 22px; font-size: 11px; line-height: 1.62; }
  .card-link { padding-top: 14px; font-size: 10px; }

  .editorial-break {
    padding-top: 76px;
    padding-bottom: 82px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .editorial-number { font-size: 44px; }
  .editorial-copy h2 { font-size: clamp(44px, 12.5vw, 64px); }

  .quote-band { padding-top: 78px; padding-bottom: 82px; }
  .quote-glow { width: 220px; height: 220px; right: -12%; }
  .quote-line { font-size: clamp(58px, 17vw, 82px); line-height: .82; }
  .quote-line.accent { margin-left: 0; }
  .quote-meta { margin: 38px 0 0; max-width: 290px; line-height: 1.55; }

  .contact { padding-top: 82px; padding-bottom: 88px; gap: 34px; }
  .contact-copy h2 { font-size: clamp(44px, 12vw, 62px); }
  .contact-glass { min-height: 162px; padding: 20px; border-radius: 22px; }
  .contact-glass::after { border-radius: 21px; }
  .contact-glass small { left: 20px; top: 20px; }
  .contact-glass strong { max-width: calc(100% - 36px); font-size: clamp(23px, 7.4vw, 34px); }
  .contact-glass > span { right: 18px; bottom: 18px; font-size: 24px; }

  footer {
    padding-top: 22px;
    padding-bottom: 22px;
    flex-direction: column;
    gap: 8px;
    line-height: 1.45;
  }

  .intro-lockup { gap: 9px; }
  .intro-lockup span,
  .intro-lockup em { font-size: clamp(31px, 10vw, 44px); }
  .manuals-modal { padding: 14px; }
  .manuals-modal-card { padding: 32px 22px; border-radius: 22px; }
  .manuals-modal-card h2 { font-size: clamp(36px, 10vw, 46px); }
}

@media (max-width: 390px) {
  :root { --page-gutter: 15px; }
  .topbar, body.is-scrolled .topbar { width: calc(100% - 14px); }
  .brand-name { max-width: 92px; }
  .hero-title h1 { font-size: clamp(50px, 15.4vw, 64px); }
  .hero-lead { font-size: 13px; }
  .service-name { font-size: clamp(48px, 14vw, 58px); }
  .card-art { aspect-ratio: 1.05 / 1; }
}

/* Low-height desktop displays (1366x768, laptops, browser devtools). */
@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    min-height: 760px;
    padding-top: 112px;
    padding-bottom: 38px;
  }
  .hero-title h1 { margin-top: 22px; margin-bottom: 20px; font-size: clamp(66px, 8.2vw, 112px); }
  .hero-object { width: 240px; }
  .hero-main { grid-template-columns: minmax(0,1fr) 240px; gap: 34px; }
}

/* Prevent hover-only transforms from affecting touch layouts. */
@media (hover: none), (pointer: coarse) {
  .service-card,
  .reveal-card.is-visible,
  .card-art,
  .hero-object { transform: none !important; }
  .card-glare { display: none; }
}

/* Reduced-motion must never cancel structural transforms used for positioning. */
@media (prefers-reduced-motion: reduce) {
  .topbar,
  body.ready .topbar,
  body.is-scrolled .topbar {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
  }
  .load-in,
  .reveal,
  .reveal-card,
  .quote-line,
  .process-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-object { transform: none !important; }
}

/* =========================================================
   V7 — Scroll-built service experiences
   ========================================================= */

.services-intro {
  width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 112px 0 86px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.services-intro-index {
  padding-top: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.services-intro-copy h2 {
  margin: 0;
  max-width: 930px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(54px, 6.6vw, 94px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.045em;
}
.services-intro-copy h2 em {
  font-weight: 400;
  color: var(--green-soft);
}
.services-intro-copy p {
  max-width: 560px;
  margin: 30px 0 0 auto;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(46,71,68,.72);
}

.service-story {
  --story-p: 0;
  --story-progress: 0%;
  position: relative;
  height: 255vh;
  min-height: 1700px;
  border-bottom: 1px solid var(--line);
}
.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(360px, .68fr);
  overflow: hidden;
  background: rgba(247, 241, 233, .40);
}
.brand-story .story-sticky {
  background: rgba(232, 220, 205, .33);
}
.story-visual {
  position: relative;
  min-width: 0;
  padding: 88px 24px 24px max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 110px max(34px, calc((100vw - 1440px) / 2)) 74px clamp(34px, 4vw, 72px);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(250,246,240,.52), rgba(250,246,240,.79)),
    rgba(250,246,240,.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.story-copy-brand {
  background:
    linear-gradient(90deg, rgba(244,236,227,.50), rgba(250,246,240,.81)),
    rgba(250,246,240,.22);
}
.story-copy-inner {
  width: min(100%, 510px);
}
.story-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.story-index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .42;
}
.story-copy h2 {
  margin: 24px 0 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(70px, 6vw, 112px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.052em;
}
.brand-story .story-copy h2 {
  font-size: clamp(64px, 5.4vw, 102px);
  line-height: .82;
}
.story-tagline {
  margin: 0;
  max-width: 470px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(25px, 2.05vw, 35px);
  line-height: 1.03;
  letter-spacing: -.025em;
  color: var(--green-2);
}
.story-description {
  max-width: 450px;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(46,71,68,.74);
}
.story-steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-step {
  min-width: 0;
  min-height: 96px;
  padding: 16px 12px 15px 0;
  opacity: .26;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, background .35s ease;
}
.story-step + .story-step {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.story-step span,
.story-step small {
  display: block;
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-step strong {
  display: block;
  margin: 9px 0 5px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.story-step small { line-height: 1.35; color: var(--green-soft); }
.service-story[data-step="1"] .story-step:nth-child(1),
.service-story[data-step="2"] .story-step:nth-child(-n+2),
.service-story[data-step="3"] .story-step {
  opacity: 1;
  transform: translateY(0);
}
.story-cta {
  margin-top: 28px;
  min-height: 58px;
  padding: 0 18px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(46,71,68,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 600;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.story-cta b { font-size: 19px; font-weight: 400; }
.story-cta:hover {
  color: var(--ivory);
  background: var(--green);
  transform: translateY(-2px);
}
.story-progress {
  position: relative;
  height: 1px;
  margin-top: 24px;
  background: rgba(46,71,68,.13);
  overflow: hidden;
}
.story-progress i {
  display: block;
  width: var(--story-progress);
  height: 100%;
  background: var(--green);
}

/* Wallpaper build */
.wallpaper-stage,
.brand-stage {
  position: relative;
  width: min(100%, 920px);
  height: min(76vh, 760px);
  min-height: 520px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(46,71,68,.13);
  background: #eee4d8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.64),
    0 40px 100px rgba(46,71,68,.10);
}
.wallpaper-stage::after,
.brand-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    inset 0 -1px 0 rgba(46,71,68,.08);
}
.room-blueprint {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(236,224,210,.36)),
    url("../images/paper-texture-luxe.png") repeat center / 520px 354px;
  opacity: var(--blueprint-opacity, 1);
  transition: opacity .05s linear;
}
.room-blueprint::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 67%;
  height: 1px;
  background: rgba(46,71,68,.20);
}
.room-blueprint small {
  position: absolute;
  left: 28px;
  bottom: 24px;
  font-size: 7px;
  letter-spacing: .18em;
  color: rgba(46,71,68,.50);
}
.blueprint-wall {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 9%;
  height: 49%;
  border: 1px solid rgba(46,71,68,.18);
  border-bottom: 0;
}
.blueprint-sofa,
.blueprint-seat {
  position: absolute;
  border: 1px solid rgba(46,71,68,.28);
  border-radius: 60px 60px 26px 26px;
}
.blueprint-sofa { left: 7%; bottom: 12%; width: 63%; height: 29%; }
.blueprint-seat { left: 30%; bottom: 6%; width: 43%; height: 27%; border-radius: 44% 44% 28px 28px; }
.blueprint-table {
  position: absolute;
  bottom: 8%;
  width: 21%;
  height: 8%;
  border: 1px solid rgba(46,71,68,.24);
  border-radius: 50%;
}
.blueprint-table::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 76px;
  width: 1px;
  background: rgba(46,71,68,.20);
}
.blueprint-table-a { left: -2%; }
.blueprint-table-b { right: 3%; }
.blueprint-lamp {
  position: absolute;
  right: 14%;
  top: 33%;
  width: 58px;
  height: 188px;
  border-right: 1px solid rgba(46,71,68,.28);
  border-left: 1px solid rgba(46,71,68,.14);
}
.blueprint-lamp::before,
.blueprint-lamp::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 96px;
  border: 1px solid rgba(46,71,68,.24);
  border-radius: 20px;
}
.blueprint-lamp::before { left: 3px; top: 4px; }
.blueprint-lamp::after { right: 6px; top: 38px; }
.room-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 0 calc(100% - var(--wall-reveal, 0%)) 0);
  -webkit-clip-path: inset(0 0 calc(100% - var(--wall-reveal, 0%)) 0);
  will-change: clip-path;
}
.room-reveal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--room-scale, 1.055));
  filter: saturate(.82) contrast(.96) brightness(1.02);
  will-change: transform;
}
.room-image-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238,227,214,.08), transparent 22%, rgba(34,52,49,.03)),
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,.12), transparent 40%);
  pointer-events: none;
}
.wallpaper-roll {
  position: absolute;
  z-index: 8;
  left: 7%;
  right: 7%;
  top: 0;
  height: 28px;
  transform: translateY(var(--roll-y, 0px)) rotate(var(--roll-rotate, -1.5deg));
  transform-origin: center;
  will-change: transform, opacity;
  opacity: var(--roll-opacity, 1);
}
.roll-paper {
  position: absolute;
  inset: 3px 0 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.32), transparent 8%, transparent 91%, rgba(46,71,68,.11)),
    repeating-linear-gradient(90deg, #d5c39f 0 11px, #e8ddc6 11px 19px, #c7b488 19px 30px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68);
}
.roll-core {
  position: absolute;
  right: -8px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 5px solid #d6c5a7;
  background: #9a8869;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.26);
}
.roll-shadow {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 20px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34,45,42,.24);
  filter: blur(9px);
}
.story-visual-label {
  position: absolute;
  z-index: 10;
  top: 24px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(46,71,68,.70);
}
.visual-label-left { left: 28px; }
.visual-label-right { right: 28px; }

/* Brand system: draw a manual, peel a mark, apply it */
.brand-stage {
  background: #e4ddd4;
  perspective: 1500px;
}
.brand-mockup {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: var(--mockup-opacity, .12);
  transform: scale(var(--mockup-scale, 1.05));
  will-change: opacity, transform, filter;
}
.brand-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) sepia(.10) saturate(.62) contrast(.92) brightness(1.05) blur(var(--mockup-blur, 5px));
}
.brand-mockup-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238,227,214,.10), rgba(46,71,68,.07)),
    linear-gradient(90deg, rgba(238,227,214,.10), transparent 58%);
}
.brand-manual {
  position: absolute;
  z-index: 5;
  left: 8%;
  top: 11%;
  width: 64%;
  height: 72%;
  padding: clamp(20px, 3vw, 38px);
  overflow: hidden;
  transform: translate3d(var(--manual-x, 0px), var(--manual-y, 0px), 0) rotate(var(--manual-rot, -5deg)) scale(var(--manual-scale, .88));
  transform-origin: left center;
  border: 1px solid rgba(46,71,68,.22);
  background: rgba(250,246,240,.96);
  box-shadow: 0 34px 75px rgba(46,71,68,.20);
  will-change: transform, opacity;
  opacity: var(--manual-opacity, 1);
}
.brand-manual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.34), transparent 30%);
}
.manual-registration,
.manual-footer {
  position: relative;
  z-index: 2;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: var(--draw, 0);
  transform: translateY(var(--registration-y, 8px));
}
.manual-rule {
  position: relative;
  z-index: 2;
  height: 1px;
  margin: 18px 0 24px;
  background: var(--green);
  transform: scaleX(var(--draw, 0));
  transform-origin: left;
}
.manual-hero-mark {
  position: relative;
  z-index: 2;
  width: clamp(72px, 8vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ivory);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 5vw, 76px);
  transform: scale(var(--draw-scale, .4)) rotate(var(--draw-rot, -18deg));
  opacity: var(--draw, 0);
}
.manual-heading {
  position: absolute;
  z-index: 2;
  top: 28%;
  right: 8%;
  width: 44%;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: .82;
  letter-spacing: -.035em;
  opacity: var(--draw-secondary, 0);
  transform: translateY(var(--heading-y, 12px));
}
.manual-heading em { color: var(--green-soft); font-weight: 400; }
.manual-columns {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 38px);
  right: clamp(20px, 3vw, 38px);
  bottom: 14%;
  display: grid;
  grid-template-columns: 1fr 1fr .78fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(46,71,68,.25);
  opacity: var(--draw-tertiary, 0);
}
.manual-columns span { display: block; margin-bottom: 7px; font-size: 6px; letter-spacing: .14em; }
.manual-columns strong { display: block; margin-bottom: 9px; font-family: "Instrument Serif", Georgia, serif; font-size: 19px; font-weight: 400; }
.manual-columns i { display: block; width: 88%; height: 1px; margin-top: 6px; background: rgba(46,71,68,.22); }
.manual-columns i:last-child { width: 56%; }
.manual-swatches { display: flex; align-items: end; gap: 6px; }
.manual-swatches b { display: block; width: 24px; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(46,71,68,.14); }
.manual-swatches b:nth-child(1) { background: var(--green); }
.manual-swatches b:nth-child(2) { background: #d0aa82; }
.manual-swatches b:nth-child(3) { background: #eee3d6; }
.manual-footer { position: absolute; left: clamp(20px, 3vw, 38px); bottom: 4.5%; opacity: var(--draw-tertiary, 0); }
.brand-sticker {
  position: absolute;
  z-index: 9;
  left: 29%;
  top: 45%;
  width: clamp(86px, 9vw, 124px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--green);
  border: 3px solid rgba(250,246,240,.95);
  box-shadow: 0 18px 42px rgba(29,43,41,.22);
  transform: translate3d(var(--sticker-x, 0px), var(--sticker-y, 0px), 0) rotate(var(--sticker-rot, -12deg)) scale(var(--sticker-scale, .9));
  opacity: var(--sticker-opacity, 0);
  will-change: transform, opacity;
}
.brand-sticker::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(46,71,68,.20);
}
.brand-sticker span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: .75;
}
.brand-sticker small { margin-top: 4px; font-size: 6px; letter-spacing: .18em; }

/* Story ambience follows scroll without becoming flashy */
.service-story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at 18% 44%, rgba(255,255,255,.28), transparent 68%);
  opacity: .8;
}
.brand-story::before {
  background: radial-gradient(650px circle at 24% 48%, rgba(255,255,255,.22), transparent 68%);
}

@media (max-width: 1120px) {
  .services-intro { grid-template-columns: 120px minmax(0,1fr); }
  .story-sticky { grid-template-columns: minmax(0,1.1fr) minmax(330px,.9fr); }
  .story-visual { padding-left: 24px; }
  .story-copy { padding-left: 34px; padding-right: 28px; }
  .wallpaper-stage, .brand-stage { height: min(70vh, 690px); }
  .story-copy h2 { font-size: clamp(66px, 7vw, 92px); }
  .brand-story .story-copy h2 { font-size: clamp(60px, 6.3vw, 84px); }
  .story-steps { grid-template-columns: 1fr; border-bottom: 0; }
  .story-step, .story-step + .story-step { min-height: 60px; padding: 11px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .story-step span { display: inline-block; width: 26px; }
  .story-step strong { display: inline-block; margin: 0 8px 0 0; font-size: 20px; }
  .story-step small { display: inline; }
}

@media (max-width: 900px) {
  .services-intro {
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 84px 0 62px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-intro-copy h2 { font-size: clamp(48px, 9vw, 72px); }
  .services-intro-copy p { margin-left: 0; max-width: 620px; }

  .service-story {
    height: 235svh;
    min-height: 1450px;
  }
  .story-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 56svh) minmax(0, 44svh);
  }
  .story-visual {
    padding: 78px var(--page-gutter) 12px;
  }
  .story-copy {
    padding: 22px var(--page-gutter) 28px;
    border-left: 0;
    border-top: 1px solid var(--line);
    align-items: start;
    overflow: hidden;
  }
  .story-copy-inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(230px,.8fr);
    grid-template-areas:
      "index steps"
      "title steps"
      "tagline steps"
      "description cta"
      "progress progress";
    column-gap: 34px;
    align-items: start;
  }
  .story-index { grid-area: index; }
  .story-copy h2 { grid-area: title; margin: 10px 0 10px; font-size: clamp(54px, 9.3vw, 78px); }
  .brand-story .story-copy h2 { font-size: clamp(50px, 8.3vw, 70px); }
  .story-tagline { grid-area: tagline; font-size: clamp(20px, 3.2vw, 28px); }
  .story-description { grid-area: description; margin-top: 10px; font-size: 11px; line-height: 1.55; }
  .story-steps { grid-area: steps; margin: 0; }
  .story-step, .story-step + .story-step { min-height: 46px; padding: 8px 0; }
  .story-step strong { font-size: 18px; }
  .story-step small { font-size: 6px; }
  .story-cta { grid-area: cta; margin-top: 12px; min-height: 48px; font-size: 10px; }
  .story-progress { grid-area: progress; margin-top: 15px; }
  .wallpaper-stage, .brand-stage {
    width: min(100%, 780px);
    height: 100%;
    min-height: 0;
    border-radius: 28px;
  }
  .story-visual-label { top: 18px; }
}

@media (max-width: 640px) {
  .services-intro { padding-top: 72px; padding-bottom: 50px; }
  .services-intro-copy h2 { font-size: clamp(44px, 12vw, 60px); line-height: .94; }
  .services-intro-copy p { margin-top: 20px; font-size: 12px; }

  .service-story {
    height: 250svh;
    min-height: 1550px;
  }
  .story-sticky {
    grid-template-rows: 54svh 46svh;
  }
  .story-visual { padding: 72px 12px 10px; }
  .wallpaper-stage, .brand-stage { border-radius: 22px; }
  .story-copy { padding: 18px 18px 22px; }
  .story-copy-inner {
    display: block;
  }
  .story-index { font-size: 7px; }
  .story-copy h2,
  .brand-story .story-copy h2 {
    margin: 8px 0 8px;
    font-size: clamp(46px, 14.5vw, 66px);
    line-height: .80;
  }
  .story-tagline { font-size: clamp(19px, 6vw, 25px); line-height: 1.02; }
  .story-description {
    margin-top: 10px;
    font-size: 10.5px;
    line-height: 1.45;
    max-width: 94%;
  }
  .story-steps {
    margin-top: 13px;
    grid-template-columns: repeat(3, minmax(0,1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .story-step,
  .story-step + .story-step {
    min-height: 54px;
    padding: 8px 5px 7px 0;
    border-bottom: 0;
    border-left: 0;
  }
  .story-step + .story-step { padding-left: 7px; border-left: 1px solid var(--line); }
  .story-step span { display: block; width: auto; margin-bottom: 3px; font-size: 6px; }
  .story-step strong { display: block; margin: 0 0 2px; font-size: 15px; }
  .story-step small { display: none; }
  .story-cta { margin-top: 12px; min-height: 44px; padding: 0 14px; font-size: 9px; }
  .story-progress { margin-top: 11px; }
  .story-visual-label { top: 14px; font-size: 6px; }
  .visual-label-left { left: 15px; }
  .visual-label-right { right: 15px; }

  .room-blueprint small { left: 16px; bottom: 15px; font-size: 6px; }
  .wallpaper-roll { left: 5%; right: 5%; height: 22px; }
  .roll-core { width: 22px; height: 22px; border-width: 4px; }
  .roll-paper { inset: 2px 0 2px; }
  .roll-shadow { top: 16px; }

  .brand-manual {
    left: 6%;
    top: 10%;
    width: 70%;
    height: 74%;
    padding: 16px;
  }
  .manual-rule { margin: 12px 0 16px; }
  .manual-heading { right: 7%; width: 47%; font-size: clamp(20px, 6vw, 30px); }
  .manual-columns { left: 16px; right: 16px; bottom: 14%; gap: 7px; padding-top: 10px; }
  .manual-columns strong { font-size: 14px; }
  .manual-columns i { margin-top: 4px; }
  .manual-swatches b { width: 16px; }
  .manual-footer { left: 16px; font-size: 5px; }
  .brand-sticker { width: clamp(70px, 22vw, 92px); }
}

@media (prefers-reduced-motion: reduce) {
  .service-story { height: auto; min-height: 0; }
  .story-sticky { position: relative; height: auto; min-height: auto; }
  .room-reveal { clip-path: inset(0); -webkit-clip-path: inset(0); }
  .room-blueprint { opacity: 0; }
  .wallpaper-roll { display: none; }
  .brand-mockup { opacity: .88; transform: none; }
  .brand-mockup img { filter: grayscale(1) sepia(.1) saturate(.6); }
  .brand-manual { transform: translate(-4%, -2%) rotate(-3deg) scale(.78); opacity: .94; }
  .brand-sticker { opacity: 1; transform: translate(110px, 40px) rotate(8deg) scale(.75); }
}

/* Sticky scroll stories must not live inside a clipped ancestor. */
.page-shell { overflow: visible; }

/* Avoid turning BODY into a non-scrolling overflow ancestor; that breaks sticky scenes in Safari/Chromium. */
html { overflow-x: clip; overflow-y: auto; }
body { overflow-x: clip; overflow-y: visible; }
