/* ============================================================
   POLISHED BEAUTY LONDON — Global Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --sage:         #8FA883;
  --sage-light:   #b0c8a8;
  --sage-pale:    #e8f0e5;
  --warm-white:   #F7F7F5;
  --charcoal:     #2B2B2B;
  --soft-grey:    #6F6F6F;
  --gold:         #C6A86B;
  --stone:        #EDE6DC;
  --stone-mid:    #E0D8CE;
  --taupe:        #D8CEBF;
  --white:        #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', -apple-system, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-soft:  0 2px 20px rgba(43,43,43,0.06);
  --shadow-card:  0 4px 32px rgba(43,43,43,0.08);
  --shadow-hover: 0 8px 40px rgba(43,43,43,0.12);

  --transition:   all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;

  --max-w:        1200px;
  --max-w-narrow: 720px;
  --max-w-editorial: 640px;

  --section-pad:  96px 24px;
  --section-pad-sm: 64px 24px;
}

/* ============================================================
   Base Reset & Box Model
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft-grey); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--soft-grey);
  font-weight: 300;
}

p.lead {
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 300;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
  opacity: 0.7;
}

.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--stone);
  margin: 0;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.container--editorial {
  max-width: var(--max-w-editorial);
  margin: 0 auto;
  padding: 0 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.grid-2--text-wide { grid-template-columns: 1fr 1.27fr; }
.grid-2--text-wide-reverse { grid-template-columns: 1.27fr 1fr; }
.grid-2--img-wide { grid-template-columns: 0.77fr 1fr; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-left  { text-align: left; }
.text-center { text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: 1.5px solid var(--sage);
}
.btn-primary:hover {
  background: #7a9670;
  border-color: #7a9670;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(143,168,131,0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: var(--transition);
}
.btn-ghost:hover::after {
  background: var(--sage);
}
.btn-ghost:hover {
  color: var(--sage);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform;
  background: rgba(247, 247, 245, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(143,168,131,0.15);
  border-top: 3px solid var(--sage);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(247, 247, 245, 0.99);
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(43,43,43,0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: none;
}

.logo-text {
  display: none;
}

.logo-name {
  display: none;
}

.logo-tagline {
  display: none;
}

.logo-img {
  width: 264px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.header-logo:hover .logo-img {
  opacity: 0.82;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 91px 0 0 0;
  background: var(--warm-white);
  z-index: 999;
  padding: 40px 32px;
  border-top: 1px solid rgba(143,168,131,0.15);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
  display: block;
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--sage);
  padding-left: 8px;
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ============================================================
   Image Placeholders
   ============================================================ */
.img-placeholder {
  background: linear-gradient(145deg, #dce8d8 0%, #ccdfc6 35%, #d4e4d0 60%, #e0dcd6 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 40% 40%, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.img-placeholder::after {
  content: 'Add Your Image Here';
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.35);
  z-index: 1;
  position: relative;
}

.img-placeholder--hero {
  height: 580px;
  border-radius: var(--radius-xl);
}

.img-placeholder--medium {
  height: 420px;
}

.img-placeholder--small {
  height: 280px;
}

.img-placeholder--sq {
  aspect-ratio: 1;
}

/* ============================================================
   Hero Cinemagraph Effect
   ============================================================ */
.hero-cinemagraph {
  position: relative;
  height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(155deg, #ccdfc6 0%, #bfd6b8 20%, #c8ddc2 45%, #d6e7d2 70%, #e2ddd8 100%);
}

.hero-cinemagraph__layer1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 60% 40%, rgba(143,168,131,0.5) 0%, transparent 65%);
  animation: breathe1 8s ease-in-out infinite;
}

.hero-cinemagraph__layer2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 75% at 25% 70%, rgba(176,200,168,0.35) 0%, transparent 60%);
  animation: breathe2 11s ease-in-out infinite;
}

.hero-cinemagraph__layer3 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 50% at 85% 15%, rgba(247,247,245,0.5) 0%, transparent 55%);
  animation: breathe3 7s ease-in-out infinite;
}

.hero-cinemagraph__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grain 0.8s steps(1) infinite;
}

.hero-cinemagraph__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.4);
  z-index: 2;
}

.hero-cinemagraph__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 220px;
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  border: 1px solid rgba(143,168,131,0.3);
  animation: shapeFloat 12s ease-in-out infinite;
}

.hero-cinemagraph__shape2 {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(198,168,107,0.25);
  animation: shapeFloat 9s ease-in-out infinite reverse;
}

@keyframes breathe1 {
  0%, 100% { opacity: 0.7; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.05) translate(-2%, 1%); }
}
@keyframes breathe2 {
  0%, 100% { opacity: 0.5; transform: scale(1.03) translate(0, 0); }
  50% { opacity: 0.9; transform: scale(1) translate(1%, -1%); }
}
@keyframes breathe3 {
  0%, 100% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  60% { opacity: 1; transform: scale(1.04) translate(-1%, 2%); }
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 2%); }
  60% { transform: translate(2%, 3%); }
  70% { transform: translate(-1%, -2%); }
  80% { transform: translate(3%, -1%); }
  90% { transform: translate(-2%, 3%); }
  100% { transform: translate(0, 0); }
}
@keyframes shapeFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  33% { transform: translate(-52%, -52%) scale(1.04) rotate(2deg); }
  66% { transform: translate(-48%, -48%) scale(0.97) rotate(-1deg); }
}

/* ============================================================
   Section Backgrounds
   ============================================================ */
.bg-warm-white  { background-color: var(--warm-white); }
.bg-white        { background-color: var(--white); }
.bg-stone        { background-color: var(--warm-white); }
.bg-sage-pale    { background-color: var(--sage-pale); }
.bg-charcoal     { background-color: var(--charcoal); color: var(--warm-white); }

