/* ============================================================
   Afsaneh Farahmand — Hair Colour & Mesh Artistry, Marbella
   Hand-crafted luxury design system. No build step required.
   ------------------------------------------------------------
   Palette grounded in real hair-colour tones:
   porcelain · warm ink · antique gold · honey · copper · ash · platinum
   Type: Fraunces (display) + Jost (sans/utility)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --porcelain:  #f7f2ec;   /* page background */
  --porcelain-2:#efe7dc;   /* alt section */
  --ink:        #211c18;   /* warm near-black text */
  --ink-soft:   #4a423b;   /* secondary text */
  --gold:       #b8924f;   /* antique gold accent */
  --gold-bright:#d8b46a;   /* highlight gold */
  --honey:      #c9a24b;
  --copper:     #a65d3a;
  --espresso:   #3a2c24;
  --platinum:   #e8dccb;
  --line:       rgba(33,28,24,0.14);
  --line-soft:  rgba(33,28,24,0.08);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Scale / rhythm */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  /* Deliberately NOT scroll-behavior: smooth — GSAP's own docs warn that
     it fights with ScrollTrigger's per-frame scroll-position sampling.
     Confirmed by reproduction: a scrub-based tween (the hero fade) would
     get visibly left behind at an intermediate value after a few fast
     scroll-direction reversals, because the browser's own smooth-scroll
     interpolation and ScrollTrigger's tracking were racing each other.
     See PROJECT_LOG.md §7. */
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
.display {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 1.5rem + 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; font-weight: 400; color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 4rem);
  line-height: 1.02;
}
.section-title em { font-style: italic; color: var(--gold); }

/* Eyebrow label — a recurring structural device */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 2rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lede { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); color: var(--ink-soft); line-height: 1.5; font-weight: 300; }
.muted { color: var(--ink-soft); }
.muted b { color: var(--ink); font-weight: 600; }

