/* ============================================================
   REJUVENATE — main site styles
   Palette & type taken verbatim from brand_board.txt.
   Light backgrounds use --sand / dark use --espresso: tints of
   the brand cream / espresso for large fields (disclosed).
   ============================================================ */

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

/* Kelvinch must be self-hosted — drop the file at assets/fonts/Kelvinch.woff2
   and it upgrades automatically. Until then the brand-board fallback
   (Cormorant Garamond) renders. */
@font-face {
  font-family: "Kelvinch";
  src: url("assets/fonts/Kelvinch.woff2") format("woff2"),
       url("assets/fonts/Kelvinch.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ── Brand palette (exact hex from brand_board.txt) ── */
  --cream:    #E3D7C9;
  --taupe:    #AD9D8E;
  --gold:     #BE955A;
  --sage:     #858779;
  --charcoal: #252420;
  --espresso: #3A1B14;
  --burgundy: #430F11;

  /* ── Derived neutrals (tints of the brand cream/espresso for
        large calm fields — not new brand colours) ── */
  --sand:      #F5F0E8;  /* light warm background */
  --sand-deep: #EBE2D5;  /* slightly deeper sand for cards / bands */

  /* ── Semantic tokens ── */
  --bg:            var(--sand);
  --ink:           var(--espresso);
  --ink-soft:      #5c463c;      /* espresso lightened for body copy */
  --line:          rgba(58, 27, 20, 0.14);

  --font-display: "Kelvinch", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Montserrat", Arial, sans-serif;

  --wrap:  72rem;   /* max content width */
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -24px rgba(37, 36, 32, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(37, 36, 32, 0.4);

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem; /* clear the sticky header on anchor jumps */
  overscroll-behavior: none;  /* no rubber-band bounce / scroll-chaining */
  scrollbar-width: none;      /* hide the side scrollbar (Firefox) */
  background-color: var(--charcoal);  /* canvas below the footer matches the footer */
}
/* Hide the native side scrollbar (WebKit/Chromium) — a scroll-progress bar
   under the navbar shows position instead */
html::-webkit-scrollbar { width: 0; height: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior: none;  /* no rubber-band bounce / scroll-chaining */
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* ── Reusable layout ── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section--tight { padding-block: clamp(3.5rem, 7vw, 5.5rem); }

/* Dark section variant */
.section--dark {
  background: #1E080A;
  color: var(--cream);
}
.section--charcoal {
  background: var(--charcoal);
  color: var(--cream);
}

/* ── Shared type ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.section--dark .display,
.section--charcoal .display { color: var(--cream); }

h1.display { font-size: clamp(2.6rem, 7vw, 4.75rem); }
h2.display { font-size: clamp(2rem, 5vw, 3.25rem); }
h3.display { font-size: clamp(1.5rem, 3vw, 2rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  max-width: 42ch;
}

.rule {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.section--dark .rule,
.section--charcoal .rule { color: var(--gold); }
.rule::before,
.rule::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold);
  color: #2c1a0d;
}
.btn--primary:hover { background: #cba368; }

.btn--dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn--dark:hover { background: var(--burgundy); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.section--dark .btn--ghost,
.section--charcoal .btn--ghost { color: var(--cream); }
.btn--ghost:hover { background: rgba(190, 149, 90, 0.14); }

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

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.1rem, 3vw, 2rem);
  background: rgba(245, 240, 232, 0);
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: var(--sand);            /* fully opaque when solid */
  box-shadow: 0 1px 0 var(--line), var(--shadow-soft);
  padding-block: 0.7rem;
}

/* Scroll-progress bar attached to the bottom edge of the navbar */
.scroll-progress {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(58, 27, 20, 0.10);
  overflow: hidden;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: #3A1B14;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Logo: full REJUVENATE wordmark at the top, shrinks/cross-fades to the
   R monogram once the header turns solid on scroll. */
.brand {
  position: relative;
  display: block;
  height: 1.7rem;
  width: 13.5rem;                 /* full wordmark width */
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
  transition: width 0.45s var(--ease);
}
.site-header.is-scrolled .brand { width: 1.9rem; }   /* collapses to the R */
.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  transition: opacity 0.4s var(--ease);
}
.brand__full { height: 1.05rem; opacity: 1; }
.brand__mark { height: 1.6rem; opacity: 0; }
.site-header.is-scrolled .brand__full { opacity: 0; }
.site-header.is-scrolled .brand__mark { opacity: 1; }
/* Lighten whichever logo shows over the dark hero (transparent header) */
.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1) sepia(0.25) saturate(1.4) hue-rotate(-6deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.25s var(--ease);
}
.site-header:not(.is-scrolled) .nav a:not(.btn) { color: var(--cream); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:not(.btn):hover::after { width: 100%; }
/* Compact size for the nav Book Now button */
.nav .btn { padding: 0.6rem 1.5rem; font-size: 0.68rem; }
/* Book Now (.btn--dark) keeps its own cream text when the header is solid;
   only the transparent-over-hero state flips it to a light pill. */
.site-header:not(.is-scrolled) .nav .btn--dark { background: var(--cream); color: var(--espresso); }
.nav a.is-active:not(.btn) { color: var(--gold); }
.nav a.is-active:not(.btn)::after { width: 100%; }
.site-header:not(.is-scrolled) .nav a.is-active:not(.btn) { color: var(--gold); }

/* Mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background-color 0.3s;
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--cream); }

@media (max-width: 860px) {
  /* Boxed toggle button that morphs into an X (like Jana) */
  .nav-toggle {
    display: flex;
    border: 1.5px solid rgba(58, 27, 20, 0.25);
    border-radius: 12px;
  }
  .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(227, 215, 201, 0.5); }

  /* Floating rounded card that drops from the top-right, below the navbar */
  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: clamp(1.1rem, 3vw, 2rem);
    left: auto;
    width: min(68vw, 15.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.6rem;
    background: #fbf8f2;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 26px 60px -22px rgba(37, 36, 32, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav a:not(.btn),
  .site-header:not(.is-scrolled) .nav a:not(.btn) {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav a:not(.btn)::after { display: none; }
  .nav a:not(.btn):hover { background: rgba(190, 149, 90, 0.12); }
  /* Current page shown as a filled pill (like Jana's active item) */
  .nav a.is-active:not(.btn),
  .site-header:not(.is-scrolled) .nav a.is-active:not(.btn) {
    background: rgba(190, 149, 90, 0.22);
    color: var(--burgundy);
    font-weight: 500;
  }
  .nav .btn { width: 100%; margin-top: 0.45rem; }
  .nav .btn--dark { background: var(--espresso); color: var(--cream); }
  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  /* hamburger -> X (colour follows the navbar state so it stays visible) */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(100lvh + env(safe-area-inset-bottom, 0px));  /* cover into the bottom safe area too */
  display: flex;
  align-items: center;
  padding-block: 7rem 6.5rem;   /* bottom clears the value strip */
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero::before { /* image layer, warmed so clinical blue reads spa-warm */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/landing_background2.jpg");
  background-size: cover;
  background-position: center 30%;
  background-color: var(--espresso);
  background-blend-mode: multiply;
  filter: saturate(0.3) brightness(0.85) sepia(0.1);
  transform: scale(1.04);
}
.hero::after { /* warm gradient scrim for legibility */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(30,8,10,0.9) 0%, rgba(30,8,10,0.76) 45%, rgba(30,8,10,0.54) 100%),
    linear-gradient(to top, rgba(30,8,10,0.86), rgba(30,8,10,0) 45%);
}
.hero .wrap { position: relative; }
.hero__inner { max-width: 40rem; }
.hero .display { color: var(--cream); }        /* over dark hero */
.hero .btn--ghost { color: var(--cream); }
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero__logo {                                   /* Rejuvenate wordmark, lightened to cream */
  width: clamp(11rem, 26vw, 15rem);
  height: auto;
  margin-bottom: 1.85rem;
  filter: brightness(0) invert(1) sepia(0.22) saturate(1.3) hue-rotate(-6deg);
  opacity: 0.95;
}
.hero h1 {
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(227, 215, 201, 0.9);
  max-width: 36ch;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
/* ============================================================
   Intro / marquee-ish values strip
   ============================================================ */
.strip {                          /* overlays the bottom of the hero image */
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: transparent;
  color: var(--cream);
  border-top: 1px solid rgba(190,149,90,0.4);   /* gold divider line */
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3.5rem);
  padding: 1.25rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
}
.strip span {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
}
.strip span b { color: var(--gold); font-weight: 500; }

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) sepia(0.12);
}
.about__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,27,20,0.28), rgba(58,27,20,0) 55%);
}
.about__body .eyebrow { margin-bottom: 1.25rem; }
.about__body h2 { margin-bottom: 1.5rem; }
.about__body p + p { margin-top: 1.1rem; }
.about__sign {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__sign img { height: 3.25rem; width: auto; opacity: 0.85; }
.about__sign span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 3 / 2; max-height: 30rem; }
}