.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 {
  color: var(--warm-white);
}
.bg-charcoal p, .bg-charcoal .section-label {
  color: rgba(247,247,245,0.65);
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section--sm {
  padding: var(--section-pad-sm);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header h2 {
  margin-top: 8px;
}

.section-header p {
  max-width: 560px;
  margin-top: 16px;
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card--flat {
  background: var(--warm-white);
  box-shadow: none;
  border: 1px solid var(--stone);
}

.card--treatment {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(143,168,131,0.12);
  border-top: 3px solid var(--sage-pale);
  transition: var(--transition);
}

.card--treatment:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-top-color: var(--sage);
  border-color: rgba(143,168,131,0.25);
}

.card--pricing {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.card--pricing.featured {
  border-color: var(--sage);
}

.card--pricing:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin: 16px 0 4px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--soft-grey);
}

.price-benefit {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 16px 0;
}

/* ============================================================
   Treatment-Specific Styles
   ============================================================ */
.treatment-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}

.treatment-tab {
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--stone-mid);
  color: var(--soft-grey);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.treatment-tab:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.treatment-tab.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.treatment-section {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}

.treatment-section__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}

.treatment-section__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}

.treatment-section__summary {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 300;
  max-width: 640px;
}

.best-for {
  margin: 20px 0;
}

.best-for__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.best-for__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.best-for__item {
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.best-for__item::before {
  content: '·';
  font-size: 1rem;
}

.treatment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.treatment-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.treatment-card__text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.treatment-plan-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.treatment-pricing {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0 20px;
}

.treatment-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 4px 0;
}

.treatment-price-row:not(:last-child) {
  border-bottom: 1px solid var(--stone);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.price-save {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 500;
}

.treatment-timeline {
  font-size: 0.78rem;
  color: var(--soft-grey);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treatment-timeline::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Expandable treatment details */
.expandable {
  overflow: hidden;
}

.expandable-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft-grey);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
}

.expandable-toggle:hover {
  color: var(--sage);
}

.expandable-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.expandable-toggle.open .expandable-icon {
  transform: rotate(45deg);
}

.expandable-body {
  display: none;
  padding-bottom: 8px;
}

.expandable-body.open {
  display: block;
}

/* ============================================================
   Accordion
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--stone);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
  gap: 16px;
}

.accordion-trigger:hover {
  color: var(--sage);
}

.accordion-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--sage);
  font-weight: 300;
}

.accordion-trigger.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 0 20px;
}

.accordion-content.open {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Hero Sections (per-page)
   ============================================================ */
.page-hero {
  padding: 80px 0 72px;
  background: var(--warm-white);
}

.page-hero--full {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.page-hero__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-hero__eyebrow .page-hero__label {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ============================================================
   Home-specific Hero
   ============================================================ */
.home-hero {
  padding: 72px 0 80px;
  background: var(--warm-white);
  overflow: hidden;
}

.home-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.home-hero__content {
  max-width: 560px;
}

.home-hero__overline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.home-hero__overline-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Single shared accent-divider component — used by every hero (Home, About, Treatments, Membership) */
.hero-divider-line {
  width: 40px;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}

.home-hero h1 {
  margin-bottom: 24px;
}

.home-hero .lead {
  font-size: 1.1rem;
  max-width: 480px;
}

/* ============================================================
   Philosophy / CTA Sections
   ============================================================ */
.philosophy-section {
  background: var(--warm-white);
  border-top: 1px solid rgba(143,168,131,0.12);
  border-bottom: 1px solid rgba(143,168,131,0.12);
  padding: var(--section-pad);
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.final-cta-section {
  background: linear-gradient(160deg, var(--sage-pale) 0%, #daecd6 50%, var(--sage-pale) 100%);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
}

.final-cta-section h2 {
  max-width: 540px;
  margin: 0 auto 20px;
}

.final-cta-section p {
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ============================================================
   Treatments Preview (homepage)
   ============================================================ */
.treatment-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0 48px;
}

.treatment-preview-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1px solid var(--stone);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.treatment-preview-item:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.treatment-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}

.treatment-preview-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(143,168,131,0.15);
  border-top: 3px solid var(--sage-pale);
  transition: var(--transition);
}

.review-card:hover {
  border-top-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 20px;
}

.review-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
}

.review-platform {
  font-size: 0.7rem;
  color: var(--soft-grey);
  margin-top: 2px;
}

.reviews-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--soft-grey);
  font-style: italic;
}

/* ============================================================
   Location Section
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.map-placeholder {
  background: linear-gradient(145deg, #d6e5d1 0%, #ccdfc7 50%, #d8e4d4 100%);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143,168,131,0.2);
}

.map-placeholder::after {
  content: 'Google Maps Embed';
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43,43,43,0.35);
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.location-icon {
  width: 32px;
  height: 32px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: 2px;
}

.location-detail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.location-detail__value {
  font-size: 0.9rem;
  color: var(--soft-grey);
  line-height: 1.6;
}

/* ============================================================
   Membership Steps
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-family: var(--font-body);
  font-size: 2.3rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  color: rgba(143, 168, 131, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(143, 168, 131, 0.08);
  border: 1px solid rgba(143, 168, 131, 0.2);
  margin: 0 auto 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number {
  background: var(--white);
  border-color: rgba(143, 168, 131, 0.3);
  box-shadow: 0 6px 20px rgba(143, 168, 131, 0.18);
}

.step-card h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
}

/* ============================================================
   Membership Balance List
   ============================================================ */
.balance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.balance-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--charcoal);
  border: 1px solid rgba(143,168,131,0.2);
  border-left: 3px solid var(--sage-pale);
  transition: var(--transition-fast);
}

.balance-item:hover {
  border-left-color: var(--sage);
  background: var(--sage-pale);
}

.balance-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   Contact Block
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 1rem;
}

.contact-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 0.95rem;
  color: var(--soft-grey);
}

.contact-item__value a:hover {
  color: var(--sage);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 400;
  transition: var(--transition-fast);
  padding: 8px 16px;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
}

.social-link:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* ============================================================
   Opening Hours
   ============================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--stone);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--soft-grey);
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
  width: 55%;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(247,247,245,0.55);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.45);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(247,247,245,0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--warm-white);
}

