/* Æmilia Aesthetics — site styles
   Palette, type and layout tokens first; components below; breakpoints last. */

:root {
  /* Ground and surfaces */
  --pearl: #FCF9F8;
  --shell: #F6ECEA;
  --blush: #F3E2DE;
  --white: #FFFFFF;

  /* Text */
  --ink: #2E2526;
  --body: #5A4C4C;
  --muted: #6B5A59;

  /* Accent */
  --rose: #8C5A55;
  --rose-dark: #6E423E;
  --rose-deep: #7A4B46;
  --gold: #C9A196;

  /* Rules */
  --line: #E7D6D2;
  --line-shell: #E3C9C4;
  --line-soft: #EFE2DF;

  /* On the rose band */
  --on-rose: #F6E9E7;

  /* Footer */
  --footer-bg: #2E2526;
  --footer-muted: #C4B4B2;
  --footer-link: #E8DCDA;
  --footer-rule: #4A3D3D;

  /* Logo */
  --wordmark: #23251F;
  --logo-grey: #6B665C;
  --logo-green: #4A5A45;
  --logo-green-light: #A9B79B;

  /* Type */
  --display: 'Bodoni Moda', 'Bodoni MT', Didot, Georgia, serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Avenir Next', Avenir, 'Helvetica Neue', sans-serif;
  --mono-caps: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(20px, 6vw, 100px);
  --section: clamp(56px, 8vw, 124px);
  --maxw: 1280px;
}

/* ---------- Reset ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p, figure, blockquote, ul { margin: 0; }
ul { list-style: none; padding: 0; }

a { color: var(--rose); }
a:hover { color: var(--rose-dark); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
}
.skip:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- Layout ---------- */

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

section { padding-block: var(--section); }
.band { background: var(--shell); }

/* ---------- Type ---------- */

.eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose);
}

h1, .h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 1.6rem + 3.9vw, 4.125rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.hero h1 { font-size: clamp(2.6rem, 1.5rem + 4.6vw, 4.875rem); }

h2, .h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 1.35rem + 2.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.008em;
  text-wrap: balance;
}

.h2-sm { font-size: clamp(1.75rem, 1.35rem + 1.7vw, 2.375rem); }

.lede {
  font-size: clamp(1rem, .96rem + .25vw, 1.0625rem);
  line-height: 1.85;
  color: var(--body);
  max-width: 56ch;
  text-wrap: pretty;
}

p { color: var(--body); text-wrap: pretty; }

.small { font-size: .875rem; line-height: 1.8; color: var(--body); }
.note { font-size: .8125rem; line-height: 1.75; color: var(--muted); }

.numeral {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 clamp(24px, 4vw, 38px);
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn--ghost { border-color: var(--gold); color: var(--rose); background: transparent; }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-dark); }

.btn--light { background: var(--pearl); color: var(--rose-deep); }
.btn--light:hover { background: #fff; color: var(--rose-dark); }

.btn--outline-light { border-color: var(--line-shell); color: #fff; }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

.btn--sm { min-height: 48px; padding: 0 26px; font-size: .6875rem; }

.link-underline {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rose);
  border-bottom: 1px solid var(--gold);
}
.link-underline:hover { border-bottom-color: var(--rose); }

/* ---------- Top announcement ---------- */

.topbar {
  background: var(--ink);
  color: var(--on-rose);
  text-align: center;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding-block: 11px;
}
.topbar .tag {
  font-size: .6875rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blush);
}
.topbar p { font-size: .8125rem; letter-spacing: .05em; color: var(--on-rose); margin: 0; }
.topbar a { color: var(--blush); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 40;
  background: var(--pearl);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand { display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none; }
.brand__word {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: var(--wordmark);
}
.brand__sub {
  font-family: var(--mono-caps);
  font-size: .5rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--logo-grey);
}
.brand__rule {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono-caps);
  font-size: .5625rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--logo-green);
}
.brand__rule::before, .brand__rule::after {
  content: ""; width: 24px; height: 1px; background: var(--logo-green); flex: none;
}

.nav ul { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav a {
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--rose); }
.nav a[aria-current="page"] { color: var(--rose); border-bottom-color: var(--rose); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: -10px;
  background: none; border: none; cursor: pointer; color: var(--ink);
}
.menu-toggle svg { display: block; }

.book-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-right: -10px;
  color: var(--rose);
  text-decoration: none;
}

/* ---------- Hero ---------- */

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}
.hero__copy { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px); align-items: flex-start; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.framed { position: relative; }
.framed::after {
  content: "";
  position: absolute;
  inset: 34px -34px -34px 34px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.framed--left::after { inset: 34px 34px -34px -34px; }
.framed img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 470 / 580;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid var(--line);
}

