/* ============================================================
   La Vida Rose — Home Page Styles
   ------------------------------------------------------------
   Shared base + Variant A (Editorial Sanctuary)
                + Variant B (Soft Minimal)

   Variant overrides scoped under body[data-variant="a|b"].
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colors (mirrored from brand-guide.md so this file
     is portable even if variables.css isn't loaded yet) */
  --color-lilac-ash: #AAA5C0;
  --color-lilac-deep: #8F8AA8;
  --color-desert-sand: #E8B8A1;
  --color-desert-deep: #D9A78E;
  --color-frosted-mint: #CDE8D3;
  --color-cotton-rose: #E3C5C7;
  --color-cream: #FDF6F0;
  --color-off-white: #FEFCFA;
  --color-dark: #2D2D2D;
  --color-muted: #6B6B6B;
  --color-border: rgba(45, 45, 45, 0.08);

  /* Semantic */
  --bg-primary: var(--color-cream);
  --bg-surface: var(--color-off-white);
  --text-primary: var(--color-dark);
  --text-muted: var(--color-muted);
  --text-heading: var(--color-dark);

  /* Spacing — 8px rhythm */
  --s-1: 0.5rem;   /*  8px */
  --s-2: 1rem;     /* 16px */
  --s-3: 1.5rem;   /* 24px */
  --s-4: 2rem;     /* 32px */
  --s-5: 3rem;     /* 48px */
  --s-6: 4.5rem;   /* 72px */
  --s-7: 6rem;     /* 96px */
  --s-8: 8rem;     /* 128px */

  /* Section padding */
  --sec-py: clamp(4rem, 8vw, 8rem);
  --sec-px: clamp(1.25rem, 4vw, 3rem);

  /* Type scale (fluid) */
  --t-xs:   clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --t-sm:   clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --t-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --t-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --t-xl:   clamp(1.375rem, 1.2rem + 0.8vw, 1.625rem);
  --t-2xl:  clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --t-3xl:  clamp(2.25rem, 1.7rem + 2.6vw, 3.75rem);
  --t-4xl:  clamp(2.75rem, 1.8rem + 4.5vw, 5.5rem);
  --t-5xl:  clamp(3.5rem, 2rem + 7vw, 8rem);

  /* Layout */
  --container: 1240px;
  --container-narrow: 760px;
  --container-wide: 1440px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows — soft, brand-aware */
  --sh-sm: 0 1px 2px rgba(45, 36, 30, 0.04);
  --sh-md: 0 8px 24px rgba(170, 165, 192, 0.12);
  --sh-lg: 0 24px 60px rgba(143, 138, 168, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 560ms;

  /* Z-stack */
  --z-nav: 50;
  --z-modal: 100;
  --z-toast: 200;
}

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

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

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

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Visible focus for keyboard users */
:focus-visible {
  outline: 2px solid var(--color-lilac-ash);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
}

h1 { font-size: var(--t-4xl); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); line-height: 1.2; }
h4 { font-size: var(--t-lg); line-height: 1.3; }

p { max-width: 62ch; }

.lead {
  font-size: var(--t-lg);
  line-height: 1.55;
  color: var(--text-muted);
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sec-px);
}

.container--wide   { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

section {
  padding-block: var(--sec-py);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.95rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Animated conic border on all primary booking CTAs.
   Requires @property for animatable angle (Chrome 85+, Safari 16.4+). */
@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn--primary {
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--color-lilac-ash), var(--color-lilac-ash)) padding-box,
    conic-gradient(
      from var(--btn-angle),
      var(--color-lilac-ash) 0deg,
      var(--color-desert-sand) 90deg,
      var(--color-cotton-rose) 180deg,
      var(--color-frosted-mint) 270deg,
      var(--color-lilac-ash) 360deg
    ) border-box;
  color: white;
  box-shadow: var(--sh-md);
  animation:
    btn-spin 4s linear infinite,
    btn-pulse 2.6s var(--ease) infinite;
}
.btn--primary:hover {
  background:
    linear-gradient(var(--color-lilac-deep), var(--color-lilac-deep)) padding-box,
    conic-gradient(
      from var(--btn-angle),
      var(--color-lilac-ash) 0deg,
      var(--color-desert-sand) 90deg,
      var(--color-cotton-rose) 180deg,
      var(--color-frosted-mint) 270deg,
      var(--color-lilac-ash) 360deg
    ) border-box;
  box-shadow: var(--sh-lg);
}

@keyframes btn-spin {
  to { --btn-angle: 360deg; }
}
@keyframes btn-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(170, 165, 192, 0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(170, 165, 192, 0.55)); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary { animation: none; }
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid currentColor;
}
.btn--ghost:hover {
  background: var(--color-dark);
  color: var(--color-cream);
}

.btn--sand {
  background: var(--color-desert-sand);
  color: var(--color-dark);
}
.btn--sand:hover { background: var(--color-desert-deep); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.text-link:hover {
  gap: 0.85em;
  color: var(--color-dark);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: var(--s-2);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(45, 45, 45, 0.06);
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(45, 36, 30, 0.08), 0 1px 2px rgba(45, 36, 30, 0.04);
  width: calc(100% - 2rem);
  max-width: 1040px;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__brand img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: none;
  list-style: none;
  gap: var(--s-3);
  flex: 1;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  padding: 0.5rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .btn {
  min-height: 46px;
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* Nav book button now inherits animated border from .btn--primary base.
   Just override hover lift here. */
.nav .btn--primary:hover {
  transform: translateY(-1px);
}

/* Dropdown hubs (Experience, For You, Gift/Corporate) */
.nav__item--hub { position: relative; }
.nav__item--hub > a,
.nav__item--hub > button.nav__hub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  letter-spacing: inherit;
}
.nav__item--hub .caret {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.nav__item--hub:hover > a .caret,
.nav__item--hub:focus-within > a .caret,
.nav__item--hub.is-open .caret { transform: rotate(180deg); }

.nav__item--hub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 12px;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: rgba(254, 252, 250, 0.96);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 0.5rem 0.75rem 0.75rem;
  margin-top: 8px;
  list-style: none;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: calc(var(--z-nav) + 1);
}
.nav__item--hub:hover > .nav__dropdown,
.nav__item--hub:focus-within > .nav__dropdown,
.nav__item--hub.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-md);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  text-transform: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
  background: rgba(170, 165, 192, 0.14);
  color: var(--color-lilac-deep);
}
.nav__dropdown a .sub-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 1px;
}

