/* =====================================================================
   Fleur — dried flower studio
   Built from the Fleur design blueprint (warm cream + blush, arch motif,
   high-contrast serif display paired with a light tracked sans).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* color — named by role */
  --cream:        #f3e7dc;   /* page surface */
  --cream-soft:   #f7efe6;   /* header + lighter panels */
  --blush:        #e7cbb5;   /* card panels, buttons-ish accents */
  --blush-deep:   #ddc1aa;   /* popular section + footer */
  --clay:         #b9876a;   /* accent: eyebrows, small icons */
  --ink:          #403832;   /* primary text / headings */
  --ink-soft:     #6f6359;   /* body copy */
  --muted:        #9a8b7d;   /* meta, captions */
  --line:         rgba(64, 56, 50, .14);
  --white:        #ffffff;

  --btn:          #ecd2bf;   /* light button fill */
  --btn-hover:    #ddb89f;
  --btn-ink:      #463d35;

  /* typography */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* spacing scale */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem;  --s-12: 3rem;  --s-16: 4rem;
  --s-24: 6rem;  --s-32: 8rem;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 3px;
  --shadow-soft: 0 24px 50px -30px rgba(74, 53, 38, .55);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

/* ---------- Icons ---------- */
.ico {
  width: 1.15em; height: 1.15em;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  display: inline-block; vertical-align: middle;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--s-4);
}
.eyebrow--center { text-align: center; }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: .01em;
}
.section__title--center { text-align: center; }
.section { padding-block: clamp(4rem, 9vw, 7rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .95rem 2.1rem;
  border-radius: var(--radius);
  color: var(--btn-ink);
  background: var(--btn);
  transition: background .35s var(--ease), color .35s var(--ease),
              transform .35s var(--ease);
}
.btn:hover { background: var(--btn-hover); transform: translateY(-2px); }
.btn--solid { background: var(--blush); }
.btn--solid:hover { background: var(--btn-hover); }
.btn--light { background: var(--cream-soft); color: var(--ink); }
.btn--light:hover { background: var(--white); }

.link-more {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--clay);
  transition: color .3s var(--ease), border-color .3s var(--ease), letter-spacing .3s var(--ease);
}
.link-more:hover { color: var(--clay); letter-spacing: .26em; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-soft);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 8px 30px -18px rgba(74, 53, 38, .5); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2vw, 2rem);
}
.nav > a:not(.btn) {
  font-size: .73rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding-block: .35rem;
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-shop { padding: .7rem 1.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 237, 225, .94), rgba(231, 203, 181, .92)),
    url("assets/images/hero-tools-bg.jpg") center / cover no-repeat;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(440px, 62vh, 600px);
}
.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: clamp(.68rem, 1vw, .76rem);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.4rem;
}
.hero__logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: .98;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__logo span { display: block; }
.hero__logo span:last-child {
  margin-top: .2em;
  font-size: .72em;
  letter-spacing: .24em;
}
.hero__logo::after {
  content: "";
  display: block;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: 1px;
  margin: clamp(1rem, 1.8vw, 1.4rem) auto 0;
  background: rgba(64, 56, 50, .42);
}
.hero__tagline {
  margin-top: 1.5rem;
  margin-inline: auto;
  max-width: 30rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.7rem, 1.5vw, 1rem);
  margin-top: clamp(1.75rem, 3vw, 2.4rem);
}
.hero__actions .btn {
  min-height: 3.5rem;
  min-width: 14rem;
  padding-inline: 1.9rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.social a {
  display: inline-flex;
  font-size: 1.05rem;
  opacity: .85;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.social a:hover { opacity: 1; transform: translateY(-2px); }

/* =====================================================================
   PROOF STRIP
   ===================================================================== */
.proof {
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}
.proof__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.proof__item {
  min-height: 112px;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  background: var(--cream-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
}
.proof__item--link { transition: background .3s var(--ease), color .3s var(--ease); }
.proof__item--link:hover { background: var(--blush); }
.proof__kicker {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}
.proof__item strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 500;
}

/* =====================================================================
   SHARED — the arch motif
   ===================================================================== */
.arch {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% var(--radius) var(--radius) / 38% 38% var(--radius) var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--blush);
}
.arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

/* downward arch (rounded bottom) used in the gift feature */
.arch-down {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 46% 46% / var(--radius) var(--radius) 30% 30%;
  aspect-ratio: 5 / 6;
  background: var(--blush);
}
.arch-down img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: var(--cream); text-align: center; }
.services .eyebrow { text-align: center; }
.services .section__title { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
}
.service {
  display: flex;
  flex-direction: column;
}
.service .arch { margin-inline: auto; width: 84%; }
.service:hover .arch img { transform: scale(1.06); }
.service__body {
  background: var(--blush);
  margin-top: -1px;
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: .9rem;
}
.service__body p {
  font-size: .86rem;
  line-height: 1.85;
  color: #7a6c5f;
  max-width: 24ch;
  margin-bottom: 1.6rem;
}
.service__body .link-more { margin-top: auto; }

