@import url("tokens.css");

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
/* overflow-x:clip, never hidden. `hidden` makes an ancestor a scroll
   container, which silently breaks position:sticky everywhere below it
   and killed the pinned hero stage. `clip` contains the bleed without
   creating that container. The real overflow was fixed at source by
   using fr units in the grids. */
body{margin:0;font-family:var(--ff);color:var(--ink);background:var(--n-0);
     font-weight:400;overflow-x:clip}
img,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p,figure,blockquote{margin:0}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

/* ============================================================
   PRIMITIVES
   ============================================================ */

/* the recurring micro-label: 14px / 3.38px tracking / uppercase */
.sco-label{
  font-size:var(--label-size);
  letter-spacing:var(--label-track);
  text-transform:uppercase;
  font-weight:400;
  line-height:1.2;
}

/* display type. weight 300 at large sizes, tight tracking */
.sco-display{
  font-weight:300;
  letter-spacing:-.005em;
  line-height:1.2;
  font-size:clamp(1.75rem,3vw,2.7rem);   /* 43px at 1440, measured off ref */
}

/* the gold hairline. a recurring divider motif, never a border */
.sco-rule{
  height:1px;border:0;margin:0;
  background:linear-gradient(to right,transparent,var(--s-400) 12%,var(--s-400) 88%,transparent);
}

/* film grain. 3% opacity turbulence over the whole page for analog warmth */
.sco-grain{
  position:fixed;inset:0;z-index:9999;pointer-events:none;
  opacity:.035;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* pill CTA. the only rounded thing on the page, deliberately */
.sco-pill{
  display:inline-flex;align-items:center;gap:.7em;
  padding:.92em 1.55em;border-radius:999px;
  background:var(--p-800);color:var(--n-0);
  font-size:14px;font-weight:500;letter-spacing:.02em;
  transition:background .45s var(--ease-out),transform .45s var(--ease-out);
}
.sco-pill:hover{background:var(--p-600);transform:translateY(-2px)}
.sco-pill .arw{transition:transform .45s var(--ease-out)}
.sco-pill:hover .arw{transform:translate(3px,-3px)}

/* ============================================================
   HEADER . transparent over the hero, solid once past it.
   Three tracks: nav left, wordmark centred, utilities right.
   No utility strip: the sleeker single bar is the whole point.
   ============================================================ */
.sco-head{position:fixed;top:0;left:0;right:0;z-index:100;
  transition:background .55s var(--ease-out),backdrop-filter .55s var(--ease-out),
             box-shadow .55s var(--ease-out)}

.sco-head__bar{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  padding:0 clamp(20px,3vw,44px);height:88px;
  transition:height .5s var(--ease-out);
}
.sco-head__mark{justify-self:center;display:flex;align-items:center;
  flex-direction:column;gap:3px;line-height:1}
.sco-head__mark .pre{font-size:9.5px;letter-spacing:2.6px;text-transform:uppercase;
  color:rgba(255,255,255,.72);transition:color .5s var(--ease-out)}
.sco-head__mark .name{font-size:20px;font-weight:300;letter-spacing:5.5px;
  text-transform:uppercase;color:var(--n-0);transition:color .5s var(--ease-out)}

.sco-nav{display:flex;gap:26px;align-items:center;justify-self:start}
.sco-nav a{font-size:14px;font-weight:400;color:rgba(255,255,255,.9);
  letter-spacing:.3px;position:relative;padding:5px 0;
  transition:color .4s var(--ease-out)}
.sco-nav a::after{content:"";position:absolute;left:0;bottom:0;height:1px;width:0;
  background:var(--s-400);transition:width .42s var(--ease-out)}
.sco-nav a:hover::after{width:100%}

.sco-head__utils{justify-self:end;display:flex;align-items:center;gap:18px}
.sco-head__icon{width:20px;height:20px;color:rgba(255,255,255,.86);
  transition:color .4s var(--ease-out)}
.sco-head__icon:hover{color:var(--n-0)}
.sco-head__icon svg{width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.5}

/* the BOOK control is an outline pill on the film, filled once solid */
.sco-book{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.78em 2.1em;border-radius:999px;
  border:1px solid rgba(255,255,255,.75);color:var(--n-0);
  font-size:12px;font-weight:500;letter-spacing:2.4px;text-transform:uppercase;
  transition:background .45s var(--ease-out),color .45s var(--ease-out),
             border-color .45s var(--ease-out);
}
.sco-book:hover{background:var(--n-0);color:var(--p-900);border-color:var(--n-0)}

/* scrolled: the bar earns a ground */
.sco-head.is-stuck{background:rgba(12,14,16,.92);backdrop-filter:blur(14px);
  box-shadow:0 1px 0 rgba(255,255,255,.07)}
.sco-head.is-stuck .sco-head__bar{height:70px}

/* ============================================================
   HERO . full-bleed film, copy anchored low left.
   The video is decoration: a poster carries it wherever media
   is blocked or slow, and the still is graded to match.
   ============================================================ */
.sco-vhero{position:relative;min-height:100svh;display:flex;align-items:flex-end;
  overflow:hidden;background:var(--p-900)}
.sco-vhero__film{position:absolute;inset:0;z-index:0}
.sco-vhero__film video,.sco-vhero__film img{
  width:100%;height:100%;object-fit:cover;display:block}
.sco-vhero__film img{position:absolute;inset:0;z-index:0;
  animation:sco-drift 26s ease-in-out infinite alternate}
@keyframes sco-drift{
  from{transform:scale(1.06) translate3d(0,0,0)}
  to  {transform:scale(1.14) translate3d(-1.5%,-1.5%,0)}
}
@media (prefers-reduced-motion:reduce){
  .sco-vhero__film img{animation:none;transform:scale(1.06)}
}
.sco-vhero__film video{position:relative;z-index:1}
/* two overlays: a global cool wash, plus a left ramp so the copy
   always has ground under it whatever the footage is doing */
.sco-vhero__film::after{content:"";position:absolute;inset:0;z-index:2;
  background:
    linear-gradient(90deg,rgba(12,14,16,.86) 0%,rgba(12,14,16,.55) 38%,rgba(12,14,16,.12) 70%),
    linear-gradient(180deg,rgba(12,14,16,.55) 0%,rgba(12,14,16,.05) 34%,rgba(12,14,16,.62) 100%)}

.sco-vhero__inner{position:relative;z-index:3;
  padding:0 clamp(22px,4.2vw,72px) clamp(72px,9vw,124px);
  max-width:var(--maxw);margin:0 auto;width:100%}
.sco-vhero h1{
  font-weight:300;letter-spacing:-.008em;line-height:1.14;color:var(--n-0);
  font-size:clamp(2.1rem,4vw,3.5rem);max-width:15ch;margin-bottom:22px}
.sco-vhero p{color:rgba(255,255,255,.84);font-size:16px;line-height:1.66;
  max-width:46ch;margin-bottom:34px}
.sco-vhero .sco-book{padding:1.02em 2.4em;font-size:12px}


@media (max-width:1100px){
  .sco-nav{display:none}
  .sco-head__utils .sco-head__icon{display:none}
  }

/* ============================================================
   HERO . sticky pin + three panel horizontal wipe
   The signature mechanic. 320vh of scroll drives one pinned stage.
   ============================================================ */
.sco-pillars{position:relative;height:340vh;background:var(--p-900)}

.sco-pillars__stage{
  position:sticky;top:0;height:100vh;overflow:hidden;
  background:var(--p-900);
}

/* layer 0 . the film */
.sco-pillars__film{position:absolute;inset:0;z-index:0}
.sco-pillars__film video,.sco-pillars__film .fallback{
  width:100%;height:100%;object-fit:cover;
}
.sco-pillars__film .fallback{
  background-image:url("../img/hero-film.jpg");
  background-size:cover;background-position:58% 42%;
  animation:sco-drift 30s ease-in-out infinite alternate;
}
.sco-pillars__film::after{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(70% 60% at 50% 45%,rgba(15,17,19,0) 0%,rgba(15,17,19,.55) 100%),
    linear-gradient(180deg,rgba(15,17,19,.5) 0%,rgba(15,17,19,.2) 40%,rgba(15,17,19,.62) 100%);
}

/* layer 1 . the pinned testimonial */
.sco-pillars__quote{
  position:absolute;z-index:1;left:50%;top:44%;
  transform:translate(-50%,-50%);
  width:min(820px,80vw);text-align:center;color:var(--n-0);
}
.sco-pillars__quote .attrib{
  font-size:16px;font-weight:400;letter-spacing:.005em;margin-bottom:22px;
  color:rgba(255,255,255,.94);
}
.sco-pillars__quote blockquote{
  font-weight:200;font-size:clamp(1.7rem,2.9vw,2.6rem);line-height:1.26;
  letter-spacing:-.01em;margin-bottom:30px;
}
.sco-pillars__quote blockquote em{font-style:normal;color:var(--s-300)}
.sco-pillars__quote .sco-rule{margin:0 auto 30px;width:78%}
.sco-pillars__quote .who{
  font-size:14px;letter-spacing:3.38px;text-transform:uppercase;
  color:rgba(255,255,255,.86);
}

/* the eyebrow, bottom of the stage */
.sco-pillars__eyebrow{
  position:absolute;z-index:1;bottom:52px;left:0;right:0;text-align:center;
  color:rgba(255,255,255,.9);
}

/* layer 2 . the three wipe panels */
.sco-pillars__panels{position:absolute;inset:0;z-index:2;display:flex}
.sco-panel{
  position:relative;flex:1 1 33.3333%;height:100%;overflow:hidden;
  /* hidden: clipped 100% from the right edge. reveals left to right. */
  clip-path:inset(0 100% 0 0);
  will-change:clip-path;
}
.sco-panel__art{position:absolute;inset:0}

.sco-panel__art::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,12,14,.30) 0%,rgba(10,12,14,.10) 45%,rgba(10,12,14,.62) 100%);
}
.sco-panel__body{
  position:absolute;z-index:2;left:0;right:0;top:50%;
  transform:translateY(-50%);
  display:flex;flex-direction:column;align-items:center;gap:32px;
  color:var(--n-0);padding:0 24px;
}
.sco-panel__mark{
  display:flex;flex-direction:column;align-items:center;gap:18px;
  font-size:13px;font-weight:400;letter-spacing:4px;
  color:rgba(255,255,255,.72);
}
.sco-panel__mark::after{
  content:"";width:40px;height:1px;background:var(--s-400);opacity:.85;
}
.sco-panel__label{text-align:center;color:rgba(255,255,255,.95)}