.footer-contact-item {
  font-size: 0.95rem;
  color: rgba(247,247,245,0.65);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item strong {
  display: block;
  color: rgba(247,247,245,0.45);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-contact-item a:hover {
  color: var(--sage-light);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-social-link {
  font-size: 0.95rem;
  color: rgba(247,247,245,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.6;
}

.footer-social-link:hover {
  color: var(--warm-white);
  opacity: 1;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(247,247,245,0.07);
  color: rgba(247,247,245,0.65);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-row span:first-child {
  color: rgba(247,247,245,0.45);
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 64px;
  padding: 24px 32px;
  border-top: 1px solid rgba(247,247,245,0.08);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(247,247,245,0.3);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(247,247,245,0.45);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: var(--warm-white);
}

.footer-bottom-wrapper {
  border-top: 1px solid rgba(247,247,245,0.08);
  margin-top: 64px;
}

.footer-bottom-wrapper .footer-bottom {
  margin-top: 0;
  border-top: none;
}

/* ============================================================
   Signature Plans
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(143,168,131,0.15);
  border-top: 3px solid var(--sage-pale);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-card__name--compact {
  font-size: 0.95rem;
  letter-spacing: -0.015em;
}

.plan-card:hover {
  border-color: rgba(143,168,131,0.3);
  border-top-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.plan-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.plan-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
  min-height: 3.6rem;
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.plan-card__text {
  font-size: 0.875rem;
  color: var(--soft-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   Booking Section
   ============================================================ */
.booking-widget-placeholder {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 1.5px dashed rgba(143,168,131,0.4);
}

.booking-widget-placeholder h4 {
  color: var(--charcoal);
  margin-bottom: 8px;
}

.booking-widget-placeholder p {
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Breadcrumb / pill labels
   ============================================================ */
.pill-label {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px 24px; }

  .grid-2         { gap: 40px; }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-inner   { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .home-hero__inner { gap: 48px; }
  .philosophy-inner { gap: 40px; }
  .reviews-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 20px;
    --section-pad-sm: 40px 20px;
  }

  .container, .container--narrow, .container--editorial {
    padding: 0 20px;
  }

  .header-inner { padding: 0 20px; height: 74px; }
  .logo-img { width: 180px; }

  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-nav { display: none; }

  .home-hero__inner  { grid-template-columns: 1fr; gap: 40px; }
  .home-hero { padding: 48px 0 56px; }
  .hero-cinemagraph { height: 340px; }
  .img-placeholder--hero { height: 340px; }

  .grid-2          { grid-template-columns: 1fr; gap: 32px; }
  .grid-3          { grid-template-columns: 1fr; gap: 20px; }
  .grid-4          { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: 1fr; gap: 16px; }

  .location-grid   { grid-template-columns: 1fr; gap: 36px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 36px; }

  .reviews-grid    { grid-template-columns: 1fr; gap: 16px; }

  .footer-inner    {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand .logo-img { width: 220px; margin-left: -8px; margin-top: -8px; }

  .footer-bottom   { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .footer-bottom-wrapper { margin-top: 40px; }

  .treatment-category-tabs { gap: 8px; }
  .treatment-tab { padding: 8px 14px; font-size: 0.75rem; }

  .treatment-cards-grid { grid-template-columns: 1fr; }

  .plans-grid { grid-template-columns: 1fr; }

  .balance-grid { grid-template-columns: 1fr 1fr; }

  .treatment-preview-grid { grid-template-columns: 1fr 1fr; }

  .booking-widget-placeholder { padding: 32px 20px; }

  .section-header { margin-bottom: 36px; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  h5 { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .treatment-preview-grid { grid-template-columns: 1fr; }
  .balance-grid { grid-template-columns: 1fr; }
  .social-links { flex-direction: column; }
}

/* ============================================================
   SECTION LABEL — centred variant
   ============================================================ */
.section-header--center .section-label {
  justify-content: center;
}

.final-cta-section .section-label {
  justify-content: center;
}

/* ============================================================
   PALETTE POLISH — Warm White + Sage Green Refinements
   ============================================================ */

/* Home hero — clean warm white */
.home-hero {
  background: var(--warm-white);
}

/* Treatment preview items — stronger sage on hover */
.treatment-preview-item:hover .treatment-preview-dot {
  background: #6a8f5d;
  transform: scale(1.3);
  transition: all 0.2s ease;
}

.treatment-preview-dot {
  transition: all 0.2s ease;
}

/* Section dividers between treatments — removed, rely on spacing */
.treatment-section-divider {
  display: none;
}

/* Treatment tabs — soft sage border */
.treatment-category-tabs {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(143,168,131,0.15);
}

/* Treatment pricing box — sage-pale background */
.treatment-pricing {
  background: linear-gradient(135deg, var(--sage-pale) 0%, #f0f5ee 100%);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 16px 0 20px;
  border: 1px solid rgba(143,168,131,0.15);
}

/* Vitamin items — sage accent */
.vitamin-item {
  border-top: 2px solid var(--sage-pale);
  transition: var(--transition-fast);
}

.vitamin-item:hover {
  background: var(--sage-pale);
  border-top-color: var(--sage);
}

/* Membership tier featured — subtle sage gradient header */
.tier-card.featured {
  background: linear-gradient(180deg, #f0f7ee 0%, var(--white) 28%);
}

/* Tier card hover — sage outline */
.tier-card {
  transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.tier-card:hover {
  border: 1px solid #C2D5C6;
  box-shadow: 0 8px 32px rgba(143,168,131,0.12);
  transform: translateY(-2px);
}

/* Accordion trigger — sage icon */
.accordion-icon {
  color: var(--sage);
  border-color: rgba(143,168,131,0.4);
}

/* Gold rule — keep gold but add sage companion line */
.gold-rule {
  position: relative;
  margin: 24px 0;
}

/* Best-for items — slightly warmer sage */
.best-for__item {
  background: var(--sage-pale);
  color: #5d7a55;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Price save badge — stronger sage */
.price-save {
  color: #5d7a55;
  font-weight: 600;
}

/* Contact icon — sage background */
.contact-icon {
  background: var(--sage-pale);
  color: var(--sage);
}

/* Location icon — sage */
.location-icon {
  background: var(--sage-pale);
}

/* Social links — sage on hover */
.social-link:hover {
  color: var(--sage);
  border-color: var(--sage);
  background: var(--sage-pale);
}

/* Footer social — full opacity on hover */
.footer-social-link:hover {
  color: var(--warm-white);
  opacity: 1;
}

/* Footer bottom border — sage tint */
.footer-bottom-wrapper {
  border-top: 1px solid rgba(143,168,131,0.15);
}

/* Treatment card name — clean charcoal */
.treatment-card__name {
  color: var(--charcoal);
}

/* Plan card label — bolder sage */
.plan-card__label {
  color: var(--sage);
  font-weight: 600;
}

/* Consultation deposit tag — sage */
.consultation-deposit {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
}

/* Membership nudge box — sage pale */
.membership-nudge {
  background: var(--sage-pale);
  border: 1px solid rgba(143,168,131,0.2);
}

/* Featured badge — solid sage */
.featured-badge, .tier-badge {
  background: var(--sage);
}

/* Hours table — sage left accent on day column */
.hours-table td:first-child {
  color: var(--charcoal);
  font-weight: 500;
}

/* Before-item dot — sage */
.before-item::before {
  color: var(--sage);
}

/* Pill label — sage */
.pill-label {
  background: var(--sage-pale);
  color: #5d7a55;
  font-weight: 500;
}

/* Treatment timeline dot — gold stays */
.treatment-timeline::before {
  background: var(--gold);
}

/* Review stars — warm gold */
.star {
  background: var(--gold);
}

/* Hamburger lines — charcoal stays, active goes sage */
.hamburger.active span {
  background: var(--sage);
}

/* Expandable toggle icon — sage */
.expandable-icon {
  border-color: rgba(143,168,131,0.5);
  color: var(--sage);
}

/* Journey points — sage icon */
.journey-point__icon {
  color: var(--sage);
  font-size: 1rem;
}

/* Section background — reviews sits on warm stone, everything else warm white */
.reviews-section {
  background: var(--warm-white);
  border-top: 1px solid rgba(143,168,131,0.1);
  border-bottom: 1px solid rgba(143,168,131,0.1);
}

/* About page — bg-stone sections use warm white */
.section.bg-stone {
  background: var(--warm-white);
}

/* Steps grid — warm white background with sage accent numbers */
.steps-grid {
  position: relative;
}

/* Footer logo inverted & scaled up */
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  width: 280px;
  height: auto;
  margin-left: -10px;
  margin-top: -10px;
}

/* Footer col 1 — left-aligned, consistent with other columns */
.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-inner > div:first-child .footer-brand {
  display: block;
  margin: 0 0 28px;
}
.footer-inner > div:first-child .footer-social {
  align-items: flex-start;
}

/* ============================================================
   SIMPLIFICATION OVERRIDES
   — Remove visual noise, reduce competing elements
   ============================================================ */

/* Remove the line prefix from section labels — cleaner */
.section-label::before { display: none; }
.section-label {
  display: block;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

/* Simplify card borders — one consistent treatment */
.card--treatment {
  border: 1px solid rgba(143,168,131,0.1);
  border-top: none;
}
.card--treatment:hover {
  border-color: rgba(143,168,131,0.22);
}

/* Simplify plan cards */
.plan-card { border-top: none; border: 1px solid rgba(143,168,131,0.12); }
.plan-card:hover { border-color: rgba(143,168,131,0.35); }

/* Simplify balance items */
.balance-item { border-left-width: 2px; }

/* Remove pseudo-element top bar from final-cta */
.final-cta-section::before { display: none; }

/* Clean final-cta */
.final-cta-section {
  background: var(--sage-pale);
  padding: 104px 32px;
}

/* Remove grain animation from cinemagraph — too distracting */
.hero-cinemagraph__grain { display: none; }

/* ============================================================
   REAL IMAGE WRAPPERS
   ============================================================ */
.img-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: linear-gradient(145deg, #ccdfc6 0%, #bfd6b8 100%);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.img-wrap:hover img {
  transform: scale(1.06);
}

.img-wrap--hero     { height: 580px; border-radius: var(--radius-xl); }
.img-wrap--medium   { height: 420px; }
.img-wrap--tall     { height: 520px; }

/* ============================================================
   IMAGE SYSTEM — reusable families (current + future pages)
   ============================================================ */
.img-hero      { border-radius: var(--radius-xl); aspect-ratio: 3/2; }
.img-portrait  { aspect-ratio: 4/5; }
.img-landscape { aspect-ratio: 3/2; }

/* ============================================================
   LEGAL / POLICY PAGES — shared reusable system
   ============================================================ */
.legal-hero {
  background: var(--warm-white);
  padding: 96px 32px 56px;
  text-align: center;
  border-bottom: 1px solid rgba(143,168,131,0.12);
}
.legal-hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
}
.legal-hero__meta {
  font-size: 0.85rem;
  color: var(--soft-grey);
  margin-top: 16px;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 32px 100px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 48px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--soft-grey);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--soft-grey);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--stone);
  font-size: 0.85rem;
  vertical-align: top;
}
.legal-content th {
  color: var(--soft-grey);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}
.legal-content td { color: var(--charcoal); }
.legal-callout {
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
}
.legal-content a { color: var(--sage); }
.legal-content a:hover { color: var(--charcoal); }
@media (max-width: 640px) {
  .legal-hero { padding: 72px 24px 40px; }
  .legal-content { padding: 48px 24px 72px; }
  .legal-content table, .legal-content thead, .legal-content tbody, .legal-content th, .legal-content td, .legal-content tr {
    display: block;
  }
  .legal-content thead { display: none; }
  .legal-content tr { border-bottom: 1px solid var(--stone); padding: 12px 0; }
  .legal-content td { border-bottom: none; padding: 4px 0; }
  .legal-content td:first-child { font-weight: 600; color: var(--charcoal); }
}

/* Image reveal on scroll */
.img-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-reveal.visible { clip-path: inset(0 0% 0 0); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  padding: 11px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.55);
  white-space: nowrap;
}

.trust-item strong {
  color: var(--warm-white);
  font-weight: 500;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-star {
  width: 9px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(247,247,245,0.15);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-bar { gap: 16px; padding: 10px 16px; }
  .trust-sep { display: none; }
  .trust-item { font-size: 0.62rem; }
}

/* ============================================================
   FLOATING BOOKING + WHATSAPP
   ============================================================ */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-book__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(143,168,131,0.42);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease,
              background 0.25s ease,
              box-shadow 0.25s ease;
  will-change: transform, opacity;
}

.float-book__btn.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-book__btn:hover {
  background: #7a9670;
  box-shadow: 0 12px 36px rgba(143,168,131,0.5);
  transform: translateY(-2px) !important;
}

.float-whatsapp {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  text-decoration: none;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s,
              opacity 0.4s ease 0.08s,
              box-shadow 0.25s ease;
  will-change: transform, opacity;
}

.float-whatsapp.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transform: scale(1.1) translateY(-1px) !important;
}

@media (max-width: 768px) {
  .float-group { bottom: 20px; right: 16px; }
  .float-book__btn { font-size: 0.7rem; padding: 11px 18px; }
}

/* ============================================================
   STATS STRIP (homepage)
   ============================================================ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid rgba(143,168,131,0.12);
  border-bottom: 1px solid rgba(143,168,131,0.12);
  padding: 40px 32px;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-item__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-grey);
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item__number { font-size: 2rem; }
}

/* ============================================================
   LUXURY BUTTON ANIMATIONS
   ============================================================ */

/* Shimmer sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.btn-primary:hover::after { left: 145%; }

/* Click ripple */
@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

/* Magnetic wrapper */
.btn-magnetic {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ============================================================
   STAGGER ANIMATIONS
   ============================================================ */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.stagger > *:nth-child(5) { transition-delay: 0.42s; }
.stagger > *:nth-child(6) { transition-delay: 0.48s; }
.stagger > *:nth-child(7) { transition-delay: 0.54s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* Smoother fade-up overall */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }

/* ============================================================
   NAV — smooth underline expand
   ============================================================ */
.nav-links a::after {
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   TREATMENT CARDS — smooth lift only
   ============================================================ */
.card--treatment {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

/* ============================================================
   ACCORDION — smooth height transition
   ============================================================ */
.accordion-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.35s ease;
  opacity: 0;
}
.accordion-content.open {
  max-height: 600px;
  opacity: 1;
  animation: none;
}

/* ============================================================
   REVIEW CARDS — image enhanced
   ============================================================ */
.review-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-top-color 0.3s ease;
}

/* ============================================================
   MOBILE responsive for img-wrap
   ============================================================ */
@media (max-width: 768px) {
  .img-wrap--hero   { height: 340px; }
  .img-wrap--medium { height: 280px; }
  .img-wrap--tall   { height: 320px; }
}

/* ============================================================
   FOOTER — logo centred within column, SVG social icons
   ============================================================ */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   ABOUT — Experience Pillars (asymmetric floating cards)
   ============================================================ */
.experience-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.experience-pillar {
  padding: 36px 28px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.experience-pillar:nth-child(2) {
  margin-top: 0;
  border-left: 1px solid rgba(143,168,131,0.18);
  border-right: 1px solid rgba(143,168,131,0.18);
}

.experience-pillar:hover {
  transform: translateY(-4px);
}

.experience-pillar__number {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0.01em;
  color: rgba(143,168,131,0.28);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.experience-pillar__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
  min-height: 2rem;
  margin-bottom: 12px;
  display: block;
}

.experience-pillar__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--soft-grey);
  margin: 0;
}

@media (max-width: 768px) {
  .experience-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .experience-pillar:nth-child(2) {
    margin-top: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(143,168,131,0.18);
    border-bottom: 1px solid rgba(143,168,131,0.18);
  }
}

/* ============================================================
   ABOUT — Closing Welcome Section
   ============================================================ */
.closing-welcome-section {
  background: var(--sage);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-welcome-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-welcome-section h2 {
  color: var(--warm-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 600px;
  margin: 0 auto 20px;
}

.closing-welcome-section p {
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.closing-welcome-section .section-label {
  color: rgba(255,255,255,0.65);
  justify-content: center;
  margin-bottom: 20px;
}

.closing-welcome-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(247,247,245,0.35);
}
.btn-outline-white:hover {
  background: rgba(247,247,245,0.08);
  border-color: rgba(247,247,245,0.6);
  transform: translateY(-1px);
}

/* ============================================================
   MEMBERSHIP — Long-Term Results 4-col typographic grid
   ============================================================ */
.longterm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(143,168,131,0.08);
  border: 1px solid rgba(143,168,131,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}

.longterm-item {
  background: var(--warm-white);
  padding: 40px 32px;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.longterm-item:hover {
  background: #f0f7ee;
}

.longterm-item__num {
  font-family: var(--font-body);
  font-size: 2.3rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  color: rgba(143, 168, 131, 0.45);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.longterm-item__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: block;
}

.longterm-item__text {
  font-size: 0.88rem;
  color: var(--soft-grey);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .longterm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .longterm-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MEMBERSHIP — Join Today CTA (large)
   ============================================================ */
.join-cta-section {
  padding: 104px 32px;
  text-align: center;
  background: var(--warm-white);
  border-top: 1px solid rgba(143,168,131,0.12);
}

.join-cta-section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.join-cta-section p {
  max-width: 480px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
}

.btn-join {
  padding: 22px 52px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-lg);
}

/* ============================================================
   BOOK PAGE — breathing room
   ============================================================ */
.book-layout {
  gap: 80px;
}

.book-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(143,168,131,0.1);
  box-shadow: 0 2px 24px rgba(43,43,43,0.04);
}

@media (max-width: 768px) {
  .book-form-wrap { padding: 32px 24px; }
  .join-cta-section { padding: 72px 24px; }
  .closing-welcome-section { padding: 72px 24px; }
}

/* ============================================================
   FORM SYSTEM
   ------------------------------------------------------------
   Authored for the Open Day / Consultation / Membership forms.
   Built only from existing tokens, with one exception:
   --state-error is a functional colour for validation messages.
   It is deliberately desaturated to sit with the warm palette
   and is never used decoratively.
   ============================================================ */
:root {
  --state-error: #A4553F;
  --state-error-bg: #FBF1EE;
  --field-border: var(--stone-mid);
}

/* ── Form shell ─────────────────────────────────────────── */
.pbl-form-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.pbl-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid rgba(143,168,131,0.14);
  box-shadow: 0 2px 24px rgba(43,43,43,0.04);
  max-width: 720px;
  margin: 0 auto;
}

.pbl-form { display: block; }

/* ── Field groups ───────────────────────────────────────── */
.pbl-field { margin-bottom: 26px; }

.pbl-field:last-child { margin-bottom: 0; }

.pbl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pbl-row .pbl-field { margin-bottom: 26px; }

/* ── Labels ─────────────────────────────────────────────── */
.pbl-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 9px;
}

.pbl-required {
  color: var(--sage);
  margin-left: 2px;
  font-weight: 600;
}

.pbl-hint {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--soft-grey);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 5px;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ── Text inputs ────────────────────────────────────────── */
.pbl-input,
.pbl-textarea,
.pbl-select {
  width: 100%;
  font-family: var(--font-body);
  /* 1rem = 16px — never smaller, or iOS zooms the page on focus */
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--field-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  line-height: 1.5;
  transition: var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.pbl-textarea {
  min-height: 120px;
  resize: vertical;
}

.pbl-select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236F6F6F' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
  cursor: pointer;
}

.pbl-input::placeholder,
.pbl-textarea::placeholder {
  color: #A8A8A8;
  font-weight: 300;
}

.pbl-input:hover,
.pbl-textarea:hover,
.pbl-select:hover { border-color: var(--taupe); }

.pbl-input:focus,
.pbl-textarea:focus,
.pbl-select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143,168,131,0.18);
}

/* Native date control — normalise across browsers */
.pbl-input[type="date"] { min-height: 51px; }
.pbl-input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.55; }
.pbl-input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

/* ── Fieldsets — grouped questions ──────────────────────── */
.pbl-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 30px;
}

.pbl-legend {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
  padding: 0;
}

/* ── Checkboxes & radios ────────────────────────────────── */
.pbl-options { display: grid; gap: 2px; }

.pbl-options--two {
  grid-template-columns: 1fr 1fr;
  gap: 2px 20px;
}

.pbl-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /* generous vertical padding keeps the touch target ≥44px */
  padding: 11px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.5;
  transition: var(--transition-fast);
}

.pbl-option:hover { color: #5d7a55; }

.pbl-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pbl-option__mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--field-border);
  background: var(--white);
  transition: var(--transition-fast);
  position: relative;
}

/* checkbox = soft square · radio = circle */
.pbl-option--check .pbl-option__mark { border-radius: 4px; }
.pbl-option--radio .pbl-option__mark { border-radius: 50%; }

.pbl-option:hover .pbl-option__mark { border-color: var(--sage); }

.pbl-option input:checked + .pbl-option__mark {
  background: var(--sage);
  border-color: var(--sage);
}

/* tick */
.pbl-option--check input:checked + .pbl-option__mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

/* dot */
.pbl-option--radio input:checked + .pbl-option__mark::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.pbl-option input:focus-visible + .pbl-option__mark {
  box-shadow: 0 0 0 3px rgba(143,168,131,0.3);
  border-color: var(--sage);
}

/* ── Consent checkbox — sits apart from the rest ────────── */
.pbl-consent {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--stone);
}

