/* ============================================================
   Alba & Flint — shared design system
   ============================================================ */


:root{
  --ink:        #1A2E40;   /* primary — headings, marks */
  --navy:       #334E68;   /* secondary — body text, ui */
  --terracotta: #C2593F;   /* accent — rule + prices only */
  --cream:      #F5EFE5;   /* warm off-white surfaces */
  --white:      #FFFFFF;   /* base background */

  --muted:      #5A6B7B;   /* muted ink for descriptions */
  --hairline:   rgba(26,46,64,0.12);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wordmark: "Josefin Sans", "Poppins", -apple-system, sans-serif;

  /* fluid type */
  --step-hero:  clamp(2.6rem, 1.4rem + 5.4vw, 6rem);
  --step-h1:    clamp(2.1rem, 1.3rem + 3.4vw, 3.9rem);
  --step-h2:    clamp(1.6rem, 1.15rem + 1.9vw, 2.6rem);
  --step-h3:    clamp(1.25rem, 1.05rem + 0.9vw, 1.7rem);
  --step-body:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-lede:  clamp(1.15rem, 1.02rem + 0.7vw, 1.5rem);

  --measure: 66ch;
  --edge: clamp(1.5rem, 5vw, 6rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 14px;
  --header-h: 70px;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; background:var(--white); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
body{
  margin:0;
  font-family:var(--sans);
  font-size:var(--step-body);
  line-height:1.7;
  color:var(--navy);
  background:transparent;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
/* a whisper of paper grain, sitting on the white canvas behind all content
   (opaque photos and dark sections cover it, so it never touches the imagery) */
body::before{
  content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:220px 220px; opacity:.05;
}
img,svg,video{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--sans); font-optical-sizing:auto; color:var(--ink); font-weight:400; line-height:1.15; margin:0; letter-spacing:-0.01em; }
p{ margin:0 0 1.15em; }

/* ---------- layout helpers ---------- */
.wrap{ width:min(1180px, 100%); margin-inline:auto; padding-inline:var(--edge); }
.wrap--narrow{ width:min(760px, 100%); }
.wrap--mid{ width:min(940px, 100%); }
.section{ padding-block:var(--section-y); }
.center{ text-align:center; }
.stack > * + *{ margin-top:1.1rem; }

/* accessibility: skip to content */
.skip-link{
  position:absolute; left:-9999px; top:0; z-index:100;
  background:var(--ink); color:var(--white); font-size:.9rem;
  padding:.7rem 1.1rem; border-radius:0 0 4px 0;
}
.skip-link:focus{ left:0; }
:target{ scroll-margin-top:90px; }

/* accent removed everywhere by default; the thin animated line appears only
   at key moments (see .closing .rule / .enquire-hero .rule) */
.rule{ display:none; }

.eyebrow{
  font-family:var(--sans);
  font-size:0.78rem; font-weight:500;
  letter-spacing:0.16em; text-transform:uppercase;
  color:var(--terracotta);
  margin:0 0 1.1rem;
}
.lede{ font-family:var(--sans); font-size:var(--step-lede); line-height:1.35; color:var(--ink); }
.muted{ color:var(--muted); }
.serif-italic{ font-family:var(--serif); font-style:italic; font-optical-sizing:auto; }

/* ---------- header / nav — compact, warm, minimal ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:transparent;
  backdrop-filter:none; -webkit-backdrop-filter:none;
  border-bottom:1px solid transparent;
  transition:background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
/* nav floats over the hero at rest; a solid, opaque band fades in on scroll.
   Solid (not translucent) so the split hero's video panel can't bleed a
   second colour through the bar and create a two-tone seam. */
.site-header.scrolled{
  background:var(--white);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border-bottom-color:var(--hairline);
  box-shadow:0 12px 30px -26px rgba(26,46,64,.4);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; min-height:70px; transition:min-height .35s ease;
}
.site-header.scrolled .nav{ min-height:60px; }
/* header spans the full width so the brand sits at the page edge, in line
   with the hero wordmark (both flush to var(--edge)) */
.site-header .wrap{ width:100%; max-width:none; }
.brand{
  display:inline-flex; flex-direction:column; gap:3px; line-height:1;
  white-space:nowrap; transition:opacity .3s ease;
}
.brand__name{
  font-family:var(--wordmark); font-weight:400;
  font-size:1.5rem; letter-spacing:.02em; color:var(--ink);
}
.brand__desc{
  font-family:var(--sans); font-weight:400;
  font-size:.56rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted);
}
.brand:hover{ opacity:.62; }

/* right cluster holds links + CTA together */
.nav-menu{ display:flex; align-items:center; gap:clamp(1.9rem,3.6vw,3.4rem); margin-left:auto; }
.nav-links{ display:flex; align-items:center; gap:clamp(1.2rem,2.4vw,2.2rem); list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:0.92rem; color:var(--navy); position:relative; padding-block:0.3rem;
  text-transform:lowercase; letter-spacing:.01em;
  transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-1px; width:0; height:1px;
  background:var(--terracotta); transition:width .3s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width:100%; }
.nav-links a[aria-current="page"]{ color:var(--ink); }

/* CTA — slim, intentional navy hairline; fills ink on hover */
.btn--nav{
  background:transparent; color:var(--ink);
  border:1px solid rgba(26,46,64,.42);
  padding:.38rem 1.1rem; font-size:.86rem; font-weight:400;
  letter-spacing:.02em; border-radius:3px; text-transform:lowercase;
}
.btn.btn--nav:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); transform:none; }

.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:.4rem; margin:-.4rem -.4rem -.4rem 0; color:var(--ink); }
.nav-toggle svg{ width:24px; height:24px; }

@media (max-width:760px){
  .nav-toggle{ display:block; position:relative; z-index:3; }
  /* full-screen menu, items lined up on the right for easy thumb reach */
  .brand{ position:relative; z-index:3; }
  .nav-menu{
    position:fixed; inset:0; z-index:1; width:100%; height:100vh; height:100dvh;
    flex-direction:column; align-items:flex-end; justify-content:center;
    gap:clamp(1.4rem,4vh,2.4rem);
    background:var(--cream);
    padding:0 clamp(1.9rem,8vw,3.2rem); margin:0; max-height:none; overflow-y:auto;
    opacity:0; visibility:hidden; transform:translateY(-10px);
    transition:opacity .34s ease, transform .34s ease, visibility .34s ease;
  }
  .nav-menu.open{ opacity:1; visibility:visible; transform:none; }
  .nav-links{ flex-direction:column; align-items:flex-end; gap:clamp(1rem,3vh,1.8rem); padding:0; width:100%; text-align:right; }
  .nav-links a{ padding-block:.25rem; font-size:clamp(1.7rem,7vw,2.2rem); font-weight:300; color:var(--ink); letter-spacing:.01em; }
  .nav-links a::after{ display:none; }
  .nav-links a[aria-current="page"]{ color:var(--terracotta); }
  .btn--nav{ margin-top:clamp(1.4rem,4vh,2.2rem); text-align:center; justify-content:center; padding:.85rem 1.9rem; font-size:1.05rem; }
}
body.nav-locked{ overflow:hidden; }
body.nav-locked .site-header{ background:transparent; box-shadow:none; border-bottom-color:transparent; }