/* panel art . real photography, graded to the palette.
   Each panel keeps a duotone wash so three unrelated photographs
   read as one art-directed set rather than a stock grid. */
.sco-panel__art{background-size:cover;background-position:center;background-repeat:no-repeat}

.sco-panel--a .sco-panel__art{
  background-image:url("../img/panel-a-wood.jpg");
  background-position:52% center;
}
.sco-panel--a .sco-panel__art::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(78% 58% at 34% 40%,rgba(255,214,160,.26),transparent 70%),
    linear-gradient(180deg,rgba(60,38,20,.18),rgba(30,20,12,.42));
  mix-blend-mode:multiply;
}

.sco-panel--b .sco-panel__art{
  background-image:url("../img/panel-b-dark.jpg");
  background-position:center 42%;
}
.sco-panel--b .sco-panel__art::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(62% 46% at 50% 34%,rgba(183,159,61,.20),transparent 72%),
    linear-gradient(180deg,rgba(12,10,18,.36),rgba(8,7,12,.60));
}

.sco-panel--c .sco-panel__art{
  background-image:url("../img/panel-c-portrait.jpg");
  background-position:52% 18%;
}
.sco-panel--c .sco-panel__art::before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(43,37,33,.22) 0%,rgba(43,37,33,.06) 40%,rgba(30,26,23,.58) 100%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px){
  .sco-head__util{display:none}
  .sco-nav{display:none}
}
@media (max-width:760px){
  .sco-pillars{height:300vh}
  .sco-pillars__panels{flex-direction:column}
  .sco-panel{clip-path:inset(0 0 100% 0)}
  .sco-panel__mark{width:74px;height:74px;font-size:28px}
  .sco-panel__body{gap:20px}
  .sco-pillars__quote{width:86vw}
}

@media (prefers-reduced-motion:reduce){
  .sco-panel{clip-path:none !important}
  *{animation-duration:.01ms !important;transition-duration:.01ms !important}
}

/* ============================================================
   SHARED SECTION PRIMITIVES
   ============================================================ */
.sco-sec{position:relative;padding:clamp(64px,7.5vw,118px) var(--gut)}
.sco-wrap{max-width:var(--maxw);margin:0 auto}
.sco-eyebrow{color:var(--s-600);margin-bottom:20px}
.sco-lede{font-size:16px;line-height:1.62;color:var(--n-800);max-width:54ch}

/* reveal primitive. direction encodes position, set per section. */
.sco-rise{opacity:0;transform:translateY(38px)}
.sco-slide-l{opacity:0;transform:translateX(-46px)}
.sco-slide-r{opacity:0;transform:translateX(46px)}

/* ============================================================
   02. HALF IMAGE. Split field, image wipes up on entry.
   Deliberately asymmetric: image takes 54%, copy sits in the
   remaining space with a wide left margin so it is not centred.
   ============================================================ */
.sco-half{background:var(--s-50);padding:0;overflow:hidden}
.sco-half__grid{display:grid;grid-template-columns:54fr 46fr;align-items:stretch;min-height:660px}
.sco-half__grid > *{min-width:0}
.sco-half__media{position:relative;overflow:hidden}
.sco-half__media img{width:100%;height:100%;object-fit:cover;
  clip-path:inset(100% 0 0 0);will-change:clip-path}
.sco-half__copy{display:flex;flex-direction:column;justify-content:center;
  padding:clamp(50px,6vw,96px) clamp(40px,5.5vw,90px)}
.sco-half__copy h2{margin-bottom:0}
.sco-half__copy .sco-rule{width:104px;margin:24px 0 26px}

/* ============================================================
   03. GALLERY CLUSTER. Three plates at unequal size and depth,
   framed by one offset gold rule. Not a 3-up card grid.
   ============================================================ */
.sco-gal{background:var(--n-0)}
.sco-gal__grid{display:grid;grid-template-columns:1.08fr .82fr .96fr;
  gap:20px;align-items:start;position:relative;padding:70px 0 40px}
.sco-gal__plate{position:relative;overflow:hidden}
.sco-gal__plate img{width:100%;height:118%;object-fit:cover;display:block;
  will-change:transform}
.sco-gal__plate::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(30,34,39,0) 60%,rgba(30,34,39,.28) 100%);
  opacity:0;transition:opacity .6s var(--ease-out)}
.sco-gal__plate:hover::after{opacity:1}
/* A deliberate rhythm: low, high, mid. The eye steps down then up.
   Heights and offsets are paired so the three bottom edges never
   line up, which is the point, but the steps are even. */
.sco-gal__plate--1{height:430px;transform:translateY(52px)}
.sco-gal__plate--2{height:340px;transform:translateY(-34px);z-index:2}
.sco-gal__plate--3{height:390px;transform:translateY(14px)}
/* registration frame: sits behind the cluster and breaks out of it
   on two sides, so it reads as a mark rather than a stray border */
.sco-gal__frame{position:absolute;left:-30px;top:0;
  width:42%;height:82%;
  border:1px solid var(--s-400);pointer-events:none;z-index:0}
.sco-gal__head{display:flex;justify-content:space-between;align-items:flex-end;
  gap:40px;margin-bottom:56px;flex-wrap:wrap}