@media (min-width: 980px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* ---------- HERO (shared base) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-block: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* anchor a soft dark wash in the bottom-left where the headline lives */
    radial-gradient(
      ellipse 70% 60% at 25% 75%,
      rgba(45, 30, 25, 0.55) 0%,
      rgba(45, 30, 25, 0.25) 45%,
      rgba(45, 30, 25, 0) 75%
    ),
    /* gentle left-to-right falloff so the right side stays bright */
    linear-gradient(
      100deg,
      rgba(45, 30, 25, 0.55) 0%,
      rgba(45, 30, 25, 0.25) 35%,
      rgba(45, 30, 25, 0) 60%
    ),
    /* very subtle top + bottom vignette */
    linear-gradient(
      180deg,
      rgba(45, 30, 25, 0.15) 0%,
      rgba(45, 30, 25, 0) 25%,
      rgba(45, 30, 25, 0.4) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--s-7) var(--s-6);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  margin-bottom: var(--s-3);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 6px rgba(45, 30, 25, 0.4);
  box-shadow: 0 4px 20px rgba(45, 30, 25, 0.15);
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-desert-sand);
  box-shadow: 0 0 0 4px rgba(232, 184, 161, 0.25);
}

.hero h1 {
  color: white;
  font-size: var(--t-5xl);
  max-width: 16ch;
  margin-bottom: var(--s-3);
  text-shadow:
    0 2px 4px rgba(45, 30, 25, 0.5),
    0 8px 32px rgba(45, 30, 25, 0.45);
}

.hero__sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--t-lg);
  max-width: 48ch;
  margin-bottom: var(--s-4);
  text-shadow: 0 1px 12px rgba(45, 30, 25, 0.55);
}
.hero__eyebrow {
  text-shadow: 0 1px 8px rgba(45, 30, 25, 0.5);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.hero__meta {
  position: absolute;
  bottom: var(--s-4);
  right: var(--sec-px);
  z-index: 2;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  line-height: 1.8;
}
.hero__meta strong { font-weight: 600; color: white; }

@media (max-width: 720px) {
  .hero__meta { display: none; }
}

/* ---------- CONCEPT INTRO ---------- */
.concept {
  background: var(--bg-primary);
}
.concept__grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
.concept__copy h2 {
  margin-bottom: var(--s-3);
}
.concept__copy p + p { margin-top: var(--s-2); }
.concept__copy .text-link { margin-top: var(--s-3); }

.concept__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
}
.concept__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15));
  z-index: 1;
}

@media (min-width: 880px) {
  .concept__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--s-7);
  }
}

/* ---------- TWO WAYS TO RESET ---------- */
.ways {
  background: var(--color-frosted-mint);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-frosted-mint) 100%);
}
.ways__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.ways__head .eyebrow { display: block; margin-bottom: var(--s-2); }

.ways__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 760px) {
  .ways__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}
@media (min-width: 1024px) {
  /* 5-card layout: 3 on top row (span 2 of 6), 2 on bottom row (span 3 of 6).
     Row 1 and row 2 are independent rows — each has equal heights within itself. */
  .ways__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-4);
    align-items: stretch;
    grid-auto-rows: 1fr;
  }
  .ways__grid > .way {
    grid-column: span 2;
    height: 100%;
  }
  .ways__grid > .way:nth-child(4),
  .ways__grid > .way:nth-child(5) { grid-column: span 3; }

  /* Force the image box to a fixed height so top-row narrower cards and
     bottom-row wider cards don't produce different image heights via
     aspect-ratio. Images crop with object-fit: cover (already set). */
  .ways__grid > .way .way__img {
    aspect-ratio: auto;
    height: 240px;
  }
}

.way {
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.way:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.way__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.way__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.way:hover .way__img img { transform: scale(1.04); }
.way__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.way__body h3 {
  font-size: var(--t-2xl);
}
.way__body p { color: var(--text-muted); flex: 1; }
.way__body .text-link { align-self: flex-start; }

/* ---------- INCLUDED ---------- */
.included {
  background: var(--bg-primary);
}
.included__grid {
  display: grid;
  gap: var(--s-5);
  align-items: start;
}
.included__head h2 { margin-bottom: var(--s-2); }
.included__head .lead { margin-top: var(--s-2); }

.included__list {
  list-style: none;
  display: grid;
  gap: var(--s-2);
}
.included__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.5;
}
.included__list li:last-child { border-bottom: none; }
.included__list .leaf {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--color-lilac-ash);
}

@media (min-width: 880px) {
  .included__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-7); }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--color-cotton-rose);
  background: linear-gradient(180deg, var(--color-cotton-rose) 0%, #f3dcdb 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.testimonials__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 760px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
}