/* ---------- Trust strip ---------- */

.trust { background: var(--shell); padding-block: clamp(36px, 4vw, 44px); }
.trust ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.trust li {
  display: flex; flex-direction: column; gap: 12px;
  padding-inline: 32px;
  border-left: 1px solid var(--line);
}
.trust li:first-child { padding-left: 0; border-left: none; }
.trust li:last-child { padding-right: 0; }
.trust h3 { font-size: .9375rem; font-weight: 400; letter-spacing: .02em; color: var(--ink); }
.trust p { font-size: .8125rem; line-height: 1.7; }
.trust svg { color: var(--rose); }

/* ---------- Two-column intro ---------- */

.split .wrap {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}
.split--reverse .wrap { grid-template-columns: minmax(0, 1fr) 450px; }
.split__copy { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 28px); align-items: flex-start; }
.split img {
  width: 100%;
  aspect-ratio: 440 / 520;
  object-fit: cover;
  object-position: center 28%;
  border: 1px solid var(--line);
}

/* ---------- Page heads ---------- */

.page-head .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
}
.page-head--simple .wrap { grid-template-columns: minmax(0, 1fr); }
.page-head__copy { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 26px); align-items: flex-start; }

/* ---------- Story columns ---------- */

.story .wrap { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); }
.story__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
.story__cols div { display: flex; flex-direction: column; gap: 20px; }
.story p { font-size: 1rem; line-height: 1.9; }

.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.375rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--rose);
  max-width: 40ch;
}

/* ---------- Card grid ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 60px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head > div { display: flex; flex-direction: column; gap: 20px; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 34px 30px 36px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--gold); }
.card--accent { background: var(--shell); border-color: var(--line-shell); }
.card h3 { font-family: var(--serif); font-size: 1.6875rem; font-weight: 400; line-height: 1.2; color: var(--ink); }
.card p { font-size: .875rem; line-height: 1.8; }
.card .more {
  margin-top: auto; padding-top: 14px;
  font-size: .6875rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose);
}
.badge {
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--rose);
  color: #fff;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---------- PRP feature ---------- */

.feature .wrap { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: clamp(36px, 7vw, 88px); }
.feature__copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.feature__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.panel { display: flex; flex-direction: column; gap: 14px; padding: 34px 32px; background: var(--pearl); border: 1px solid var(--line); }
.panel h3 { font-family: var(--serif); font-size: 1.5625rem; font-weight: 400; color: var(--ink); }
.panel p { font-size: .875rem; line-height: 1.8; }
.panel--wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 28px; padding: 28px 32px; }
.panel--wide .numeral { font-size: 2.5rem; font-weight: 300; line-height: 1; }

/* ---------- Numbered standards ---------- */

.standards .wrap { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: clamp(36px, 7vw, 88px); }
.standards__intro { display: flex; flex-direction: column; gap: 20px; }
.standards ol { list-style: none; margin: 0; padding: 0; }
.standards li { display: flex; gap: clamp(18px, 2.5vw, 32px); padding-block: 28px; border-top: 1px solid var(--line); }
.standards li:last-child { border-bottom: 1px solid var(--line); }
.standards .numeral { flex: none; width: 42px; font-size: 1.375rem; }
.standards h3 { font-size: 1.0625rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.standards p { font-size: .875rem; line-height: 1.8; }

/* ---------- Quotes ---------- */

.quotes__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.quote {
  display: flex; flex-direction: column; gap: 22px;
  padding: 38px 34px;
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.quote .mark { font-family: var(--serif); font-size: 2.75rem; line-height: .6; color: var(--blush); }
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.3125rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}
.quote figcaption {
  margin-top: auto;
  font-size: .75rem; font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Treatment menu ---------- */

.menu-group .wrap { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(32px, 6vw, 72px); }
.menu-group { border-top: 1px solid var(--line-soft); padding-block: clamp(44px, 5vw, 68px); }
.menu-group--accent { background: var(--shell); border-top-color: var(--line-shell); }
.menu-group__head { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.menu-group__head .numeral { font-size: 1.375rem; }
.menu-group__head p { font-size: .875rem; line-height: 1.8; }

.menu-list li {
  display: flex; align-items: flex-start; gap: clamp(16px, 3vw, 32px);
  padding-block: 24px;
  border-top: 1px solid var(--line);
}
.menu-list li:last-child { border-bottom: 1px solid var(--line); }
.menu-group--accent .menu-list li { border-color: var(--line-shell); }
.menu-list .item { flex: 1 1 auto; display: flex; flex-direction: column; gap: 7px; }
.menu-list h3 { font-size: 1.0625rem; font-weight: 400; color: var(--ink); }
.menu-list p { font-size: .875rem; line-height: 1.75; }
.menu-list .book {
  flex: none;
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: .6875rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose); text-decoration: none;
}
.menu-list .book:hover { color: var(--rose-dark); }

.pricebox {
  display: flex; flex-direction: column; gap: 18px;
  padding: 30px 28px;
  background: var(--shell);
  border: 1px solid var(--line-shell);
}
.pricebox h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 32px); }
.steps li { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 1px solid var(--gold); }
.steps .numeral { font-size: 2.125rem; font-weight: 300; line-height: 1; }
.steps h3 { font-size: 1.0625rem; font-weight: 400; color: var(--ink); }
.steps p { font-size: .875rem; line-height: 1.8; }