/* ============================================================
   Services
   ============================================================ */
.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head p { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.service {
  background: #fff;
  background: linear-gradient(180deg, #fffdf9, var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(190,149,90,0.5);
}
.service__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.service p { font-size: 0.95rem; margin-bottom: 1.1rem; }
.service ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
}
.service li {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage);
  position: relative;
  padding-left: 0.85rem;
}
.service li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* Price menu (Services page) */
.menu { max-width: 50rem; margin-inline: auto; }
.menu-group + .menu-group { margin-top: clamp(2.5rem, 5vw, 3.75rem); }
.menu-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  line-height: 1.1;
  padding-bottom: 0.9rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.4rem 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.4;
}
.menu-item__dur {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}
.menu-item__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--burgundy);
  white-space: nowrap;
}

/* New UAE Dirham symbol, rendered from an SVG mask so it inherits the
   surrounding text colour (currentColor) and scales with the font size.
   Swap /assets/aed.svg for the official glyph to update it everywhere. */
.aed {
  display: inline-block;
  width: 0.92em;   /* official glyph aspect ratio is 1000 x 870 */
  height: 0.8em;
  margin-right: 0.16em;
  vertical-align: -0.06em;
  background-color: currentColor;
  -webkit-mask: url("/assets/aed.svg") no-repeat center / contain;
          mask: url("/assets/aed.svg") no-repeat center / contain;
}

