/* ============================================================
   Salon website — stylesheet
   Warm & elegant. Mobile first.
   Colours live in :root — change them there and the whole
   site follows.
   ============================================================ */

/* Montserrat, self-hosted (SIL Open Font License). Only the Regular face exists
   here, so every rule below uses weight 400 and nothing is italic. */
@font-face{
  font-family:"Montserrat";
  src:url("../fonts/montserrat-regular.woff2") format("woff2");
  font-weight:400; font-style:normal; font-display:swap;
}

:root{
  /* Brand palette */
  --cream:      #FBF6F0;
  --cream-deep: #F4EAE0;
  --surface:    #FFFFFF;
  --ink:        #2B2320;
  --ink-soft:   #6E5D55;
  --muted:      #8C7A70;
  --blush:      #E7C9C2;
  --blush-soft: #F6E7E3;
  --rose:       #B87D73;
  --rose-deep:  #9A6459;
  --gold:       #B08D57;
  --gold-soft:  #E2CFAE;
  --line:       #EADDD2;

  /* Type */
  /* One family for the whole site. Montserrat ships a single weight and no italic,
     so bold and italic must never be asked for - see font-synthesis on html. */
  --display: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body:    "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --gutter: 1.25rem;
  --maxw:   1140px;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(43,35,32,.06), 0 2px 8px rgba(43,35,32,.04);
  --shadow-md: 0 4px 12px rgba(43,35,32,.07), 0 12px 32px rgba(43,35,32,.06);
  --shadow-lg: 0 8px 24px rgba(43,35,32,.10), 0 24px 60px rgba(43,35,32,.08);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; font-synthesis:none; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--body);
  font-size:1rem;
  line-height:1.65;
  font-weight:400;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:var(--rose-deep); text-decoration:none; }
a:hover{ color:var(--ink); }

/* Emphasis comes from colour, not weight or slant - the font has neither. */
/* Buttons and form fields don't inherit the page font by default - without this
   the category tabs, filter buttons and the booking "x" render in Arial. */
button, input, select, textarea{ font-family:inherit; }

strong, b{ font-weight:400; }
em{ font-style:normal; }
.lede strong{ color:var(--ink); }

:focus-visible{ outline:2px solid var(--rose); outline-offset:3px; border-radius:2px; }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:400;
  line-height:1.15;
  letter-spacing:.005em;
  margin:0 0 .5em;
  color:var(--ink);
}
h1{ font-size:clamp(2.1rem, 6vw, 3.8rem); }
h2{ font-size:clamp(1.7rem, 4.6vw, 2.5rem); }
h3{ font-size:clamp(1.15rem, 3vw, 1.45rem); }
p{ margin:0 0 1rem; }

.eyebrow{
  font-family:var(--body);
  font-size:.72rem;
  font-weight:400;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 .9rem;
}

.lede{ font-size:1.075rem; color:var(--ink-soft); max-width:56ch; }

/* ---------- Layout ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(3.5rem, 9vw, 6.5rem); }
.section--tight{ padding-block:clamp(2.5rem, 6vw, 4rem); }
.section--cream{ background:var(--cream-deep); }
.section--blush{ background:var(--blush-soft); }
.section--white{ background:var(--surface); }

.section-head{ max-width:60ch; margin-bottom:clamp(2rem,5vw,3rem); }
.section-head--center{ margin-inline:auto; text-align:center; }

.rule{
  width:56px; height:1px; background:var(--gold);
  margin:1.25rem 0 0; border:0;
}
.section-head--center .rule{ margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  flex-wrap:wrap; max-width:100%;        /* a long label wraps instead of widening the page */
  padding:.95rem 1.9rem;
  font-family:var(--body); font-size:.8rem; font-weight:400;
  letter-spacing:.16em; text-transform:uppercase;
  border:1px solid transparent; border-radius:var(--radius);
  cursor:pointer; text-align:center;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .2s var(--ease);
}
.btn:active{ transform:translateY(1px); }

.btn--primary{ background:var(--ink); color:var(--cream); }
.btn--primary:hover{ background:var(--rose-deep); color:#fff; }

.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--cream); }