/* ---------- Signature motif: tone swatch ribbon ---------- */
.tone-ribbon { display: inline-flex; gap: 5px; }
.tone-ribbon span { width: 9px; height: 38px; border-radius: 1px; }
.tone-ribbon .t1 { background: var(--platinum); }
.tone-ribbon .t2 { background: var(--honey); }
.tone-ribbon .t3 { background: var(--copper); }
.tone-ribbon .t4 { background: var(--espresso); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--porcelain-2); }
.section--ink { background: var(--espresso); color: var(--porcelain); }
.section--ink .muted { color: rgba(247,242,236,0.7); }
.section--ink .eyebrow { color: var(--gold-bright); }
.section--ink .eyebrow::before, .section--ink .eyebrow.center::after { background: var(--gold-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--porcelain); }
.btn--solid:hover { background: var(--gold); color: var(--ink); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(184,146,79,0.7); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { border: 1px solid currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--porcelain); border-color: var(--ink); }
.btn--wa { background: #1f7a52; color: #fff; }
.btn--wa:hover { background: #25996a; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.5s var(--ease);
  color: var(--porcelain);
}
.site-header.scrolled {
  background: rgba(247,242,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: var(--display); font-weight: 400; font-size: 1.65rem; letter-spacing: 0.01em; }
.brand small { font-family: var(--sans); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.75; margin-top: 0.5rem; display: block; }

/* Static variant — for pages without a dark hero behind the header (e.g. the blog) */
.site-header--static {
  background: rgba(247,242,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--line-soft);
  position: sticky;
}
.site-header--static .nav .btn--wa { color: #fff; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
  position: relative; padding-block: 0.3rem;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width 0.4s var(--ease); }
.nav a:hover::after { width: 100%; }
.nav .btn { color: inherit; }
.site-header .nav .btn--wa { color: #fff; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { position: absolute; transform: translateY(-7px); }
.nav-toggle span::after { position: absolute; transform: translateY(7px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); }
.nav-toggle.open span::after { transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--porcelain); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Two scrims: a left-to-right panel behind the text block, plus a
     top-to-bottom pass so the headline reads clearly over busy, light photos. */
  background:
    linear-gradient(100deg, rgba(15,11,9,0.82) 0%, rgba(15,11,9,0.6) 32%, rgba(15,11,9,0.18) 58%, rgba(15,11,9,0.05) 78%),
    linear-gradient(180deg, rgba(15,11,9,0.35) 0%, rgba(15,11,9,0.1) 30%, rgba(15,11,9,0.35) 60%, rgba(15,11,9,0.85) 100%);
}

/* Floating light orbs — a clearly visible parallax layer, independent of the hero photo */
.hero__orbs { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.orb--gold { width: 420px; height: 420px; top: 8%; right: 6%; background: radial-gradient(circle, var(--gold-bright) 0%, transparent 70%); }
.orb--copper { width: 340px; height: 340px; bottom: 4%; left: 4%; background: radial-gradient(circle, var(--copper) 0%, transparent 72%); opacity: 0.4; }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: var(--gutter); padding-bottom: clamp(3rem, 8vh, 6rem); }
.hero__eyebrow { margin-bottom: 1.6rem; text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.hero .display { max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.7); }
.hero__sub { margin-top: 1.6rem; max-width: 46ch; color: rgba(247,242,236,0.92); font-weight: 300; font-size: clamp(1.05rem,1rem+0.5vw,1.3rem); text-shadow: 0 2px 14px rgba(0,0,0,0.6); }
.hero__sub b { font-weight: 600; color: var(--gold-bright); }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
/* Instant visual proof — a compact before/after pair right under the CTA,
   so the transformation is legible within the first few seconds. */
.hero__proof {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  background: rgba(20,15,12,0.42);
  border: 1px solid rgba(247,242,236,0.22);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  max-width: max-content;
}
.hero__proof:hover { transform: translateY(-2px); border-color: rgba(216,180,106,0.6); background: rgba(20,15,12,0.6); }
.hero__proof-images { display: flex; border-radius: 4px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.35); flex-shrink: 0; }
.hero__proof-images img { width: 46px; height: 58px; object-fit: cover; display: block; }
.hero__proof-text { display: grid; gap: 0.25rem; }
.hero__proof-text b { font-family: var(--sans); font-weight: 500; font-size: 0.86rem; letter-spacing: 0.02em; color: var(--gold-bright); }
.hero__proof-text span { font-size: 0.74rem; color: rgba(247,242,236,0.75); letter-spacing: 0.01em; }
.scroll-hint { position: absolute; right: var(--gutter); bottom: clamp(3rem,8vh,6rem); z-index: 2; writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; }
.scroll-hint::after { content: ""; display: block; width: 1px; height: 48px; background: currentColor; margin: 0.8rem auto 0; transform-origin: top; animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);} 40%{transform:scaleY(1);} 100%{transform:scaleY(0); transform-origin: bottom;} }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; aspect-ratio: 4/5; max-height: 80vh; width: 100%;
  overflow: hidden; border-radius: var(--radius); user-select: none; touch-action: pan-y;
  background: var(--espresso); box-shadow: 0 40px 80px -40px rgba(33,28,24,0.5);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__label { position: absolute; top: 1rem; z-index: 3; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.35rem 0.8rem; background: rgba(33,28,24,0.6); color: #fff; border-radius: 2px; backdrop-filter: blur(4px); }
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold-bright); z-index: 4; transform: translateX(-50%); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--porcelain); color: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.3); cursor: ew-resize; }
.ba__grip svg { width: 22px; height: 22px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }

/* ---------- Services ---------- */
.services-head { display: grid; gap: 1.4rem; max-width: 60ch; margin-bottom: clamp(2.5rem,6vw,4rem); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service {
  background: var(--porcelain); padding: clamp(1.8rem,4vw,3rem);
  display: flex; flex-direction: column; gap: 0.9rem; min-height: 100%;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  position: relative;
}
.section--alt .service { background: var(--porcelain-2); }
.service__no { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--gold); }
.service h3 { font-size: clamp(1.5rem,1.1rem+1.4vw,2.1rem); }
.service p { color: var(--ink-soft); font-weight: 300; }
.service__tags { margin-top: auto; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service__tags span { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); padding: 0.3rem 0.7rem; border-radius: 100px; }
.service:hover { background: var(--espresso); color: var(--porcelain); }
.service:hover p, .service:hover .service__tags span { color: rgba(247,242,236,0.78); }
.service:hover .service__tags span { border-color: rgba(247,242,236,0.25); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.6rem,1.5vw,1.1rem); }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 9/11; background: var(--espresso); cursor: pointer; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile figcaption { position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.1rem 1rem; color: #fff; background: linear-gradient(0deg, rgba(20,15,12,0.78), transparent); font-size: 0.82rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.tile:hover figcaption, .tile:focus-visible figcaption { opacity: 1; transform: none; }
.tile figcaption b { font-family: var(--display); font-style: italic; font-weight: 400; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); width: 100%; box-shadow: 0 40px 80px -40px rgba(33,28,24,0.55); }
.about__media .tone-ribbon { position: absolute; left: -16px; bottom: 40px; flex-direction: column; background: var(--porcelain); padding: 10px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4); }
.about__media .tone-ribbon span { width: 38px; height: 14px; }
.about__body { display: grid; gap: 1.4rem; }
.about__body h2 { margin-block: 0.4rem 0.2rem; }
.signature { font-family: var(--display); font-style: italic; font-size: 1.8rem; color: var(--gold); }
.about__stats { display: flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 0.8rem; flex-wrap: wrap; }
.about__stats b { font-family: var(--display); font-size: 2.4rem; display: block; line-height: 1; }
.about__stats span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- About: colour notes (condensed advice, folded into About) ---------- */
.about__notes { margin-top: 0.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: grid; gap: 0.9rem; }
.notes-list { display: grid; gap: 0.65rem; list-style: none; }
.notes-list li { color: var(--ink-soft); font-weight: 300; font-size: 0.94rem; line-height: 1.5; padding-left: 1.1rem; position: relative; }
.notes-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.notes-list b { color: var(--ink); font-weight: 500; }