/* ============================================================
   04. ARC. Dark field rises behind a wide dome.
   The mask is the section transition, not a divider line.
   ============================================================ */
.sco-arc-wrap{background:#f6f2e8}
.sco-arc{background:var(--p-900);color:var(--n-0);
  clip-path:ellipse(135% 100% at 50% 100%);
  padding-top:clamp(140px,15vw,220px);
  margin-top:-40px}
.sco-arc__inner{text-align:center;max-width:1000px;margin:0 auto}
.sco-arc__mark{width:64px;height:64px;margin:0 auto 34px;
  border:1px solid var(--s-400);display:grid;place-items:center;
  font-size:20px;font-weight:300;color:var(--s-300);letter-spacing:.04em}
.sco-arc h2{margin-bottom:20px;color:var(--n-0)}
.sco-arc__sub{color:var(--p-200);font-size:15.5px;line-height:1.68;
  max-width:60ch;margin:0 auto 52px}
/* --- tab + card slider. Replaces the static three column block.
   INTERACTION MODEL: click-driven tablist. The card cross-fades with a
   small directional offset so switching reads as a swipe, not a blink.
   Card is light against the dark field, with the photograph dissolving
   into the card ground rather than sitting in a hard box. --- */
.sco-arc__tabs{display:flex;justify-content:center;gap:6px;
  margin:0 auto 34px;flex-wrap:wrap}
.sco-arc__tab{
  padding:11px 22px;border-radius:999px;
  font-size:14px;font-weight:500;letter-spacing:.02em;
  color:rgba(255,255,255,.62);background:transparent;
  transition:background .45s var(--ease-out),color .45s var(--ease-out);
  white-space:nowrap;
}
.sco-arc__tab:hover{color:rgba(255,255,255,.9)}
.sco-arc__tab[aria-selected="true"]{background:var(--n-0);color:var(--p-900)}

.sco-arc__deck{display:grid;text-align:left;min-height:380px}
.sco-arc__card{
  grid-area:1/1;
  display:grid;grid-template-columns:44fr 56fr;
  border-radius:9px;overflow:clip;
  background:linear-gradient(105deg,#efeadd 0%,#e6dfcd 58%,#ded5be 100%);
  opacity:0;visibility:hidden;transform:translateX(26px);
  transition:opacity .62s var(--ease-out),transform .62s var(--ease-out),visibility .62s;
}
.sco-arc__card.is-on{opacity:1;visibility:visible;transform:none}
.sco-arc__card figure{margin:0;position:relative;min-height:0}
.sco-arc__card img{position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;display:block}
/* the photograph dissolves into the card ground on its inner edge */
.sco-arc__card figure::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(96deg,rgba(239,234,221,0) 34%,rgba(239,234,221,.72) 74%,#e9e3d4 100%);
}
.sco-arc__body{padding:clamp(26px,3vw,42px) clamp(26px,3.2vw,50px);
  display:flex;flex-direction:column;justify-content:center}
.sco-arc__body .n{font-size:12px;letter-spacing:3px;color:var(--s-700);
  display:block;margin-bottom:16px}
.sco-arc__body h3{font-size:clamp(1.2rem,1.65vw,1.5rem);font-weight:300;
  letter-spacing:-.004em;line-height:1.24;color:var(--p-900);margin-bottom:16px}
.sco-arc__body p{font-size:15px;line-height:1.6;color:#4a4636;max-width:42ch}
.sco-arc__body .sco-rule{width:76px;margin:18px 0 0}

@media (max-width:900px){
  .sco-half__grid{grid-template-columns:1fr;min-height:0}
  .sco-half__media{height:420px}
  .sco-gal__grid{grid-template-columns:1fr 1fr;gap:12px;padding:20px 0 0}
  .sco-gal__plate--1,.sco-gal__plate--2,.sco-gal__plate--3{transform:none}
  .sco-gal__plate--1{grid-column:1/-1;height:360px!important}
  .sco-gal__plate--2,.sco-gal__plate--3{height:230px!important}
  .sco-gal__frame{display:none}
  .sco-arc__cols{grid-template-columns:1fr;gap:28px}
  .sco-arc{clip-path:ellipse(340% 100% at 50% 100%)}
}

/* ============================================================
   05. SERVICES. Pinned left index, scrolling right panels.
   Split pane, not a card grid. The left rail is the spine.
   ============================================================ */
.sco-svc{background:var(--n-0);padding-top:clamp(90px,10vw,150px)}
.sco-svc__grid{display:grid;grid-template-columns:38fr 62fr;gap:clamp(40px,6vw,90px);
  max-width:var(--maxw);margin:0 auto}
.sco-svc__grid > *{min-width:0}
.sco-svc__rail{position:sticky;top:170px;align-self:start;height:max-content;
  padding-bottom:60px}
.sco-svc__rail h2{margin-bottom:18px}
.sco-svc__rail .sco-lede{margin-bottom:8px}
.sco-svc__index{list-style:none;margin:36px 0 0;padding:0}
.sco-svc__index li{
  padding:16px 0;border-top:1px solid #e7e3da;
  display:flex;align-items:baseline;gap:16px;
  color:var(--n-700);font-size:17px;font-weight:400;
  transition:color .5s var(--ease-out);
}
.sco-svc__index li .n{font-size:12px;letter-spacing:2.6px;color:var(--n-600);
  transition:color .5s var(--ease-out)}
.sco-svc__index li.is-on{color:var(--p-800)}
.sco-svc__index li.is-on .n{color:var(--s-600)}
/* the active marker is a growing gold rule, not a background fill */
.sco-svc__index li::after{content:"";flex:1;height:1px;background:var(--s-400);
  transform:scaleX(0);transform-origin:left;transition:transform .6s var(--ease-out)}
.sco-svc__index li.is-on::after{transform:scaleX(1)}

.sco-svc__panels{display:flex;flex-direction:column;gap:clamp(64px,8vw,110px);
  padding-bottom:clamp(60px,8vw,110px)}
.sco-svc__panel figure{margin:0;overflow:hidden;position:relative;border-radius:12px}
.sco-svc__panel img{width:100%;height:clamp(340px,44vw,520px);object-fit:cover;display:block}
.sco-svc__panel h3{font-size:clamp(1.3rem,1.8vw,1.65rem);font-weight:300;
  letter-spacing:-.004em;margin:24px 0 12px;color:var(--p-800);
}
.sco-svc__panel p{font-size:15.5px;line-height:1.64;color:var(--n-800);max-width:56ch;
}
.sco-svc__meta{display:flex;gap:26px;margin-top:20px;flex-wrap:wrap}
.sco-svc__panel .sco-pill{margin-top:26px;font-size:13.5px;padding:.85em 1.4em}
.sco-svc__meta span{font-size:13px;letter-spacing:2.2px;text-transform:uppercase;
  color:var(--n-700)}

/* ============================================================
   06. AFTERCARE. One rounded split card on a warm ground.
   It sits between two dark sections, so the ground is light on
   purpose: three dark bands in a row read as one long block.
   ============================================================ */
.sco-after{background:var(--s-50)}
.sco-after__card{
  max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:52fr 48fr;
  border-radius:14px;overflow:clip;
  box-shadow:0 30px 80px -40px rgba(30,34,39,.42);
  background:var(--n-0);
}
.sco-after__card > *{min-width:0}

/* left: the photograph carries the headline */
.sco-after__media{position:relative;min-height:clamp(420px,46vw,560px);
  display:flex;align-items:flex-end}
.sco-after__media img{position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0}
.sco-after__media::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(16,18,20,.24) 0%,rgba(16,18,20,.16) 40%,rgba(16,18,20,.84) 100%)}
.sco-after__overlay{position:relative;z-index:2;color:var(--n-0);
  padding:clamp(28px,3.4vw,48px)}
.sco-after__overlay h2{color:var(--n-0);margin-bottom:14px}
.sco-after__overlay .sco-rule{width:112px;margin:0 0 18px}
.sco-after__overlay p{color:rgba(255,255,255,.86);font-size:15px;line-height:1.62;
  max-width:38ch;margin-bottom:26px}

/* right: the detail, as a real sequence rather than three cards */
.sco-after__body{padding:clamp(34px,4vw,62px) clamp(30px,3.6vw,56px);
  display:flex;flex-direction:column;justify-content:center;background:var(--n-0)}
.sco-after__body > .sco-eyebrow{margin-bottom:14px}
.sco-after__list{list-style:none;margin:22px 0 0;padding:0;
  counter-reset:step}
.sco-after__list li{
  counter-increment:step;position:relative;
  padding:18px 0 18px 46px;border-top:1px solid #ece7db;
}
.sco-after__list li:last-child{border-bottom:1px solid #ece7db}
.sco-after__list li::before{
  content:counter(step,decimal-leading-zero);
  position:absolute;left:0;top:19px;
  font-size:11.5px;letter-spacing:2.4px;color:var(--s-600)}
.sco-after__list h3{font-size:16px;font-weight:500;color:var(--p-800);margin-bottom:5px}
.sco-after__list p{font-size:14.5px;line-height:1.58;color:var(--n-800);max-width:40ch}

/* ============================================================
   STANDARD . the abstract breather. A drifting soft field
   behind a statement that resolves line by line on scroll.
   No photograph: the page has plenty, and the pause is the point.
   ============================================================ */
.sco-std{position:relative;overflow:clip;background:#f6f2e8;
  padding-top:clamp(110px,13vw,180px);padding-bottom:clamp(110px,13vw,180px)}
/* two large blurred fields, counter-drifting. Cheap, and it gives the
   section depth without another image. */
.sco-std__field{position:absolute;border-radius:50%;filter:blur(70px);
  pointer-events:none;will-change:transform}
.sco-std__field--a{width:46vw;height:46vw;left:-10vw;top:-12vw;
  background:radial-gradient(circle,rgba(197,178,100,.42),rgba(197,178,100,0) 68%)}
.sco-std__field--b{width:46vw;height:46vw;right:-12vw;bottom:14vw;
  background:radial-gradient(circle,rgba(75,84,97,.20),rgba(75,84,97,0) 66%)}
.sco-std__inner{position:relative;z-index:2;max-width:1080px;margin:0 auto;
  text-align:center}
.sco-std__lines{margin:0 auto}
.sco-std__lines span{
  display:block;font-weight:200;
  font-size:clamp(1.5rem,3.1vw,2.75rem);line-height:1.28;
  letter-spacing:-.012em;color:var(--p-800);
}
.sco-std__lines span em{font-style:normal;color:var(--s-600)}
.sco-std__sig{margin-top:44px;font-size:12.5px;letter-spacing:3px;
  text-transform:uppercase;color:var(--n-700)}

@media (max-width:900px){
  .sco-after__card{grid-template-columns:1fr}
  .sco-after__media{min-height:340px}
  .sco-std__field{filter:blur(48px)}
}
/* ============================================================
   07. REVIEWS. Quiet, wide, one at a time. No cards.
   ============================================================ */
.sco-rev{background:var(--s-50)}
.sco-rev__inner{max-width:960px;margin:0 auto;text-align:center}
.sco-rev__track{position:relative;min-height:190px;margin-top:34px}
.sco-rev__item{position:absolute;inset:0;opacity:0;visibility:hidden;
  transition:opacity .8s var(--ease-out)}
.sco-rev__item.is-on{opacity:1;visibility:visible;position:relative}
.sco-rev__item blockquote{font-size:clamp(1.15rem,1.75vw,1.6rem);font-weight:300;
  line-height:1.48;letter-spacing:-.004em;color:var(--p-800);margin-bottom:24px}
.sco-rev__item .who{font-size:13px;letter-spacing:3.2px;text-transform:uppercase;
  color:var(--n-700)}
.sco-rev__dots{display:flex;gap:10px;justify-content:center;margin-top:14px}
.sco-rev__dots button{width:34px;height:2px;background:#d8d2c2;padding:0;
  transition:background .45s var(--ease-out)}
.sco-rev__dots button[aria-selected="true"]{background:var(--s-600)}

/* ============================================================
   08. CONSULTATION CTA. Copy left, two offset plates right
   travelling at different rates. The offset is what makes the
   parallax legible: identical columns would just look like drift.
   ============================================================ */
.sco-cta{background:var(--s-50);overflow:clip}
.sco-cta__grid{max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:46fr 54fr;
  gap:clamp(36px,5vw,84px);align-items:center}
.sco-cta__grid > *{min-width:0}
.sco-cta__copy h2{margin-bottom:16px;color:var(--p-800)}
.sco-cta__copy .sco-eyebrow{margin-bottom:0}
.sco-cta__copy .sco-rule{width:150px;margin:20px 0 26px}
.sco-cta__copy p{font-size:15.5px;line-height:1.68;color:var(--n-800);
  max-width:44ch;margin-bottom:32px}

.sco-cta__plates{display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(16px,2vw,30px);align-items:start}
.sco-cta__plate{border-radius:12px;overflow:clip;position:relative;
  will-change:transform}
.sco-cta__plate img{width:100%;height:100%;object-fit:cover;display:block}
/* unequal heights and a standing offset, so the two never line up */
.sco-cta__plate--a{aspect-ratio:3/4.3}
.sco-cta__plate--b{aspect-ratio:3/5;transform:translateY(-46px)}

@media (max-width:900px){
  .sco-cta__grid{grid-template-columns:1fr}
  .sco-cta__plate--b{transform:none}
}
/* ============================================================
   09. FOOTER
   ============================================================ */
.sco-foot{background:var(--p-900);color:var(--p-200);
  padding:clamp(70px,8vw,110px) var(--gut) 0}
.sco-foot__grid{max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:clamp(30px,4vw,60px)}
.sco-foot__mark{font-size:25px;font-weight:300;color:var(--n-0);letter-spacing:.02em;
  margin-bottom:18px;display:block}
.sco-foot h4{font-size:13px;letter-spacing:3px;text-transform:uppercase;
  color:var(--s-400);font-weight:400;margin-bottom:20px}
.sco-foot ul{list-style:none;margin:0;padding:0}
.sco-foot li{margin-bottom:12px}
.sco-foot a{font-size:14px;color:var(--p-200);transition:color .35s var(--ease-out)}
.sco-foot a:hover{color:var(--n-0)}
.sco-foot p{font-size:14px;line-height:1.7}
.sco-foot__base{max-width:var(--maxw);margin:clamp(50px,6vw,80px) auto 0;
  border-top:1px solid rgba(255,255,255,.1);padding:26px 0 34px;
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  font-size:13.5px;color:var(--p-300)}

@media (max-width:900px){
  .sco-svc__grid{grid-template-columns:1fr;gap:0}
  /* display:contents dissolves the rail box so the index can stick to
     the SECTION rather than to a short parent. The heading scrolls away
     normally; only the index follows you down. */
  .sco-svc__rail{display:contents}
  .sco-svc__rail h2{margin-bottom:4px}
  .sco-feat__grid{grid-template-columns:1fr}
  .sco-foot__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:600px){ .sco-foot__grid{grid-template-columns:1fr} }

/* ============================================================
   MOBILE NAV. Hidden desktop nav needs a replacement, not a gap.
   Full field overlay rather than a dropdown: at this type scale a
   dropdown would need a scrollbar, which is worse.
   ============================================================ */
.sco-burger{display:none;width:44px;height:44px;position:relative;
  justify-self:start;margin-right:auto}
.sco-burger span{position:absolute;left:9px;width:26px;height:1px;
  background:var(--n-0);transition:transform .45s var(--ease-out),opacity .3s}
.sco-burger span:nth-child(1){top:17px}
.sco-burger span:nth-child(2){top:24px}
.sco-burger span:nth-child(3){top:31px}
body.sco-menu-open .sco-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.sco-menu-open .sco-burger span:nth-child(2){opacity:0}
body.sco-menu-open .sco-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.sco-drawer{
  position:fixed;inset:0;z-index:99;background:var(--p-900);
  display:flex;flex-direction:column;justify-content:center;
  padding:0 32px;gap:4px;
  opacity:0;visibility:hidden;
  transform:translateY(-14px);
  transition:opacity .5s var(--ease-out),transform .5s var(--ease-out),visibility .5s;
}
body.sco-menu-open .sco-drawer{opacity:1;visibility:visible;transform:none}
.sco-drawer a{
  color:var(--n-0);font-size:clamp(1.9rem,8vw,2.6rem);font-weight:300;
  letter-spacing:-.015em;padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
  opacity:0;transform:translateY(16px);
  transition:opacity .5s var(--ease-out),transform .5s var(--ease-out);
}
body.sco-menu-open .sco-drawer a{opacity:1;transform:none}
/* stagger the links in, so the panel does not arrive as one slab */
body.sco-menu-open .sco-drawer a:nth-child(1){transition-delay:.10s}
body.sco-menu-open .sco-drawer a:nth-child(2){transition-delay:.16s}
body.sco-menu-open .sco-drawer a:nth-child(3){transition-delay:.22s}
body.sco-menu-open .sco-drawer a:nth-child(4){transition-delay:.28s}
body.sco-menu-open .sco-drawer a:nth-child(5){transition-delay:.34s}
body.sco-menu-open .sco-drawer a:nth-child(6){transition-delay:.40s}
.sco-drawer__foot{margin-top:38px;color:var(--p-300);font-size:14px;
  letter-spacing:2.4px;text-transform:uppercase}
.sco-drawer__foot a{font-size:15px;letter-spacing:0;text-transform:none;
  border:0;padding:6px 0;display:block;color:var(--s-300)}

body.sco-menu-open{overflow:hidden}

@media (max-width:1100px){
  .sco-burger{display:block}
  .sco-head__bar{grid-template-columns:auto 1fr auto;padding:0 20px;height:64px}
  .sco-head.is-stuck .sco-head__bar{height:64px}
  .sco-head__mark{justify-self:center}
  .sco-head__cta .sco-pill{padding:.85em 1.25em;font-size:13.5px}
}
@media (max-width:420px){
  .sco-head__cta .sco-pill{padding:.8em 1em;font-size:12.5px}
  .sco-head__cta .sco-pill .arw{display:none}
}

/* Tablet: the hero panels stay in three columns but each is only
   ~256px wide, which truncated the tracked labels. Tighten the
   label rather than wrap it, so the three read as one set. */
@media (max-width:1100px) and (min-width:761px){
  .sco-panel__label{font-size:11px;letter-spacing:1.5px;line-height:1.35}
  .sco-panel__mark{font-size:11px;letter-spacing:2.5px;gap:12px}
  .sco-panel__mark::after{width:28px}
  .sco-panel__body{gap:20px;padding:0 12px}
}

/* ============================================================
   TEAM . second arc. The dome motif recurs, so the page has a
   rhythm rather than one novelty. Portraits are circular here,
   which is the one place a radius earns its keep.
   ============================================================ */
.sco-team{position:relative;z-index:2;background:var(--p-900);color:var(--n-0);
  clip-path:ellipse(135% 100% at 50% 100%);
  padding-top:clamp(120px,13vw,190px);margin-top:-30px}
.sco-team__inner{text-align:center;max-width:var(--maxw);margin:0 auto}
.sco-team h2{color:var(--n-0);margin-bottom:18px}
.sco-team__sub{color:var(--p-200);font-size:15.5px;line-height:1.68;
  max-width:56ch;margin:0 auto 64px}
.sco-team__grid{display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(26px,3.4vw,54px);text-align:center}
.sco-team__card{display:flex;flex-direction:column;align-items:center}
.sco-team__photo{width:clamp(150px,15vw,208px);aspect-ratio:1;border-radius:50%;
  overflow:hidden;margin-bottom:24px;position:relative;
  border:1px solid rgba(212,197,139,.28)}
.sco-team__photo img{width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.04);
  transition:transform 1.1s var(--ease-out),filter .8s var(--ease-out)}
.sco-team__card:hover .sco-team__photo img{transform:scale(1.06);filter:grayscale(0)}
.sco-team__card h3{font-size:19px;font-weight:400;color:var(--n-0);margin-bottom:7px}
.sco-team__role{font-size:12px;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--s-400);margin-bottom:14px}
.sco-team__card p{font-size:14.5px;line-height:1.62;color:var(--p-200);max-width:32ch}