/* ---------- Credentials ---------- */

.creds { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.cred { display: flex; flex-direction: column; gap: 12px; padding: 30px 26px; background: var(--pearl); border: 1px solid var(--line); }
.cred .eyebrow { font-size: .6875rem; letter-spacing: .2em; }
.cred h3 { font-size: 1rem; font-weight: 400; line-height: 1.5; color: var(--ink); }
.cred p { font-size: .8125rem; line-height: 1.75; }

/* ---------- Booking / contact ---------- */

.booking { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: start; }
.panel-card { display: flex; flex-direction: column; gap: 26px; padding: clamp(28px, 3vw, 44px) clamp(24px, 3vw, 40px); }
.panel-card--shell { background: var(--shell); border: 1px solid var(--line-shell); }
.panel-card--white { background: var(--white); border: 1px solid var(--line-soft); }

.steps-inline { display: flex; flex-direction: column; gap: 18px; padding-block: 22px; border-top: 1px solid var(--line-shell); border-bottom: 1px solid var(--line-shell); }
.steps-inline li { display: flex; gap: 18px; }
.steps-inline .numeral { flex: none; width: 22px; font-size: 1.125rem; }
.steps-inline p { font-size: .875rem; line-height: 1.75; }

.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: .6875rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
}
.field textarea { min-height: 120px; line-height: 1.7; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); outline: none; box-shadow: 0 0 0 2px rgba(140, 90, 85, .18); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

button.btn { font-family: inherit; cursor: pointer; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #443839; color: #fff; }

.details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.details > div { display: flex; flex-direction: column; gap: 12px; padding-inline: clamp(24px, 3vw, 44px); border-left: 1px solid var(--line-shell); }
.details > div:first-child { padding-left: 0; border-left: none; }
.details > div:last-child { padding-right: 0; }
.details h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); }
.details p { font-size: .9375rem; line-height: 1.85; color: var(--ink); }
.details a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-shell); }
.details a:hover { color: var(--rose); border-bottom-color: var(--rose); }

/* ---------- FAQ ---------- */

.faq .wrap { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(32px, 6vw, 72px); }
.faq__list li { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(16px, 3vw, 40px); padding-block: 26px; border-top: 1px solid var(--line); }
.faq__list li:last-child { border-bottom: 1px solid var(--line); }
.faq__list h3 { font-size: 1.0625rem; font-weight: 400; line-height: 1.5; color: var(--ink); }
.faq__list p { font-size: .875rem; line-height: 1.85; }
.faq__list p + p { margin-top: 12px; }

/* ---------- Long-form / legal pages ---------- */

.prose { max-width: 72ch; display: flex; flex-direction: column; gap: 20px; }
.prose > h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  line-height: 1.2;
  margin-top: clamp(20px, 2.5vw, 34px);
}
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.0625rem; font-weight: 400; color: var(--ink); }
.prose p, .prose li { font-size: 1rem; line-height: 1.85; color: var(--body); }
.prose ul { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; list-style: disc; }
.prose ul li::marker { color: var(--gold); }
.prose h3 + p { margin-top: -8px; }
.prose a { color: var(--rose); }

.draft-note {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(20px, 2.5vw, 26px) clamp(20px, 2.5vw, 28px);
  background: var(--shell);
  border: 1px solid var(--line-shell);
}
.draft-note p { font-size: .875rem; line-height: 1.8; }

.meta-line { font-size: .8125rem; letter-spacing: .04em; color: var(--muted); }