/* ---------- buttons / links ---------- */
.btn{
  display:inline-flex; align-items:center; gap:0.5rem;
  font-family:var(--sans); font-size:0.92rem; font-weight:400; letter-spacing:.02em;
  padding:0.72rem 1.5rem; border-radius:3px;
  background:transparent; color:var(--ink); border:1px solid rgba(26,46,64,.26);
  transition:background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.link-arrow{
  display:inline-flex; align-items:center; gap:0.45rem;
  font-weight:500; font-size:0.98rem; color:var(--ink);
}
.arw{
  display:inline-block; width:24px; height:12px; vertical-align:middle;
  color:transparent; overflow:hidden; text-indent:110%; white-space:nowrap;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 16' fill='none' stroke='%23C2593F' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 8h27M21 2l6 6-6 6'/%3E%3C/svg%3E") left center/contain no-repeat;
  transition:transform .25s ease;
  animation:arwDrift 3s ease-in-out infinite;
}
/* a light, continuous drift so the arrow quietly invites a click */
@keyframes arwDrift{ 0%,60%,100%{ transform:translateX(0); } 80%{ transform:translateX(4px); } }
.link-arrow:hover{ color:var(--terracotta); }
.link-arrow:hover .arw{ animation:none; transform:translateX(4px); }

/* ---------- hero: crisp white, centred, studio lighting ---------- */
.hero{
  position:relative; overflow:hidden; isolation:isolate;
  margin-top:calc(-1 * var(--header-h));   /* slide up under the transparent header */
  min-height:clamp(580px, 96vh, 940px);
  display:flex; align-items:center; justify-content:center; text-align:center;
  background:transparent;
  padding:calc(var(--header-h) + clamp(4rem,9vh,7rem)) clamp(1.25rem,3.5vw,3.5rem) clamp(4rem,8vh,6rem);
}
/* the light itself: a soft warm spotlight that slowly breathes */
.hero__light{
  position:absolute; left:50%; top:42%; z-index:0;
  width:min(1360px,145vw); aspect-ratio:1/1; transform:translate(-50%,-50%);
  background:radial-gradient(circle at center,
     rgba(245,239,229,.78) 0%,
     rgba(245,239,229,.4) 30%,
     rgba(194,89,63,.05) 54%,
     rgba(255,255,255,0) 72%);
  filter:blur(10px); pointer-events:none;
  animation:breathe 11s ease-in-out infinite;
}
/* a second, tighter warm core for depth */
.hero__light::after{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:52%; aspect-ratio:1/1;
  background:radial-gradient(circle at center, rgba(255,251,244,.6) 0%, rgba(255,255,255,0) 68%);
  animation:breathe 11s ease-in-out infinite reverse;
}
/* faint vignette keeps the white crisp but with quiet depth */
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:radial-gradient(ellipse at 50% 38%, transparent 52%, rgba(26,46,64,.05) 100%);
}
.hero__inner{ position:relative; z-index:2; width:100%; display:grid; justify-items:center; gap:0; }
.hero__eyebrow{
  font-family:var(--sans); font-size:.72rem; font-weight:500;
  letter-spacing:.34em; text-transform:uppercase; color:var(--terracotta);
  margin:0 0 1.6rem;
}
/* wordmark: large, confident, airy but controlled spacing */
.hero__mark{
  font-family:var(--wordmark); font-weight:300; color:var(--ink);
  font-size:clamp(3.4rem, 11vw, 8.6rem); letter-spacing:.06em; line-height:.98;
  margin:0; max-width:16ch;
}
.hero__tag{
  font-family:var(--sans); font-weight:400;
  font-size:clamp(.72rem, .66rem + .32vw, .92rem); color:var(--muted);
  text-transform:uppercase; letter-spacing:.2em; text-indent:.2em;
  margin:3rem auto 0; max-width:none; line-height:1.9; white-space:nowrap;
}
@media (max-width:720px){
  .hero__tag{ white-space:normal; max-width:34ch; text-wrap:balance; letter-spacing:.16em; }
}
.hero__thesis{ margin:1.4rem auto 0; max-width:50ch; color:var(--muted); }
.hero__cue{
  margin-top:clamp(2.4rem,5vh,3.6rem); display:inline-flex; flex-direction:column;
  align-items:center; gap:.7rem; color:var(--muted);
  font-family:var(--sans); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
}
.hero__cue .line{ width:1px; height:44px; background:linear-gradient(var(--terracotta), transparent);
  animation:cueDrop 2.4s ease-in-out infinite; transform-origin:top; }


@keyframes breathe{
  0%,100%{ opacity:.72; transform:translate(-50%,-50%) scale(1); }
  50%    { opacity:1;   transform:translate(-50%,-50%) scale(1.07); }
}
@keyframes cueDrop{
  0%{ transform:scaleY(.3); opacity:.2; } 40%{ transform:scaleY(1); opacity:1; }
  100%{ transform:scaleY(.3); opacity:.2; }
}

/* entrance: rise up, blur to crisp, gently staggered */
@keyframes riseIn{
  from{ opacity:0; transform:translateY(26px); filter:blur(10px); }
  to  { opacity:1; transform:none; filter:blur(0); }
}
.hero__inner > *{ opacity:0; animation:riseIn 1.15s cubic-bezier(.19,.8,.22,1) forwards; }
.hero__eyebrow{ animation-delay:.15s; }
.hero__mark   { animation-delay:.32s; }
.hero__rule   { animation-delay:.62s; }
.hero__tag    { animation-delay:.78s; }
.hero__thesis { animation-delay:.9s; }
.hero__cue    { animation-delay:1.1s; }

@media (prefers-reduced-motion: reduce){
  .hero__light, .hero__light::after, .hero__cue .line, .arw{ animation:none; }
  .hero__inner > *{ opacity:1; animation:none; }
}

