/* ============================================================
   CORE ELEMENTS WELLNESS
   Move well. Eat well. Live long.
   Brand system: Warm & barefoot natural
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Warm neutrals */
  --sand:        #FAF6EF;
  --sand-2:      #F3EBDD;
  --linen:       #EBE0CF;
  --cream-card:  #FFFDF8;

  /* Earthy darks */
  --espresso:    #2C2620;
  --bark:        #463C33;
  --text:        #332D26;
  --muted:       #7A6F61;

  /* Accents */
  --clay:        #BE6E47;   /* terracotta primary */
  --clay-dark:   #A2562F;
  --clay-soft:   #E7C9B4;
  --sage:        #889A75;   /* sage secondary */
  --sage-dark:   #647455;
  --sage-soft:   #D6DDC9;

  /* Functional */
  --line:        #E2D7C5;
  --shadow-sm:   0 2px 10px rgba(60, 46, 32, .06);
  --shadow-md:   0 14px 40px rgba(60, 46, 32, .10);
  --shadow-lg:   0 30px 70px rgba(44, 38, 32, .16);

  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   26px;

  --maxw:        1180px;
  --gutter:      clamp(20px, 5vw, 56px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
p  { color: var(--bark); }

::selection { background: var(--clay-soft); color: var(--espresso); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 130px); }
.section-sm { padding-block: clamp(48px, 7vw, 86px); }
.bg-sand2 { background: var(--sand-2); }
.bg-linen { background: var(--linen); }
.bg-espresso { background: var(--espresso); color: var(--sand); }
.bg-espresso h1, .bg-espresso h2, .bg-espresso h3 { color: var(--sand); }
.bg-espresso p { color: #D9CFC0; }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 46ch; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; } .mt-5 { margin-top: 3.4rem; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay);
  opacity: .6;
}
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after {
  content: ""; width: 26px; height: 1px; background: var(--clay); opacity: .6;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--bark); line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: .95em 1.9em;
  line-height: 1.1;
  border-radius: 100px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 8px 22px rgba(190, 110, 71, .28); }
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(162, 86, 47, .34); }

.btn-dark { background: var(--espresso); color: var(--sand); }
.btn-dark:hover { background: #1f1a15; transform: translateY(-2px); }

.btn-outline { border: 1.5px solid var(--bark); color: var(--espresso); background: transparent; }
.btn-outline:hover { background: var(--espresso); color: var(--sand); transform: translateY(-2px); }

.btn-light { background: var(--sand); color: var(--espresso); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.btn-ghost { color: var(--clay); font-weight: 700; padding: .4em 0; }
.btn-ghost .arrow { transition: transform .25s ease; }
.btn-ghost:hover .arrow { transform: translateX(5px); }

.btn-lg { font-size: 1.05rem; padding: 1.1em 2.4em; }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .brand-text { line-height: 1; }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--espresso);
  letter-spacing: .005em;
  display: block;
}
.brand .brand-sub {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--clay);
  font-weight: 700;
  margin-top: 3px;
}
.site-header.on-dark .brand-name { color: var(--sand); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a:not(.btn) {
  font-size: .95rem; font-weight: 600; color: var(--bark);
  position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--clay); transition: width .25s ease;
}
.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { color: var(--clay); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .6rem; padding: .8em 2em; font-size: 1rem; line-height: 1; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--sand); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.6rem; padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.05,.2,1);
    box-shadow: var(--shadow-lg); z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .nav-links .nav-cta { margin-left: 0; }
}

/* ---------- Header legibility: light over hero, dark when solid/scrolled ---------- */
/* subtle scrim so light nav text stays readable over any hero image */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,15,11,.55), rgba(20,15,11,0));
  transition: opacity .3s ease; pointer-events: none;
}
.site-header.scrolled::before, .site-header.solid::before { opacity: 0; }
.site-header .nav { position: relative; z-index: 1; }