/* ============================================================
   QUICK LINKS . the hero's panel language returned as three
   independent cards. Hover lifts the label and reveals the
   control beneath it, so the card explains itself on approach.
   ============================================================ */
.sco-quick{display:grid;grid-template-columns:repeat(3,1fr);
  background:var(--p-900)}
.sco-quick.sco-riser{margin-top:clamp(40px,6vw,96px);box-shadow:none;border-radius:0}
.sco-quick__card{
  position:relative;min-height:clamp(520px,64vw,760px);
  display:grid;place-items:center;overflow:hidden;text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
}
.sco-quick__card:last-child{border-right:0}
.sco-quick__bg{position:absolute;inset:0;background-size:cover;background-position:center;
  transform:scale(1.02);transition:transform 1.3s var(--ease-out)}
.sco-quick__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,12,14,.34),rgba(10,12,14,.62));
  transition:background .6s var(--ease-out)}
.sco-quick__card:hover .sco-quick__bg{transform:scale(1.09)}
.sco-quick__card:hover .sco-quick__bg::after{
  background:linear-gradient(180deg,rgba(10,12,14,.58),rgba(10,12,14,.80))}

.sco-quick__body{position:relative;z-index:2;display:flex;flex-direction:column;
  align-items:center;gap:18px;padding:0 22px;
  transform:translateY(22px);transition:transform .62s var(--ease-out)}