/* ---------- split hero: stacked wordmark + studio film ---------- */
.hero--split{
  display:grid; grid-template-columns:1.05fr .95fr; align-items:stretch;
  min-height:clamp(560px, 94vh, 900px); padding:0; overflow:hidden;
}
.hero--split .hero__panel--text{
  position:relative; overflow:hidden; isolation:isolate; background:var(--white);
  display:flex; align-items:center; justify-content:flex-start; text-align:left;
  padding:calc(var(--header-h) + clamp(2rem,4vw,3rem)) clamp(1.5rem,4vw,3rem) clamp(2rem,4vw,3rem);
  padding-left:clamp(2.5rem, 8vw, 8.5rem);
}
.hero--split .hero__inner{ justify-items:start; }
.hero--split .hero__panel--media{ position:relative; overflow:hidden; background:var(--white); }
/* flat white both sides so the header sits on one uniform colour (no studio-light warmth seam) */
.hero--split .hero__panel--text{ background:var(--white); }
.hero--split .hero__light{ display:none; }
.hero__video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.hero__mark--stacked{ font-size:clamp(4.2rem, 9.4vw, 8.8rem); font-weight:500; line-height:.95; letter-spacing:.03em; max-width:none; }
.hero--split .hero__tag{
  text-transform:none; letter-spacing:.005em; text-indent:0; white-space:normal; text-wrap:balance;
  font-size:clamp(1.4rem, 1.05rem + .95vw, 2.1rem); line-height:1.3; max-width:20ch; margin-top:2.3rem; color:var(--navy);
}
/* hero call to action */
.hero__cta{ display:flex; align-items:center; gap:clamp(1rem,2vw,1.7rem); flex-wrap:wrap;
  margin-top:clamp(1.9rem,3vw,2.7rem); animation-delay:.95s; }
.hero__link{ font-family:var(--sans); font-size:.98rem; color:var(--ink); letter-spacing:.01em;
  display:inline-flex; align-items:center; gap:.45rem; }
.hero__link .arw{ transition:transform .3s ease; }
.hero__link:hover .arw{ transform:translateX(4px); }
.hero__trust{ font-family:var(--sans); font-size:.82rem; color:var(--muted); letter-spacing:.015em;
  margin-top:clamp(1.1rem,2vw,1.6rem); max-width:46ch; line-height:1.5; animation-delay:1.05s; }
/* Option A: the film starts below the header so the nav stays on clean cream */
.hero--split .hero__video{ top:var(--header-h); }
/* scroll cue pinned to the bottom-left, aligned under the wordmark */
.hero--split .hero__cue{
  position:absolute; left:clamp(2.5rem, 8vw, 8.5rem); bottom:clamp(1.6rem,4vw,3rem);
  margin-top:0; z-index:3; align-items:center;
}
@media (max-width:820px){
  /* mobile: full-bleed film, text on a soft frosted card for legibility */
  .hero--split{ grid-template-columns:1fr; position:relative; min-height:100vh; min-height:100svh; }
  .hero--split .hero__panel--media{ position:absolute; inset:0; order:0; aspect-ratio:auto; height:100%; z-index:0; }
  .hero--split .hero__video{ top:0; }
  .hero--split .hero__panel--media::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
    background:linear-gradient(to bottom, rgba(247,244,239,.14) 0%, rgba(247,244,239,.26) 55%, rgba(247,244,239,.46) 100%); }
  .hero--split .hero__panel--text{ position:relative; z-index:2; order:1; background:transparent;
    min-height:100vh; min-height:100svh; justify-content:flex-end;
    padding:calc(var(--header-h) + 2rem) clamp(1.1rem,5vw,1.8rem) clamp(2.2rem,7vh,3.4rem); }
  .hero--split .hero__inner{ background:rgba(247,244,239,.64); -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px);
    border-radius:18px; padding:clamp(1.6rem,6vw,2.2rem) clamp(1.5rem,5.5vw,2rem) clamp(1.8rem,6vw,2.4rem);
    box-shadow:0 26px 60px -34px rgba(26,46,64,.42); }
  .hero--split .hero__cue{ display:none; }
}
/* desktop: trust line owns the lower-left, retire the scroll cue to avoid overlap */
@media (min-width:821px){ .hero--split .hero__cue{ display:none; } }

/* ---------- rotating full-bleed imagery ---------- */
.bleed{ position:relative; width:100%; height:clamp(340px, 62vh, 660px); overflow:hidden; background:var(--ink); }
.bleed__slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition:opacity 2.6s ease-in-out, transform 9s ease-out;
  transform:scale(1.04);
}
.bleed__slide.is-active{ opacity:1; transform:scale(1); }
@media (prefers-reduced-motion: reduce){
  .bleed__slide{ transition:opacity .4s ease; transform:none; }
  .bleed__slide.is-active{ transform:none; }
}
.bleed::after{ /* subtle legibility veil */
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(26,46,64,.08), rgba(26,46,64,.20));
  pointer-events:none;
}
.bleed__caption{
  position:absolute; left:var(--edge); bottom:clamp(1.2rem,3vw,2.4rem); z-index:2;
  color:var(--white); font-family:var(--sans); font-style:normal;
  font-size:1.05rem; text-shadow:0 1px 12px rgba(0,0,0,.35);
}

/* ---------- video placeholder — image as art, light touch ---------- */
.videoholder{
  position:relative; width:100%; height:clamp(320px,58vh,620px);
  background:var(--cream);
  display:flex; align-items:center; justify-content:center; text-align:center;
  overflow:hidden;
}
.videoholder__bg{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:1; }
.videoholder::after{ content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(26,46,40,.10), rgba(26,46,64,.34)); }
.videoholder__inner{ position:relative; z-index:2; color:var(--white); padding:2rem; }
.videoholder__play{
  width:74px; height:74px; border-radius:50%; margin:0 auto 1.3rem;
  border:1.5px solid rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:center;
}
.videoholder__play svg{ width:26px; height:26px; margin-left:4px; fill:var(--white); }
.videoholder small{ display:block; margin-top:.6rem; letter-spacing:.14em; text-transform:uppercase; font-size:.72rem; opacity:.75; }

/* ---------- pricing: every build includes ---------- */
.incl-band{ background:var(--cream); }
.incl-grid{ list-style:none; margin:0; padding:0; display:grid;
  grid-template-columns:repeat(4,1fr); gap:clamp(1.6rem,3vw,2.4rem) clamp(1.4rem,3vw,2.6rem); }
.incl-grid li{ position:relative; padding-top:1.1rem; border-top:1px solid var(--hairline); }
.incl-grid h3{ font-size:1.02rem; font-weight:500; margin:0 0 .4rem; letter-spacing:-0.01em; }
.incl-grid p{ color:var(--muted); font-size:.92rem; line-height:1.5; margin:0; }
@media (max-width:900px){ .incl-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .incl-grid{ grid-template-columns:1fr; } }