.quote {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4) var(--s-4);
}
.quote__mark {
  position: absolute;
  top: -8px;
  left: var(--s-3);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-lilac-ash);
  opacity: 0.6;
}
.quote p {
  font-family: var(--font-body);
  font-size: var(--t-lg);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: var(--s-3);
  max-width: none;
  font-style: italic;
}
.quote cite {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---------- PRICING TEASER ---------- */
.pricing {
  background: var(--bg-primary);
  text-align: center;
}
.pricing__inner {
  max-width: 720px;
  margin-inline: auto;
}
.pricing h2 { margin-bottom: var(--s-3); }
.pricing .lead { margin-bottom: var(--s-4); margin-inline: auto; }
.pricing .price-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--color-lilac-deep);
  margin-bottom: var(--s-3);
}
.pricing .price-tag small {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* Perks row — fills the empty space between CTA and gift banner */
.pricing__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-border);
}
.pricing__perks li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing__perks svg {
  width: 14px;
  height: 14px;
  color: var(--color-lilac-deep);
  flex-shrink: 0;
}

/* ---------- GIFT + CORPORATE BANNER ---------- */
.banner {
  background: var(--color-cream);
}
.banner__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 760px) {
  .banner__grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}

.banner__col {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: var(--s-5);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.banner__col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.banner__col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(45,30,25,0.7));
  z-index: 1;
}
.banner__col > * { position: relative; z-index: 2; }

.banner__col--gift::before {
  background-image: url('../../demo-images/WhatsApp Image 2026-04-08 at 12.57.13 PM.jpeg');
}
.banner__col--corp::before {
  background: linear-gradient(135deg, var(--color-lilac-ash) 0%, var(--color-desert-sand) 100%);
}

.banner__col h3 {
  font-size: var(--t-2xl);
  margin-bottom: var(--s-2);
  color: white;
}
.banner__col p {
  margin-bottom: var(--s-3);
  color: rgba(255, 255, 255, 0.92);
  max-width: 38ch;
}
.banner__col .text-link {
  color: white;
  align-self: flex-start;
}

/* ---------- FINAL CTA ---------- */
.final {
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
    linear-gradient(135deg, var(--color-cotton-rose) 0%, var(--color-desert-sand) 55%, var(--color-desert-deep) 100%);
  color: var(--color-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final__inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}
.final h2 {
  color: var(--color-dark);
  margin-bottom: var(--s-3);
}
.final p {
  color: rgba(45, 30, 25, 0.7);
  margin-inline: auto;
  margin-bottom: var(--s-4);
}
.final__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
}
.final .eyebrow,
.final span.eyebrow {
  color: var(--color-lilac-deep) !important;
}
.final .btn--ghost {
  color: var(--color-dark);
  border-color: rgba(45, 30, 25, 0.35);
}
.final .btn--ghost:hover {
  background: var(--color-dark);
  color: var(--color-cream);
  border-color: var(--color-dark);
}
/* shapes inside final get a slightly different opacity range for warm bg */
.final .shape {
  opacity: 0.28;
}
.final .shape--leaf  { opacity: 0.32; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(253, 246, 240, 0.7);
  padding-block: var(--s-6) var(--s-4);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  border-top: 1px solid rgba(253, 246, 240, 0.08);
}
.footer__grid {
  display: grid;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-4); }
}
.footer h4 {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: var(--s-2);
}
.footer ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.footer a:hover { color: var(--color-cream); }
.footer__brand img { width: 140px; margin-bottom: var(--s-2); filter: brightness(1.5); }
.footer__brand p { font-size: var(--t-sm); max-width: 32ch; }
.footer__bottom {
  border-top: 1px solid rgba(253, 246, 240, 0.08);
  padding-top: var(--s-3);
  text-align: center;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.wa-fab {
  position: fixed;
  bottom: var(--s-3);
  right: var(--s-3);
  z-index: var(--z-toast);
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--dur) var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }

/* ---------- IMG PLACEHOLDER (for Nano Banana later) ---------- */
.img-placeholder {
  background: repeating-linear-gradient(
    45deg,
    var(--color-frosted-mint),
    var(--color-frosted-mint) 12px,
    var(--color-cream) 12px,
    var(--color-cream) 24px
  );
  border: 2px dashed var(--color-lilac-ash);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-3);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  min-height: 200px;
}

/* ---------- BRAND DECORATIVE SHAPES ----------
   Floating organic shapes from the brand kit, used as
   ambient accents behind/around section content.
   All decorative — aria-hidden in HTML.
*/
.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  /* SAFETY DEFAULTS — visible but contained.
     Width 240px peeks into the section, never overlaps content
     because positioning anchors are off-canvas (-80 to -100px).
     Section-specific rules below can override. */
  width: 240px;
  opacity: 0.32;
  top: 10%;
  right: -90px;
  filter: blur(0.3px);
  will-change: transform;
}
.shape--leaf     { width: 240px; }
.shape--curl     {
  width: 260px;
  right: auto;
  left: -100px;
  bottom: -100px;
  top: auto;
}
.shape--crescent {
  width: 200px;
  right: -70px;
  top: 12%;
}

@keyframes shape-drift {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}

.shape--drift {
  animation: shape-drift 9s ease-in-out infinite;
}

/* Concept section — lilac leaf top-right */
.concept { position: relative; overflow: hidden; }
.concept .shape--leaf {
  --rot: -8deg;
  top: -40px;
  right: -60px;
  width: 220px;
  opacity: 0.35;
  transform: rotate(var(--rot));
}