/* ---------- Visit steps (compact strip, folded into Contact) ---------- */
.visit-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,3vw,2rem); padding-bottom: clamp(2rem,5vw,3rem); border-bottom: 1px solid var(--line); margin-bottom: clamp(2.5rem,6vw,4rem); }
.visit-steps > div { display: flex; align-items: baseline; gap: 0.7rem; }
.visit-steps b { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--gold); line-height: 1; flex-shrink: 0; }
.visit-steps span { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.4rem); margin-top: clamp(2.5rem,6vw,4rem); }
.quote { display: grid; gap: 1.2rem; padding: clamp(1.6rem,3vw,2.2rem); border: 1px solid var(--line); border-radius: var(--radius); }
.quote p { font-family: var(--display); font-size: 1.25rem; line-height: 1.45; font-weight: 300; }
.quote .stars { color: #ffc107; letter-spacing: 0.2em; font-size: 0.9rem; }
.quote footer { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.contact__info { display: grid; gap: 1.8rem; align-content: start; }
.info-row { display: grid; gap: 0.3rem; }
.info-row b { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.info-row a, .info-row span { font-size: 1.05rem; }
.map { margin-top: 0.5rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

.form { display: grid; gap: 1.1rem; background: var(--porcelain-2); padding: clamp(1.6rem,4vw,2.6rem); border-radius: var(--radius); border: 1px solid var(--line); }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-weight: 300; padding: 0.85rem 1rem; border: 1px solid var(--line);
  background: var(--porcelain); border-radius: var(--radius); color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,79,0.16); }
.field textarea { resize: vertical; min-height: 110px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__note { font-size: 0.8rem; color: var(--ink-soft); }
.form__success { display: none; padding: 1rem; background: rgba(31,122,82,0.12); border: 1px solid rgba(31,122,82,0.4); border-radius: var(--radius); color: #1f7a52; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: var(--porcelain); padding-block: clamp(3rem,7vw,5rem) 2rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-end; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,242,236,0.16); }
.footer-brand b { font-family: var(--display); font-size: 2rem; }
.footer-brand p { color: rgba(247,242,236,0.65); max-width: 32ch; margin-top: 0.6rem; font-weight: 300; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,242,236,0.8); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.8rem; font-size: 0.78rem; color: rgba(247,242,236,0.55); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: clamp(1rem,3vw,1.8rem); bottom: clamp(1rem,3vw,1.8rem); z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25996a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(31,122,82,0.7); transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25996a; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0%{transform:scale(1); opacity:0.7;} 100%{transform:scale(1.6); opacity:0;} }

/* ---------- Sticky "Book Now" bar (mobile only) ---------- */
.book-bar { display: none; }
@media (max-width: 760px) {
  .wa-float { display: none; } /* the bar below replaces it on mobile */

  .book-bar {
    display: flex; align-items: center; gap: 0.8rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    padding: 0.7rem clamp(1rem,4vw,1.4rem);
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(33,28,24,0.97), rgba(20,16,13,0.99));
    border-top: 1px solid rgba(216,180,106,0.25);
    box-shadow: 0 -12px 30px -14px rgba(0,0,0,0.5);
  }
  .book-bar__text { flex: 1; min-width: 0; line-height: 1.15; }
  .book-bar__text b { display: block; font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--porcelain); }
  .book-bar__text span { display: block; font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(247,242,236,0.6); margin-top: 0.15rem; }
  .book-bar__btn {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.2rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: var(--ink); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
    box-shadow: 0 8px 20px -8px rgba(216,180,106,0.7);
    transition: transform 0.3s var(--ease);
  }
  .book-bar__btn:active { transform: scale(0.96); }
  .book-bar__btn svg { width: 18px; height: 18px; }

  /* keep the last section clear of the fixed bar */
  .site-footer { padding-bottom: calc(1.5rem + 64px + env(safe-area-inset-bottom)); }
}

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,15,12,0.92); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; color: #fff; font-size: 2rem; width: 48px; height: 48px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.4rem; width: 56px; height: 56px; opacity: 0.8; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav.prev { left: 1rem; }
.lightbox__nav.next { right: 1rem; }