/* ---------- how we work + includes — cohesive editorial pair ---------- */
.how, .incl{
  display:grid; gap:clamp(2.8rem,5vw,4rem) clamp(2rem,5vw,4rem);
  margin:clamp(2.8rem,5vw,4rem) auto 0; text-align:center;
}
.how{ grid-template-columns:repeat(2,1fr); max-width:900px; }
.incl{ grid-template-columns:repeat(3,1fr); max-width:1020px; }
.how__item, .incl__item{
  position:relative; isolation:isolate; padding:1.3rem 1rem; border-radius:14px;
  transition:transform .45s cubic-bezier(.2,.7,.2,1);
}
/* a soft studio light that warms in behind the hovered item */
.how__item::before, .incl__item::before{
  content:""; position:absolute; left:50%; top:52%; z-index:-1;
  width:min(360px,94%); aspect-ratio:1/1; transform:translate(-50%,-50%) scale(.82);
  background:radial-gradient(circle at center,
     rgba(245,239,229,.92) 0%, rgba(194,89,63,.06) 46%, rgba(255,255,255,0) 72%);
  opacity:0; filter:blur(6px); pointer-events:none;
  transition:opacity .55s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.how__item:hover, .incl__item:hover{ transform:translateY(-4px); }
.how__item:hover::before, .incl__item:hover::before{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.how__item h3, .incl__item h3{ font-size:var(--step-h3); font-weight:400; margin-bottom:.55rem; transition:color .3s ease; }
.incl__item h3{ font-size:1.18rem; }
.how__item:hover h3, .incl__item:hover h3{ color:var(--terracotta); }
.how__item p, .incl__item p{ color:var(--muted); margin:0; font-size:.95rem; max-width:30ch; margin-inline:auto; }
@media (prefers-reduced-motion: reduce){
  .how__item:hover, .incl__item:hover{ transform:none; }
}
.how__n{
  display:block; font-family:var(--sans); font-size:clamp(1.7rem,3vw,2.3rem); font-weight:300;
  letter-spacing:.06em; color:rgba(194,89,63,.55); margin-bottom:.7rem; line-height:1;
  transition:color .3s ease;
}
.how__item:hover .how__n{ color:var(--terracotta); }
@media (max-width:820px){ .incl{ grid-template-columns:repeat(2,1fr); max-width:640px; } }
@media (max-width:560px){ .how, .incl{ grid-template-columns:1fr; } }

/* ---------- editorial spec rows — add-ons and care plans ---------- */
.spec{ margin-top:clamp(2rem,4vw,3rem); }
.spec__row{
  display:grid; grid-template-columns:minmax(200px,1fr) 2fr;
  gap:clamp(1.2rem,5vw,4rem); align-items:start;
  padding:clamp(1.6rem,3vw,2.3rem) 0; border-top:1px solid var(--hairline);
}
.spec__row:last-child{ border-bottom:1px solid var(--hairline); }
.spec__label h3{ font-size:var(--step-h3); }
.spec__price{ display:block; margin-top:.5rem; color:var(--terracotta); font-size:1.15rem; }
.spec__price small{ font-size:.8rem; color:var(--muted); }
.spec__desc{ color:var(--muted); margin:0; max-width:62ch; }
@media (max-width:640px){ .spec__row{ grid-template-columns:1fr; gap:.6rem; } }

/* ---------- pricing teaser — an editorial spec table, all white ---------- */
.price-teaser{ background:transparent; }
.ptiers{
  display:grid; grid-template-columns:repeat(3,1fr);
  width:min(1080px,100%); margin:clamp(2.8rem,5vw,4.2rem) auto 0;
  background:var(--white);
}
.ptier{
  position:relative; text-align:left;
  padding:clamp(2.1rem,3vw,3rem) clamp(1.6rem,2.6vw,2.4rem);
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
}
.ptier:first-child{ border-right:1px solid var(--hairline); }  /* divider before the framed tier */
/* the featured tier: framed in terracotta, quietly lifted, still all-white */
.ptiers .ptier--popular{
  border:1px solid var(--terracotta); border-radius:3px;
  box-shadow:0 30px 64px -44px rgba(26,46,64,.32);
  background:var(--white); z-index:1;
}
.ptier__flag{
  display:block; min-height:1.1em; margin-bottom:.85rem;
  font-family:var(--sans); font-size:.68rem; font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:var(--terracotta);
}
.ptier h3{ font-size:var(--step-h3); font-weight:400; color:var(--ink); }
.ptier__price{ font-family:var(--sans); color:var(--terracotta); font-size:1.2rem; margin-top:.35rem; letter-spacing:.01em; }
.ptier__list{
  list-style:none; margin:1.4rem 0 0; padding:1.4rem 0 0;
  border-top:1px solid var(--hairline); display:grid; gap:.8rem;
}
.ptier__list li{ color:var(--muted); font-size:.95rem; }
@media (max-width:760px){
  .ptiers{ grid-template-columns:1fr; }
  .ptier{ border-right:0; border-bottom:0; border-top:1px solid var(--hairline); }
  .ptier:first-child{ border-top:0; border-right:0; }
  .ptiers .ptier--popular{ border:1px solid var(--terracotta); }
  .ptier__flag{ min-height:0; }
  .ptier:not(.ptier--popular) .ptier__flag{ display:none; }
}

/* ---------- instagram feed ---------- */
.insta{ padding-bottom:clamp(2.4rem,4vw,3.2rem); }
.insta-grid{
  display:grid; grid-template-columns:repeat(6,1fr);
  gap:clamp(.5rem,1.2vw,1rem); margin-top:clamp(2.5rem,5vw,4rem);
}
.insta-cell{
  position:relative; display:block; overflow:hidden; border-radius:2px;
  aspect-ratio:1/1; background:var(--cream);
}
.insta-cell img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .8s cubic-bezier(.2,.7,.2,1); }
.insta-cell:hover img{ transform:scale(1.06); }
.insta-cell::after{ content:""; position:absolute; inset:0; background:rgba(26,46,64,0); transition:background .3s ease; }
.insta-cell:hover::after{ background:rgba(26,46,64,.32); }
.insta-cell__icon{
  position:absolute; inset:0; z-index:2; display:flex; align-items:center; justify-content:center;
  color:#fff; opacity:0; transform:scale(.9); transition:opacity .3s ease, transform .3s ease;
}
.insta-cell:hover .insta-cell__icon{ opacity:1; transform:scale(1); }
.insta-cell__icon svg{ width:26px; height:26px; }
@media (max-width:860px){ .insta-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:460px){ .insta-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------- recent work — full-bleed mosaic ---------- */
.work-mosaic{ padding-bottom:clamp(3rem,5vw,4.5rem); }
.work-mosaic .we-head{ max-width:54ch; margin:0 0 clamp(2.4rem,4vw,3.6rem); text-align:left; }
.work-mosaic .we-head h2{ font-size:var(--step-h1); }
.work-mosaic .we-head p{ color:var(--muted); margin-top:1rem; max-width:52ch; }

/* shared media block */
.wm-media{ position:relative; display:block; overflow:hidden; background:var(--ink); }
.wm-media--video{ aspect-ratio:16/9; }
.wm-media video, .wm-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }
.wfeat:hover .wm-media video, .wpair:hover .wm-media video, .wfeat:hover .wm-media img, .wpair:hover .wm-media img{ transform:scale(1.03); }
.wm-media--video::after{ content:""; position:absolute; inset:0; background:rgba(26,46,64,0); transition:background .35s ease; pointer-events:none; }
.wm-media--video:hover::after{ background:rgba(26,46,64,.22); }
.wm-view{ position:absolute; left:1rem; bottom:1rem; z-index:2; display:inline-flex; align-items:center; gap:.5rem;
  color:#fff; font-family:var(--sans); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase;
  opacity:0; transform:translateY(6px); transition:opacity .35s ease, transform .35s ease; text-shadow:0 1px 10px rgba(0,0,0,.4); }
.wm-view::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--terracotta); }
.wm-media--video:hover .wm-view{ opacity:1; transform:none; }