/* Ways section — mint curl bottom-left, peach crescent top-right */
.ways { position: relative; overflow: hidden; }
.ways .shape--curl {
  --rot: 14deg;
  bottom: -120px;
  left: -100px;
  width: 220px;
  opacity: 0.22;
  transform: rotate(var(--rot));
}
.ways .shape--crescent {
  --rot: -20deg;
  top: 40px;
  right: 5%;
  width: 110px;
  opacity: 0.35;
  transform: rotate(var(--rot));
}

/* Feature sections (experience page) — keep shapes off to the edges */
.feature { position: relative; }
.feature .shape--leaf {
  --rot: -8deg;
  top: -40px;
  right: -100px;
  width: 200px;
  opacity: 0.18;
  transform: rotate(var(--rot));
}
.feature .shape--curl {
  --rot: 18deg;
  bottom: -120px;
  left: -100px;
  width: 200px;
  opacity: 0.18;
  transform: rotate(var(--rot));
}
.feature .shape--crescent {
  --rot: -25deg;
  top: 60px;
  right: -40px;
  width: 110px;
  opacity: 0.25;
  transform: rotate(var(--rot));
}

/* Included section — peach crescent floating left */
.included { position: relative; overflow: hidden; }
.included .shape--crescent {
  --rot: 200deg;
  bottom: 8%;
  left: -100px;
  width: 160px;
  opacity: 0.22;
  transform: rotate(var(--rot));
}

/* Testimonials section — lilac leaf bottom-right */
.testimonials .shape--leaf {
  --rot: 25deg;
  bottom: -100px;
  right: -80px;
  width: 200px;
  opacity: 0.3;
  transform: rotate(var(--rot));
}

/* Pricing section — mint curl top-right */
.pricing { position: relative; overflow: hidden; }
.pricing .shape--curl {
  --rot: -25deg;
  top: -40px;
  right: -40px;
  width: 200px;
  opacity: 0.45;
  transform: rotate(var(--rot));
}

/* Final CTA — lilac leaf top-left, peach crescent bottom-right */
.final .shape--leaf {
  --rot: 10deg;
  top: 8%;
  left: 4%;
  width: 160px;
  opacity: 0.18;
  transform: rotate(var(--rot));
}
.final .shape--crescent {
  --rot: 160deg;
  bottom: 8%;
  right: 6%;
  width: 180px;
  opacity: 0.22;
  transform: rotate(var(--rot));
}

/* Hide shapes on small screens to keep mobile clean */
@media (max-width: 640px) {
  .shape { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .shape--drift { animation: none; }
}

/* ---------- ENTRY ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp var(--dur-slow) var(--ease) both;
}
.fade-up.delay-1 { animation-delay: 120ms; }
.fade-up.delay-2 { animation-delay: 240ms; }
.fade-up.delay-3 { animation-delay: 360ms; }

/* ============================================================
   THE EXPERIENCE PAGE — page-specific sections
   (lives in shared stylesheet so future pages can reuse parts)
   ============================================================ */

/* ---------- INTRO BANNER (slimmer than home hero) ---------- */
.intro-banner {
  position: relative;
  min-height: 60vh;
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: calc(var(--s-7) + var(--s-2)) var(--s-6);
  gap: var(--s-3);
}
/* Order inside the intro-banner: title/eyebrow first, crumbs last */
.intro-banner__inner  { order: 1; }
.intro-banner__crumbs { order: 2; }

/* Bigger pill for the page title eyebrow on intro-banner pages */
.intro-banner .hero__eyebrow {
  padding: 0.95rem 1.75rem;
  gap: 0.75rem;
  font-size: var(--t-sm);
  letter-spacing: 0.26em;
  margin-bottom: var(--s-3);
}
.intro-banner .hero__eyebrow::before {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 5px rgba(232, 184, 161, 0.28);
}
.intro-banner .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.intro-banner .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-banner .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 80%,
      rgba(45, 30, 25, 0.6) 0%,
      rgba(45, 30, 25, 0.3) 45%,
      rgba(45, 30, 25, 0) 75%
    ),
    linear-gradient(180deg, rgba(45, 30, 25, 0.2) 0%, rgba(45, 30, 25, 0) 30%, rgba(45, 30, 25, 0.45) 100%);
}
.intro-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 0;
  text-align: center;
}
.intro-banner h1 {
  color: white;
  font-size: clamp(2.2rem, 1.4rem + 3.5vw, 4rem);
  margin-bottom: var(--s-2);
  text-shadow: 0 2px 4px rgba(45, 30, 25, 0.5), 0 8px 32px rgba(45, 30, 25, 0.45);
}
.intro-banner__sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--t-lg);
  max-width: 48ch;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(45, 30, 25, 0.55);
}
.intro-banner__crumbs {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  margin-top: var(--s-2);
  background: rgba(30, 20, 18, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(20, 12, 10, 0.55);
}
.intro-banner__crumbs a { color: inherit; }
.intro-banner__crumbs a:hover { color: white; }
.intro-banner__crumbs span { margin: 0 0.5em; opacity: 0.55; }

/* ---------- FEATURE BLOCK (alternating image + copy) ---------- */
.feature {
  position: relative;
  overflow: hidden;
}
.feature--cream  { background: var(--bg-primary); }
.feature--mint   { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-frosted-mint) 100%); }

.feature__grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 880px) {
  .feature__grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
  .feature--reverse .feature__grid > .feature__media { order: 2; }
}

.feature__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__copy h2 {
  font-size: var(--t-3xl);
  margin-bottom: var(--s-3);
}
.feature__copy p { margin-bottom: var(--s-2); }
.feature__copy .text-link { margin-top: var(--s-3); }
.feature__copy .btn { margin-top: var(--s-3); }

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: var(--s-3) 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.5;
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.7em;
  border-radius: 50%;
  background: var(--color-lilac-ash);
}
.feature-list strong {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
}
.feature-list em {
  font-style: normal;
  color: var(--text-muted);
  font-size: var(--t-sm);
}