/* ============================================================
   Feature / why-us band (dark)
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
}
.why__item {
  text-align: center;
  padding-inline: 0.5rem;
}
.why__item .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.why__item h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.why__item p { font-size: 0.9rem; color: var(--taupe); }
@media (max-width: 720px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Booking CTA band
   ============================================================ */
.cta-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(130% 150% at 50% 130%, rgba(190,149,90,0.32), transparent 62%),
    var(--sand-deep);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.cta-band .display { color: var(--ink); }        /* visible dark heading on the light band */
.cta-band .rule { color: var(--burgundy); }
.cta-band h2 { margin-bottom: 1.25rem; }
.cta-band p { max-width: 42ch; margin: 0 auto 2.25rem; color: var(--ink-soft); }
.cta-band .btn--primary { background: var(--espresso); color: var(--cream); }
.cta-band .btn--primary:hover { background: var(--burgundy); }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact__info h2 { margin-bottom: 1.5rem; }
.contact__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list .ic {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}
.contact__list .ic svg { width: 1.1rem; height: 1.1rem; }
.contact__list .k {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.15rem;
}
.contact__list .v { color: var(--ink); font-weight: 400; }
.contact__list a.v { text-decoration: none; transition: color 0.2s; }
.contact__list a.v:hover { color: var(--gold); }

.contact__socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.contact__socials a {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.contact__socials a:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); transform: translateY(-2px); }
.contact__socials svg { width: 1.2rem; height: 1.2rem; }

/* Contact form */
.form {
  background: linear-gradient(180deg, #fffdf9, var(--sand));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190,149,90,0.18);
}
.form .btn { width: 100%; margin-top: 0.5rem; }
.form__note { font-size: 0.8rem; color: var(--sage); margin-top: 1rem; text-align: center; }
@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form .row { grid-template-columns: 1fr; }
}

/* Map */
.map {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  line-height: 0;
}
.map iframe { width: 100%; height: 380px; border: 0; filter: saturate(0.85) sepia(0.06); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--taupe);
  padding-block: clamp(2.25rem, 4vw, 3rem) 1.2rem;
  padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px)); /* fill the bottom safe area with the footer colour */
}
.footer__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1.35fr auto;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(190,149,90,0.18);
}
.footer__brand img { height: 1.5rem; width: auto; filter: brightness(0) invert(1) sepia(0.3) saturate(1.3) hue-rotate(-6deg); opacity: 0.9; margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.88rem; max-width: 32ch; margin-bottom: 1rem; }
.footer__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(190,149,90,0.55);
  border-radius: 999px;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.footer__cta:hover { background: var(--gold); border-color: var(--gold); color: #2c1a0d; }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.footer__col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer__col a { text-decoration: none; color: var(--taupe); font-size: 0.9rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--cream); }

/* Contact details with leading icons */
.footer__col ul.footer__contact { gap: 0.7rem; }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; }
.footer__contact .fi { color: var(--gold); flex-shrink: 0; line-height: 0; margin-top: 0.15rem; }
.footer__contact .fi svg { width: 1rem; height: 1rem; display: block; }