/* featured project — one large moment + two supporting stills */
.wfeat{ margin:0 0 clamp(3rem,6vw,5rem); display:grid;
  grid-template-columns:1.62fr 1fr; gap:clamp(.7rem,1.4vw,1.2rem);
  grid-template-areas:"main side" "cap cap"; align-items:start; }
.wfeat__main{ grid-area:main; }
.wfeat__main.wm-media--video{ aspect-ratio:16/9; }
/* side column height is tied to its width so it matches the 16:9 main exactly (no overlap) */
.wfeat__side{ grid-area:side; aspect-ratio:1.097; display:flex; flex-direction:column; gap:clamp(.7rem,1.4vw,1.2rem); }
.wfeat__side > *{ flex:1 1 0; min-height:0; position:relative; overflow:hidden; }
.wfeat__side img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }
.wfeat__side .wm-media--video{ aspect-ratio:auto; }
.wfeat:hover .wfeat__side img{ transform:scale(1.03); }

/* pair project — image + video side by side */
.wpair{ margin:0 0 clamp(3rem,6vw,5rem); display:grid;
  grid-template-columns:1fr 1fr; gap:clamp(.7rem,1.4vw,1.2rem);
  grid-template-areas:"a b" "cap cap"; align-items:stretch; }
.wpair > .wpair__media, .wpair > a:first-of-type{ grid-area:a; }
.wpair__still{ grid-area:b; overflow:hidden; }
.wpair__still img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }

/* caption — meta + what's special */
.wcap{ grid-area:cap; display:flex; flex-wrap:wrap; align-items:baseline; gap:.4rem clamp(1.4rem,3vw,2.6rem);
  margin-top:clamp(.9rem,1.6vw,1.2rem); font-family:var(--sans); }
.wcap__meta{ font-size:.82rem; letter-spacing:.04em; color:var(--muted); white-space:nowrap; }
.wcap__meta b{ font-weight:500; color:var(--ink); }
.wcap__what{ font-size:.92rem; line-height:1.5; color:var(--navy); max-width:52ch; flex:1 1 22ch; }
.work-mosaic .we-all{ margin-top:clamp(1.6rem,3vw,2.4rem); text-align:right; }
@media (max-width:760px){
  .wfeat, .wpair{ grid-template-columns:1fr; grid-template-areas:"main" "side" "cap"; }
  .wpair{ grid-template-areas:"a" "b" "cap"; }
  .wfeat__side{ aspect-ratio:auto; flex-direction:row; }
  .wfeat__side > *{ aspect-ratio:1/1; }
  .work-mosaic .we-all{ text-align:left; }
}

/* ---------- work strip ---------- */
.work-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1rem,2vw,1.5rem); margin-top:2.5rem; }
.work-grid figure{ margin:0; position:relative; overflow:hidden; border-radius:var(--radius); }
.work-grid img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; transition:transform .8s ease; }
.work-grid figure:hover img{ transform:scale(1.04); }
.work-grid figcaption{
  position:absolute; left:1rem; bottom:.85rem; color:var(--white);
  font-family:var(--sans); font-style:normal; font-size:0.98rem;
  text-shadow:0 1px 10px rgba(0,0,0,.4);
}
.work-grid .tall{ grid-row:span 2; }
@media (max-width:640px){ .work-grid{ grid-template-columns:1fr; } .work-grid .tall{ grid-row:auto; } }

/* ---------- journal teaser / index ---------- */
/* featured lead article, echoes the Recent Work feature treatment */
.j-feature{ display:grid; grid-template-columns:1.35fr 1fr; gap:clamp(1.6rem,4vw,3.2rem); align-items:center;
  margin-top:2.6rem; padding-bottom:clamp(2rem,4vw,3rem); }
.j-feature__media{ overflow:hidden; border-radius:12px; aspect-ratio:3/2; }
.j-feature__media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }
.j-feature:hover .j-feature__media img{ transform:scale(1.03); }
.j-feature__body .eyebrow{ display:block; margin-bottom:.9rem; }
.j-feature__body h2{ font-size:var(--step-h2); margin-bottom:.7rem; transition:color .25s ease; }
.j-feature:hover .j-feature__body h2{ color:var(--terracotta); }
.j-feature__body p{ color:var(--muted); margin:0 0 1.2rem; max-width:46ch; }
.j-feature__body .link-arrow .arw{ color:var(--terracotta); transition:transform .25s ease; display:inline-block; }
.j-feature:hover .j-feature__body .link-arrow .arw{ transform:translateX(4px); }
@media (max-width:680px){ .j-feature{ grid-template-columns:1fr; gap:1.4rem; } }

.j-list{ margin-top:2.5rem; display:grid; gap:0; }
.j-item{ display:grid; grid-template-columns:120px 1fr auto; gap:clamp(1.2rem,3vw,2.4rem); align-items:center;
  padding-block:clamp(1.6rem,3vw,2.2rem); border-top:1px solid var(--hairline); }