.pbl-consent .pbl-option { align-items: flex-start; }

.pbl-consent__note {
  font-size: 0.8rem;
  color: var(--soft-grey);
  line-height: 1.65;
  margin-top: 8px;
  padding-left: 32px;
}

.pbl-consent__note a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Conditional blocks ─────────────────────────────────── */
.pbl-conditional {
  display: none;
  margin-top: 26px;
  padding: 28px 26px 8px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(143,168,131,0.14);
}

.pbl-conditional.is-open { display: block; }

.pbl-conditional--inline {
  padding: 18px 0 0;
  background: none;
  border: none;
  margin-top: 6px;
}

/* ── Validation ─────────────────────────────────────────── */
.pbl-error {
  display: none;
  font-size: 0.82rem;
  color: var(--state-error);
  margin-top: 7px;
  line-height: 1.5;
}

.pbl-error::before {
  content: '↑ ';
  font-weight: 600;
}

.pbl-field.has-error .pbl-error,
.pbl-fieldset.has-error .pbl-error { display: block; }

.pbl-field.has-error .pbl-input,
.pbl-field.has-error .pbl-textarea,
.pbl-field.has-error .pbl-select {
  border-color: var(--state-error);
  background: var(--state-error-bg);
}

.pbl-field.has-error .pbl-input:focus,
.pbl-field.has-error .pbl-textarea:focus {
  box-shadow: 0 0 0 3px rgba(164,85,63,0.15);
}