.feature__meta {
  margin-top: var(--s-3);
  padding: var(--s-2) var(--s-3);
  background: var(--color-bg-accent-lilac, rgba(170, 165, 192, 0.12));
  border-left: 3px solid var(--color-lilac-ash);
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}
.feature__meta strong { color: var(--color-lilac-deep); letter-spacing: 0.04em; text-transform: uppercase; font-size: var(--t-xs); display: block; margin-bottom: 2px; }

/* ---------- COMPARISON TABLE (Pods vs Corners) ---------- */
.compare {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.compare .shape--leaf {
  --rot: -8deg;
  top: 8%;
  left: -120px;
  right: auto;
  width: 220px;
  opacity: 0.28;
  transform: rotate(var(--rot));
}
.compare .shape--curl {
  --rot: 14deg;
  bottom: -100px;
  left: -100px;
  right: auto;
  top: auto;
  width: 240px;
  opacity: 0.3;
  transform: rotate(var(--rot));
}
.compare .shape--crescent {
  --rot: -20deg;
  top: 8%;
  right: -80px;
  width: 200px;
  opacity: 0.32;
  transform: rotate(var(--rot));
}

/* Specs grid section */
.specs .shape--leaf {
  --rot: -8deg;
  top: 8%;
  right: -100px;
  width: 240px;
  opacity: 0.32;
  transform: rotate(var(--rot));
}
.specs .shape--curl {
  --rot: 14deg;
  bottom: -120px;
  left: -100px;
  right: auto;
  top: auto;
  width: 260px;
  opacity: 0.32;
  transform: rotate(var(--rot));
}
.specs .shape--crescent {
  --rot: -20deg;
  top: 60px;
  right: -70px;
  width: 200px;
  opacity: 0.34;
  transform: rotate(var(--rot));
}

/* Tiers section (pricing + memberships) */
.tiers .shape--leaf {
  --rot: -8deg;
  top: 6%;
  right: -100px;
  width: 240px;
  opacity: 0.3;
  transform: rotate(var(--rot));
}
.tiers .shape--curl {
  --rot: 14deg;
  bottom: -120px;
  left: -100px;
  right: auto;
  top: auto;
  width: 280px;
  opacity: 0.32;
  transform: rotate(var(--rot));
}
.tiers .shape--crescent {
  --rot: -20deg;
  top: 60px;
  right: -70px;
  width: 200px;
  opacity: 0.34;
  transform: rotate(var(--rot));
}

/* Form section (FAQ + form pages) */
.form-section .shape--leaf {
  --rot: -8deg;
  top: 6%;
  right: -100px;
  width: 220px;
  opacity: 0.28;
  transform: rotate(var(--rot));
}
.form-section .shape--crescent {
  --rot: -20deg;
  bottom: 8%;
  right: -80px;
  top: auto;
  width: 200px;
  opacity: 0.32;
  transform: rotate(var(--rot));
}

/* Location section (book page) */
.location .shape--curl {
  --rot: 14deg;
  bottom: -120px;
  right: -100px;
  left: auto;
  top: auto;
  width: 240px;
  opacity: 0.3;
  transform: rotate(var(--rot));
}
.steps .shape--crescent {
  --rot: -200deg;
  top: 12%;
  left: -140px;
  width: 130px;
  opacity: 0.18;
  transform: rotate(var(--rot));
}
.compare__head { text-align: center; margin-bottom: var(--s-5); }
.compare__head h2 { margin-top: var(--s-2); }
.compare__head p { margin-inline: auto; }

.compare__wrap {
  max-width: 880px;
  margin-inline: auto;
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}
.compare thead {
  background: var(--color-frosted-mint);
}
.compare th,
.compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.compare th {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--color-dark);
}
.compare th:not(:first-child),
.compare td:not(:first-child) {
  text-align: center;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:hover { background: rgba(170, 165, 192, 0.06); }
.compare .yes  { color: var(--color-lilac-deep); font-weight: 600; }
.compare .no   { color: var(--text-muted); opacity: 0.5; }
.compare__note {
  text-align: center;
  margin-top: var(--s-3);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
}
.compare__note a { color: var(--color-lilac-deep); border-bottom: 1px solid currentColor; }
.compare__note a:hover { color: var(--color-dark); }

@media (max-width: 640px) {
  .compare th,
  .compare td { padding: 0.75rem 0.6rem; font-size: var(--t-xs); }
}

/* ---------- STEPS TIMELINE (How It Works) ---------- */
.steps {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cotton-rose) 100%);
  position: relative;
  overflow: hidden;
}
.steps__head { text-align: center; margin-bottom: var(--s-6); }
.steps__head h2 { margin-top: var(--s-2); }
.steps__head p { margin-inline: auto; }

.steps__grid {
  display: grid;
  gap: var(--s-4);
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps__grid li { list-style: none; }
@media (min-width: 760px) {
  .steps__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
}

.step {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--color-lilac-ash);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.step h3 {
  font-family: var(--font-ui);
  font-size: var(--t-base);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: var(--s-1);
  line-height: 1.3;
}
.step p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ---------- GALLERY STRIP (horizontal scroll) ---------- */
.strip {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.strip__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.strip__head h2 { margin-top: var(--s-2); }

.strip__scroll {
  display: flex;
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--s-2) var(--sec-px) var(--s-4);
  margin-inline: calc(var(--sec-px) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-lilac-ash) transparent;
}
.strip__scroll::-webkit-scrollbar { height: 8px; }
.strip__scroll::-webkit-scrollbar-track { background: transparent; }
.strip__scroll::-webkit-scrollbar-thumb {
  background: var(--color-lilac-ash);
  border-radius: var(--r-pill);
}

.strip__item {
  flex: 0 0 clamp(260px, 40vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease);
  position: relative;
}
.strip__item:hover { transform: translateY(-4px); }
.strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.strip__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-3) var(--s-2);
  background: linear-gradient(180deg, transparent, rgba(45, 30, 25, 0.6));
  color: white;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.strip__cta {
  text-align: center;
  margin-top: var(--s-3);
}