.j-item:last-child{ border-bottom:1px solid var(--hairline); }
.j-item__thumb{ width:120px; height:90px; border-radius:10px; overflow:hidden; }
.j-item__thumb img{ width:100%; height:100%; object-fit:cover; }
.j-item__body .rule{ margin-bottom:.8rem; }
.j-item__body h3{ font-size:var(--step-h3); margin-bottom:.35rem; }
.j-item__body p{ color:var(--muted); margin:0; max-width:60ch; }
.j-item .arw{ color:var(--terracotta); transition:transform .25s ease; }
.j-item:hover .arw{ transform:translateX(4px); }
.j-item:hover h3{ color:var(--terracotta); transition:color .25s ease; }
@media (max-width:680px){
  .j-item{ grid-template-columns:1fr; }
  .j-item__thumb{ width:100%; height:180px; }
  .j-item .arw{ display:none; }
}

/* ---------- process page ---------- */
.proc{ display:grid; gap:clamp(3rem,6vw,5rem); margin-top:3.5rem; }
.proc__step{ display:grid; grid-template-columns:auto 1fr; gap:clamp(1.5rem,4vw,3.5rem); align-items:start; }
.proc__num{ font-family:var(--sans); font-weight:300; font-size:clamp(2.4rem,5vw,3.6rem); color:var(--terracotta); line-height:1; }
.proc__step h2{ font-size:var(--step-h2); margin-bottom:0; }
.proc__step .rule{ margin:1rem 0 1.3rem; }
.proc__step p{ color:var(--muted); max-width:62ch; margin:0; }
@media (max-width:560px){ .proc__step{ grid-template-columns:1fr; gap:.6rem; } }

/* ---------- pricing ladder ---------- */
.ladder{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,2.5vw,2rem); margin-top:3rem; align-items:start; }
.card{
  background:var(--white); border:1px solid var(--hairline); border-radius:var(--radius);
  padding:clamp(1.8rem,3vw,2.4rem);
}
.card h3{ font-size:var(--step-h3); }
.card .price{ font-family:var(--sans); font-style:normal; color:var(--terracotta); font-size:1.5rem; margin:.35rem 0 0; }
.card .rule{ margin:1.1rem 0 1.2rem; }
.card .desc{ color:var(--muted); font-size:0.98rem; }
.card .divider{ border:0; border-top:1px solid var(--hairline); margin:1.3rem 0; }
.card ul{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.card ul li{ color:var(--navy); font-size:0.96rem; }
.card--flagship{
  background:var(--white); border:1px solid var(--terracotta);
  box-shadow:0 30px 64px -44px rgba(26,46,64,.32); transform:translateY(-10px);
}
.card--flagship h3{ color:var(--ink); }
.card--flagship .desc{ color:var(--muted); }
.card--flagship .divider{ border-top-color:var(--hairline); }
.card--flagship ul li{ color:var(--navy); }
.card--flagship .badge{ font-family:var(--sans); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--terracotta); display:block; margin-bottom:.7rem; }
@media (max-width:860px){
  .ladder{ grid-template-columns:1fr; }
  .card--flagship{ order:-1; transform:none; }
}

.tailored{ margin-top:3rem; }
.tailored h3{ font-family:var(--sans); font-size:var(--step-h3); margin-bottom:.6rem; }
.tailored p{ color:var(--muted); max-width:70ch; }

/* ---------- add-ons ---------- */
.addons{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); margin-top:2.6rem; }
.addon .head{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem; }
.addon .head h3{ font-size:var(--step-h3); }
.addon .head .price{ font-family:var(--sans); font-style:normal; color:var(--terracotta); font-size:1.2rem; white-space:nowrap; }
.addon .rule{ margin:1rem 0 1.1rem; }
.addon p{ color:var(--muted); margin:0; }
@media (max-width:640px){ .addons{ grid-template-columns:1fr; } }

/* ---------- care plans ---------- */
.care{ background:transparent; }
.care__intro{ display:grid; grid-template-columns:1fr 1.2fr; gap:clamp(1.5rem,4vw,3.5rem); align-items:start; }
.care__intro h2{ font-size:var(--step-h2); }
.care__intro p{ color:var(--muted); margin:0; }
.plans{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); margin-top:3rem; }
.plan .head{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem; }
.plan .head h3{ font-size:var(--step-h3); }
.plan .head .price{ font-family:var(--sans); color:var(--ink); font-size:1.35rem; white-space:nowrap; }
.plan .head .price small{ font-size:.85rem; color:var(--muted); font-style:normal; }
.plan .rule{ margin:1rem 0 1.1rem; }
.plan p{ color:var(--muted); margin:0; }
.care__note{ margin-top:2.6rem; font-family:var(--sans); font-style:normal; color:var(--muted); max-width:74ch; font-size:.98rem; }
@media (max-width:760px){ .care__intro{ grid-template-columns:1fr; } .plans{ grid-template-columns:1fr; } }

/* ---------- article ---------- */
.article{ padding-block:clamp(3.5rem,7vw,6rem); }
.article__head{ max-width:760px; margin-inline:auto; text-align:center; margin-bottom:clamp(2.5rem,5vw,4rem); }
.article__head h1{ font-size:var(--step-h1); margin-top:1rem; }
.article__head .rule{ margin-inline:auto; margin-top:1.6rem; margin-bottom:0; }
.article__hero{ width:100%; height:clamp(280px,45vh,520px); object-fit:cover; border-radius:var(--radius); margin-bottom:clamp(2.5rem,5vw,4rem); }
.prose{ max-width:68ch; margin-inline:auto; }
.prose h2{ font-size:var(--step-h2); margin:2.4rem 0 1rem; }
.prose .standfirst{ font-family:var(--sans); font-size:var(--step-lede); color:var(--ink); line-height:1.4; margin-bottom:2rem; }
.prose p{ color:var(--navy); }
.prose .pullquote{ margin:2.6rem 0; padding-left:1.2rem; border-left:2px solid var(--terracotta);
  font-family:var(--sans); font-weight:300; color:var(--ink); font-size:clamp(1.5rem,1.15rem+1.1vw,2.05rem); line-height:1.3; }

/* ---------- enquire ---------- */
.enquire-hero{ text-align:center; max-width:940px; margin-inline:auto; }
.enquire-hero .muted{ max-width:60ch; margin-inline:auto; }
.enquire-hero h1{ font-size:var(--step-h1); margin-top:1rem; }
.enquire-hero .rule{ margin-inline:auto; margin-top:1.5rem; margin-bottom:1.5rem; }
.enquire-card{ margin-top:3rem; background:var(--white); border:1px solid var(--hairline); border-radius:var(--radius); padding:clamp(2rem,5vw,3.5rem); }
.field{ display:grid; gap:.5rem; margin-bottom:1.4rem; }
.field label{ font-size:.85rem; letter-spacing:.04em; color:var(--ink); font-weight:500; }
.field input,.field textarea{
  font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.9rem 1rem; border:1px solid var(--hairline); border-radius:10px;
  background:var(--white); width:100%; transition:border-color .25s ease;
}
.field input:focus,.field textarea:focus{ outline:none; border-color:var(--terracotta); }
.field textarea{ min-height:150px; resize:vertical; }
.contact-line{ margin-top:2.2rem; text-align:center; }
.contact-line a{ color:var(--ink); border-bottom:1px solid var(--terracotta); }
.contact-line a:hover{ color:var(--terracotta); }