.sco-quick__card:hover .sco-quick__body{transform:translateY(0)}
.sco-quick__icon{width:44px;height:44px;color:var(--n-0)}
.sco-quick__icon svg{width:100%;height:100%;fill:none;stroke:currentColor;
  stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round}
.sco-quick__card h3{font-size:clamp(1.15rem,1.6vw,1.4rem);font-weight:300;
  color:var(--n-0);letter-spacing:.002em}
/* the control is present but folded away until approach */
.sco-quick__more{
  opacity:0;transform:translateY(10px);
  transition:opacity .5s var(--ease-out),transform .5s var(--ease-out);
  display:inline-flex;align-items:center;gap:.6em;
  padding:.72em 1.4em;border-radius:999px;
  background:rgba(255,255,255,.96);color:var(--p-900);
  font-size:12.5px;font-weight:500;letter-spacing:1.6px;text-transform:uppercase;
}
.sco-quick__card:hover .sco-quick__more,
.sco-quick__card:focus-within .sco-quick__more{opacity:1;transform:none}
/* the whole card is the target, so the label is not a separate hit area */
.sco-quick__link{position:absolute;inset:0;z-index:3}
.sco-quick__link:focus-visible{outline:2px solid var(--s-400);outline-offset:-6px}

@media (max-width:900px){
  .sco-team__grid{grid-template-columns:1fr;gap:44px}
  .sco-team{clip-path:ellipse(340% 100% at 50% 100%)}
  .sco-quick{grid-template-columns:1fr}
  .sco-quick__card{min-height:300px;border-right:0;
    border-bottom:1px solid rgba(255,255,255,.08)}
  /* no hover on touch: show the control at rest */
  .sco-quick__body{transform:none}
  .sco-quick__more{opacity:1;transform:none}
}