/* transparent state (top of hero/banner pages): light text */
.site-header .brand-name { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.4); transition: color .25s ease; }
.site-header .brand-sub  { color: var(--clay-soft); }
.site-header .nav-links a:not(.btn) { color: #F2E9DA; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.site-header .nav-toggle span { background: #fff; }

/* solid pages (checkout/booking) and after scrolling: dark text on light bg */
.site-header.solid { background: rgba(250,246,239,.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.site-header.scrolled .brand-name, .site-header.solid .brand-name { color: var(--espresso); text-shadow: none; }
.site-header.scrolled .brand-sub,  .site-header.solid .brand-sub  { color: var(--clay); }
.site-header.scrolled .nav-links a:not(.btn), .site-header.solid .nav-links a:not(.btn) { color: var(--bark); text-shadow: none; }
.site-header.scrolled .nav-toggle span, .site-header.solid .nav-toggle span { background: var(--espresso); }

/* hover + active stay clay in every state */
.site-header .nav-links a:not(.btn):hover, .site-header .nav-links a:not(.btn).active { color: var(--clay); text-shadow: none; }

/* mobile slide-in panel is light: force dark links + toggle when open */
.nav-links.open a:not(.btn) { color: var(--bark); text-shadow: none; }
.site-header .nav-toggle.open span { background: var(--espresso); }

/* no underline under the CTA button */
.nav-links a.nav-cta::after { display: none; }

/* ---------- Image wrapper + graceful fallback ---------- */
.img-wrap {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--clay-soft), var(--sage-soft) 55%, var(--linen));
}
.img-wrap::after { /* subtle barefoot motif when image is missing */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 45%);
  pointer-events: none;
}
.img-wrap img {
  width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1;
  transition: transform .9s cubic-bezier(.2,.6,.2,1), opacity .4s ease;
}
.img-wrap img.img-failed { opacity: 0; }
.img-zoom:hover img { transform: scale(1.05); }

.ratio-1x1   { aspect-ratio: 1 / 1; }
.ratio-4x3   { aspect-ratio: 4 / 3; }
.ratio-3x4   { aspect-ratio: 3 / 4; }
.ratio-16x9  { aspect-ratio: 16 / 9; }
.ratio-3x2   { aspect-ratio: 3 / 2; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 90px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,24,20,.78) 0%, rgba(28,24,20,.5) 42%, rgba(28,24,20,.15) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 680px; color: var(--sand); }
.hero h1 { color: #fff; margin-top: 1rem; }
.hero .hero-tag {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--clay-soft); margin-top: 1.2rem;
}
.hero p.lead { color: #EDE3D3; margin-top: 1.4rem; }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero .eyebrow { color: var(--clay-soft); }
.hero .eyebrow::before { background: var(--clay-soft); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--sand); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; opacity: .8; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.scroll-cue .dot { width: 1px; height: 38px; background: linear-gradient(var(--sand), transparent); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Split layout (text + image) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.split.reverse > .split-media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > .split-media { order: 0; } }

/* ---------- Cards ---------- */
.card {
  background: var(--cream-card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.card-pad { padding: clamp(22px, 3vw, 34px); }

/* Feature / value cards */
.feature { text-align: left; }
.feature .feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--sage-dark); margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.3rem; }
.feature p { margin-top: .55rem; font-size: .98rem; }

/* ---------- Service cards (clickable) ---------- */
.service-card {
  display: flex; flex-direction: column; background: var(--cream-card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative; height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--clay-soft); }
.service-card .sc-media { aspect-ratio: 16/10; }
.service-card .sc-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-cat {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
  color: var(--sage-dark);
}
.service-card h3 { font-size: 1.45rem; margin-top: .5rem; }
.service-card .sc-desc { font-size: .96rem; color: var(--muted); margin-top: .55rem; flex: 1; }
.service-card .sc-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.service-card .sc-price { font-family: var(--serif); font-size: 1.7rem; color: var(--espresso); }
.service-card .sc-price small { font-size: .82rem; color: var(--muted); font-family: var(--sans); }
.service-card .sc-go {
  font-weight: 700; color: var(--clay); font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem;
}
.service-card:hover .sc-go .arrow { transform: translateX(4px); }
.sc-go .arrow { transition: transform .25s ease; }

/* Flagship ribbon */
.service-card.flagship { border: 1.5px solid var(--clay); box-shadow: var(--shadow-md); }
.ribbon {
  position: absolute; top: 16px; right: -34px; transform: rotate(45deg);
  background: var(--clay); color: #fff; font-size: .66rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 44px; z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.badge-soft {
  display: inline-block; background: var(--sage-soft); color: var(--sage-dark);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}

/* ---------- Philosophy / barefoot strip ---------- */
.barefoot { position: relative; overflow: hidden; }
.barefoot .quote-mark {
  font-family: var(--serif); font-size: 9rem; line-height: .6; color: var(--clay);
  opacity: .25; display: block; height: 60px;
}
.barefoot blockquote {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.25;
  color: var(--sand); max-width: 22ch;
}
.barefoot blockquote em { color: var(--clay-soft); font-style: italic; }

/* ---------- Stats ---------- */
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--clay); line-height: 1; }
.stat .label { font-size: .9rem; color: var(--muted); margin-top: .5rem; letter-spacing: .02em; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column;
}
.testimonial .stars { color: var(--clay); letter-spacing: .15em; font-size: .9rem; }
.testimonial p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--bark); margin-top: 1rem; flex: 1; font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: .85rem; margin-top: 1.6rem; }
.testimonial .who .av {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--clay-soft), var(--sage-soft));
  display: grid; place-items: center; font-family: var(--serif); color: var(--espresso); font-size: 1.1rem; flex: none;
}
.testimonial .who .name { font-weight: 700; font-size: .98rem; color: var(--espresso); }
.testimonial .who .meta { font-size: .82rem; color: var(--muted); }