/* ---------- SPECS GRID (Pods page features) ---------- */
.specs {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.specs__head { text-align: center; margin-bottom: var(--s-6); }
.specs__head h2 { margin-top: var(--s-2); }
.specs__head p { margin-inline: auto; }
.specs__grid {
  display: grid;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 760px) { .specs__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); } }
@media (min-width: 1024px) { .specs__grid { grid-template-columns: repeat(3, 1fr); } }

.spec {
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--sh-md);
  border: 1px solid var(--color-border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.spec:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.spec__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--color-bg-accent-lilac, rgba(170, 165, 192, 0.15));
  color: var(--color-lilac-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec__icon svg { width: 24px; height: 24px; }
.spec h3 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--color-dark);
  line-height: 1.2;
}
.spec p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
}

/* ---------- PRICING TIERS (cards) ---------- */
.tiers {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--color-frosted-mint) 100%);
  position: relative;
  overflow: hidden;
}
.tiers__head { text-align: center; margin-bottom: var(--s-6); }
.tiers__head h2 { margin-top: var(--s-2); }

.tiers__grid {
  display: grid;
  gap: var(--s-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 760px) { .tiers__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.tier {
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  box-shadow: var(--sh-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.tier--featured {
  background: linear-gradient(180deg, var(--color-off-white) 0%, #fbf2f3 100%);
  border: 2px solid var(--color-lilac-ash);
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-lilac-ash);
  color: white;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.tier__name {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  color: var(--color-dark);
  line-height: 1.1;
}
.tier__tag {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  margin-bottom: var(--s-1);
}
.tier__price {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--color-dark);
  line-height: 1;
  margin: var(--s-2) 0 var(--s-1);
}
.tier__price small {
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 0.4rem;
}
.tier__lede {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--s-2);
  max-width: none;
}
.tier__features {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: var(--s-2) 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  flex: 1;
}
.tier__features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--color-dark);
  line-height: 1.45;
}
.tier__features svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2em;
  flex-shrink: 0;
  color: var(--color-lilac-deep);
}
.tier .btn {
  width: 100%;
  margin-top: auto;
}

/* ---------- ENQUIRY / BOOKING FORM ---------- */
.form-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.form-section__head { text-align: center; margin-bottom: var(--s-5); }
.form-section__head h2 { margin-top: var(--s-2); }

.enquiry-form {
  max-width: 720px;
  margin-inline: auto;
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--sh-md);
  border: 1px solid var(--color-border);
}
.enquiry-form__grid {
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 640px) {
  .enquiry-form__grid { grid-template-columns: 1fr 1fr; }
  .enquiry-form .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
}
.field label .req { color: var(--color-desert-deep); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: var(--t-base);
  color: var(--color-dark);
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  min-height: 48px;
  width: 100%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-lilac-ash);
  background: var(--bg-surface);
  box-shadow: 0 0 0 4px rgba(170, 165, 192, 0.15);
}
.field--hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.radio-group label,
.check-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  min-height: 42px;
}
.radio-group input,
.check-group input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  aspect-ratio: 1;
  border: 1.5px solid var(--color-lilac-ash);
  border-radius: 50%;
  margin: 0;
  align-self: center;
  position: relative;
  background: var(--bg-surface);
  box-sizing: border-box;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.radio-group input:checked,
.check-group input:checked {
  background: var(--color-lilac-ash);
  border-color: var(--color-lilac-ash);
}
.radio-group input:checked::after,
.check-group input:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-group label:has(input:checked),
.check-group label:has(input:checked) {
  background: rgba(170, 165, 192, 0.15);
  border-color: var(--color-lilac-ash);
}

.form__submit {
  margin-top: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: center;
}
.form__submit .btn { min-width: 220px; }
.form__microcopy {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  color: var(--text-muted);
  text-align: center;
  max-width: 380px;
  margin-inline: auto;
  letter-spacing: 0.04em;
}

/* ---------- LOCATION STRIP ---------- */
.location {
  background: var(--color-frosted-mint);
  position: relative;
  overflow: hidden;
}
.location__grid {
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 880px) {
  .location__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
.location h2 { margin-bottom: var(--s-3); }
.location__meta {
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--color-dark);
}
.location__meta strong {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  margin-top: var(--s-2);
}
.location__directions {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: var(--s-3) 0;
}
.location__directions li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--color-border);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}
.location__directions strong { color: var(--color-dark); }
.location__directions span { color: var(--text-muted); }
.location__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-cream);
  box-shadow: var(--sh-md);
}
.location__map iframe { width: 100%; height: 100%; border: none; }
.location__map .img-placeholder { min-height: 100%; height: 100%; }

/* ---------- ACCORDION (Pod / Corner FAQs) ---------- */
.accordion {
  max-width: 760px;
  margin-inline: auto;
}
.accordion details {
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: var(--s-2) var(--s-3);
  margin-bottom: var(--s-2);
  transition: box-shadow var(--dur) var(--ease);
}
.accordion details[open] {
  box-shadow: var(--sh-md);
  border-color: var(--color-lilac-ash);
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) 0;
  font-family: var(--font-ui);
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--color-dark);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-lilac-deep);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details > p {
  padding: 0 0 var(--s-2);
  color: var(--text-muted);
  font-size: var(--t-sm);
  line-height: 1.65;
  max-width: none;
}