/* ============================================================
   TREATMENTS HUB. Every treatment, grouped by how the clinic
   actually works rather than alphabetised. Rows, not cards:
   there are eighteen of them and cards would be noise.
   ============================================================ */
.sco-tx{background:var(--n-0)}
.sco-tx__head{max-width:var(--maxw);margin:0 auto clamp(44px,5vw,72px);
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:36px;flex-wrap:wrap}
.sco-tx__head p.sco-lede{margin-top:14px}
.sco-tx__grid{max-width:var(--maxw);margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(28px,3.6vw,64px)}
.sco-tx__grid > *{min-width:0}
.sco-tx__col h3{
  font-size:12px;letter-spacing:3px;text-transform:uppercase;
  color:var(--s-600);font-weight:400;
  padding-bottom:14px;border-bottom:1px solid var(--s-400);margin-bottom:6px}
.sco-tx__list{list-style:none;margin:0;padding:0}
.sco-tx__list a{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:15px 0;border-bottom:1px solid #ebe7dd;
  font-size:16px;color:var(--p-800);
  transition:color .4s var(--ease-out),padding-left .45s var(--ease-out);
}
.sco-tx__list a .lbl{transition:transform .45s var(--ease-out)}
.sco-tx__list a svg{width:15px;height:15px;flex:none;opacity:0;
  transform:translateX(-6px);
  transition:opacity .4s var(--ease-out),transform .45s var(--ease-out)}
.sco-tx__list a:hover{color:var(--s-700)}
.sco-tx__list a:hover .lbl{transform:translateX(5px)}
.sco-tx__list a:hover svg,.sco-tx__list a:focus-visible svg{opacity:1;transform:none}
.sco-tx__list .note{font-size:12.5px;color:var(--n-700);letter-spacing:.2px}
.sco-tx__foot{max-width:var(--maxw);margin:clamp(40px,4.6vw,64px) auto 0;
  display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.sco-tx__count{font-size:12.5px;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--n-700)}

@media (max-width:900px){
  .sco-tx__grid{grid-template-columns:1fr;gap:34px}
  .sco-pillars__panels{gap:0;padding:0}
  .sco-panel{border-radius:0}
  .sco-panel:nth-child(2),.sco-panel:nth-child(3){transform:none}
}


/* ============================================================
   SECTION TAKEOVER. The incoming section rides up over the one
   before it, which stays put. The whole section is the card:
   rounded top edge, a shadow cast upward onto what it covers,
   and a negative margin so it genuinely overlaps rather than
   just abutting. Each riser needs its own opaque ground.
   ============================================================ */
.sco-riser{
  position:relative;z-index:2;
  margin-top:clamp(-110px,-7vw,-56px);
  border-radius:28px 28px 0 0;
  box-shadow:0 -26px 60px -24px rgba(20,23,26,.42);
  will-change:transform;
}
.sco-riser + .sco-riser{z-index:3}
.sco-riser + .sco-riser + .sco-riser{z-index:4}
.sco-riser + .sco-riser + .sco-riser + .sco-riser{z-index:5}
/* an arc section supplies its own silhouette, so it must not also
   carry a rounded rectangle edge */
.sco-riser.sco-team,.sco-riser.sco-arc{border-radius:0;box-shadow:none}
@media (max-width:760px){
  .sco-riser{margin-top:-40px;border-radius:20px 20px 0 0}
}

/* ============================================================
   MOBILE . the arc card was the one split that never got a
   stacking rule, so it kept a 136px image beside a 173px text
   column. Stacked, the photograph goes on top and the wash has
   to turn with it: a left-to-right gradient means nothing once
   the copy sits underneath rather than beside.
   ============================================================ */
@media (max-width:820px){
  .sco-arc__card{grid-template-columns:1fr}
  .sco-arc__deck{min-height:0}
  .sco-arc__card figure{min-height:0;height:clamp(190px,44vw,260px)}
  /* gradient turns 96deg -> 180deg, dissolving downward into the ground */
  .sco-arc__card figure::after{
    background:linear-gradient(180deg,
      rgba(239,234,221,0) 30%,rgba(239,234,221,.55) 72%,#efeadd 100%)}
  .sco-arc__body{padding:22px 24px 30px}
  .sco-arc__body h3{font-size:1.3rem}
  .sco-arc__body p{max-width:none}
  /* tabs become a swipeable rail rather than wrapping to three rows */
  .sco-arc__tabs{flex-wrap:nowrap;overflow-x:auto;justify-content:flex-start;
    scrollbar-width:none;-webkit-overflow-scrolling:touch;
    padding-inline:2px;scroll-snap-type:x proximity}
  .sco-arc__tabs::-webkit-scrollbar{display:none}
  .sco-arc__tab{flex:none;scroll-snap-align:center;padding:10px 16px;font-size:13px}
}

@media (max-width:620px){
  /* the two consultation plates keep their pairing but lose the
     offset, which only reads as depth when there is room for it */
  .sco-cta__plates{grid-template-columns:1fr;gap:14px;margin-top:10px}
  .sco-cta__plate--a{aspect-ratio:4/3}
  .sco-cta__plate--b{aspect-ratio:4/3;transform:none}
  /* the aftercare overlay needs its own ground once the card is
     narrow, or the headline sits on the busiest part of the photo */
  .sco-after__media::after{
    background:linear-gradient(180deg,rgba(16,18,20,.30) 0%,rgba(16,18,20,.42) 45%,rgba(16,18,20,.88) 100%)}
  .sco-gal__head{gap:22px}
  .sco-tx__head{gap:20px}
}


/* ============================================================
   MOBILE . services index becomes a pinned progress bar.
   Static, it scrolled off before the panels began, so the active
   state was updating where nobody could see it.
   ============================================================ */
@media (max-width:900px){
  .sco-svc__index{
    position:sticky;top:64px;z-index:6;
    display:flex;margin:22px 0 30px;padding:0;
    background:rgba(255,255,255,.93);
    -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
    border-top:1px solid #e7e3da;border-bottom:1px solid #e7e3da;
  }
  .sco-svc__index li{
    position:relative;flex:1 1 0;min-width:0;
    flex-direction:column;align-items:center;justify-content:center;
    gap:4px;padding:11px 6px;border-top:0;
    font-size:12.5px;line-height:1.25;text-align:center;
  }
  .sco-svc__index li .n{font-size:10px;letter-spacing:2px}
  /* the growing rule becomes an underline indicator */
  .sco-svc__index li::after{
    position:absolute;left:12%;right:12%;bottom:-1px;
    flex:none;height:2px;transform-origin:center;
  }
  .sco-svc__panel{scroll-margin-top:120px}
}


/* treatments: each column gets a plate above its list */
.sco-tx__plate{position:relative;height:160px;border-radius:10px;overflow:clip;
  margin-bottom:22px}
.sco-tx__plate img{width:100%;height:100%;object-fit:cover;display:block;
  filter:saturate(.85);transition:transform 1.2s var(--ease-out)}
.sco-tx__col:hover .sco-tx__plate img{transform:scale(1.05)}
.sco-tx__plate::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(15,17,19,.05),rgba(15,17,19,.5))}
.sco-tx__plate span{position:absolute;left:18px;bottom:14px;color:var(--n-0);
  font-size:12px;letter-spacing:2.6px;text-transform:uppercase}
@media (max-width:900px){.sco-tx__plate{height:130px}}

@media (max-width:760px){
  .sco-pillars__eyebrow{font-size:11px;letter-spacing:2.2px;bottom:28px;padding:0 24px}
  .sco-pillars__quote blockquote{font-size:1.45rem}
}

/* ============================================================
   FOOTER . rebuilt. A closing statement with the two ways to
   reach the clinic, then the practical grid, then the wordmark
   set large as a signature. The gold rule carries through.
   ============================================================ */