/* ---------- Scroll reveal (only hidden when JS is available) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; background: var(--porcelain); color: var(--ink); padding: 2rem var(--gutter); transform: translateX(100%); transition: transform 0.5s var(--ease); box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4); }
  .nav.open { transform: none; }
  .nav a { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 65; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .quotes { grid-template-columns: 1fr; }
  .visit-steps { grid-template-columns: 1fr; gap: 0.9rem; }
  .form__row { grid-template-columns: 1fr; }
  .hero__proof { gap: 0.75rem; padding: 0.6rem 0.9rem 0.6rem 0.6rem; }
  .hero__proof-images img { width: 38px; height: 48px; }
  .scroll-hint { display: none; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { flex: 1; justify-content: center; }
}

/* ---------- Focus visibility ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Blog / colour journal (public SEO pages) ---------- */
.blog-hero { padding-block: clamp(6rem,12vw,8rem) 2rem; text-align: center; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(1.2rem,3vw,2rem); margin-top: clamp(2rem,5vw,3rem); }
.blog-card { display: grid; gap: 0.7rem; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--porcelain-2); align-content: start; }
.blog-card__source { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.blog-card h2 { font-size: 1.3rem; }
.blog-card p { color: var(--ink-soft); font-weight: 300; font-size: 0.94rem; }
.blog-card__link { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink); border-bottom: 1px solid var(--gold); width: max-content; }
.blog-empty { text-align: center; color: var(--ink-soft); padding: 3rem 0; }

.blog-post { padding-block: clamp(6rem,12vw,8rem) clamp(3rem,6vw,5rem); max-width: 720px; margin-inline: auto; }
.blog-post h1 { margin-block: 0.6rem 1.2rem; }
.blog-post__meta { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.blog-post__excerpt { font-size: 1.15rem; color: var(--ink-soft); font-weight: 300; line-height: 1.6; margin-block: 1.4rem; }
.blog-post__source { margin-top: 2rem; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--porcelain-2); }
.blog-post__back { display: inline-block; margin-bottom: 1.5rem; font-size: 0.82rem; color: var(--ink-soft); }
.blog-post__body { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.blog-post__body p { margin-block: 1.1rem; }
.blog-post__body h2 { font-size: 1.5rem; margin-block: 2rem 0.8rem; }
.blog-post__body h3 { font-size: 1.2rem; margin-block: 1.6rem 0.6rem; }
.blog-post__body ul { margin-block: 1.1rem; padding-inline-start: 1.3rem; }
.blog-post__body li { margin-block: 0.4rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); margin-top: clamp(2rem,5vw,3rem); }
.price-group { display: grid; gap: 0.2rem; align-content: start; }
.price-group + .price-group { margin-top: clamp(1.5rem,4vw,2.5rem); }
.price-group h3 { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 500; margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--line-soft); }
.price-row span:first-child { color: var(--ink); }
.price-row__price { flex-shrink: 0; font-family: var(--display); font-size: 1.05rem; white-space: nowrap; }
.price-row__price em { font-style: normal; font-size: 0.7rem; color: var(--ink-soft); margin-right: 0.2rem; }
.pricing-note { margin-top: clamp(1.5rem,4vw,2.5rem); font-size: 0.85rem; color: var(--ink-soft); display: grid; gap: 0.4rem; }
.pricing-cta { margin-top: clamp(2rem,5vw,3rem); text-align: center; }
.pricing-cta p { margin-bottom: 1rem; }

/* ---------- Gallery teaser (homepage) — full gallery lives on /gallery ---------- */
.gallery-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.6rem,1.5vw,1.1rem); margin-top: clamp(2rem,5vw,3rem); max-width: 640px; margin-inline: auto; }
.gallery-teaser-cta { text-align: center; margin-top: clamp(1.5rem,4vw,2.5rem); }

/* ---------- Standalone gallery page ---------- */
.gallery-hero { padding-block: clamp(6rem,12vw,8rem) 0; text-align: center; }
.gallery-page-grid { margin-top: clamp(2rem,5vw,3rem); }

@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
}