/* ---------- SUCCESS STATE (post form submit) ---------- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s-5);
  background: var(--color-frosted-mint);
  border-radius: var(--r-lg);
  max-width: 720px;
  margin-inline: auto;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--s-3);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lilac-deep);
  box-shadow: var(--sh-md);
}
.form-success h3 {
  font-size: var(--t-2xl);
  margin-bottom: var(--s-2);
}
.form-success p { margin-inline: auto; margin-bottom: var(--s-3); }
.form-success__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  align-items: center;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}

/* ---------- GALLERY GRID + FILTER TABS ---------- */
.gallery-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.gallery-section__head { text-align: center; margin-bottom: var(--s-4); }
.gallery-section__head h2 { margin-top: var(--s-2); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--s-5);
  list-style: none;
  padding: 0;
}
.gallery-filters li button {
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  background: var(--bg-surface);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  min-height: 40px;
}
.gallery-filters li button:hover { color: var(--color-dark); border-color: var(--color-lilac-ash); }
.gallery-filters li button.is-active {
  background: var(--color-lilac-ash);
  color: white;
  border-color: var(--color-lilac-ash);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-grid li {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-grid li:nth-child(4n+1) { aspect-ratio: 3 / 4; }
.gallery-grid li:nth-child(6n+2) { aspect-ratio: 4 / 5; }
.gallery-grid li:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.gallery-grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-grid li:hover img { transform: scale(1.06); }
.gallery-grid li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45, 30, 25, 0.4));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.gallery-grid li:hover::after { opacity: 1; }
.gallery-grid li.is-hidden { display: none; }

/* Video walk-through placeholder */
.video-section { background: var(--color-frosted-mint); position: relative; overflow: hidden; }
.video-section__head { text-align: center; margin-bottom: var(--s-4); }
.video-wrap {
  max-width: 960px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--sh-lg);
  background: var(--color-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrap .play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-lilac-deep);
  box-shadow: var(--sh-lg);
  z-index: 2;
  transition: transform var(--dur) var(--ease);
}
.video-wrap:hover .play-btn { transform: scale(1.08); }
.video-wrap .play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* ---------- VALUE CARDS (About, Privacy) ---------- */
.values {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.values__head { text-align: center; margin-bottom: var(--s-6); }
.values__head h2 { margin-top: var(--s-2); }
.values__grid {
  display: grid;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 760px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values__grid { grid-template-columns: repeat(3, 1fr); } }
.value {
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.value__num {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--color-lilac-ash);
  line-height: 1;
}
.value h3 {
  font-size: var(--t-xl);
  line-height: 1.2;
}
.value p {
  color: var(--text-muted);
  font-size: var(--t-sm);
  line-height: 1.65;
  max-width: none;
}

/* ---------- FOUNDER NOTE ---------- */
.founder-note {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cotton-rose) 100%);
  position: relative;
  overflow: hidden;
}
.founder-note__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.founder-note blockquote {
  font-family: var(--font-body);
  font-size: var(--t-lg);
  line-height: 1.7;
  color: var(--color-dark);
  font-style: italic;
}
.founder-note blockquote p { margin-bottom: var(--s-2); margin-inline: auto; max-width: 60ch; }
.founder-note cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  font-style: normal;
}

/* ---------- FAQ GROUPED (multiple categories) ---------- */
.faq-grouped {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.faq-grouped .container {
  max-width: 880px;
}
/* Per-section shape positioning — mirrors .compare / .steps pattern */
.faq-grouped .shape--leaf {
  --rot: -10deg;
  top: 12%;
  left: -110px;
  width: 240px;
  opacity: 0.22;
  transform: rotate(var(--rot));
}
.faq-grouped .shape--curl {
  --rot: 18deg;
  bottom: -120px;
  right: -110px;
  left: auto;
  top: auto;
  width: 260px;
  opacity: 0.24;
  transform: rotate(var(--rot));
}
.faq-grouped .shape--crescent {
  --rot: -20deg;
  top: 10%;
  right: -80px;
  width: 180px;
  opacity: 0.28;
  transform: rotate(var(--rot));
}
.faq-grouped__head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.faq-grouped__head h2 { margin-top: var(--s-2); }
.faq-grouped__head p { margin-inline: auto; }
.faq-grouped__sections { margin-top: var(--s-4); }
.faq-grouped__group { margin-bottom: var(--s-5); }
.faq-grouped__group h3 {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  margin-bottom: var(--s-2);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--color-border);
}

/* ---------- CONTACT CARD LIST (small contact channels) ---------- */
.contact-cards {
  display: grid;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 760px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: var(--r-md);
  background: rgba(170, 165, 192, 0.15);
  color: var(--color-lilac-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--color-dark);
  word-break: break-word;
}

/* ---------- HOURS TABLE ---------- */
.hours-table {
  max-width: 520px;
  margin-inline: auto;
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.hours-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: var(--t-sm);
}
.hours-table th,
.hours-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 600; color: var(--color-dark); width: 50%; }
.hours-table td { text-align: right; color: var(--text-muted); }