.sco-foot{background:var(--p-900);color:var(--p-200);padding:0}
.sco-foot__close{max-width:var(--maxw);margin:0 auto;
  padding:clamp(70px,8vw,110px) var(--gut) clamp(50px,5.6vw,80px);
  display:grid;grid-template-columns:1.2fr 1fr;gap:clamp(30px,5vw,80px);align-items:end}
.sco-foot__close h2{color:var(--n-0);margin-bottom:16px}
.sco-foot__close p{font-size:15.5px;line-height:1.66;color:var(--p-200);max-width:44ch}
.sco-foot__ways{display:flex;flex-direction:column;gap:14px;align-items:flex-start}
.sco-foot__ways .sco-pill{background:var(--s-300);color:var(--p-900)}
.sco-foot__ways .sco-pill:hover{background:var(--n-0)}
.sco-foot__tel{font-size:clamp(1.3rem,2vw,1.7rem);font-weight:300;color:var(--n-0);
  letter-spacing:.01em;display:inline-flex;align-items:center;gap:12px;
  transition:color .35s var(--ease-out)}
.sco-foot__tel:hover{color:var(--s-300)}
.sco-foot__tel small{font-size:11.5px;letter-spacing:2.4px;text-transform:uppercase;
  color:var(--p-300);font-weight:400}

.sco-foot__rule{max-width:calc(var(--maxw) - 2*var(--gut));margin:0 auto;
  height:1px;background:linear-gradient(to right,transparent,rgba(197,178,100,.45) 15%,rgba(197,178,100,.45) 85%,transparent)}

.sco-foot__grid{max-width:var(--maxw);margin:0 auto;padding:clamp(48px,5.4vw,76px) var(--gut) 0;
  display:grid;grid-template-columns:1.25fr 1fr 1fr 1fr 1.1fr;gap:clamp(26px,3.4vw,54px)}
.sco-foot__grid > *{min-width:0}
.sco-foot h4{font-size:12px;letter-spacing:3px;text-transform:uppercase;
  color:var(--s-400);font-weight:400;margin-bottom:18px}
.sco-foot ul{list-style:none;margin:0;padding:0}
.sco-foot li{margin-bottom:11px}
.sco-foot a{font-size:14.5px;color:var(--p-200);transition:color .35s var(--ease-out)}
.sco-foot a:hover{color:var(--n-0)}
.sco-foot p{font-size:14.5px;line-height:1.7;color:var(--p-200)}
.sco-foot__hours{display:grid;grid-template-columns:auto 1fr;gap:8px 18px;font-size:14px;
  color:var(--p-200)}
.sco-foot__hours dt{color:var(--p-300);margin:0}
.sco-foot__hours dd{margin:0;font-variant-numeric:tabular-nums;color:var(--n-0)}
.sco-foot__social{display:flex;gap:14px;margin-top:6px}
.sco-foot__social a{width:38px;height:38px;border:1px solid rgba(255,255,255,.16);
  border-radius:50%;display:grid;place-items:center;color:var(--p-200);
  transition:border-color .35s var(--ease-out),color .35s var(--ease-out)}
.sco-foot__social a:hover{border-color:var(--s-400);color:var(--n-0)}
.sco-foot__social svg{width:15px;height:15px;fill:currentColor}
.sco-foot__note{font-size:12.5px;line-height:1.6;color:var(--p-300);margin-top:18px}

/* the wordmark as a signature */
.sco-foot__sig{max-width:var(--maxw);margin:clamp(40px,5vw,72px) auto 0;padding:0 var(--gut);
  overflow:hidden}
.sco-foot__sig span{display:block;font-weight:200;line-height:.86;
  font-size:clamp(4.2rem,15.5vw,14rem);letter-spacing:-.02em;
  color:rgba(255,255,255,.07);user-select:none;transform:translateY(.12em)}

.sco-foot__base{max-width:var(--maxw);margin:0 auto;padding:22px var(--gut) 32px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  font-size:13px;color:var(--p-300)}
.sco-foot__base a{font-size:13px;color:var(--p-300)}
.sco-foot__base .legal{display:flex;gap:18px;flex-wrap:wrap}

@media (max-width:900px){
  .sco-foot__close{grid-template-columns:1fr;align-items:start}
  .sco-foot__grid{grid-template-columns:1fr 1fr;gap:34px 26px}
  .sco-foot__grid > :first-child{grid-column:1/-1}
}
@media (max-width:560px){
  .sco-foot__grid{grid-template-columns:1fr}
  .sco-foot__base{flex-direction:column;gap:10px}
}

/* ============================================================
   MEGA MENU
   The header carries its own height as a custom property so the
   full bleed panel can hang off the bar without JS measuring it.
   ============================================================ */
.sco-head{--head-h:88px}
.sco-head.is-stuck{--head-h:70px}

/* the bar needs a ground while a panel is down, or the panel
   reads as floating loose over the film */
.sco-head.is-mega{background:rgba(12,14,16,.95);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px)}

.sco-mega{position:relative;display:flex;align-items:center}
.sco-mega__trigger{display:inline-flex;align-items:center;gap:6px}
.sco-mega__chev{width:11px;height:11px;flex:none;opacity:.7;
  transition:transform .42s var(--ease-out),opacity .42s var(--ease-out)}
.sco-mega.is-open .sco-mega__chev{transform:rotate(180deg);opacity:1}
.sco-nav .sco-mega.is-open > .sco-mega__trigger::after{width:100%}

.sco-mega__panel{
  position:absolute;z-index:99;
  opacity:0;visibility:hidden;transform:translateY(-9px);
  transition:opacity .42s var(--ease-out),transform .5s var(--ease-out),
             visibility 0s linear .42s;
}
.sco-mega.is-open .sco-mega__panel{
  opacity:1;visibility:visible;transform:none;transition-delay:0s,0s,0s}

/* --- the wide panel: full bleed, hanging off the bar --------- */
.sco-mega--wide .sco-mega__panel{
  position:fixed;left:0;right:0;top:var(--head-h);
  background:rgba(11,13,15,.97);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border-top:1px solid rgba(197,178,100,.34);
  box-shadow:0 30px 60px -30px rgba(0,0,0,.7);
}
.sco-mega__inner{max-width:var(--maxw);margin:0 auto;
  padding:clamp(34px,3.4vw,54px) clamp(22px,3vw,44px) clamp(38px,3.8vw,58px);
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,272px);
  gap:clamp(28px,3.6vw,60px);align-items:start}
.sco-mega__rooms{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(24px,2.6vw,44px)}
.sco-mega__room{min-width:0}
.sco-mega__roomhead{display:block;padding:0 0 12px;border-bottom:1px solid rgba(197,178,100,.3)}
.sco-mega__roomhead::after{display:none}
.sco-mega__eyebrow{font-size:10.5px;letter-spacing:2.6px;text-transform:uppercase;
  color:var(--s-300);white-space:nowrap}
.sco-mega__roomhead:hover .sco-mega__eyebrow{color:var(--s-200)}
.sco-mega__blurb{margin:13px 0 15px;font-size:12.5px;line-height:1.62;
  color:rgba(255,255,255,.5);max-width:30ch}
.sco-mega__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.sco-mega__list a{display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:7px 0;font-size:13.5px;letter-spacing:.2px;color:rgba(255,255,255,.8);
  transition:color .34s var(--ease-out)}
.sco-mega__list a::after{display:none}
.sco-mega__list a svg{width:12px;height:12px;flex:none;opacity:0;
  transform:translate(-5px,4px);
  transition:opacity .34s var(--ease-out),transform .42s var(--ease-out)}
.sco-mega__list a:hover,.sco-mega__list a:focus-visible{color:var(--n-0)}
.sco-mega__list a:hover svg,.sco-mega__list a:focus-visible svg{opacity:.85;transform:none}
.sco-mega__list a[aria-current="page"]{color:var(--s-300)}