/* ---------- closing block — white gallery ---------- */
.closing{ background:transparent; color:var(--navy); text-align:center; padding-top:clamp(2.2rem,4vw,3.2rem); }
/* reusable lit treatment for a single centred moment on white (hero, enquire) */
.section--lit{ position:relative; overflow:hidden; isolation:isolate; }
.section--lit::before{
  content:""; position:absolute; left:50%; top:clamp(130px,24%,280px); z-index:0; pointer-events:none;
  width:min(900px,120vw); aspect-ratio:1/1; transform:translate(-50%,-50%);
  background:radial-gradient(circle at center,
     rgba(245,239,229,.85) 0%, rgba(245,239,229,.45) 30%,
     rgba(194,89,63,.05) 55%, rgba(255,255,255,0) 72%);
  filter:blur(6px); animation:breathe 11s ease-in-out infinite;
}
.section--lit > .wrap{ position:relative; z-index:1; }
.closing h2{ color:var(--ink); font-size:var(--step-h1); }
.closing p{ color:var(--muted); max-width:48ch; margin:1.3rem auto 0; line-height:1.6; }
.closing .btn{ margin-top:2.4rem; }
/* the accent, used only here: the thin animated line from the scroll cue */
.closing .rule, .enquire-hero .rule{
  display:block; width:1px; height:46px; margin:0 auto 1.9rem;
  background:linear-gradient(var(--terracotta), rgba(194,89,63,0));
  transform-origin:top; animation:cueDrop 2.4s ease-in-out infinite;
}

/* ---------- footer — light, quiet close on cream ---------- */
.site-footer{
  background:var(--navy); color:var(--cream); text-align:center;
  padding-block:clamp(3rem,6vw,4.5rem) clamp(1.8rem,3vw,2.4rem);
}
.footer__inner{ display:grid; justify-items:center; }
/* a slim terracotta sign-off line, echoing the scroll cue and closing blocks */
.footer__rule{
  display:block; width:1px; height:38px; margin:0 auto clamp(1.6rem,3vw,2.2rem);
  background:linear-gradient(var(--terracotta), rgba(194,89,63,0));
  transform-origin:top; animation:cueDrop 2.4s ease-in-out infinite;
}
.footer__mark{
  font-family:var(--wordmark); font-weight:400; color:var(--cream);
  font-size:clamp(1.55rem,3.2vw,2.15rem); letter-spacing:.12em; line-height:1;
  transition:opacity .3s ease;
}
.footer__mark:hover{ opacity:.7; }
.footer-nav{ display:flex; gap:clamp(1.4rem,3vw,2.4rem); list-style:none; margin:clamp(1.6rem,3vw,2.1rem) 0 0; padding:0; justify-content:center; flex-wrap:wrap; }
.footer-nav a{ font-size:.9rem; letter-spacing:.02em; color:rgba(245,239,229,.72); position:relative; padding-bottom:2px; transition:color .25s ease; }
.footer-nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--terracotta); transition:width .3s ease; }
.footer-nav a:hover{ color:var(--cream); }
.footer-nav a:hover::after{ width:100%; }
.footer-meta{ margin:clamp(2rem,4vw,2.8rem) 0 0; font-size:.78rem; letter-spacing:.02em; color:rgba(245,239,229,.45); }
.footer-meta a{ color:rgba(245,239,229,.68); border-bottom:1px solid transparent; padding-bottom:1px; transition:color .25s ease, border-color .25s ease; }
.footer-meta a:hover{ color:var(--cream); border-bottom-color:var(--terracotta); }

/* ---------- about & services — minimal white with a hand-drawn wink ---------- */
.hand{ font-family:"Caveat", cursive; font-weight:600; color:var(--terracotta); line-height:1; }
.scribble{ display:block; overflow:visible; pointer-events:none; }
.scribble path{ fill:none; stroke:var(--terracotta); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:var(--len,400); stroke-dashoffset:var(--len,400); transition:stroke-dashoffset 1s ease .2s; }
.reveal.in .scribble path{ stroke-dashoffset:0; }

/* --- About --- */
.about-grid{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:clamp(2.5rem,6vw,6rem); align-items:center; margin-top:clamp(1.5rem,3vw,3rem); }
.about-photo{ position:relative; width:min(450px,92%); justify-self:center; }
.about-photo .lean{ transform:rotate(-3deg); background:var(--white); padding:14px 14px 44px; border-radius:2px;
  box-shadow:0 34px 70px -34px rgba(26,46,64,.42); transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.about-photo:hover .lean{ transform:rotate(-1deg); }
.about-photo .lean img{ display:block; width:100%; aspect-ratio:3/4; object-fit:cover; }
.about-note{ position:absolute; right:-2rem; top:-2.4rem; text-align:center; transform:rotate(4deg); z-index:2; }
.about-note .hand{ font-size:clamp(1.4rem,2.3vw,1.9rem); }
.about-note .scribble{ width:64px; height:52px; margin:.15rem auto 0; }
.about-text .eyebrow{ display:block; margin-bottom:1rem; }
.about-text h1, .about-text h2{ font-size:var(--step-h1); margin-bottom:1.4rem; }
.about-text p{ color:var(--muted); margin:0 0 1.1rem; max-width:58ch; }
.about-text .about-pull{ color:var(--terracotta); font-size:clamp(1.25rem,1.05rem+.7vw,1.6rem); line-height:1.3; margin:1.4rem 0 1.4rem; max-width:24ch; }
.about-text .link-arrow{ margin-top:.8rem; }

/* testimonial — pull quote on a soft frosted card (matches the hero card) */
.testi{ background:var(--white); }
.testi__card{ margin:0 auto; max-width:46rem; text-align:center;
  background:rgba(245,239,229,.72); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  border-radius:20px; box-shadow:0 26px 60px -34px rgba(26,46,64,.40);
  padding:clamp(2.4rem,7vw,3.6rem) clamp(1.8rem,6vw,3.2rem) clamp(2.2rem,6vw,3.2rem); }
.testi__mark{ display:block; font-family:var(--sans); font-weight:500; font-size:clamp(3rem,7vw,4.6rem); line-height:.7; color:var(--terracotta); }
.testi__quote{ margin:.6rem 0 0; }
.testi__quote p{ font-family:var(--sans); color:var(--ink); font-weight:300;
  font-size:clamp(1.18rem,1.02rem+.8vw,1.55rem); line-height:1.55; margin:0; }
.testi__who{ margin-top:clamp(1.4rem,2.6vw,2.1rem); font-family:var(--sans); font-size:.9rem; color:var(--muted);
  display:flex; flex-direction:column; gap:.12rem; align-items:center; letter-spacing:.02em; }
.testi__who b{ color:var(--ink); font-weight:500; font-size:.98rem; }

/* about page: stacked polaroids down the page, mixed angles */
.about-grid:has(.about-photo--stack){ align-items:start; }
.about-photo--stack{ display:flex; flex-direction:column; gap:clamp(2.6rem,5vw,4rem); }
.about-photo--stack .lean{ transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.about-photo--stack .lean--wide img{ aspect-ratio:4/3; }
.about-photo--stack .lean:nth-child(1){ transform:rotate(-3deg); }
.about-photo--stack .lean:nth-child(2){ transform:rotate(2.6deg); }
.about-photo--stack .lean:nth-child(3){ transform:rotate(-2.4deg); }
.about-photo--stack .lean:nth-child(4){ transform:rotate(3.4deg); }
.about-photo--stack .lean:hover{ transform:rotate(-0.5deg) scale(1.01); }

/* about: real life gallery */
.about-life{ background:var(--cream); }
.life-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1rem,2vw,1.6rem); }
.life-grid figure{ margin:0; }
.life-grid img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:10px; display:block;
  box-shadow:0 22px 46px -30px rgba(26,46,64,.45); transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.life-grid figure:hover img{ transform:translateY(-4px); }