.pbl-formerror {
  display: none;
  background: var(--state-error-bg);
  border-left: 3px solid var(--state-error);
  color: var(--state-error);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 26px;
  line-height: 1.6;
}

.pbl-formerror.is-visible { display: block; }

/* ── Submit ─────────────────────────────────────────────── */
.pbl-submit-row {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--stone);
}

.pbl-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1.5px solid var(--sage);
  font-family: var(--font-body);
}

.pbl-submit[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.pbl-submit-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--soft-grey);
  margin-top: 16px;
}

/* ── Confirmation panel (replaces the form in place) ────── */
.pbl-confirm { display: none; }
.pbl-confirm.is-visible { display: block; }

.pbl-confirm__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pbl-confirm__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 18px;
}

.pbl-confirm__text {
  font-size: 1.02rem;
  color: var(--soft-grey);
  line-height: 1.8;
  margin-bottom: 14px;
}

.pbl-confirm__contact {
  font-weight: 500;
  color: var(--charcoal);
}

.pbl-confirm__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* ── £20 gift panel ─────────────────────────────────────── */
.pbl-gift {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin: 32px 0;
  text-align: center;
  border: 1px solid rgba(143,168,131,0.25);
}

.pbl-gift__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5d7a55;
  margin-bottom: 14px;
}