/* --- the feature card ---------------------------------------- */
.sco-mega__feature{border-left:1px solid rgba(255,255,255,.1);
  padding-left:clamp(20px,2.2vw,34px)}
.sco-mega__featureimg{position:relative;aspect-ratio:4/2.9;border-radius:10px;
  overflow:clip;margin-bottom:16px}
.sco-mega__featureimg img{width:100%;height:100%;object-fit:cover;display:block}
.sco-mega__featureimg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(11,13,15,0) 40%,rgba(11,13,15,.55) 100%)}
.sco-mega__featuretext p{margin:12px 0 16px;font-size:12.5px;line-height:1.66;
  color:rgba(255,255,255,.6)}
.sco-mega__cta{display:inline-flex;align-items:center;gap:8px;
  font-size:11.5px;letter-spacing:2.2px;text-transform:uppercase;color:var(--s-300);
  transition:color .34s var(--ease-out)}
.sco-mega__cta::after{display:none}
.sco-mega__cta svg{width:12px;height:12px;transition:transform .42s var(--ease-out)}
.sco-mega__cta:hover{color:var(--n-0)}
.sco-mega__cta:hover svg{transform:translate(2px,-2px)}

/* --- the compact panel --------------------------------------- */
.sco-mega--sm .sco-mega__panel{
  top:100%;left:-20px;min-width:224px;padding-top:20px}
.sco-mega--sm .sco-mega__list{
  background:rgba(11,13,15,.97);
  -webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);
  border:1px solid rgba(197,178,100,.26);border-radius:12px;
  padding:12px 18px;box-shadow:0 26px 50px -26px rgba(0,0,0,.7)}
.sco-mega--sm .sco-mega__list a{padding:8px 0;white-space:nowrap}

@media (prefers-reduced-motion:reduce){
  .sco-mega__panel{transition:opacity .01s,visibility 0s;transform:none}
  .sco-mega__list a svg{transition:none}
}

/* the nav carries two more items now, so it needs more room
   before it collapses into the drawer */
@media (max-width:1240px){
  .sco-nav{display:none}
  .sco-burger{display:block}
}
@media (min-width:1101px) and (max-width:1240px){
  .sco-head__util{display:none}
}
@media (max-width:1400px){
  .sco-nav{gap:20px}
  .sco-nav a,.sco-mega__trigger{font-size:13.5px}
}

/* ---------- drawer, rebuilt for the real page set ------------- */
.sco-drawer__top{display:block}
.sco-drawer__group{margin:6px 0 2px}
.sco-drawer__eyebrow{display:block;font-size:10px;letter-spacing:2.6px;
  text-transform:uppercase;color:var(--s-300);margin-bottom:6px}
.sco-drawer__links{display:flex;flex-direction:column;gap:2px;
  padding-left:14px;border-left:1px solid rgba(197,178,100,.28)}
.sco-drawer__links a{font-size:15px !important;color:rgba(255,255,255,.74) !important;
  letter-spacing:.2px !important}
.sco-drawer__links a:hover{color:var(--n-0) !important}

/* ---------- agency credit ------------------------------------
   Only the agency name is a link. The preceding words are plain
   text, so the credit reads as a sentence rather than a banner. */
.sco-foot__credit{color:var(--p-400);text-align:center}
.sco-foot__credit a{color:var(--p-200);position:relative;
  transition:color .35s var(--ease-out)}
.sco-foot__credit a::after{content:"";position:absolute;left:0;right:0;bottom:-2px;
  height:1px;background:var(--s-400);transform:scaleX(0);transform-origin:left;
  transition:transform .42s var(--ease-out)}
.sco-foot__credit a:hover{color:var(--s-300)}
.sco-foot__credit a:hover::after{transform:scaleX(1)}
@media (max-width:900px){ .sco-foot__credit{text-align:left} }

/* ============================================================
   BEFORE AND AFTER GALLERY
   Real clinical pairs. Each file is already a composite, so the
   Before / After markers are labels over one image, not a split.
   ============================================================ */
.sco-ba{display:flex;flex-direction:column;gap:clamp(46px,5vw,84px)}
.sco-ba__group{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(18px,2vw,30px)}
.sco-ba__room{grid-column:1/-1;display:flex;align-items:baseline;
  justify-content:space-between;gap:16px;padding-bottom:14px;margin-bottom:4px;
  border-bottom:1px solid rgba(197,178,100,.4)}
.sco-ba__room em{font-style:normal;font-size:12px;letter-spacing:2px;
  text-transform:uppercase;color:var(--n-700);font-variant-numeric:tabular-nums}
.sco-ba__item{margin:0;min-width:0}
.sco-ba__shot{position:relative;display:block;border-radius:10px;overflow:clip;
  background:#e8e3d7}
.sco-ba__shot img{width:100%;height:auto;display:block;
  transition:transform 1.1s var(--ease-out)}
.sco-ba__shot:hover img{transform:scale(1.03)}
/* the before / after markers sit on the two halves of the composite */
.sco-ba__ba{position:absolute;inset:auto 0 0 0;display:flex;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(15,17,19,0),rgba(15,17,19,.62))}
.sco-ba__ba i{flex:1;font-style:normal;font-size:9.5px;letter-spacing:2.4px;
  text-transform:uppercase;color:rgba(255,255,255,.9);padding:22px 10px 9px;
  text-align:center}
.sco-ba__item figcaption{padding-top:11px;display:flex;flex-direction:column;gap:3px}
.sco-ba__what{font-size:13.5px;line-height:1.45;color:var(--n-900)}
.sco-ba__tx{font-size:11px;letter-spacing:2.2px;text-transform:uppercase;
  color:var(--s-600);transition:color .34s var(--ease-out)}
.sco-ba__tx:hover{color:var(--p-900)}
.sco-ba__note{max-width:70ch;margin:clamp(40px,5vw,72px) 0 0;
  font-size:13px;line-height:1.7;color:var(--n-800);
  padding-top:20px;border-top:1px solid #e4dfd2}

@media (max-width:900px){
  .sco-ba__group{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .sco-ba__group{grid-template-columns:1fr}
  .sco-ba__room{flex-direction:column;gap:4px}
}

/* the treatment page pair: two real composites side by side */
.sco-res__plates--ba{display:grid;grid-template-columns:1fr;gap:16px}
.sco-res__plates--ba .sco-res__plate{position:relative;margin:0;
  border-radius:10px;overflow:clip;aspect-ratio:auto}
.sco-res__plates--ba .sco-res__plate img{width:100%;height:auto;display:block}
.sco-res__plates--ba .sco-res__plate span{position:absolute;left:12px;bottom:11px;
  font-size:10.5px;letter-spacing:1.8px;text-transform:uppercase;
  color:var(--n-0);text-shadow:0 1px 8px rgba(0,0,0,.7);
  padding-right:12px}

/* the home gallery now carries real pairs, so it must say which half
   is which, and the plate becomes a link through to the treatment */
.sco-gal__plate a{display:block;width:100%;height:100%;position:relative}
.sco-gal__ba{position:absolute;inset:auto 0 0 0;display:flex;pointer-events:none;
  background:linear-gradient(180deg,rgba(15,17,19,0),rgba(15,17,19,.6));z-index:2}
.sco-gal__ba i{flex:1;font-style:normal;font-size:9.5px;letter-spacing:2.4px;
  text-transform:uppercase;color:rgba(255,255,255,.9);padding:26px 8px 10px;text-align:center}
.sco-gal__cap{position:absolute;left:0;right:0;top:0;padding:14px 16px;z-index:2;
  font-size:11px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.94);
  text-shadow:0 1px 10px rgba(0,0,0,.8);opacity:0;transform:translateY(-6px);
  transition:opacity .5s var(--ease-out),transform .5s var(--ease-out)}
.sco-gal__plate:hover .sco-gal__cap{opacity:1;transform:none}