/* ---------- Pricing detail / checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }

.order-summary {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: clamp(24px, 3vw, 34px); position: sticky; top: 100px;
}
.order-summary .os-media { border-radius: var(--radius-sm); aspect-ratio: 16/9; margin-bottom: 1.3rem; }
.os-line { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; color: var(--bark); font-size: .96rem; }
.os-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .6rem; padding-top: 1rem; border-top: 1.5px solid var(--line); }
.os-total .t-label { font-weight: 700; color: var(--espresso); }
.os-total .t-amt { font-family: var(--serif); font-size: 2rem; color: var(--espresso); }
.includes { list-style: none; display: grid; gap: .85rem; margin-top: 1.4rem; }
.includes li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; color: var(--bark); }
.includes li .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sage-soft);
  color: var(--sage-dark); display: grid; place-items: center; font-size: .7rem; margin-top: 2px;
}

/* ---------- Forms ---------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--bark); letter-spacing: .03em; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--sand); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .85em 1em; transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

/* ---------- Booking calendar ---------- */
.booking-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(26px, 4vw, 48px); align-items: start; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: clamp(22px, 3vw, 32px);
}
.panel + .panel { margin-top: 22px; }
.panel h3 { font-size: 1.25rem; }
.step-num {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--clay); color: #fff; font-size: .85rem; font-weight: 800; font-family: var(--sans);
  margin-right: .6rem; vertical-align: middle;
}

