/* Brows For Life · maison */
:root{
  --cream:#FFFFFF;        /* page */
  --ivory:#FFFFFF;
  --band:#FDF1F5;         /* blush band (D) */
  --band-line:#F3D9E4;
  --band-ink:#111111;
  --band-soft:#8A7580;
  --ink:#111111;          /* black */
  --brown:#111111;
  --soft:#6F6B6D;
  --blush:#F9C7DA;        /* light pink tint */
  --blush-deep:#EA2180;   /* logo pink, small text */
  --hot:#EA2180;          /* logo pink #EA2180 */
  --rose:#FBF5F8;
  --line:#ECE9EB;
  --serif:'Instrument Sans', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --sans:'Figtree', 'Avenir Next', 'Helvetica Neue', sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16.5px;
  font-weight:400;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{text-wrap:pretty}

.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:760px;margin:0 auto;padding:0 24px}

/* type */
h1,h2,h3{font-family:var(--serif);font-weight:600;line-height:1.08;text-wrap:balance;letter-spacing:-.025em}
h1{font-size:clamp(2.5rem,5.6vw,4.4rem)}
h2{font-size:clamp(1.8rem,3.6vw,2.7rem)}
h3{font-size:1.3rem;font-weight:600}
.kicker{
  font-family:var(--sans);font-size:.72rem;font-weight:500;
  letter-spacing:.24em;text-transform:uppercase;color:var(--blush-deep);
  display:block;margin-bottom:1.2rem;
}
.lede{font-size:1.08rem;color:var(--soft);max-width:36em;font-weight:400}
.serif-i{color:var(--hot);font-style:normal}