/* ---------- BLOG (landing + post cards + newsletter) ---------- */
.blog-featured {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.blog-featured__card {
  display: grid;
  gap: var(--s-4);
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-featured__card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
@media (min-width: 880px) {
  .blog-featured__card { grid-template-columns: 1.1fr 0.9fr; gap: 0; }
}
.blog-featured__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.blog-featured__card:hover .blog-featured__media img { transform: scale(1.04); }
.blog-featured__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.blog-featured__body .eyebrow { display: block; margin-bottom: 0; }
.blog-featured__body h3 {
  font-size: var(--t-2xl);
  line-height: 1.15;
}
.blog-featured__body p { color: var(--text-muted); }
.blog-featured__meta {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-grid-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.blog-grid-section__head { text-align: center; margin-bottom: var(--s-5); }
.blog-grid-section__head h2 { margin-top: var(--s-2); }

.blog-grid {
  display: grid;
  gap: var(--s-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 760px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card.is-hidden { display: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-frosted-mint);
}
.blog-card__media .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  border: none;
}
.blog-card__body {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.blog-card__tag {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lilac-deep);
  font-weight: 600;
}
.blog-card h3 {
  font-size: var(--t-xl);
  line-height: 1.2;
}
.blog-card p {
  color: var(--text-muted);
  font-size: var(--t-sm);
  line-height: 1.55;
  flex: 1;
  max-width: none;
}
.blog-card__meta {
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.4rem;
}
.blog-card__meta a { color: var(--color-lilac-deep); font-weight: 600; }

/* Newsletter strip */
.newsletter {
  background: linear-gradient(135deg, var(--color-cotton-rose) 0%, var(--color-desert-sand) 100%);
  position: relative;
  overflow: hidden;
}
.newsletter__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.newsletter h2 {
  color: var(--color-dark);
  margin-bottom: var(--s-2);
}
.newsletter p {
  color: rgba(45, 30, 25, 0.72);
  margin-inline: auto;
  margin-bottom: var(--s-3);
  max-width: 48ch;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 480px;
  margin-inline: auto;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(45, 30, 25, 0.2);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-ui);
  font-size: var(--t-sm);
  color: var(--color-dark);
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--color-lilac-ash);
  background: white;
  box-shadow: 0 0 0 4px rgba(170, 165, 192, 0.15);
}
.newsletter__note {
  margin-top: var(--s-2) !important;
  font-family: var(--font-ui);
  font-size: var(--t-xs);
  color: rgba(45, 30, 25, 0.55);
}

/* ---------- NAV ACTIVE STATE ---------- */
.nav__links a[aria-current="page"] {
  color: var(--color-lilac-deep);
  font-weight: 600;
}
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ============================================================
   VARIANT A — EDITORIAL SANCTUARY
   Magazine-style, asymmetric, image-led, big display type.
   ============================================================ */
body[data-variant="a"] .hero h1 {
  font-size: var(--t-5xl);
  letter-spacing: -0.02em;
}
body[data-variant="a"] .hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--sec-px);
}
body[data-variant="a"] .concept__grid {
  align-items: end;
}
body[data-variant="a"] .concept__media {
  aspect-ratio: 3 / 4;
  margin-top: var(--s-5);
}
body[data-variant="a"] .ways__grid .way {
  margin-top: 0;
}

/* ============================================================
   VARIANT B — SOFT MINIMAL
   Centered, symmetrical, type-led, mint+rose blocks.
   ============================================================ */
body[data-variant="b"] .hero {
  align-items: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cotton-rose) 100%);
}
body[data-variant="b"] .hero__bg::after {
  background: none;
}
body[data-variant="b"] .hero__bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
body[data-variant="b"] .hero__bg img {
  width: clamp(280px, 40vw, 480px);
  height: clamp(280px, 40vw, 480px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--sh-lg);
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.95;
}
body[data-variant="b"] .hero__inner {
  text-align: left;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--sec-px);
  padding-block: var(--s-8);
}
body[data-variant="b"] .hero h1 {
  color: var(--color-dark);
  text-shadow: none;
  font-size: var(--t-5xl);
  max-width: 14ch;
}
body[data-variant="b"] .hero__sub {
  color: var(--text-muted);
  max-width: 36ch;
}
body[data-variant="b"] .hero__eyebrow {
  color: var(--color-lilac-deep);
}

@media (max-width: 880px) {
  body[data-variant="b"] .hero__bg img {
    right: auto;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    width: clamp(220px, 60vw, 320px);
    height: clamp(220px, 60vw, 320px);
    opacity: 0.35;
  }
  body[data-variant="b"] .hero__inner {
    padding-block: var(--s-7);
  }
}

body[data-variant="b"] .concept {
  background: var(--color-frosted-mint);
  text-align: center;
}
body[data-variant="b"] .concept__grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}
body[data-variant="b"] .concept__copy {
  text-align: center;
}
body[data-variant="b"] .concept__copy p {
  margin-inline: auto;
}
body[data-variant="b"] .concept__copy .text-link {
  margin-inline: auto;
  margin-top: var(--s-4);
}
body[data-variant="b"] .concept__media {
  aspect-ratio: 16 / 9;
  max-width: 640px;
  margin-inline: auto;
}

body[data-variant="b"] .ways {
  background: var(--color-cream);
}
body[data-variant="b"] .way {
  text-align: center;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  box-shadow: none;
}
body[data-variant="b"] .way__body {
  align-items: center;
}
body[data-variant="b"] .way__body p {
  margin-inline: auto;
}

body[data-variant="b"] .testimonials {
  background: var(--color-frosted-mint);
}
body[data-variant="b"] .quote {
  background: transparent;
  text-align: center;
  padding: var(--s-3);
}
body[data-variant="b"] .quote__mark {
  position: static;
  display: block;
  text-align: center;
  font-size: 4rem;
  margin-bottom: 0;
}
body[data-variant="b"] .quote p {
  margin-inline: auto;
  font-size: var(--t-2xl);
}