.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-head .cal-month { font-family: var(--serif); font-size: 1.3rem; color: var(--espresso); }
.cal-nav { display: flex; gap: .5rem; }
.cal-nav button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--bark); display: grid; place-items: center; transition: background .2s, color .2s; }
.cal-nav button:hover { background: var(--espresso); color: var(--sand); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center;
  font-weight: 700; font-size: .95rem; color: var(--bark); position: relative;
  transition: background .2s, color .2s, transform .15s;
}
.cal-day.empty { visibility: hidden; }
.cal-day.disabled { color: var(--linen); cursor: not-allowed; }
.cal-day.available { cursor: pointer; background: var(--sand-2); }
.cal-day.available::after { content: ""; position: absolute; bottom: 7px; width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
.cal-day.available:hover { background: var(--sage-soft); transform: translateY(-2px); }
.cal-day.selected { background: var(--clay); color: #fff; }
.cal-day.selected::after { background: #fff; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot {
  border: 1.5px solid var(--line); border-radius: 100px; padding: .7em .5em; text-align: center;
  font-weight: 700; font-size: .9rem; color: var(--bark); transition: all .2s ease; background: var(--sand);
}
.slot:hover { border-color: var(--clay); color: var(--clay); }
.slot.selected { background: var(--clay); border-color: var(--clay); color: #fff; }
.slot.disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.muted-hint { color: var(--muted); font-size: .92rem; }

.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; font-size: .96rem; color: var(--bark); }
.summary-row .v { font-weight: 700; color: var(--espresso); text-align: right; }

/* Confirmation toast / panel */
.confirm-box {
  background: var(--sage-soft); border: 1px solid var(--sage); border-radius: var(--radius);
  padding: 22px 24px; display: none; align-items: flex-start; gap: 1rem; margin-top: 1.4rem;
}
.confirm-box.show { display: flex; animation: fadeUp .5s ease both; }
.confirm-box .cb-icon { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--sage-dark); color: #fff; display: grid; place-items: center; }
.confirm-box h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--espresso); }
.confirm-box p { font-size: .92rem; color: var(--bark); margin-top: .2rem; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { position: relative; padding-top: 150px; padding-bottom: 90px; overflow: hidden; }
.page-banner .pb-bg { position: absolute; inset: 0; z-index: 0; }
.page-banner .pb-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .pb-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,24,20,.72), rgba(28,24,20,.55)); }
.page-banner .pb-inner { position: relative; z-index: 2; color: var(--sand); max-width: 720px; }
.page-banner h1 { color: #fff; margin-top: .8rem; }
.page-banner p { color: #EADFCF; margin-top: 1rem; font-size: 1.12rem; max-width: 56ch; }
.page-banner .eyebrow { color: var(--clay-soft); }
.page-banner .eyebrow::before { background: var(--clay-soft); }
.crumbs { font-size: .82rem; color: #CdBfAe; margin-top: 1.2rem; }
.crumbs a:hover { color: #fff; }

/* ---------- Pull / CTA band ---------- */
.cta-band { background: var(--espresso); color: var(--sand); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: var(--sand); }
.cta-band p { color: #D9CFC0; }
.cta-band .leaf { position: absolute; opacity: .12; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #C9BCAB; padding-top: clamp(56px, 8vw, 90px); }
.site-footer h4 { color: var(--sand); font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; margin-bottom: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .f-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--sand); }
.site-footer .f-tag { font-family: var(--serif); font-style: italic; color: var(--clay-soft); margin-top: .5rem; }
.site-footer p { font-size: .95rem; line-height: 1.7; }
.footer-links { list-style: none; display: grid; gap: .7rem; }
.footer-links a { font-size: .95rem; color: #C9BCAB; transition: color .2s; }
.footer-links a:hover { color: var(--clay-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px, 6vw, 64px); padding: 26px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: #998B79; }
.social { display: flex; gap: .7rem; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #C9BCAB; transition: all .25s; }
.social a:hover { background: var(--clay); border-color: var(--clay); color: #fff; transform: translateY(-2px); }

/* ---------- Demo banner ---------- */
.demo-flag {
  position: fixed; bottom: 16px; left: 16px; z-index: 200;
  background: var(--espresso); color: var(--sand); font-size: .76rem; font-weight: 700;
  padding: 8px 14px; border-radius: 100px; box-shadow: var(--shadow-md); letter-spacing: .02em;
  display: flex; align-items: center; gap: .5rem; opacity: .92;
}
.demo-flag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 0 rgba(190,110,71,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(190,110,71,.5);} 70% { box-shadow: 0 0 0 9px rgba(190,110,71,0);} 100% { box-shadow: 0 0 0 0 rgba(190,110,71,0);} }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ---------- Misc ---------- */
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--clay); margin: 1.4rem 0; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 50px; background: var(--line); }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { background: var(--sand-2); border: 1px solid var(--line); border-radius: 100px; padding: .5em 1.1em; font-size: .88rem; font-weight: 600; color: var(--bark); }
.text-clay { color: var(--clay); }
.text-sage { color: var(--sage-dark); }