.btn--light{ background:var(--cream); color:var(--ink); }
.btn--light:hover{ background:#fff; }

.btn--outline-light{ background:transparent; color:var(--cream); border-color:rgba(251,246,240,.5); }
.btn--outline-light:hover{ background:var(--cream); color:var(--ink); border-color:var(--cream); }

.btn--wa{ background:#25D366; color:#08331a; border-color:#25D366; }
.btn--wa:hover{ background:#1EB955; color:#06280f; }

.btn--block{ width:100%; }
.btn--sm{ padding:.7rem 1.3rem; font-size:.7rem; }

/* ---------- Header ---------- */
.header{
  position:sticky; top:0; z-index:60;
  /* Opaque on purpose. A translucent background with backdrop-filter promotes this
     to its own composited layer, and text on such a layer loses subpixel (ClearType)
     antialiasing - which made the wordmark look stepped and ragged on Windows. */
  background:var(--cream);
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck{ border-bottom-color:var(--line); box-shadow:var(--shadow-sm); }

.header__bar{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; min-height:72px;
}

/* Header logo, built from the round sign's own lettering: "Blossom Studio and Salon by
   Nimmie Kaur" (images/weblogo.*). It is wide (~4.9:1), so the height steps down on small
   phones to stay clear of the menu button. */
.brand{
  display:flex; align-items:center; line-height:1; text-decoration:none;
  --logo-h:44px;
}
@media (min-width:361px){  .brand{ --logo-h:54px; } }
@media (min-width:600px){  .brand{ --logo-h:60px; } }
@media (min-width:1000px){ .brand{ --logo-h:66px; } }

/* The logo is vector, so it stays perfectly crisp at any size and on any screen. */
.brand__logo{
  display:block; height:var(--logo-h); width:auto; max-width:100%;
}
.brand__logo--footer{ height:auto; width:min(100%, 300px); margin-bottom:.4rem; }
/* WebP with a PNG fallback; keep <picture> from adding inline gaps */
.brand picture, .footer__brand picture{ display:block; }
.brand__name{
  font-family:var(--display);
  font-weight:400;                 /* the only weight Montserrat ships here */
  font-size:1.4rem; line-height:1.15;
  color:var(--ink); letter-spacing:.005em;
}
.brand__tag{
  font-size:.58rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-top:.4rem;
}

.nav{ display:none; }
.nav__list{ display:flex; align-items:center; gap:1.6rem; list-style:none; margin:0; padding:0; }
.nav__link{
  position:relative; color:var(--ink); font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; padding-block:.4rem;
}
.nav__link::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after{ transform:scaleX(1); }
.nav__link[aria-current="page"]{ color:var(--rose-deep); }

.header__cta{ display:none; }

.burger{
  display:inline-flex; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; padding:0 10px; margin-right:-10px;
  background:none; border:0; cursor:pointer;
}
.burger span{
  display:block; height:1.5px; background:var(--ink); border-radius:2px;
  transition:transform .35s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobilenav{
  position:fixed; inset:72px 0 0; z-index:55;
  background:var(--cream);
  padding:2rem var(--gutter) 2.5rem;
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y:auto;
}
.mobilenav.is-open{ opacity:1; transform:none; pointer-events:auto; }
.mobilenav__list{ list-style:none; margin:0 0 2rem; padding:0; }
.mobilenav__list li{ border-bottom:1px solid var(--line); }
.mobilenav__list a{
  display:block; padding:1.05rem 0;
  font-family:var(--display); font-weight:400; font-size:1.6rem; color:var(--ink);
}
.mobilenav__list a[aria-current="page"]{ color:var(--rose-deep); }
.mobilenav__actions{ display:grid; gap:.7rem; }
body.nav-open{ overflow:hidden; }

@media (min-width:1000px){
  .nav{ display:block; }
  .header__cta{ display:inline-flex; }
  .burger{ display:none; }
  .mobilenav{ display:none; }
  .header__bar{ min-height:88px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:linear-gradient(160deg, var(--blush-soft) 0%, var(--cream) 55%, var(--cream-deep) 100%);
}
.hero::before{
  content:""; position:absolute; top:-20%; right:-15%;
  width:60vw; height:60vw; max-width:620px; max-height:620px;
  background:radial-gradient(circle, rgba(231,201,194,.55), rgba(231,201,194,0) 70%);
  border-radius:50%; pointer-events:none;
}
.hero__inner{
  position:relative; z-index:1;
  padding-block:clamp(3.5rem, 11vw, 7rem);
  display:grid; gap:clamp(2.5rem,6vw,4rem);
}
/* Headline sized to its own column, not the screen: 1cqi = 1% of the column width.
   In Montserrat "Let your style" (the longer line) measures 6.69em, so it just fits at
   14.95cqi. 14cqi leaves a small margin, so each line always stays whole. */
.hero__inner > :first-child{ container-type:inline-size; }
.hero h1{
  margin-bottom:.35em;
  font-size:clamp(2.4rem, 6vw, 4rem);       /* fallback for browsers without cqi */
  font-size:clamp(1.8rem, 14cqi, 4.5rem);
}
.hero h1 em{ font-style:normal; color:var(--rose-deep); white-space:nowrap; }  /* colour carries the emphasis */
.hero__actions{ display:flex; flex-wrap:wrap; gap:.75rem; margin-top:2rem; }
.hero__meta{
  display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; margin-top:2rem;
  font-size:.82rem; color:var(--muted);
}
.hero__meta span{ display:inline-flex; align-items:center; gap:.45rem; }

.hero__media{ position:relative; }
.hero__img{
  width:100%; aspect-ratio:4/5; object-fit:cover;
  border-radius:200px 200px var(--radius-lg) var(--radius-lg);
  box-shadow:var(--shadow-lg);
}
/* The hero is the salon's round sign (images/hero-logo.*), already cut to a circle
   with a transparent outside - so show all of it: no crop, no arch, round shadow. */
.hero__media picture{ display:block; }
.hero__img--logo{
  aspect-ratio:1; object-fit:contain; border-radius:50%;
  max-width:520px; margin-inline:auto;
}
/* No hours card over the sign: there is no free corner big enough on phones, and the
   same hours already show in the hero text ("Open now until 20:00") and just below. */
.hero__media:has(.hero__img--logo) .hero__badge{ display:none; }
.hero__badge{
  position:absolute; bottom:1.25rem; left:-.5rem;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:.85rem 1.1rem;
  box-shadow:var(--shadow-md); text-align:left;
}
.hero__badge strong{ display:block; font-family:var(--display); font-weight:400; font-size:1.5rem; line-height:1; }
.hero__badge span{ font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }

@media (min-width:860px){
  .hero__inner{ grid-template-columns:1.05fr .95fr; align-items:center; }
  .hero__badge{ left:-2rem; }
}

/* ---------- Placeholder image blocks ---------- */
.ph{
  display:flex; align-items:center; justify-content:center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,0)),
    linear-gradient(160deg, var(--blush) 0%, var(--gold-soft) 100%);
  color:var(--ink); text-align:center;
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  padding:1rem;
}

/* ---------- Feature strip ---------- */
.features{ display:grid; gap:1.5rem; }
.feature{ text-align:left; }
.feature__icon{
  width:42px; height:42px; margin-bottom:1rem;
  display:grid; place-items:center;
  border:1px solid var(--gold-soft); border-radius:50%;
  color:var(--gold);
}
.feature h3{ font-size:1.2rem; margin-bottom:.35rem; }
.feature p{ font-size:.92rem; color:var(--ink-soft); margin:0; }
@media (min-width:700px){ .features{ grid-template-columns:repeat(4,1fr); gap:2rem; } }

/* ---------- Service category cards (home) ---------- */
.cat-grid{ display:grid; gap:1.25rem; }
@media (min-width:640px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .cat-grid{ grid-template-columns:repeat(4,1fr); } }

.cat{
  position:relative; display:flex; flex-direction:column;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.cat:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--blush); }
.cat__img{ aspect-ratio:4/3; width:100%; object-fit:cover; }
.cat__body{ padding:1.35rem 1.35rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.cat__body h3{ margin-bottom:.4rem; }
.cat__body p{ font-size:.9rem; color:var(--ink-soft); flex:1; }
.cat__from{
  font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-top:.75rem;
}

/* ---------- Services page ---------- */
.svc-tabs{
  display:flex; gap:.5rem; overflow-x:auto; padding-bottom:.5rem;
  margin-bottom:2.5rem; scrollbar-width:none;
}
.svc-tabs::-webkit-scrollbar{ display:none; }
.svc-tab{
  flex:0 0 auto; padding:.6rem 1.2rem;
  font-size:.75rem; letter-spacing:.14em; text-transform:uppercase;
  background:transparent; color:var(--ink-soft);
  border:1px solid var(--line); border-radius:100px; cursor:pointer;
  transition:all .3s var(--ease);
}
.svc-tab:hover{ border-color:var(--rose); color:var(--ink); }
.svc-tab.is-active{ background:var(--ink); border-color:var(--ink); color:var(--cream); }

.svc-group{ margin-bottom:clamp(2.5rem,6vw,4rem); scroll-margin-top:100px; }
.svc-group__head{ margin-bottom:1.5rem; }
.svc-group__head h2{ margin-bottom:.25rem; }
.svc-group__head p{ color:var(--ink-soft); font-size:.95rem; margin:0; }

.svc-list{ border-top:1px solid var(--line); }
.svc-row{
  display:grid; grid-template-columns:1fr auto; gap:.4rem 1rem;
  align-items:start; padding:1.15rem 0;
  border-bottom:1px solid var(--line);
}
.svc-row__name{
  font-family:var(--display); font-weight:400; font-size:1.2rem; line-height:1.25;
  display:flex; align-items:center; flex-wrap:wrap; gap:.5rem;
}
.svc-row__desc{ grid-column:1/-1; font-size:.88rem; color:var(--muted); margin:0; max-width:62ch; }
.svc-row__meta{ display:flex; align-items:baseline; gap:1rem; white-space:nowrap; }
.svc-row__dur{ font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.svc-row__price{ font-family:var(--display); font-weight:400; font-size:1.35rem; color:var(--rose-deep); }
.svc-row__book{
  grid-column:1/-1; justify-self:start; margin-top:.35rem;
}
@media (min-width:700px){
  .svc-row{ grid-template-columns:1fr auto auto; align-items:center; }
  .svc-row__desc{ grid-column:1; grid-row:2; margin-top:-.15rem; }
  .svc-row__meta{ grid-row:1; }
  .svc-row__book{ grid-column:3; grid-row:1/3; justify-self:end; margin-top:0; }
}

.badge{
  display:inline-block; padding:.18rem .5rem;
  font-family:var(--body); font-size:.6rem; font-weight:400;
  letter-spacing:.14em; text-transform:uppercase;
  background:var(--blush-soft); color:var(--rose-deep);
  border-radius:100px; vertical-align:middle;
}

/* Sub-headings inside a category, e.g. "Hair Colour" within Hair */
.svc-sub{
  font-family:var(--body); font-size:.72rem; font-weight:400;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
  margin:2.25rem 0 0; padding:0 0 .7rem; border-bottom:1px solid var(--line);
}
.svc-list > .svc-sub:first-child{ margin-top:.25rem; }
.svc-list:has(> .svc-sub:first-child){ border-top:0; }
.svc-group__note{ font-size:.86rem; color:var(--rose-deep); margin:.5rem 0 0; }

/* ---------- Specials ---------- */
.spec-filters{ display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2.5rem; }

.spec-grid{ display:grid; gap:1.25rem; }
@media (min-width:680px){ .spec-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .spec-grid{ grid-template-columns:repeat(3,1fr); } }

.spec{
  position:relative; display:flex; flex-direction:column;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:1.6rem 1.4rem 1.5rem;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.spec:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--blush); }
.spec--feature{
  background:linear-gradient(165deg, var(--ink) 0%, #3b302b 100%);
  border-color:transparent; color:var(--cream);
}
.spec--feature h3, .spec--feature .spec__price{ color:var(--cream); }
.spec--feature .spec__desc{ color:rgba(251,246,240,.78); }
.spec--feature .spec__terms{ color:rgba(251,246,240,.55); border-top-color:rgba(251,246,240,.18); }
.spec--feature .spec__badge{ background:var(--gold); color:var(--ink); }
.spec--feature .spec__was{ color:rgba(251,246,240,.5); }

.spec__badge{
  align-self:flex-start; margin-bottom:1rem;
  padding:.28rem .7rem; border-radius:100px;
  background:var(--blush-soft); color:var(--rose-deep);
  font-size:.62rem; letter-spacing:.16em; text-transform:uppercase;
}
.spec h3{ font-size:1.5rem; margin-bottom:.6rem; }
.spec__price{
  font-family:var(--display); font-weight:400; font-size:2.1rem; line-height:1;
  color:var(--rose-deep); margin-bottom:.75rem;
  display:flex; align-items:baseline; gap:.6rem;
}
.spec__was{
  font-family:var(--body); font-size:.95rem; color:var(--muted);
  text-decoration:line-through;
}
.spec__desc{ font-size:.93rem; color:var(--ink-soft); flex:1; margin-bottom:1.1rem; }
.spec__valid{
  font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1rem;
}
.spec__body{ flex:1; }
.spec__list{
  list-style:none; margin:0 0 1.1rem; padding:0;
  display:grid; gap:.35rem; font-size:.9rem; color:var(--ink-soft);
}
.spec__list li{ position:relative; padding-left:1rem; }
.spec__list li::before{
  content:""; position:absolute; left:0; top:.6em;
  width:5px; height:5px; border-radius:50%; background:var(--rose);
}
.spec__meta{ display:grid; gap:.25rem; font-size:.82rem; color:var(--muted); margin:0 0 1.2rem; }
.spec__meta b{
  font-weight:400; font-size:.64rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-right:.5rem;
}
.spec--feature .spec__list{ color:rgba(251,246,240,.82); }
.spec--feature .spec__list li::before{ background:var(--gold); }
.spec--feature .spec__meta{ color:rgba(251,246,240,.62); }
.spec--feature .spec__meta b{ color:var(--gold-soft); }

.spec__terms{
  font-size:.75rem; line-height:1.55; color:var(--muted);
  border-top:1px solid var(--line); padding-top:.85rem; margin-top:1rem;
}

/* ---------- Gallery ---------- */
.gal-grid{ display:grid; gap:.75rem; grid-template-columns:repeat(2,1fr); }
@media (min-width:760px){ .gal-grid{ grid-template-columns:repeat(3,1fr); gap:1rem; } }
.gal-item{
  position:relative; overflow:hidden; border-radius:var(--radius-lg);
  aspect-ratio:1; background:var(--cream-deep); border:0; padding:0; cursor:pointer;
}
.gal-item img, .gal-item .ph{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.gal-item:hover img, .gal-item:hover .ph{ transform:scale(1.06); }
.gal-item__tag{
  position:absolute; left:.6rem; bottom:.6rem;
  background:rgba(251,246,240,.92); color:var(--ink);
  padding:.25rem .6rem; border-radius:100px;
  font-size:.6rem; letter-spacing:.14em; text-transform:uppercase;
}

/* ---------- Reviews ---------- */
.rev-grid{ display:grid; gap:1.25rem; }
@media (min-width:700px){ .rev-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1040px){ .rev-grid{ grid-template-columns:repeat(3,1fr); } }
.rev{
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:1.6rem 1.4rem;
  display:flex; flex-direction:column;
}
.rev__stars{ color:var(--gold); letter-spacing:.15em; font-size:.9rem; margin-bottom:.9rem; }
.rev__text{
  font-family:var(--display); font-weight:400; font-size:1.15rem; line-height:1.5;
  color:var(--ink); flex:1; margin:0 0 1.1rem;
}
.rev__who{ font-size:.8rem; color:var(--muted); }
.rev__who strong{ color:var(--ink); font-weight:400; }

/* ---------- Instagram ---------- */
.ig-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem; }
@media (min-width:640px){ .ig-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:960px){ .ig-grid{ grid-template-columns:repeat(6,1fr); gap:.75rem; } }
.ig-tile{
  position:relative; aspect-ratio:1; overflow:hidden;
  border-radius:var(--radius); display:block;
}
.ig-tile img, .ig-tile .ph{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.ig-tile:hover img, .ig-tile:hover .ph{ transform:scale(1.07); }

/* ---------- Booking form ---------- */
.book-grid{ display:grid; gap:2.5rem; }
/* Grid columns otherwise grow to fit their longest unbreakable word (the email
   address did this on the contact page), pushing the whole page off-screen. */
.book-grid > *{ min-width:0; }
/* Email addresses break before the @ (see main.js), or anywhere as a last resort. */
[data-site-email]{ overflow-wrap:anywhere; }
@media (min-width:940px){ .book-grid{ grid-template-columns:1.35fr .65fr; gap:3.5rem; align-items:start; } }

.form{
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:clamp(1.4rem,4vw,2.4rem);
  box-shadow:var(--shadow-sm);
}
.form__step{
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin:0 0 .35rem;
}
.form fieldset{ border:0; padding:0; margin:0 0 2rem; }
.form fieldset:last-of-type{ margin-bottom:1.5rem; }
.form legend{
  font-family:var(--display); font-weight:400; font-size:1.35rem; padding:0; margin-bottom:1rem;
}

.field{ margin-bottom:1.1rem; }
.field label{
  display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-soft); margin-bottom:.45rem;
}
.field .req{ color:var(--rose); }
.field input, .field select, .field textarea{
  width:100%; padding:.85rem .95rem;
  font-family:var(--body); font-size:1rem; font-weight:400; color:var(--ink);
  background:var(--cream); border:1px solid var(--line);
  border-radius:var(--radius); appearance:none;
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238C7A70' stroke-width='1.4' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center;
  padding-right:2.5rem;
}
.field textarea{ min-height:110px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--rose); background:var(--surface);
}
.field input:invalid:not(:placeholder-shown){ border-color:#C56B5F; }
.field__hint{ font-size:.78rem; color:var(--muted); margin:.4rem 0 0; text-transform:none; letter-spacing:0; }

.field-row{ display:grid; gap:1.1rem; }
@media (min-width:560px){ .field-row{ grid-template-columns:1fr 1fr; } }

.chips{ display:flex; flex-wrap:wrap; gap:.5rem; }
.chip{ position:relative; }
.chip input{ position:absolute; opacity:0; width:0; height:0; }
.chip span{
  display:inline-block; padding:.6rem 1.1rem;
  font-size:.78rem; letter-spacing:.1em;
  border:1px solid var(--line); border-radius:100px;
  background:var(--cream); color:var(--ink-soft);
  cursor:pointer; transition:all .25s var(--ease);
}
.chip input:checked + span{ background:var(--ink); border-color:var(--ink); color:var(--cream); }
.chip input:focus-visible + span{ outline:2px solid var(--rose); outline-offset:2px; }

.picked{
  background:var(--blush-soft); border:1px solid var(--blush);
  border-radius:var(--radius); padding:1rem 1.1rem; margin-bottom:1.1rem;
}
.picked h4{
  font-family:var(--body); font-size:.7rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--rose-deep); margin:0 0 .6rem;
}
.picked ul{ list-style:none; margin:0; padding:0; display:grid; gap:.4rem; }
.picked li{ display:flex; justify-content:space-between; gap:1rem; font-size:.92rem; }
.picked li button{
  background:none; border:0; color:var(--rose-deep); cursor:pointer;
  font-size:1.1rem; line-height:1; padding:0 .2rem;
}
.picked__total{
  display:flex; justify-content:space-between;
  border-top:1px solid var(--blush); margin-top:.7rem; padding-top:.7rem;
  font-size:.95rem;
}
.picked__total strong{ font-family:var(--display); font-size:1.25rem; font-weight:400; }
.picked__empty{ font-size:.9rem; color:var(--muted); margin:0; }

.form__actions{ display:grid; gap:.7rem; }
@media (min-width:560px){ .form__actions{ grid-template-columns:1fr 1fr; } }
.form__note{ font-size:.8rem; color:var(--muted); margin:1rem 0 0; }

.form-status{
  margin-top:1.1rem; padding:.9rem 1.1rem; border-radius:var(--radius);
  font-size:.9rem; display:none;
}
.offer-note{
  margin:0 0 1.5rem; padding:.9rem 1.1rem; border-radius:var(--radius); font-size:.9rem;
  background:var(--blush-soft); color:var(--rose-deep); border:1px solid var(--blush);
}
.offer-note[hidden]{ display:none; }
.form-status.is-ok{ display:block; background:#EAF5EC; color:#2C5F3A; border:1px solid #C4E3CC; }
.form-status.is-err{ display:block; background:#FBEDEA; color:#8E3B2C; border:1px solid #F0CDC5; }

/* Booking sidebar */
.aside-card{
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:1.5rem 1.4rem; margin-bottom:1.25rem;
}
.aside-card h3{ font-size:1.25rem; margin-bottom:.9rem; }
.aside-card p{ font-size:.9rem; color:var(--ink-soft); }
.aside-card p:last-child{ margin-bottom:0; }

.hours{ list-style:none; margin:0; padding:0; font-size:.9rem; }
.hours li{
  display:flex; justify-content:space-between; gap:1rem;
  padding:.5rem 0; border-bottom:1px solid var(--line);
}
.hours li:last-child{ border-bottom:0; }
.hours .is-today{ color:var(--rose-deep); font-weight:400; }
.hours .is-today::after{ content:" · today"; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); }
.hours .is-closed{ color:var(--muted); }

.contact-list{ list-style:none; margin:0; padding:0; display:grid; gap:1rem; }
.contact-list li{ display:flex; gap:.85rem; align-items:flex-start; font-size:.93rem; }
.contact-list svg{ flex:0 0 18px; margin-top:.25rem; color:var(--gold); }
.contact-list a{ color:var(--ink); }
.contact-list a:hover{ color:var(--rose-deep); }

/* ---------- Map ---------- */
.map{
  width:100%; aspect-ratio:16/10; border:1px solid var(--line);
  border-radius:var(--radius-lg); overflow:hidden; background:var(--cream-deep);
}
.map iframe{ width:100%; height:100%; border:0; display:block; }

/* ---------- CTA band ---------- */
.cta{
  background:linear-gradient(150deg, var(--ink) 0%, #3b302b 100%);
  color:var(--cream); text-align:center;
}
.cta h2{ color:var(--cream); }
.cta p{ color:rgba(251,246,240,.75); max-width:52ch; margin-inline:auto; }
.cta__actions{ display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; margin-top:2rem; }

/* ---------- Footer ---------- */
.footer{ background:var(--cream-deep); border-top:1px solid var(--line); }
.footer__grid{
  display:grid; gap:2.25rem;
  padding-block:clamp(2.5rem,6vw,4rem);
}
@media (min-width:760px){ .footer__grid{ grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:2.5rem; } }
.footer h4{
  font-family:var(--body); font-size:.7rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1rem;
}
.footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:.55rem; }
.footer a{ color:var(--ink-soft); font-size:.9rem; }
.footer a:hover{ color:var(--ink); }
.footer__brand .brand__name{ font-size:1.6rem; }
.footer__blurb{ font-size:.9rem; color:var(--ink-soft); margin-top:1rem; max-width:34ch; }

.social{ display:flex; gap:.6rem; margin-top:1.2rem; }
.social a{
  width:38px; height:38px; display:grid; place-items:center;
  border:1px solid var(--line); border-radius:50%; color:var(--ink);
  transition:all .3s var(--ease);
}
.social a:hover{ background:var(--ink); border-color:var(--ink); color:var(--cream); }

.footer__bottom{
  border-top:1px solid var(--line); padding-block:1.4rem;
  display:flex; flex-wrap:wrap; gap:.5rem 1.5rem;
  justify-content:space-between; font-size:.78rem; color:var(--muted);
}

/* ---------- Sticky mobile call/book bar ---------- */
.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:50;
  display:grid; grid-template-columns:1fr 1fr;
  background:var(--surface); border-top:1px solid var(--line);
  box-shadow:0 -4px 20px rgba(43,35,32,.08);
  padding:.55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
  gap:.5rem;
}
@media (min-width:1000px){ .mobile-bar{ display:none; } }
@media (max-width:999px){ body{ padding-bottom:74px; } }

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

/* ---------- Page header (inner pages) ---------- */
.pagehead{
  background:linear-gradient(160deg, var(--blush-soft), var(--cream));
  padding-block:clamp(2.5rem,7vw,4.5rem);
  border-bottom:1px solid var(--line);
}
.pagehead h1{ font-size:clamp(1.95rem,5.2vw,3.1rem); margin-bottom:.3em; }
.pagehead .lede{ margin:0; }

/* ---------- Utilities ---------- */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:-9999px; top:0; z-index:100;
  background:var(--ink); color:var(--cream); padding:.8rem 1.2rem;
}
.skip:focus{ left:.5rem; top:.5rem; }
.center{ text-align:center; }
.mt-2{ margin-top:2rem; }