.life-grid figcaption{ font-family:var(--sans); font-size:.82rem; color:var(--muted); margin-top:.7rem; letter-spacing:.02em; }
@media (max-width:760px){ .life-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .life-grid{ grid-template-columns:1fr; } }

/* home about teaser — tighter, balanced, no dead space */
.about--teaser{ padding-block:clamp(3rem,6vw,5rem); }
.about--teaser .about-grid{ grid-template-columns:0.8fr 1fr; gap:clamp(2.2rem,5vw,4.5rem);
  align-items:center; max-width:1040px; margin-inline:auto; }
.about--teaser .about-photo{ width:min(360px,90%); }
.about--teaser .about-text{ max-width:44ch; }
.about--teaser .about-text p{ max-width:44ch; }
@media (max-width:820px){
  .about-grid{ grid-template-columns:1fr; gap:clamp(3rem,8vw,4rem); }
  .about--teaser .about-grid{ grid-template-columns:1fr; text-align:left; }
  .about--teaser .about-photo{ width:min(320px,80%); }
  .about-note{ right:-.5rem; top:-2rem; }
}

/* --- Services --- */
.svc-head{ max-width:62ch; }
.svc-head h1{ font-size:var(--step-h1); }
.svc-head .hand{ font-size:clamp(1.6rem,2.8vw,2.3rem); display:inline-block; transform:rotate(-3deg); }
.svc-head .lede{ color:var(--muted); margin-top:1.3rem; max-width:48ch; }
.svc-list{ margin-top:clamp(2.6rem,5vw,4.2rem); border-top:1px solid var(--hairline); }
.svc-item{ display:grid; grid-template-columns:auto 1fr; gap:clamp(1.4rem,4vw,4rem); align-items:start;
  padding:clamp(2rem,4vw,3rem) 0; border-bottom:1px solid var(--hairline); }
.svc-num{ font-family:var(--sans); font-weight:300; font-size:clamp(1.4rem,2.4vw,2rem); color:rgba(194,89,63,.5); line-height:1; }
.svc-item h2{ font-size:var(--step-h3); margin-bottom:.65rem; position:relative; display:inline-block; }
.svc-item h2 .scribble{ position:absolute; left:-2%; bottom:-.55em; width:104%; height:.5em; }
.svc-item p{ color:var(--muted); margin:0; max-width:62ch; }
@media (max-width:600px){ .svc-item{ grid-template-columns:1fr; gap:.5rem; } }

/* ---------- portfolio / work gallery ---------- */
.folio{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(2rem,4vw,3.5rem); margin-top:clamp(2.5rem,5vw,4rem); }
.folio__piece{ display:block; color:inherit; }
.folio__frame{ overflow:hidden; border-radius:2px; background:var(--cream); }
.folio__frame img{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; transition:transform .9s cubic-bezier(.2,.7,.2,1); }
.folio__piece:hover .folio__frame img{ transform:scale(1.05); }
.folio__meta{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem; margin-top:1.1rem; padding-top:1rem; border-top:1px solid var(--hairline); }
.folio__meta h2{ font-size:var(--step-h3); transition:color .25s ease; }
.folio__piece:hover .folio__meta h2{ color:var(--terracotta); }
.folio__cat{ color:var(--muted); font-size:.82rem; letter-spacing:.03em; white-space:nowrap; }
.folio__note{ color:var(--muted); margin:.5rem 0 0; font-size:.95rem; }
.folio__note a{ color:var(--ink); border-bottom:1px solid var(--terracotta); padding-bottom:1px; transition:color .25s ease; }
.folio__note a:hover{ color:var(--terracotta); }
/* video tile: plays on scroll, poster shown until then */
.folio__video{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; background:var(--ink); }
.folio__piece--wide{ grid-column:1 / -1; }
.folio__piece--wide .folio__frame img{ aspect-ratio:16/9; }
/* placeholder "coming soon" slots */
.folio__piece--soon .folio__frame{
  aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
  background:var(--cream); border:1px solid var(--hairline);
}
.folio__piece--soon.folio__piece--wide .folio__frame{ aspect-ratio:16/9; }
.folio__piece--soon .folio__frame span{
  font-family:var(--sans); font-size:.72rem; font-weight:500; letter-spacing:.22em;
  text-transform:uppercase; color:var(--muted);
}
.folio__piece--soon .folio__meta h2{ color:var(--muted); }
.folio__piece--soon:hover .folio__meta h2{ color:var(--muted); }
@media (max-width:640px){ .folio{ grid-template-columns:1fr; } .folio__piece--wide{ grid-column:auto; } }

/* ---------- section headings ---------- */
.section-head{ max-width:60ch; }
.section-head.center{ margin-inline:auto; }
.section-head h2{ font-size:var(--step-h2); }
.section-head .rule{ margin-bottom:1.3rem; }
.section-head.center .rule{ margin-inline:auto; }
.section-head p{ color:var(--muted); margin-top:.9rem; }

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }
