/* ============================================================
   Willow & Bloom Aesthetics — Landing page
   Aesthetic: organic, editorial, warm-neutral, understated luxury
   Fonts: Playfair Display (display) · Cormorant Garamond (accent) · Montserrat (body)
   ============================================================ */

:root {
  /* Brand palette */
  --sage-deep:   #6c7055;
  --sage:        #7e826b;
  --sage-soft:   #939a88;
  --sand:        #d6c5b1;
  --sand-soft:   #cab9a5;
  --cream:       #faf5f2;

  /* Derived / tonal */
  --ink:         #3a3a31;   /* warm near-black for body text */
  --ink-soft:    #6a6a5d;
  --cream-deep:  #f1e8e1;
  --line:        rgba(108,112,85,0.18);
  --line-strong: rgba(108,112,85,0.32);

  --shadow-sm: 0 2px 12px rgba(94,86,70,0.08);
  --shadow-md: 0 18px 50px -24px rgba(74,70,52,0.45);
  --shadow-lg: 0 40px 90px -40px rgba(74,70,52,0.55);

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 4px;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-accent:  "Cormorant Garamond", Georgia, serif;
  --ff-body:    "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

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

/* ───────────────────────────── Reset ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
address { font-style: normal; }

.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ───────────────────────────── Grain overlay ───────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────────────────────────── Skip link ───────────────────────────── */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 10000;
  background: var(--sage-deep); color: var(--cream);
  padding: .6rem 1rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ───────────────────────────── Buttons ───────────────────────────── */
.btn {
  --pad-y: .85rem; --pad-x: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 500; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent; border-radius: 999px; cursor: pointer;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; white-space: nowrap;
}
.btn--lg { --pad-y: 1.05rem; --pad-x: 2.2rem; font-size: .75rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--sage-deep); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: #5b5e45; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--sage-deep); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--sage-deep); color: var(--cream); transform: translateY(-2px); }

.btn--cream { background: var(--cream); color: var(--sage-deep); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(250,245,242,0.4); }
.btn--ghost-light:hover { background: var(--cream); color: var(--sage-deep); }

/* ───────────────────────────── Header ───────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: clamp(.7rem, 2vw, 1.25rem);
}
.header-inner { display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: clamp(58px, 7vw, 70px); width: auto;
  transition: height .4s var(--ease);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.04));
}

.nav { display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem); margin-left: auto; }
.nav a {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  color: var(--ink); position: relative; padding-block: .3rem; transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--sage-deep); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--sage-deep); }
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: .5rem; }

/* Header scrolled state — no cream fill, but keep the frosted blur + soft shadow */
.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px -20px rgba(74,70,52,0.4);
  padding-block: .55rem;
}
.site-header.is-scrolled .brand-logo { height: clamp(50px, 5vw, 52px); }

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

.mobile-menu {
  background: rgba(250,245,242,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  animation: menuIn .4s var(--ease);
}
.mobile-menu nav { display: flex; flex-direction: column; padding: 1.25rem var(--gutter) 2rem; gap: .25rem; }
.mobile-menu a { padding: .9rem 0; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1rem; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ───────────────────────────── Hero ───────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: clamp(7rem, 14vh, 11rem); padding-bottom: clamp(5rem, 10vh, 8rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--sand); }
.hero-bg .img-slot { position: absolute; inset: 0; border-radius: 0; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center; /* favour the right of the frame */
  opacity: 0; transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(250,245,242,0) 0%, rgba(250,245,242,0.35) 55%, rgba(250,245,242,0.9) 100%),
    linear-gradient(100deg, rgba(250,245,242,0.96) 0%, rgba(250,245,242,0.8) 38%, rgba(250,245,242,0.25) 72%, rgba(214,197,177,0.1) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.eyebrow {
  font-size: .74rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--sage); font-weight: 500; margin-bottom: 1.6rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow-sprig { width: 52px; height: auto; flex-shrink: 0; }
.eyebrow-sprig path { fill: none; stroke: var(--sage-soft); stroke-width: 1.4; }
.eyebrow-sprig .leaves path { fill: var(--sage-soft); stroke: none; opacity: .9; }

.hero-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(2.9rem, 8.5vw, 6.4rem); line-height: 0.98;
  letter-spacing: -0.015em; color: var(--ink);
}
.hero-title span { display: block; }
.hero-title__accent {
  font-family: var(--ff-accent); font-style: italic; font-weight: 500;
  color: var(--sage-deep);
  font-size: clamp(3.1rem, 9vw, 6.9rem); line-height: 1; margin-top: .05em;
}
.hero-lede {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem); font-weight: 300;
  max-width: 33ch; margin-top: 1.8rem; color: var(--ink-soft); line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-note {
  margin-top: 1.8rem; font-size: .82rem; letter-spacing: .04em; color: var(--sage);
  font-style: italic; font-family: var(--ff-accent); font-size: 1.05rem;
}

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.scroll-cue__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(250,245,242,0.4);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  animation: scrollNudge 2.4s var(--ease) infinite;
}
.scroll-cue__icon svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.scroll-cue:hover .scroll-cue__icon {
  background: var(--sage-deep); border-color: var(--sage-deep); color: var(--cream);
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ───────────────────────────── Image slots ───────────────────────────── */
.img-slot {
  position: relative; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.25) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, var(--sand) 0%, var(--sand-soft) 45%, var(--cream-deep) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; text-align: center; color: var(--sage-deep); overflow: hidden;
  border-radius: var(--radius);
}
.img-slot::before {
  content: "❀"; font-size: 2rem; opacity: .35; margin-bottom: .2rem; line-height: 1;
}
.img-slot__tag {
  font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600;
  padding: .35rem .7rem; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(250,245,242,0.5);
}
.img-slot__hint { font-size: .8rem; max-width: 26ch; opacity: .8; font-style: italic; font-family: var(--ff-accent); font-size: 1rem; padding-inline: 1rem; }

/* ───────────────────────────── Section primitives ───────────────────────────── */
section { position: relative; }
.section-index {
  display: inline-block; font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sage); font-weight: 600; margin-bottom: 1.2rem;
}
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.8rem); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.section-title .ital { font-family: var(--ff-accent); font-style: italic; font-weight: 500; color: var(--sage-deep); }
.section-sub { margin-top: 1.3rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }
.section-head--center .section-sub { margin-inline: auto; }

/* ───────────────────────────── Intro ───────────────────────────── */
.intro { padding-block: clamp(4.5rem, 12vw, 9rem); }
.intro-grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.intro-left { position: sticky; top: 8rem; }
.pullquote {
  font-family: var(--ff-accent); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem); line-height: 1.3;
  color: var(--ink); margin-bottom: 1.8rem;
}
.pullquote em { color: var(--sage-deep); font-style: italic; }
.intro-right p:not(.pullquote) { margin-bottom: 1.2rem; color: var(--ink-soft); max-width: 56ch; }

/* Botanical sprig */
.sprig { width: clamp(90px, 12vw, 130px); height: auto; }
.sprig path { fill: none; stroke: var(--sage-soft); stroke-width: 1; }
.sprig .sprig-leaves path { fill: var(--sage-soft); stroke: none; opacity: .85; }
.sprig--light path { stroke: rgba(250,245,242,0.7); }
.sprig--light .sprig-leaves path { fill: rgba(250,245,242,0.7); }

/* ───────────────────────────── Services ───────────────────────────── */
.services { padding-block: clamp(4rem, 10vw, 8rem); background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); overflow-x: clip; }
.service-list { display: flex; flex-direction: column; gap: clamp(3rem, 8vw, 7rem); }
.service {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}
.service--reverse .service-media { order: 2; }
.service-media { position: relative; }
.img-slot--service { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-md); }
.service-img {
  display: block; width: 100%; aspect-ratio: 4 / 3.4;
  object-fit: cover; object-position: center 30%; /* favour the face/upper area */
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  position: relative; z-index: 1;
}
/* Olive-branch accent peeking from behind each treatment image — alternates side per card.
   Blended (multiply) so the JPG's white field drops into the cream and only the branch shows. */
.service-media::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -12%; height: 149%; left: 0; width: 48%;
  transform: translateX(-52%);
  background: url("Branding Assets/olive-white.png") center / contain no-repeat;
  mix-blend-mode: multiply; opacity: .55;
}
.service--reverse .service-media::before {
  left: auto; right: 0;
  transform: translateX(52%) scaleX(-1);
}
.service-title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem); line-height: 1.1; margin-bottom: 1rem; color: var(--ink); }
.service-body p { color: var(--ink-soft); max-width: 46ch; }
.service-body .link-arrow { margin-top: 1.8rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--sage-deep); padding-bottom: .2rem; border-bottom: 1px solid var(--line-strong);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--ink); border-color: var(--sage-deep); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--inline { border: none; text-transform: none; letter-spacing: .02em; font-size: inherit; font-weight: 500; }

/* ───────────────────────────── Why ───────────────────────────── */
.why { padding-block: clamp(4.5rem, 12vw, 9rem); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.why-media { position: relative; }
.img-slot--portrait { aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.portrait-img {
  display: block; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center 25%;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute; bottom: -1.5rem; right: -1.2rem;
  background: var(--sage-deep); color: var(--cream); padding: 1.3rem 1.6rem;
  border-radius: var(--radius); box-shadow: var(--shadow-md); text-align: center;
  transform: rotate(-2deg);
}
.why-badge__small { display: block; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; opacity: .75; }
.why-badge__big { display: block; font-family: var(--ff-accent); font-style: italic; font-size: 1.5rem; margin-top: .2rem; }

.why-lede { font-size: 1.15rem; color: var(--ink); margin-bottom: 2.2rem; max-width: 44ch; }
.feature-list { display: flex; flex-direction: column; gap: 1.6rem; }
.feature-list li { display: flex; gap: 1.1rem; }
.feature-mark { color: var(--sage); font-size: 1.1rem; margin-top: .15rem; flex-shrink: 0; }
.feature-list h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.2rem; color: var(--ink); margin-bottom: .25rem; }
.feature-list p { color: var(--ink-soft); font-size: .95rem; max-width: 48ch; }

/* ───────────────────────────── Locations ───────────────────────────── */
.locations { padding-block: clamp(4rem, 10vw, 8rem); background: var(--cream-deep); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
.location {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.location:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.location-map { aspect-ratio: 16 / 10; background: var(--sand-soft); position: relative; }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) sepia(0.12) contrast(0.95); transition: filter .5s var(--ease); }
.location:hover .location-map iframe { filter: grayscale(0) sepia(0) contrast(1); }
.location-info { padding: clamp(1.5rem, 3vw, 2.2rem); }
.location-tag { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.location-name { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin: .5rem 0 1rem; color: var(--ink); }
.location address { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.3rem; }
.postcode { display: inline-block; margin-top: .3rem; font-weight: 500; letter-spacing: .08em; color: var(--sage-deep); }

/* ───────────────────────────── Enquire ───────────────────────────── */
.enquire { padding-block: clamp(4.5rem, 12vw, 9rem); overflow-x: clip; }
.enquire-watermark {
  position: absolute; top: 52%; left: clamp(-6rem, -3vw, -1.5rem);
  transform: translateY(-50%);
  width: clamp(240px, 30vw, 460px); max-width: 44%;
  opacity: .16; mix-blend-mode: multiply;
  pointer-events: none; z-index: 0;
}
.enquire-watermark img { width: 100%; height: auto; display: block; }
.enquire-grid { position: relative; z-index: 1; }
.enquire-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.enquire-intro p { color: var(--ink-soft); max-width: 42ch; margin-top: 1.2rem; }
.enquire-or { font-size: .95rem; }

.enquire-form {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md);
}
/* Honeypot — kept off-screen (not display:none) so bots still fill it but people never see it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--sage-deep); margin-bottom: .55rem; }
.field .opt { text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-weight: 300; font-size: .9em; }
.field input, .field textarea {
  font-family: var(--ff-body); font-weight: 300; font-size: .98rem; color: var(--ink);
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .85rem 1rem; transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a8a195; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 3px rgba(147,154,136,0.18);
}
.field textarea { resize: vertical; min-height: 90px; }
.form-status { margin-top: 1rem; font-size: .9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--sage-deep); font-weight: 500; }
.form-status.is-err { color: #a85a4a; }
.form-fineprint { margin-top: 1rem; font-size: .76rem; color: var(--ink-soft); line-height: 1.5; }

/* ───────────────────────────── CTA band ───────────────────────────── */
.cta-band {
  /* Layered top→bottom:
     1) the original olive radial gradient, now slightly translucent so the watercolor reads through it
     2) the brand watercolour as a soft background watermark (cover, cloud positioned upper-centre)
     3) a solid olive fallback beneath
     The translucent veil preserves the original block colouring AND keeps the cream text crisp. */
  background:
    radial-gradient(140% 120% at 20% 0%, rgba(126,130,107,0.74) 0%, rgba(108,112,85,0.82) 55%, rgba(86,90,66,0.90) 100%),
    url("Branding Assets/watercolor.jpg") center 38% / cover no-repeat,
    var(--sage-deep);
  color: var(--cream); text-align: center; padding-block: clamp(4rem, 10vw, 7rem);
  position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(250,245,242,0.12), transparent 70%);
}
.cta-band::before { width: 420px; height: 420px; top: -180px; left: -120px; }
.cta-band::after { width: 520px; height: 520px; bottom: -260px; right: -140px; }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-inner .sprig { margin-bottom: 1.5rem; }
.cta-title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); line-height: 1.1; }
.cta-sub { margin: 1rem 0 2.2rem; opacity: .85; font-size: 1.1rem; font-weight: 300; }

/* ───────────────────────────── Footer ───────────────────────────── */
.site-footer { background: #2f3026; color: rgba(250,245,242,0.78); padding-top: clamp(3.5rem, 8vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: 3.5rem; }
/* Dedicated footer wordmark — light/transparent, sits directly on the dark footer (no chip). */
.footer-logo {
  height: auto; width: clamp(220px, 80%, 300px); margin-bottom: 1.3rem;
}
.footer-tag { font-size: .92rem; max-width: 30ch; line-height: 1.6; }
.footer-col h3 { font-family: var(--ff-display); font-weight: 500; font-size: 1.1rem; color: var(--cream); margin-bottom: 1.1rem; letter-spacing: .01em; }
.footer-list { font-size: .92rem; line-height: 1.7; display: flex; flex-direction: column; gap: .55rem; }
.footer-list--addresses li { margin-bottom: .8rem; }
.footer-list strong { color: rgba(250,245,242,0.95); font-weight: 500; }
.footer-list a { transition: color .3s var(--ease); }
.footer-list a:hover { color: var(--cream); }
.footer-col .btn { margin-top: 1.2rem; }

/* Contact lines with a brand icon badge (colour-contrasted sand chip on the dark footer) */
.footer-contact { gap: .9rem; }
.contact-line { display: inline-flex; align-items: center; gap: .65rem; color: rgba(250,245,242,0.92); }
.contact-line > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.contact-line--addr { align-items: flex-start; }
.contact-ico {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sand); color: #2f3026;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.contact-line--addr .contact-ico { margin-top: 1px; }
.contact-ico svg { width: 15px; height: 15px; fill: currentColor; }
a.contact-line:hover { color: var(--cream); }
a.contact-line:hover .contact-ico { background: var(--sage-soft); transform: translateY(-2px); }

.placeholder-link { color: var(--sand) !important; font-style: italic; }

.socials { display: flex; gap: .8rem; margin-top: 1.3rem; }
.social-icon { width: 40px; height: 40px; border: 1px solid rgba(250,245,242,0.25); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.social-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-icon:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-3px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem; border-top: 1px solid rgba(250,245,242,0.12); font-size: .8rem;
  letter-spacing: .04em;
}
.footer-soon { text-transform: uppercase; letter-spacing: .22em; font-size: .68rem; color: var(--sand); }

/* ───────────────────────────── Reveal animation ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ───────────────────────────── Responsive ───────────────────────────── */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-left { position: static; display: flex; align-items: center; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 440px; }
  .enquire-grid { grid-template-columns: 1fr; }
  /* Stacked layout: anchor the watermark behind the heading rather than the tall mid-point */
  .enquire-watermark {
    top: clamp(5rem, 16vw, 8rem); transform: none;
    width: clamp(170px, 42vw, 240px); opacity: .12;
  }
}

@media (max-width: 760px) {
  /* Text stacks full-width over the hero image — add a stronger, more even cream wash
     so the headline and body copy stay legible regardless of what's behind them. */
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(250,245,242,0.82) 0%, rgba(250,245,242,0.62) 45%, rgba(250,245,242,0.78) 100%),
      linear-gradient(90deg, rgba(250,245,242,0.5) 0%, rgba(250,245,242,0.15) 100%);
  }
  /* Portrait crop favours the subject (far right of the frame) so it isn't lost on narrow screens */
  .hero-slide { object-position: 88% center; }
  .service, .service--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .service--reverse .service-media { order: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .why-badge { right: 0; bottom: -1rem; padding: 1rem 1.2rem; }
}