.pbl-gift__amount {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.pbl-gift__terms {
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}

.pbl-gift__code-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-bottom: 10px;
}

.pbl-gift__code {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--charcoal);
}

.pbl-gift__expiry {
  font-size: 0.85rem;
  color: var(--soft-grey);
  margin-top: 16px;
}

.pbl-gift-terms {
  font-size: 0.8rem;
  color: var(--soft-grey);
  line-height: 1.75;
  max-width: 520px;
  margin: 28px auto 0;
  text-align: left;
  padding-top: 22px;
  border-top: 1px solid var(--stone);
}

.pbl-gift-terms strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 600;
}

/* ── Summary of what they told us ───────────────────────── */
.pbl-summary {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin-top: 32px;
  text-align: left;
}

.pbl-summary__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft-grey);
  margin-bottom: 14px;
}

.pbl-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--stone);
}

.pbl-summary__row:last-child { border-bottom: none; }
.pbl-summary__row span:first-child { color: var(--soft-grey); flex: 0 0 auto; }
.pbl-summary__row span:last-child { color: var(--charcoal); text-align: right; }

/* ── Demo-mode notice (removed once a backend is connected) ── */
.pbl-demo-notice {
  display: none;
  background: #FBF8F1;
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #8a7440;
  line-height: 1.6;
  margin-bottom: 26px;
}