/* Follow-us circular social buttons */
.footer__socials { display: flex; gap: 0.6rem; }
.footer__socials a {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(190,149,90,0.14);
  color: var(--gold);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__socials a:hover { background: var(--gold); color: #2c1a0d; transform: translateY(-2px); }
.footer__socials svg { width: 1.15rem; height: 1.15rem; }

.footer__bottom {
  padding-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--sage);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================================
   HOME — editorial components (distinct from interior pages)
   ============================================================ */

/* Brand statement / manifesto */
.manifesto { text-align: center; background: var(--sand); }
.manifesto .wrap { max-width: 54rem; }
.manifesto .eyebrow { margin-bottom: 2rem; }
.manifesto .statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.manifesto .statement em { color: var(--gold); font-style: italic; }
.manifesto .monogram {
  width: 2.5rem;
  height: auto;
  margin: 2.5rem auto 0;
  opacity: 0.75;
}
.manifesto .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
}
.manifesto .more span { transition: transform 0.3s var(--ease); }
.manifesto .more:hover span { transform: translateX(5px); }

/* Curated treatment index (hairline list, not cards) */
.index-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}
.index-head .eyebrow { margin-bottom: 0.9rem; }
.index-head h2 { margin: 0; }
.index-head .index-viewall {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.35rem;
}
.index-head .index-viewall:hover { color: var(--gold); }

.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: auto 1fr 1.1fr auto;
  align-items: baseline;
  gap: clamp(0.85rem, 3vw, 2.5rem);
  padding: clamp(1.3rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s var(--ease), background-color 0.35s var(--ease);
}
.index-row:hover { padding-left: 0.75rem; }
.index-row .ix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--gold);
}
.index-row .name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
}
.index-row .desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sage);
}
.index-row .arrow {
  color: var(--gold);
  align-self: center;
  transition: transform 0.3s var(--ease);
}
.index-row .arrow svg { width: 1.4rem; height: 1.4rem; display: block; }
.index-row:hover .arrow { transform: translateX(6px); }
.index-row:hover .name { color: var(--burgundy); }
@media (max-width: 720px) {
  .index-row { grid-template-columns: auto 1fr auto; }
  .index-row .desc { display: none; }
}

/* Mood band — atmospheric image moment carrying the booking invite */
.mood {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
  padding-block: clamp(6rem, 15vw, 11rem);
}
.mood::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: url("/assets/landing_background2.jpg");
  background-size: cover;
  background-position: center 35%;
  background-color: var(--espresso);
  background-blend-mode: multiply;
  filter: saturate(0.68) brightness(0.85) sepia(0.3);
  transform: scale(1.04);
}
.mood::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 130% at 50% 50%, rgba(30,8,10,0.55), rgba(30,8,10,0.82));
}
.mood .eyebrow { color: var(--gold); }
.mood .line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.25;
  color: var(--cream);
  max-width: 26ch;
  text-wrap: balance;
  margin: 1.5rem auto 2.5rem;
}

/* ============================================================
   Booking page
   ============================================================ */
.page-hero {
  padding-block: clamp(8rem, 14vw, 11rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(190,149,90,0.16), transparent 55%),
    #1E080A;
  color: var(--cream);
}
.page-hero .display { color: var(--cream); }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { max-width: 46ch; margin-inline: auto; color: var(--taupe); }

.booking-wrap {
  max-width: 60rem;
  margin: clamp(-3rem, -5vw, -4rem) auto 0;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.booking-card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2.75rem);
}
#bookapp-reservation-widget { min-height: 320px; }
.booking-fallback {
  text-align: center;
  color: var(--sage);
  font-size: 0.9rem;
  padding: 2rem 1rem;
}
.booking-fallback a { color: var(--gold); }
.booking-help {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 40rem;
  color: var(--ink-soft);
}
.booking-help a { color: var(--burgundy); font-weight: 500; }

/* Booking: existing vs new customer choice */
.booking-choice { text-align: center; padding: clamp(0.25rem, 2vw, 1rem) 0; }
.booking-choice h2 { margin-bottom: 0.5rem; }
.booking-choice > p {
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  max-width: 40rem;
  margin-inline: auto;
}
.choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.choice-card:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); transform: translateY(-2px); }
.choice-card:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
.choice-card__title { font-family: var(--font-display); font-size: 1.3rem; color: var(--espresso); transition: color 0.25s; }
.choice-card__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; transition: color 0.25s; }
.choice-card:hover .choice-card__title { color: var(--cream); }
.choice-card:hover .choice-card__desc { color: rgba(227, 215, 201, 0.85); }
/* Keep both cards side by side on phones — just shrink them to fit */
@media (max-width: 560px) {
  .choice-grid { gap: 0.6rem; }
  .choice-card { padding: 0.95rem 0.8rem; }
  .choice-card__title { font-size: 1.05rem; }
  .choice-card__desc { font-size: 0.78rem; line-height: 1.4; }
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font: inherit;
  font-weight: 500;
  color: var(--burgundy);
  cursor: pointer;
  text-decoration: none;
}
.booking-back:hover { text-decoration: underline; }