/* =====================================================================
   NEW CLIENT PROCESS
   ===================================================================== */
.process { background: var(--white); }
.process .section__title { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.process-step {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step__n {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--clay);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: .9rem;
}
.process-step p {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* =====================================================================
   GIFT FEATURE
   ===================================================================== */
.gift { background: var(--white); }
.gift__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.section__title--left { text-align: left; }
.gift__text { max-width: 30rem; }
.gift__text .section__title { margin-bottom: 1.5rem; }
.gift__copy {
  font-size: .9rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.gift__media { display: flex; justify-content: center; }
.gift__media .arch-down {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
}

/* =====================================================================
   POPULAR
   ===================================================================== */
.popular { background: var(--blush-deep); }
.popular .section__title { margin-bottom: 1rem; }
.popular__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.pcard__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--blush);
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.07); }
.pcard__meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.stat__icon { display: inline-flex; color: var(--clay); }
.stat--like { transition: transform .2s var(--ease); }
.stat--like:hover { transform: scale(1.08); }
.stat--like[aria-pressed="true"] .stat__icon .ico { fill: var(--clay); }
.stat--share { margin-left: auto; border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.stat--share:hover { border-color: var(--ink); }

/* =====================================================================
   TALK / CTA
   ===================================================================== */
.talk { background: var(--cream); padding-block: clamp(3rem, 7vw, 5.5rem); }
.talk__panel {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 5vw, 3.5rem);
  background: var(--blush);
  border-radius: 50% 50% var(--radius) var(--radius) / 26% 26% var(--radius) var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.talk__copy {
  margin: 1.4rem 0 2rem;
  font-size: .88rem;
  line-height: 1.95;
  color: #7a6c5f;
  max-width: 46ch;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--blush-deep); color: var(--ink); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.logo--dark { color: var(--ink); }
.footer__tag {
  margin: 1rem 0 1.75rem;
  font-size: .82rem;
  color: #6c5f53;
  max-width: 26ch;
}
.subscribe {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 360px;
}
.subscribe input {
  flex: 1 1 180px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .85rem 1rem;
  border: 1px solid rgba(64, 56, 50, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .35);
  color: var(--ink);
}
.subscribe input::placeholder { color: #8a7c6e; }
.subscribe input:focus { outline: none; border-color: var(--clay); background: rgba(255, 255, 255, .6); }
.subscribe__msg { flex-basis: 100%; font-size: .76rem; color: var(--clay); min-height: 1em; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer__cols ul { display: flex; flex-direction: column; gap: .7rem; }
.footer__head {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: .35rem;
}
.footer__cols a {
  font-size: .82rem;
  color: #6c5f53;
  transition: color .25s var(--ease);
}
.footer__cols a:hover { color: var(--ink); }

.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__copy { font-size: .72rem; letter-spacing: .04em; color: #6c5f53; }
.social--dark a { color: var(--ink); font-size: .95rem; opacity: .75; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  .proof__inner { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .process-step { padding-inline: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .popular__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
  .gift__inner { grid-template-columns: 1fr; }
  .gift__text { max-width: none; }
  .gift__media { order: -1; }
}

@media (max-width: 760px) {
  body { padding-bottom: 70px; }
  .nav-toggle { display: flex; z-index: 60; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem 2.25rem;
    background: var(--cream-soft);
    box-shadow: -20px 0 60px -30px rgba(74, 53, 38, .6);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a:not(.btn) { font-size: .9rem; }
  .nav-shop { padding: .85rem 2rem; }
  body.nav-open { overflow: hidden; }

  .services__grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .service .arch { width: 100%; }
  .hero__actions {
    grid-template-columns: minmax(0, min(100%, 22rem));
    width: 100%;
  }
  .mobile-booking {
    position: fixed;
    z-index: 80;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: var(--cream-soft);
    box-shadow: 0 -14px 35px -28px rgba(74, 53, 38, .8);
  }
  .mobile-booking a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .mobile-booking a:first-child {
    background: var(--blush);
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .proof__inner { grid-template-columns: 1fr; }
  .proof__item { min-height: 92px; }
  .popular__grid { grid-template-columns: repeat(2, 1fr); max-width: 24rem; margin-inline: auto; gap: .8rem; }
  .igtile__label { font-size: .52rem; letter-spacing: .1em; padding: .45rem .55rem; left: .5rem; bottom: .5rem; max-width: calc(100% - 1rem); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   PERSONALISATION — Phoebe Rose Hair (service price, pricing, hours)
   ===================================================================== */
.hero__img { object-position: center 50%; }

.footer__hours li:not(.footer__head) {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: #6c5f53;
}
.footer__hours li span:last-child { color: var(--ink); white-space: nowrap; }

.service__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.pricing { background: var(--cream); }
.pricing .section__title { margin-bottom: 1rem; }
.pricing__intro {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  font-size: .9rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.price-card__head {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  text-align: center;
}
.price-note {
  text-align: center;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  margin: .6rem 0 1.5rem;
  line-height: 1.7;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-list { display: flex; flex-direction: column; flex: 1; justify-content: space-between; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-size: .85rem; font-weight: 300; color: var(--ink-soft); line-height: 1.4; }
.price-row__price { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--ink); white-space: nowrap; }

.talk__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 18rem));
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
.talk__actions .btn {
  width: 100%;
  background: var(--cream-soft);
}
.talk__actions .btn:hover { background: var(--white); }
.talk__actions .btn:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 18rem;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; }
}
@media (max-width: 520px) {
  .talk__actions { grid-template-columns: 1fr; width: 100%; }
  .talk__actions .btn { width: 100%; }
  .talk__actions .btn:nth-child(3) { grid-column: auto; width: 100%; }
}

/* =====================================================================
   ABOUT PHOEBE
   ===================================================================== */
.about { background: var(--cream-soft); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.about__media { display: flex; justify-content: center; }
.about__media .arch { width: min(420px, 100%); }
.about__portrait { object-position: center 18%; }
.about__media:hover .arch img { transform: scale(1.04); }
.about__text { max-width: 32rem; }
.about__text .section__title { margin-bottom: 1.5rem; }
.about__copy { font-size: .9rem; line-height: 1.95; color: var(--ink-soft); margin-bottom: 1.2rem; }
.about__text .btn { margin-top: .6rem; }

/* =====================================================================
   INSTAGRAM GALLERY
   ===================================================================== */
.ig-sub {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 1.4rem;
  font-size: .9rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.ig-actions { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.ig-actions .btn { display: inline-flex; }
.igtile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--blush);
}
.igtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.igtile:hover img { transform: scale(1.07); }
.igtile__label {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  z-index: 1;
  max-width: calc(100% - 1.5rem);
  background: rgba(247, 239, 230, .94);
  color: var(--ink);
  border-radius: var(--radius);
  padding: .55rem .75rem;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.igtile__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  color: #fff;
  background: rgba(64, 48, 38, .34);
  opacity: 0;
  transition: opacity .35s var(--ease);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.igtile__overlay .ico { width: 1.9rem; height: 1.9rem; }
.igtile:hover .igtile__overlay { opacity: 1; }

/* =====================================================================
   FIND US (map)
   ===================================================================== */
.find { background: var(--white); }
.find__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
}
.find__info { max-width: 26rem; }
.find__info .section__title { margin-bottom: 1.25rem; }
.find__addr { font-family: var(--serif); font-size: 1.2rem; line-height: 1.7; color: var(--ink); margin-bottom: 1.5rem; }
.find__hours { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.9rem; max-width: 19rem; }
.find__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: .55rem; }
.find__hours li span:last-child { color: var(--ink); white-space: nowrap; }
.find__map { width: 100%; }
.find__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-soft);
  filter: grayscale(.12);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__text { max-width: none; }
  .about__media { order: -1; }
  .find__inner { grid-template-columns: 1fr; }
  .find__map iframe { aspect-ratio: 16 / 10; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { max-width: none; }
}

/* linked static map image (replaces live iframe for reliability) */
.find__maplink { display: block; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.find__maplink img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; filter: grayscale(.12); transition: transform .8s var(--ease), filter .4s var(--ease); }
.find__maplink:hover img { transform: scale(1.04); filter: grayscale(0); }
.find__maptag { position: absolute; bottom: .9rem; right: .9rem; background: var(--cream-soft); color: var(--ink); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; padding: .5rem .9rem; border-radius: var(--radius); box-shadow: 0 6px 18px -10px rgba(74,53,38,.5); }
@media (max-width: 900px) { .find__maplink img { aspect-ratio: 16 / 10; } }

/* =====================================================================
   HEADER — exposed Instagram action
   ===================================================================== */
.header-right { display: flex; align-items: center; gap: clamp(.85rem, 2vw, 1.5rem); }
.header-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: 0 0 auto;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.header-ig:hover { background: var(--clay); color: #fff; border-color: var(--clay); transform: translateY(-2px); }
.header-ig .ico { width: 1.15rem; height: 1.15rem; }
@media (max-width: 760px) { .header-ig { width: 38px; height: 38px; } }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.reviews { background: var(--cream); text-align: center; }
.reviews .section__title { margin-bottom: clamp(2.25rem, 5vw, 3.25rem); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: center;
  height: 100%;
}
.review__stars { color: var(--clay); letter-spacing: .18em; font-size: .95rem; }
.review__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
}
.review__name {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
}
.review__name span { display: block; color: var(--clay); font-size: .68rem; letter-spacing: .18em; margin-top: .35rem; }
.reviews__summary {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .8rem;
  margin: -1.4rem auto clamp(2rem, 4vw, 2.75rem);
  padding: .8rem 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reviews__score {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.reviews__note { margin-top: clamp(2rem, 4vw, 3rem); font-size: .82rem; color: var(--ink-soft); }
.reviews__note a { color: var(--clay); border-bottom: 1px solid var(--clay); padding-bottom: 2px; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--cream-soft); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 4vw, 3rem);
  justify-items: center;
  max-width: 760px;
  text-align: center;
}
.faq__head {
  width: min(100%, 44rem);
  max-width: 44rem;
  justify-self: center;
  text-align: center;
}
.faq__head .section__title {
  margin-bottom: 1.2rem;
  text-align: center;
}
.faq__intro {
  max-width: 54ch;
  margin-inline: auto;
  font-size: .9rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.faq__list {
  display: flex;
  flex-direction: column;
  width: min(100%, 44rem);
  justify-self: center;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  display: block;
  padding: 0 2.5rem;
  text-align: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: .15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  color: var(--clay);
  font-size: 1.1rem;
}
.faq__item[open] summary::after { content: "-"; }
.faq__item p {
  margin: .9rem auto 0;
  max-width: 56ch;
  font-size: .9rem;
  line-height: 1.85;
  color: var(--ink-soft);
  text-align: center;
}

/* =====================================================================
   MOBILE BOOKING
   ===================================================================== */
.mobile-booking { display: none; }

@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head,
  .faq__list {
    justify-self: center;
    text-align: center;
    max-width: 34rem;
  }
  .faq__item p { margin-inline: auto; }
}

@media (max-width: 760px) {
  .mobile-booking {
    position: fixed;
    z-index: 80;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: var(--cream-soft);
    box-shadow: 0 -14px 35px -28px rgba(74, 53, 38, .8);
  }
  .mobile-booking a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .mobile-booking a:first-child {
    background: var(--blush);
    border-right: 1px solid var(--line);
  }
}

/* booking section dual actions */
.gift__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .4rem; }
#book .gift__copy { margin-bottom: 1.05rem; }

/* in-page anchor offset for the sticky header (navigation only) */
.section { scroll-margin-top: 92px; }

/* =====================================================================
   NEW CLIENT ENQUIRY FORM
   ===================================================================== */
.enquiry { background: var(--cream-soft); }
.enquiry__inner { max-width: 920px; margin-inline: auto; }
.enquiry__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.enquiry__intro { text-align: center; max-width: 62ch; margin: 1rem auto 0; font-size: .92rem; line-height: 1.9; color: var(--ink-soft); }
.ef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; }
.ef-field { display: flex; flex-direction: column; gap: .5rem; }
.ef-field--full { grid-column: 1 / -1; }
.ef-field label, .ef-label { font-family: var(--sans); font-size: .78rem; font-weight: 400; letter-spacing: .03em; color: var(--ink); line-height: 1.45; }
.ef-req { color: var(--clay); }
.ef-field input[type="text"], .ef-field input[type="tel"], .ef-field input[type="email"], .ef-field select, .ef-field textarea {
  font-family: var(--sans); font-weight: 300; font-size: .9rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.ef-field textarea { resize: vertical; min-height: 3rem; line-height: 1.6; }
.ef-field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b9876a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .95rem center;
}
.ef-field input:focus, .ef-field select:focus, .ef-field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(185, 135, 106, .12); }
.ef-field input::placeholder, .ef-field textarea::placeholder { color: #a99a8b; }
.ef-radios { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; padding-top: .25rem; }
.ef-radio { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans); font-size: .85rem; font-weight: 300; color: var(--ink-soft); cursor: pointer; }
.ef-radio input { accent-color: var(--clay); width: 1rem; height: 1rem; }
.ef-field input[type="file"] { font-family: var(--sans); font-size: .8rem; font-weight: 300; color: var(--ink-soft); background: var(--white); border: 1px dashed rgba(64, 56, 50, .28); border-radius: var(--radius); padding: .7rem .9rem; cursor: pointer; }
.ef-field input[type="file"]::file-selector-button { font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--btn-ink); background: var(--btn); border: 0; border-radius: var(--radius); padding: .55rem .9rem; margin-right: .9rem; cursor: pointer; transition: background .25s var(--ease); }
.ef-field input[type="file"]::file-selector-button:hover { background: var(--btn-hover); }
.ef-submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; margin-top: 1.9rem; }
.ef-msg { font-size: .85rem; line-height: 1.55; color: var(--clay); min-height: 1em; flex: 1 1 16rem; }
@media (max-width: 640px) { .ef-grid { grid-template-columns: 1fr; } }

/* hero secondary outline button */
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(64, 56, 50, .5); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }

/* Instagram enquiry section */
.ig-enquiry {
  width: min(100%, 760px);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2.25rem, 4.5vw, 3.35rem) clamp(1.35rem, 5vw, 4rem);
  text-align: center;
}
.ig-enquiry__lead {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.45rem;
}
.ig-enquiry__note {
  max-width: 36rem;
  margin: 0 auto 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}
.ig-checklist {
  width: min(100%, 36rem);
  margin: 0 auto 1.7rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  text-align: left;
}
.ig-checklist li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  padding: .72rem .4rem;
  border-top: 1px solid rgba(64, 56, 50, .1);
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.65;
  text-align: center;
}
.ig-checklist li:first-child { border-top: 0; }
.ig-checklist li::before {
  content: "\2713";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(185, 135, 106, .42);
  border-radius: 50%;
  background: rgba(185, 135, 106, .1);
  color: var(--clay);
  font-size: .62rem;
  line-height: 1;
}
.ig-enquiry__soft-note {
  max-width: 36rem;
  margin: 0 auto 1.45rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}
.ig-enquiry__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: min(100%, 36rem);
  min-height: 4rem;
  border: 0;
}
.ig-enquiry__helper {
  max-width: 36rem;
  margin: .85rem auto 0;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .ig-checklist { width: min(100%, 30rem); }
}


/* hero — tighten the centred column on tablet/mobile */
@media (max-width: 880px) {
  .hero { padding-block: clamp(2.5rem, 7vw, 4rem); }
  .hero__inner { min-height: 0; }
}