.pbl-demo-notice.is-visible { display: block; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.pbl-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: var(--white);
  border-top: 1px solid var(--stone-mid);
  box-shadow: 0 -4px 32px rgba(43,43,43,0.09);
  padding: 22px 24px;
  /* Slow, gentle entrance: fades in while sliding up. */
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.pbl-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pbl-cookie__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pbl-cookie__text {
  flex: 1 1 auto;
  font-size: 0.88rem;
  color: var(--soft-grey);
  line-height: 1.65;
}

.pbl-cookie__text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.pbl-cookie__text a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pbl-cookie__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.pbl-cookie__actions .btn { cursor: pointer; font-family: var(--font-body); }

/* Blocked third-party embed placeholder */
.pbl-blocked {
  background: var(--warm-white);
  border: 1px dashed var(--stone-mid);
  border-radius: var(--radius-md);
  padding: 56px 32px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pbl-blocked__text {
  font-size: 0.92rem;
  color: var(--soft-grey);
  max-width: 380px;
  line-height: 1.7;
}

.pbl-blocked .btn { cursor: pointer; font-family: var(--font-body); }

/* ============================================================
   ACCESSIBILITY — first focus styling on the site
   ============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

.pbl-input:focus-visible,
.pbl-textarea:focus-visible,
.pbl-select:focus-visible { outline: none; }

.pbl-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .pbl-form-wrap { padding: 34px 22px; border-radius: var(--radius-md); }
  .pbl-row { grid-template-columns: 1fr; gap: 0; }
  .pbl-options--two { grid-template-columns: 1fr; }
  .pbl-conditional { padding: 22px 18px 4px; }
  .pbl-gift { padding: 36px 22px; }
  .pbl-gift__amount { font-size: 3.6rem; }
  .pbl-gift__code { font-size: 1.15rem; padding: 14px 22px; letter-spacing: 0.1em; }
  .pbl-cookie { padding: 20px; }
  .pbl-cookie__inner { flex-direction: column; align-items: stretch; gap: 18px; }
  .pbl-cookie__actions { flex-direction: column; }
  .pbl-cookie__actions .btn { width: 100%; justify-content: center; }
  .pbl-summary__row { flex-direction: column; gap: 2px; }
  .pbl-summary__row span:last-child { text-align: left; }
}

/* ============================================================
   TOAST — slow slide-up + fade-in, deep sage
   Used at checkout to name exactly what is missing.
   ============================================================ */
.pbl-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 9500;
  transform: translate(-50%, 28px);
  opacity: 0;
  pointer-events: none;
  max-width: min(460px, calc(100vw - 40px));
  background: #3F5439;              /* deep sage — readable, on-brand */
  color: #F7F7F5;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  box-shadow: 0 10px 40px rgba(43,43,43,0.22);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pbl-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.pbl-toast__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 2px;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .pbl-toast { left: 20px; right: 20px; bottom: 20px; transform: translateY(28px); max-width: none; }
  .pbl-toast.is-visible { transform: translateY(0); }
}

/* ============================================================
   BASKET
   ============================================================ */
.pbl-basket-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--charcoal);
  margin-left: 14px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.pbl-basket-link:hover { color: var(--sage); background: var(--sage-pale); }
.pbl-basket-link svg { width: 21px; height: 21px; }

.pbl-basket-link__count {
  position: absolute;
  top: -1px;
  right: -3px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 20px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Desktop shows the nav copy; mobile shows the hamburger twin */
.pbl-basket-link--mobile { display: none; margin-left: 0; margin-right: 4px; }

@media (max-width: 768px) {
  .header-nav .pbl-basket-link { display: none; }
  .pbl-basket-link--mobile { display: inline-flex; }
}

.bkt-item {
  background: var(--white);
  border: 1px solid rgba(143,168,131,0.14);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 18px;
}

.bkt-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 6px;
}

.bkt-item__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 8px;
}

.bkt-item__price {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--charcoal);
  flex: 0 0 auto;
}

.bkt-item__option {
  display: grid;
  gap: 2px;
  margin: 10px 0 6px;
}

.bkt-item__slots {
  border-top: 1px solid var(--stone);
  margin-top: 16px;
  padding-top: 18px;
}

.bkt-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
}

.bkt-slot {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 12px 8px;
  border: 1.5px solid var(--field-border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition-fast);
  font-variant-numeric: lining-nums tabular-nums;
}

.bkt-slot:hover:not([disabled]) { border-color: var(--sage); color: #5d7a55; }

.bkt-slot.is-selected {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.bkt-slot[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.bkt-chosen { font-size: 0.9rem; color: var(--charcoal); }

.bkt-remove,
.pbl-ghostlink {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--soft-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  margin-top: 16px;
  transition: var(--transition-fast);
}

.bkt-remove:hover { color: var(--state-error); }

.bkt-summary {
  background: var(--white);
  border: 1px solid rgba(143,168,131,0.14);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 110px;
}

.bkt-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  padding: 6px 0 18px;
}

.bkt-summary__row strong {
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 1.5rem;
}

.bkt-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .bkt-layout { grid-template-columns: 1fr; }
  .bkt-summary { position: static; }
}

/* ============================================================
   STEP WIZARD (membership interest)
   ============================================================ */
.pbl-wizard { max-width: 720px; margin: 0 auto; }

.pbl-wizard__progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.pbl-wizard__step-dot {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--stone-mid);
  background: var(--white);
  color: var(--soft-grey);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pbl-wizard__step-line {
  flex: 1 1 auto;
  height: 1.5px;
  background: var(--stone-mid);
  transition: var(--transition);
}

.pbl-wizard__progress [data-step-dot].is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.pbl-wizard__progress [data-step-dot].is-done {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-pale);
}