.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { font-size: .75rem; color: var(--footer-muted); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

/* ---------- CTA band ---------- */

.cta { background: var(--rose); text-align: center; }
.cta .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta h2 { color: #fff; max-width: 20ch; }
.cta p { color: var(--on-rose); max-width: 52ch; }
.cta .eyebrow { color: var(--on-rose); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--footer-bg); padding-block: clamp(48px, 6vw, 76px) 44px; }
.site-footer .wrap { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 48px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand { align-items: flex-start; }
.footer-brand .brand__word { color: var(--pearl); font-size: 2rem; }
.footer-brand .brand__sub { color: var(--footer-muted); }
.footer-brand .brand__rule { color: var(--logo-green-light); }
.footer-brand .brand__rule::before { background: var(--logo-green-light); }
.footer-brand .brand__rule::after { display: none; }
.footer-brand p { font-size: .875rem; line-height: 1.8; color: var(--footer-muted); max-width: 30ch; }
.footer-col h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); margin-bottom: 14px; }
.footer-col li + li { margin-top: 12px; }
.footer-col a { font-size: .875rem; color: var(--footer-link); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p, .footer-col address {
  font-size: .875rem; line-height: 1.75; color: var(--footer-muted); font-style: normal;
}
.footer-col address + p { margin-top: 12px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 32px;
  padding-top: 28px; border-top: 1px solid var(--footer-rule);
}
.footer-bottom p, .footer-bottom span { font-size: .75rem; color: var(--footer-muted); }

/* ---------- Mobile booking bar ---------- */

.bookbar { display: none; }

/* ---------- Breakpoints ---------- */

@media (max-width: 1080px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr) 40%; }
  .split .wrap { grid-template-columns: 38% minmax(0, 1fr); }
  .split--reverse .wrap { grid-template-columns: minmax(0, 1fr) 38%; }
  .feature .wrap { grid-template-columns: 34% minmax(0, 1fr); }
  .standards .wrap { grid-template-columns: 32% minmax(0, 1fr); }
  .menu-group .wrap, .faq .wrap, .story .wrap { grid-template-columns: 34% minmax(0, 1fr); }
  .quotes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  /* Header becomes a mobile bar */
  .site-header .wrap { min-height: 76px; }
  .menu-toggle { display: inline-flex; }
  .brand__word { font-size: 1.625rem; }
  .brand__sub { font-size: .4375rem; }
  .brand__rule { font-size: .5rem; letter-spacing: .2em; gap: 7px; }
  .brand__rule::before, .brand__rule::after { width: 14px; }

  .site-header > .wrap > .btn { display: none; }
  .book-icon { display: inline-flex; }

  .nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--pearl);
    border-bottom: 1px solid var(--line-soft);
    display: none;
  }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 20px; }
  .nav li { border-top: 1px solid var(--line-soft); }
  .nav a { display: block; padding-block: 16px; font-size: .875rem; border-bottom: none; }
  .nav a[aria-current="page"] { border-bottom: none; }

  /* Everything stacks */
  .hero .wrap,
  .split .wrap,
  .split--reverse .wrap,
  .feature .wrap,
  .standards .wrap,
  .menu-group .wrap,
  .faq .wrap,
  .story .wrap,
  .page-head .wrap { grid-template-columns: minmax(0, 1fr); }
  .page-head .wrap { align-items: start; }
  .story__cols { grid-template-columns: minmax(0, 1fr); }

  .hero__figure, .split img { order: 2; }
  .framed::after { display: none; }
  .framed img { aspect-ratio: 4 / 5; }
  .split img { aspect-ratio: 4 / 5; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .trust ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .trust li { padding-inline: 0; border-left: none; }

  .cards { grid-template-columns: minmax(0, 1fr); }
  .feature__grid { grid-template-columns: minmax(0, 1fr); }
  .panel--wide { grid-column: span 1; }
  .quotes__grid { grid-template-columns: minmax(0, 1fr); }
  .booking { grid-template-columns: minmax(0, 1fr); }
  .details { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .details > div { padding-inline: 0; border-left: none; padding-top: 24px; border-top: 1px solid var(--line-shell); }
  .details > div:first-child { padding-top: 0; border-top: none; }
  .faq__list li { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Sticky booking bar */
  body { padding-bottom: 76px; }
  .bookbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px clamp(14px, 4vw, 20px);
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--pearl);
    border-top: 1px solid var(--line);
  }
  .bookbar p { flex: none; font-size: .75rem; line-height: 1.4; color: var(--body); margin: 0; }
  .bookbar .btn { flex: 1 1 auto; min-height: 48px; padding-inline: 16px; }
}

@media (max-width: 560px) {
  .trust ul { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .creds { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .menu-list li { flex-direction: column; gap: 10px; }
  .menu-list .book { min-height: 40px; }
  .panel--wide { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media print {
  .topbar, .site-header, .bookbar, .cta { display: none; }
  body { padding-bottom: 0; }
}

/* ── enquiry form: spam trap and inline status ───────────────────────────── */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 2px;
  font-size: .875rem;
  line-height: 1.7;
}

.form-status--ok {
  background: var(--tint, #f3f0ea);
  border: 1px solid var(--line-soft);
  color: var(--ink, #2b2b28);
}

.form-status--error {
  background: #fbf1ef;
  border: 1px solid #e3c9c4;
  color: #7a3b31;
}