/* header */
header{
  position:sticky;top:0;z-index:50;
  border-top:2px solid var(--hot);
  background:color-mix(in srgb, #FFFFFF 94%, transparent);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:80px}
.wordmark{
  font-family:var(--serif);font-size:1.12rem;font-weight:700;
  letter-spacing:.07em;text-transform:uppercase;
  transition:letter-spacing .45s cubic-bezier(.22,.61,.36,1);
}
.wordmark:hover{letter-spacing:.22em}
.logo{display:flex;align-items:center}
.logo img{height:52px;width:auto;display:block;transition:transform .3s ease}
.logo:hover img{transform:scale(1.04)}
.wordmark em{font-style:normal;color:var(--blush-deep)}
.nav-links{display:flex;gap:2rem;align-items:center;font-size:.95rem;font-weight:500;margin-left:auto}
.nav-links a{position:relative;padding:4px 0}
.nav-links a:not(.btn)::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:0;
  background:var(--hot);transition:width .25s ease;
}
.nav-links a:not(.btn):hover::after,.nav-links a[aria-current]::after{width:100%}
header .btn{
  background:var(--ink);color:#fff;border-color:var(--ink);
  padding:.6rem 1.5rem;font-size:.88rem;margin-left:1.4rem;
}
header .btn:hover{background:var(--hot);border-color:var(--hot);color:#fff;transform:translateY(-2px)}
.nav-toggle{display:none}

/* buttons */
.btn{
  display:inline-block;background:var(--ink);color:var(--ivory);
  padding:1rem 2.6rem;font-size:.92rem;font-weight:500;letter-spacing:0;line-height:1.35;
  border:1px solid var(--ink);border-radius:999px;transition:all .25s ease, transform .25s ease;will-change:transform;
  -webkit-tap-highlight-color:transparent;
}
.btn:hover{background:var(--hot);border-color:var(--hot);color:#fff;transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink)}
.btn-ghost:hover{background:var(--ink);border-color:var(--ink);color:var(--ivory)}
.btn-light{background:var(--ivory);color:var(--ink);border-color:var(--ivory);font-weight:500}
.btn-light:hover{background:var(--hot);border-color:var(--hot);color:#fff}

/* Touch devices keep a sticky :hover after a tap, which looked like a stuck
   black button. Neutralise hover there and answer the tap with pink instead. */
@media (hover:none){
  .btn:hover,header .btn:hover{background:var(--ink);border-color:var(--ink);color:var(--ivory);transform:none}
  .btn-ghost:hover{background:transparent;border-color:var(--ink);color:var(--ink)}
  .btn-light:hover{background:var(--ivory);border-color:var(--ivory);color:var(--ink)}
  .btn:active,.btn-ghost:active,.btn-light:active,header .btn:active{
    background:var(--hot);border-color:var(--hot);color:#fff;transform:none;transition-duration:.06s;
  }
}

/* hero */
.hero{padding:clamp(3rem,8vh,6rem) 0 clamp(3rem,7vh,5rem)}
.hero-maison{
  padding:clamp(5rem,14vh,9rem) 0 clamp(4.5rem,12vh,8rem);
  background:
    radial-gradient(ellipse 75% 55% at 50% -8%, #FBEDF2 0%, transparent 62%),
    var(--cream);
}
.hero-center{max-width:820px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.hero-center h1{font-size:clamp(3rem,7.5vw,5.6rem);line-height:1.06}
.hero-center .serif-i{color:var(--hot)}
.hero-rule{width:72px;height:2px;background:linear-gradient(90deg,var(--hot),var(--blush));margin:2.2rem auto}
.hero-center .lede{margin:0 auto 2.6rem;max-width:32em}
.hero-center .hero-cta{justify-content:center;margin-bottom:1.6rem}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,6vw,5.5rem);align-items:center}
.hero-copy .lede{margin:1.7rem 0 2.5rem}
.hero-media{position:relative}
.hero-media video,.hero-media img{
  width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:24px;
}
.hero-frame{
  position:absolute;inset:20px -20px -20px 20px;
  border:1px solid var(--blush);z-index:-1;
}
.hero-cta{display:flex;gap:1.2rem;flex-wrap:wrap;align-items:center}
.hero-note{font-size:.85rem;color:var(--soft)}

/* hero · full-bleed shot */
.hero-shot{
  position:relative;padding:0;
  background:#FDFDFD;
  min-height:clamp(520px,78vh,820px);
  display:flex;align-items:center;
  overflow:hidden;
}
.hero-shot-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:22% 45%;
}
.hero-shot-vid{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:22% 45%;
  opacity:0;transition:opacity .8s ease;pointer-events:none;
}
.hero-shot.playing .hero-shot-vid{opacity:1}
.hero-shot::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    radial-gradient(ellipse 46% 70% at 76% 50%, rgba(255,255,255,.55) 0%, transparent 70%),
    linear-gradient(90deg, transparent 55%, rgba(255,255,255,.25) 100%);
}
.hero-shot .wrap{position:relative;z-index:2;width:100%;display:flex;justify-content:flex-end}
.hero-shot-copy{
  max-width:29rem;text-align:left;
  padding:2.2rem 0;
}
.hero-shot-copy .kicker{color:var(--blush-deep)}
.hero-shot-copy h1{font-size:clamp(2.6rem,4.6vw,4.1rem);line-height:1.04;color:var(--ink)}
.hero-shot-copy .serif-i{color:var(--blush-deep)}
/* The lede is a two-line couplet, so it takes tighter leading than body copy;
   at 1.7 the two lines read as two separate thoughts. */
.hero-shot-copy .lede{color:#555153;margin:1.5rem 0 2.1rem;font-size:1.05rem;line-height:1.5;max-width:22em}
/* The note bookends the block against the kicker above it, and stays clearly
   subordinate to the lede instead of competing with it. */
.hero-shot-copy .hero-note{
  color:var(--soft);display:block;margin-top:1.6rem;
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
}
.hero-shot .btn{background:var(--ink);border-color:var(--ink);color:#fff}
.hero-shot .btn:hover{background:var(--hot);border-color:var(--hot);color:#fff;transform:translateY(-2px)}
@media (max-width:900px){
  .hero-shot{display:block;min-height:0;background:var(--cream);overflow:visible}
  .hero-shot-img{
    position:relative;height:auto;width:100%;
    aspect-ratio:4/3;object-fit:cover;object-position:24% 34%;
    animation:none;
    -webkit-mask-image:linear-gradient(180deg,#000 74%,transparent 100%);
            mask-image:linear-gradient(180deg,#000 74%,transparent 100%);
  }
  .hero-shot::after{display:none}
  .hero-shot .wrap{justify-content:flex-start;padding-top:2.1rem;padding-bottom:2.4rem}
  /* Centred, and without its own button — Book now sits in the header bar
     on mobile, so a second one here would just crowd the block. */
  /* width:100% matters: .wrap is a flex row, so without it the copy block
     shrinks to its content and text-align:center centres inside that narrower
     box, which sits left of the real page centre. */
  .hero-shot-copy{max-width:none;width:100%;padding:0;text-align:center}
  .hero-shot-copy h1{font-size:clamp(2.3rem,9vw,3.1rem);letter-spacing:-.015em}
  .hero-shot-copy .kicker{font-size:.72rem;letter-spacing:.2em}
  .hero-shot-copy .lede{max-width:none;margin:1.1rem 0 1.4rem;font-size:1.02rem;line-height:1.5}
  .hero-shot-copy .hero-cta{display:none}
  .hero-shot-copy .hero-note{margin-top:0;font-size:.72rem}
}
@media (max-width:520px){
  .hero-shot-img{aspect-ratio:5/4;object-position:24% 32%}
}

/* motion */
@keyframes heroZoom{from{transform:scale(1.015)}to{transform:scale(1.07)}}
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.hero-shot-img{transform-origin:28% 42%;animation:heroZoom 18s ease-in-out infinite alternate}
.hero-shot-copy > *{opacity:0;animation:fadeUp .8s cubic-bezier(.22,.61,.36,1) forwards}
.hero-shot-copy > *:nth-child(1){animation-delay:.1s}
.hero-shot-copy > *:nth-child(2){animation-delay:.22s}
.hero-shot-copy > *:nth-child(3){animation-delay:.36s}
.hero-shot-copy > *:nth-child(4){animation-delay:.5s}
.hero-shot-copy > *:nth-child(5){animation-delay:.64s}
@media (prefers-reduced-motion:reduce){
  .hero-shot-img{animation:none}
  .hero-shot-copy > *{animation:none;opacity:1}
}
.stat b{transition:color .3s ease}
.stat:hover b{color:var(--hot)}
.page-banner img{transition:transform 5s ease}
.page-banner:hover img{transform:scale(1.05)}

/* hero · K style */
.hero-k{background:var(--cream);padding:clamp(3rem,9vh,6.5rem) 0 clamp(3.5rem,10vh,7rem)}
.hero-k-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(2.5rem,7vw,6rem);align-items:center}
.hero-k-copy h1{font-size:clamp(2.3rem,4.2vw,3.7rem);line-height:1.06}
.hero-k-copy .hero-rule{width:64px;height:2px;background:linear-gradient(90deg,var(--hot),var(--blush));margin:1.9rem 0}
.hero-k-copy .lede{margin-bottom:2.4rem}
.hero-k-copy .hero-note{display:block;margin-top:1.5rem}
.nowrap{white-space:nowrap}
.hero-k-media img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:4px;display:block}
@media (max-width:900px){
  .hero-k-grid{grid-template-columns:1fr}
  .hero-k-media{order:-1}
}

/* page intro (framed image) */
.wrap-mid{max-width:920px;margin:0 auto;padding:0 24px}
.page-intro{padding-bottom:clamp(2rem,5vh,3.5rem)}
/* Tops aligned, not centres: the kicker should start on the same line as the
   top edge of the photo. The nudge accounts for the kicker's line box. */
.intro-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:clamp(2rem,4.5vw,3.5rem);align-items:start}
.intro-grid > div{padding-top:.1rem}
/* These page headings are h1 for search engines but sit at section scale
   visually, so they take the h2 size rather than the display h1 size. */
.intro-grid h1,.intro-grid h2{font-size:clamp(1.7rem,3.2vw,2.4rem)}
.intro-grid .lede{font-size:1rem}
.intro-media{margin:0}
.intro-media img{width:100%;aspect-ratio:4/5;object-fit:cover;display:block}
.intro-media figcaption{font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;color:var(--soft);margin-top:.9rem}
@media (max-width:900px){
  /* Heading first, image under it — the photo above the title pushed the
     page title off the first screen and read as a banner, not a page. */
  .intro-grid{grid-template-columns:1fr;gap:2rem}
  .intro-grid > div{order:1}
  .intro-media{order:2}
  .intro-media img{max-width:none;border-radius:16px}
  .intro-media figcaption{margin-top:.7rem}
}

/* page banner */
.page-banner{height:clamp(200px,32vh,320px);overflow:hidden;border-bottom:1px solid var(--line);background:#FDFDFD}
.page-banner img{width:100%;height:100%;object-fit:cover}
.faq-grid{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:clamp(2.5rem,5vw,4.5rem);align-items:start}
.faq-video{margin:0;position:sticky;top:104px}
.vid-box{position:relative;border-radius:20px;overflow:hidden;line-height:0}
.faq-video video{display:block;width:100%;aspect-ratio:9/16;object-fit:cover}
.vid-toggle{
  position:absolute;right:12px;bottom:12px;width:40px;height:40px;
  display:grid;place-items:center;border:0;border-radius:99px;cursor:pointer;
  background:rgba(17,17,17,.55);backdrop-filter:blur(6px);
  opacity:0;transform:translateY(6px);
  transition:opacity .25s ease,transform .25s ease,background .25s ease;
}
.vid-box:hover .vid-toggle,.vid-toggle:focus-visible,.vid-toggle.paused{opacity:1;transform:none}
.vid-toggle:hover{background:var(--hot)}
.vid-toggle svg{width:18px;height:18px;fill:#fff}
.vid-toggle .i-play{display:none}
.vid-toggle.paused .i-pause{display:none}
.vid-toggle.paused .i-play{display:block}
@media (hover:none){.vid-toggle{opacity:1;transform:none}}
.faq-video figcaption{font-size:.82rem;color:var(--soft);padding-top:.8rem;line-height:1.5}
@media (max-width:900px){
  .faq-grid{grid-template-columns:1fr;gap:2.5rem}
  .faq-video{position:static;order:-1;max-width:280px;margin:0 auto}
  .faq-video figcaption{text-align:center}
}

/* stat band */
.stats{background:var(--band)}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.stat{padding:2.6rem 1rem;text-align:center}
.stat + .stat{border-left:1px solid var(--band-line)}
.stat b{font-family:var(--serif);font-size:2.4rem;font-weight:600;letter-spacing:-.03em;display:block;line-height:1.1;color:var(--band-ink)}
.stat span{font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--band-soft)}

/* sections */
section{padding:clamp(3.5rem,9vh,6.5rem) 0}
.section-head{margin-bottom:3rem;max-width:640px}
.section-head h1{font-size:clamp(1.8rem,3.6vw,2.7rem)}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}

/* services */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.svc{
  background:var(--ivory);border:1px solid var(--line);border-radius:20px;padding:2.6rem 2.1rem 2.3rem;
  display:flex;flex-direction:column;gap:.9rem;transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc:hover{transform:translateY(-4px);box-shadow:0 20px 44px -30px rgba(60,38,50,.4);border-color:var(--hot);background:var(--ivory)}
.svc .price{font-family:var(--serif);font-size:1.8rem;font-weight:600;letter-spacing:-.02em;color:var(--ink)}
.svc p{font-size:.95rem;color:var(--soft);flex:1}
.svc .more{font-size:.9rem;font-weight:500;color:var(--blush-deep);align-self:flex-start}
.svc .more::after{content:" →"}

/* about + craft */
.about-cta{margin-top:2rem}
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,6vw,5rem);align-items:center}
.about-grid img,.about-grid video{aspect-ratio:4/5;object-fit:cover;width:100%;border-radius:24px}
.cred-list{list-style:none;margin-top:1.6rem;display:grid;gap:.55rem}
.cred-list li{font-size:.95rem;color:var(--soft);padding-left:1.1rem;position:relative}
.cred-list li::before{content:"";position:absolute;left:0;top:.62em;width:5px;height:5px;border-radius:50%;background:var(--hot)}
.cred-list b{color:var(--ink);font-weight:500}
.about-quote{
  font-family:var(--serif);font-weight:500;font-size:1.35rem;line-height:1.5;letter-spacing:-.01em;
  border-left:3px solid var(--hot);padding-left:1.5rem;margin:1.8rem 0;
}

/* portfolio */
.folio-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.folio-grid img{
  aspect-ratio:1;object-fit:cover;border-radius:14px;
  filter:saturate(.95) brightness(1.005) contrast(1.04) saturate(1.02);
  transition:filter .45s ease, transform .45s ease;
}
.folio-grid a:hover img,.folio-grid img:hover{filter:saturate(1.08) brightness(1.02) contrast(1.06);transform:scale(1.02)}
@media (hover:none){
  .folio-grid img{filter:saturate(.98) brightness(1.005) contrast(1.04)}
}
.folio-grid.large{grid-template-columns:repeat(3,1fr);gap:16px}

/* faq */
.faq-list{border-top:1px solid var(--line)}
details{border-bottom:1px solid var(--line)}
summary{
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;gap:1.5rem;
  padding:1.5rem 0;font-family:var(--serif);font-size:1.12rem;font-weight:600;letter-spacing:-.01em;
}
summary::-webkit-details-marker{display:none}
summary::after{content:"+";font-family:var(--sans);font-weight:300;font-size:1.5rem;color:var(--hot);flex-shrink:0}
details[open] summary::after{content:"–"}
details .a{padding:0 0 1.7rem;color:var(--soft);max-width:60em;font-size:.98rem}
details .a p + p{margin-top:.8rem}
details .a ul{padding-left:1.2rem}

/* pricing */
.price-group{margin-bottom:3.2rem}
.price-row:hover{background:linear-gradient(90deg,var(--rose),transparent)}
.price-row{
  display:flex;justify-content:space-between;align-items:baseline;gap:1.5rem;
  padding:1.3rem 0;border-bottom:1px solid var(--line);
}
.price-row .name{font-family:var(--serif);font-size:1.15rem;font-weight:600;letter-spacing:-.01em}
.price-row .desc{font-size:.92rem;color:var(--soft);margin-top:.25rem}
.price-row .amt{font-family:var(--serif);font-size:1.25rem;font-weight:600;white-space:nowrap;color:var(--ink)}
.notice{
  background:var(--ivory);border:1px solid var(--line);border-left:3px solid var(--hot);border-radius:16px;
  padding:1.5rem 1.8rem;font-size:.94rem;color:var(--soft);
}
.notice + .notice{margin-top:1rem}
.notice b{color:var(--ink);font-weight:500}

/* aftercare */
.steps{counter-reset:step;display:grid;gap:0;border-top:1px solid var(--line)}
.step{
  position:relative;isolation:isolate;
  display:grid;grid-template-columns:70px 1fr;gap:1.4rem;
  padding:1.7rem 1.2rem;margin:0 -1.2rem;
  border-bottom:1px solid var(--line);border-radius:14px;
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
.step::after{
  content:"";position:absolute;inset:0;z-index:-1;border-radius:14px;
  background:var(--band);opacity:0;transform:scaleX(.97);
  transition:opacity .35s ease, transform .35s cubic-bezier(.22,.61,.36,1);
}
.step:hover::after{opacity:1;transform:none}
.step:hover{transform:translateX(6px)}
.step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  font-family:var(--serif);font-weight:600;font-size:1.7rem;color:var(--hot);line-height:1;letter-spacing:-.02em;
  transition:transform .35s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
  transform-origin:left center;opacity:.75;
}
.step:hover::before{transform:scale(1.22);opacity:1}
.step h3{font-size:1.15rem;margin-bottom:.35rem;transition:color .3s ease}
.step:hover h3{color:var(--hot)}
.step p{color:var(--soft);font-size:.95rem;transition:color .3s ease}
.step:hover p{color:#4A4548}
.step:hover{transition-delay:0s}
.notice{transition:transform .3s ease, box-shadow .3s ease, border-left-width .3s ease}
.notice:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(17,17,17,.07);border-left-width:6px}
@media (prefers-reduced-motion:reduce){
  .step,.step::before,.step::after,.notice{transition:none}
  .step:hover{transform:none}
}

/* contact */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,6vw,5rem)}
.c-item{padding:1.35rem 0;border-bottom:1px solid var(--line)}
.c-item span{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--soft);display:block;margin-bottom:.35rem}
.c-item a{font-family:var(--serif);font-size:1.3rem;font-weight:600;letter-spacing:-.01em}
.c-item a{transition:color .25s ease}
.c-item a:hover{color:var(--blush-deep)}
.c-item .c-alt{
  display:inline-block;margin-left:1.4rem;vertical-align:baseline;
  font-family:var(--sans);font-size:.86rem;font-weight:400;letter-spacing:0;
  color:var(--soft);border-bottom:1px solid var(--line);padding-bottom:1px;
  transition:color .25s ease,border-color .25s ease;
}
.c-item .c-alt:hover{color:var(--blush-deep);border-color:var(--blush-deep)}
.hours{width:100%;border-collapse:collapse;font-size:.95rem}
.hours td{padding:.8rem 0;border-bottom:1px solid var(--line)}
.hours td:last-child{text-align:right;color:var(--soft)}
.hours .closed td:last-child{color:#C9B4BE;font-style:italic}

/* cta band */
.cta-band{background:var(--ink);color:var(--ivory);text-align:center}
.cta-band .kicker{color:var(--hot)}
.cta-band h2{color:var(--ivory);margin-bottom:1rem}
.cta-band p{color:#BFB4BA;max-width:44em;margin:0 auto 2.4rem}

/* footer */
footer{background:var(--ink);color:#BFB4BA;font-size:.9rem}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;padding:3.6rem 0 2.6rem}
.foot-grid .wordmark{color:var(--ivory);margin-bottom:.9rem;display:block}
.foot-grid .wordmark em{color:var(--blush)}
footer a:hover{color:var(--blush)}
.foot-head{font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--blush);margin-bottom:1rem}
.foot-links{display:grid;gap:.55rem;min-width:0}
.foot-links a{overflow-wrap:anywhere}
.foot-base{border-top:1px solid #453A40;padding:1.5rem 0;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem;color:#95888E}

/* reveal */
.reveal{
  opacity:0;transform:translateY(22px);
  transition:opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
  will-change:opacity,transform;
}
.reveal.in{opacity:1;transform:none}
.folio-grid > .reveal{
  opacity:0;transform:translateY(18px) scale(.98);
  transition:opacity .65s cubic-bezier(.22,.61,.36,1),
             transform .65s cubic-bezier(.22,.61,.36,1),
             filter .45s ease;
}
.folio-grid > .reveal.in{opacity:1;transform:none}
.step.reveal{transform:translateX(-16px)}
.step.reveal.in{transform:none}
.hours tr.reveal{transform:translateY(10px);transition-duration:.5s}
@media (prefers-reduced-motion:reduce){
  .reveal,.reveal.in{opacity:1;transform:none;transition:none}
}

@media (max-width:900px){
  .hero-grid,.about-grid,.contact-grid{grid-template-columns:1fr}
  .hero-media{order:-1}
  .svc-grid{grid-template-columns:1fr}
  .folio-grid{grid-template-columns:repeat(2,1fr)}
  .folio-grid.large{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:1fr}
  .stat + .stat{border-left:0;border-top:1px solid var(--band-line)}
  .foot-grid{grid-template-columns:1fr 1fr;gap:2rem 1.5rem}
  .foot-grid > div{min-width:0}
  .foot-grid > div:first-child{grid-column:1 / -1}
  .about-cta{text-align:center;margin-top:2.2rem}
  .nav-links{display:none}
  .nav-links.open{
    display:grid;position:absolute;top:80px;left:0;right:0;
    background:#FFFFFF;border-bottom:1px solid var(--line);
    padding:1.5rem 28px 1.8rem;gap:1.2rem;
  }
  /* Book now leaves the drawer and lives in the bar, so it is visible on
     every page without opening the menu. Order: logo · Book now · MENU. */
  .nav-links{margin-left:0}
  .logo{order:1}
  /* Order: logo · MENU · Book now. header .btn is (0,1,1) so the mobile
     sizing has to match that specificity or it loses. */
  .nav-toggle{order:2;margin-left:auto;font-size:.72rem;letter-spacing:.18em}
  header .nav-book{order:3;margin-left:1.1rem;padding:.5rem 1.15rem;font-size:.8rem}
  .logo img{height:44px}
  .nav-toggle{
    display:block;background:none;border:0;font-family:var(--sans);
    font-size:.78rem;letter-spacing:.26em;text-transform:uppercase;color:var(--ink);cursor:pointer;
  }
}

/* portfolio: collapsed to four rows until asked */
.folio-grid.clipped{overflow:hidden;position:relative;
  -webkit-mask-image:linear-gradient(180deg,#000 82%,transparent 100%);
          mask-image:linear-gradient(180deg,#000 82%,transparent 100%);
}
.folio-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.folio-actions .btn{cursor:pointer;font-family:var(--sans)}
@media (max-width:600px){
  .folio-actions{flex-direction:column;align-items:stretch}
}

/* reviews */
.rev-score{margin-top:1.1rem;font-size:.92rem;color:var(--soft);letter-spacing:.01em}
.rev-score b{color:var(--ink);font-weight:600}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.rev{
  margin:0;background:#fff;border:1px solid var(--line);border-radius:20px;
  padding:2rem 1.9rem 1.7rem;display:flex;flex-direction:column;gap:1.2rem;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.rev:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(17,17,17,.07);border-color:#E6DCE1}
.rev blockquote{margin:0;font-size:1rem;line-height:1.62;color:var(--ink);flex:1}
.rev blockquote::before{
  /* \FE0E forces text presentation — without it iOS swaps the heart for the
     red emoji and the row turns bright red on phones. */
  content:"\2665\FE0E\2665\FE0E\2665\FE0E\2665\FE0E\2665\FE0E";
  display:block;margin-bottom:.9rem;
  font-family:var(--sans);font-size:.8rem;line-height:1;
  letter-spacing:.28em;color:var(--hot);
}
.rev figcaption{display:flex;flex-direction:column;gap:.2rem;font-family:var(--sans)}
.rev figcaption b{font-size:.92rem;font-weight:600}
.rev figcaption span{font-size:.78rem;letter-spacing:.06em;text-transform:uppercase;color:var(--soft)}
@media (max-width:900px){
  .rev-grid{grid-template-columns:1fr;gap:1.1rem}
  .rev{padding:1.7rem 1.5rem 1.4rem}
}

/* also-offered strip */
.also{
  margin-top:1.6rem;background:var(--ivory);border:1px solid var(--line);
  border-left:3px solid var(--hot);border-radius:20px;
  padding:2rem 2.2rem;display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
}
.also h3{margin-bottom:.35rem}
.also p{color:var(--soft);font-size:.95rem;max-width:46em}
@media (max-width:900px){
  .also{flex-direction:column;align-items:stretch;gap:1.5rem;padding:1.9rem 1.6rem}
  .also .btn{align-self:center}
}

.lb{display:inline}
@media (max-width:600px){.lb{display:none}}

/* wide image band */
.wide-band{margin:clamp(2rem,4vh,3rem) auto 0;max-width:920px;padding:0 24px;overflow:hidden}
.wide-band img{width:100%;height:auto;display:block;border-radius:20px;transition:transform 6s ease}
.wide-band:hover img{transform:scale(1.03)}
@media (max-width:700px){.wide-band img{border-radius:14px}}

/* mobile: no hero zoom (it pushed the page 4px wider than the screen) */
@media (max-width:900px){
  .hero-shot{overflow:hidden}
  .hero-shot-img{animation:none !important;transform:none !important}
}

/* mobile: a little more air on both edges */
@media (max-width:700px){
  .wrap,.wrap-mid,.wrap-narrow,.wide-band{padding-left:28px;padding-right:28px}
  .hero-shot .wrap{padding-left:28px;padding-right:28px}
}