.pbl-wizard__progress [data-step-line].is-done { background: var(--sage); }

.pbl-wizard__labels {
  display: flex;
  justify-content: space-between;
  margin: -30px 0 40px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-grey);
  font-weight: 600;
}

.pbl-wizard__panel { display: none; }
.pbl-wizard__panel.is-active {
  display: block;
  animation: wizardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wizardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pbl-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--stone);
}

.pbl-wizard__nav .btn { cursor: pointer; font-family: var(--font-body); }

/* Tier choice cards inside step 1 */
.pbl-tier-choice {
  display: grid;
  gap: 12px;
}

.pbl-tier-choice .pbl-option {
  border: 1.5px solid var(--field-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition-fast);
}

.pbl-tier-choice .pbl-option:hover { border-color: var(--sage); }

.pbl-tier-choice .pbl-option:has(input:checked) {
  border-color: var(--sage);
  background: var(--sage-pale);
}

.pbl-tier-choice__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--soft-grey);
  margin-top: 2px;
}

/* Review table on the final step */
.pbl-review { margin-bottom: 8px; }
.pbl-review .pbl-summary { margin-top: 0; }

@media (max-width: 768px) {
  .pbl-wizard__labels { display: none; }
  .pbl-wizard__nav { flex-direction: column-reverse; }
  .pbl-wizard__nav .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SKELETON LOADING
   ------------------------------------------------------------
   Every image sits on a shimmering placeholder until it has
   actually loaded; async data (slot grids, basket rows) uses
   the same shimmer as block placeholders.
   ============================================================ */
@keyframes pblShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skel,
.img-wrap.img-loading::before {
  background: linear-gradient(
    100deg,
    var(--stone) 40%,
    #F5F1EA 50%,
    var(--stone) 60%
  );
  background-size: 200% 100%;
  animation: pblShimmer 1.6s ease-in-out infinite;
}

/* Image skeletons — the wrapper shimmers behind the image,
   the image itself fades in once decoded. */
.img-wrap { position: relative; }

.img-wrap.img-loading::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.img-wrap img {
  transition: opacity 0.6s ease;
}

.img-wrap.img-loading img { opacity: 0; }
.img-wrap.img-loaded img { opacity: 1; }

/* Block skeletons for async data */
.skel {
  display: block;
  border-radius: var(--radius-sm);
  min-height: 16px;
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

.skel--slot { height: 46px; border-radius: var(--radius-md); }
.skel--row  { height: 72px; border-radius: var(--radius-md); margin-bottom: 12px; }
.skel--text { height: 14px; max-width: 220px; }

.skel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .skel, .img-wrap.img-loading::before { animation: none; }
}

/* ============================================================
   REDUCED MOTION
   Respects the OS-level setting. Previously absent site-wide.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .fade-up, .img-reveal, .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .btn-magnetic { transform: none !important; }
}



/* ═══════════════════════════════════════════════════════════
   GIVEAWAY  (/giveaway)
   Quiet and generous: the prize is the only loud thing on the
   page. Everything else gets out of its way.
   ═══════════════════════════════════════════════════════════ */

.gw-prize {
  margin: 36px auto 0;
  max-width: 560px;
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gw-prize__label {
  margin: 0 0 14px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-grey);
}

.gw-prize__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1.25;
  color: var(--charcoal);
}

.gw-prize__value {
  margin: 16px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.gw-closes {
  margin: 20px auto 0;
  font-size: 0.9rem;
  color: var(--soft-grey);
}

/* Shown in place of the form when the draw isn't taking entries. */
.gw-notice {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 36px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius-lg);
}

.gw-notice__text {
  margin: 0 0 26px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--soft-grey);
}

/* ── How the draw works ── */
.gw-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px 40px;
  margin-top: 8px;
}

.gw-step__n {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.gw-step__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.gw-step__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--soft-grey);
}

.gw-smallprint {
  max-width: 640px;
  margin: 44px auto 0;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  color: var(--soft-grey);
}

.gw-smallprint a { color: var(--sage); }

/* The entry number, shown the moment someone enters the draw —
   calm, generous, unmissable. */
.gw-ticket {
  background: var(--sage-pale);
  border: 1px solid rgba(143, 168, 131, 0.25);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  text-align: center;
  margin: 30px 0 26px;
}

.gw-ticket__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--soft-grey);
  margin: 0 0 12px;
}

.gw-ticket__number {
  font-family: var(--font-body);
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--charcoal);
  margin: 0;
  font-variant-numeric: lining-nums tabular-nums;
}

/* ── Express booking — the inline "Book Now" panel ─────────────
   Opens quietly inside the treatment card: a date, the times, one
   button. The basket is never involved. */
.bt-express {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--stone);
  animation: btExpressIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes btExpressIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.bt-express__title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--soft-grey);
  margin: 0 0 14px;
}

.bt-express__slots { margin: 4px 0 16px; }

.bt-express__go { width: 100%; justify-content: center; }
.bt-express__go[disabled] { opacity: 0.45; cursor: not-allowed; }

.bt-express__note {
  margin: 12px 0 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--soft-grey);
  text-align: center;
}

/* A short line of guidance above a form's fields. */
.pbl-form__intro {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--soft-grey);
}

/* ── Honeypot ──
   Removed from the layout and from the accessibility tree, but not
   display:none — some form-fillers skip anything undisplayed, and a
   field nothing ever fills catches nothing. */
.pbl-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .gw-prize { padding: 32px 24px; border-radius: var(--radius-md); }
  .gw-notice { padding: 38px 24px; border-radius: var(--radius-md); }
  .gw-steps { gap: 30px; }
}
