/* ===========================================================
   A Colorful New Chapter — Serene Sanctuary
   =========================================================== */

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

:root {
  /* Palette — Serene Sanctuary (default) */
  --bg:        #faf6f2;   /* warm cream */
  --bg-2:      #f3ebe2;   /* deeper cream */
  --lilac-50:  #efe5f2;
  --lilac-100: #e8dcef;
  --lilac-200: #d4c0de;
  --lilac-400: #b394c9;
  --lilac-500: #9d7bb8;   /* brand purple */
  --lilac-700: #6a4f85;
  --ink:       #2a1f3d;   /* deep plum-black */
  --ink-soft:  #4a3d5c;
  --muted:     #8a7d94;
  --line:      rgba(42, 31, 61, 0.12);
  --line-soft: rgba(42, 31, 61, 0.06);

  /* Type */
  --serif: 'Cormorant Garamond', 'Cormorant', Garamond, serif;
  --sans:  'Inter', system-ui, -apple-system, Helvetica, sans-serif;

  /* Rhythm */
  --section-y: clamp(72px, 10vw, 140px);
  --gutter:    clamp(24px, 5vw, 80px);
}

/* Density tweak variants */
:root[data-density="dense"] {
  --section-y: clamp(64px, 9vw, 128px);
  --gutter:    clamp(20px, 3.5vw, 56px);
}
:root[data-density="airy"] {
  --section-y: clamp(96px, 13vw, 180px);
  --gutter:    clamp(32px, 6vw, 96px);
}

/* Palette tweak variants */
:root[data-palette="warmer"] {
  --bg:        #f7efe6;
  --bg-2:      #ead9c7;
  --lilac-100: #ead4d8;
  --lilac-200: #dbb8be;
  --lilac-400: #b98ba6;
  --lilac-500: #a06a94;
  --ink:       #3a2533;
}
:root[data-palette="cooler"] {
  --bg:        #f4f2f7;
  --bg-2:      #e4dfec;
  --lilac-100: #dcd2ea;
  --lilac-200: #c5b3db;
  --lilac-400: #9f86c8;
  --lilac-500: #7a5fb0;
  --ink:       #1f1a33;
}
:root[data-palette="lighter"] {
  --bg:        #fdfbf8;
  --bg-2:      #f7eff7;
  --lilac-100: #f1e6f4;
  --lilac-200: #e0ccea;
  --lilac-400: #c9acde;
  --lilac-500: #b094cc;
  --ink:       #3d3152;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }

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

/* -------------- TYPE SYSTEM -------------- */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lilac-700);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.8vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.008em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}
.h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}
.body-lg {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.body   { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.small  { font-size: 13px; line-height: 1.55; color: var(--muted); }

/* -------------- LAYOUT -------------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }

.grid { display: grid; gap: var(--gutter); }

/* -------------- BUTTONS -------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .35s ease;
  border-radius: 0;
}
.btn:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--lilac-500);
  border-color: var(--lilac-500);
  color: #fff;
}
.btn--ghost {
  border: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  letter-spacing: 0.24em;
}
.btn--ghost:hover { background: transparent; color: var(--lilac-500); border-color: var(--lilac-500); }
.btn--light {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn--light:hover {
  background: #fff;
  color: var(--ink);
}

.arrow {
  width: 10px; height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform .35s ease;
}
.btn:hover .arrow { transform: rotate(45deg) translate(2px, -2px); }

/* -------------- NAV -------------- */
.nav {
  position: fixed;
  /* Offset to clear the .announce bar pinned at top: 0. The variable
     --announce-h is updated by AnnounceBar's resize listener, so the nav
     adapts when the announce wraps at narrow widths / zoom. Default 44px
     for first paint before JS runs. */
  top: var(--announce-h, 44px); left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, color .4s ease;
  color: #fff;
}
.nav--scrolled {
  background: rgba(250, 246, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  /* Let the logo shrink/truncate before colliding with the hamburger */
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .nav__logo { font-size: 14px; letter-spacing: 0.12em; }
  .nav__butterfly { width: 28px; height: 28px; }
}
.nav__butterfly {
  width: 36px;
  height: 36px;
  object-fit: contain;
  object-position: right center;
  transition: transform .6s ease;
}
.nav__logo:hover .nav__butterfly { transform: rotate(-6deg) scale(1.08); }
.nav__logo span { font-style: italic; font-weight: 400; letter-spacing: 0.04em; text-transform: none; font-size: 19px; }
.nav__links {
  display: flex;
  gap: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a { opacity: .85; transition: opacity .25s; position: relative; }
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

/* -------------- HERO -------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media .still {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Show more of the lower frame — couch + full body */
  object-position: center 70%;
}
.hero__still {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(157, 123, 184, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(42, 31, 61, 0.5), transparent 60%),
    linear-gradient(135deg, #8a6ea8 0%, #3a2d4a 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 10, 30, 0.25) 0%,
    rgba(20, 10, 30, 0.1) 40%,
    rgba(20, 10, 30, 0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Top padding clears the fixed nav (~80px) so the H1 can never tuck behind it */
  padding: 110px var(--gutter) clamp(60px, 9vh, 120px);
  max-width: 1440px;
  margin-inline: auto;
}
.hero__eyebrow {
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  /* Bigger again — close to the original look, but capped so it never overflows nav */
  font-size: clamp(48px, 6.6vw, 104px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  /* Wide enough that each <br/>-separated phrase fits on one line, not multi-wrap */
  max-width: 28ch;
  margin-bottom: 32px;
}
.hero__title em { font-style: italic; font-weight: 400; color: #e8dcef; }
.hero__lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  max-width: 48ch;
  color: rgba(255,255,255,.88);
  margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__corner {
  position: absolute;
  top: 50%;
  right: var(--gutter);
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}
.hero__butterfly {
  position: absolute;
  top: clamp(80px, 14vh, 140px);
  right: clamp(40px, 8vw, 120px);
  width: clamp(180px, 26vw, 380px);
  height: auto;
  z-index: 1;
  opacity: 0.85;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.35));
  animation: flutter 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes flutter {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-18px) rotate(-2.5deg); }
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.4); opacity: 1; }
}

/* -------------- MARQUEE / DIVIDER -------------- */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: slide 42s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee__item::after {
  content: '✦';
  color: var(--lilac-400);
  font-size: 14px;
  font-style: normal;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------- ABOUT INTRO -------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
/* About with photo on left */
.about-intro--with-image {
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  max-width: 1200px;
}
.about-intro__photo {
  position: relative;
  overflow: hidden;
  background: var(--lilac-100);
  min-height: 420px;
  aspect-ratio: 4/5;
}
.about-intro__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1);
}
.about-intro__photo:hover img { transform: scale(1.04); }
.about-intro__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro__body .about-intro__label { margin-bottom: 24px; }
.about-intro__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-intro__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--lilac-500);
}
.about-intro__copy p + p { margin-top: 1.2em; }
.about-intro__copy .lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1em;
  letter-spacing: -0.003em;
}
.about-intro__copy .lead em { font-style: italic; color: var(--lilac-500); }

@media (max-width: 860px) {
  .about-intro, .about-intro--with-image { grid-template-columns: 1fr; gap: 32px; }
  .about-intro__photo { min-height: 320px; aspect-ratio: 4/5; max-height: 520px; }
}

/* -------------- EXPERIENCE GRID -------------- */
.experience { background: var(--bg-2); position: relative; overflow: hidden; }

/* Decorative butterfly art — soft brand mark in the background */
.experience__bgmark {
  position: absolute;
  right: -80px; top: 60px;
  width: 380px; height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-12deg);
}

/* Original 2-col pillar grid (reverted from photo-on-left experiment) */
@media (max-width: 860px) {
  .experience__bgmark { width: 220px; opacity: 0.04; }
}
.experience__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.experience__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--lilac-100);
}
.experience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.exp-card--quote {
  background: var(--lilac-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .experience__grid { grid-template-columns: 1fr; }
}
.exp-card {
  background: var(--bg-2);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background .35s;
}
.exp-card:hover { background: var(--bg); }
.exp-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lilac-500);
  letter-spacing: 0.08em;
}
.exp-card__icon {
  width: 44px; height: 44px;
  color: var(--lilac-500);
  margin-bottom: 6px;
}
.exp-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  font-weight: 400;
}
.exp-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

@media (max-width: 720px) {
  .experience__head { grid-template-columns: 1fr; gap: 24px; }
}

/* -------------- INCLUDED -------------- */
.included {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.included__video {
  aspect-ratio: 4/5;
  min-height: 400px;
  background: var(--lilac-100);
  position: relative;
  overflow: hidden;
}
.included__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.included__list {
  list-style: none;
  border-top: 1px solid var(--line);
}
.included__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.included__list .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--lilac-500);
}
.included__list .label {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
}

@media (max-width: 860px) {
  .included { grid-template-columns: 1fr; }
}

/* -------------- FOUNDER QUOTE -------------- */
.founder-quote {
  background: var(--ink);
  color: #fff;
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.founder-quote__butterfly {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 460px;
  height: auto;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  transform: rotate(8deg);
}
.founder-quote .container { position: relative; z-index: 1; }
.founder-quote__wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.founder-quote__photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #6a4f85, #2a1f3d);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.founder-quote__photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
/* Placeholder label removed — we have the real photo now */
.founder-quote__text {
  max-width: 56ch;
}
.founder-quote__mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--lilac-400);
  display: block;
  margin-bottom: 24px;
  font-style: italic;
}
.founder-quote__words {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #f5efe8;
}
.founder-quote__words em { color: var(--lilac-200); font-style: italic; }
.founder-quote__attr {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.founder-quote__attr-line {
  width: 40px; height: 1px; background: var(--lilac-400);
}
.founder-quote__name {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.founder-quote__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--lilac-200);
  margin-top: 3px;
}
.founder-quote__cta {
  margin-top: 48px;
  display: inline-block;
}

@media (max-width: 860px) {
  .founder-quote__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .founder-quote__photo {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 4/5;
  }
  .founder-quote__text { margin: 0 auto; }
  .founder-quote__attr { justify-content: center; flex-wrap: wrap; }
  .founder-quote__cta { margin-top: 32px; }
}
@media (max-width: 560px) {
  .founder-quote__photo { max-width: 260px; }
  .founder-quote__words { font-size: 22px; }
  .founder-quote__mark { font-size: 88px; }
}

/* -------------- CUSTOMIZED EXPERIENCE -------------- */
.custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg);
  align-items: stretch;
  min-height: 600px;
}
.custom__carousel {
  position: relative;
  overflow: hidden;
  background: var(--lilac-100);
}
.custom__slide {
  position: absolute;
  /* Explicit top/right/bottom/left for broader browser support (some older
     iOS Safari versions choke on `inset` shorthand). */
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.custom__slide--active { opacity: 1; }
/* Videos and images inside slides — always fill the frame */
video.custom__slide { object-fit: cover; }
.custom__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,10,30,.3));
}
.custom__dots {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; gap: 10px;
  z-index: 2;
}
.custom__dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.custom__dot--active { background: #fff; }
.custom__label {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.custom__text {
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--bg);
}
.custom__text h2 { max-width: 16ch; }
.custom__text p { max-width: 44ch; }

@media (max-width: 860px) {
  .custom { grid-template-columns: 1fr; min-height: auto; }
  /* Explicit min-height + aspect-ratio so carousel renders even on older
     iOS Safari (where aspect-ratio support is incomplete). */
  .custom__carousel { aspect-ratio: 4/5; min-height: 480px; }
}

/* -------------- TESTIMONIALS -------------- */
.testi {
  background: var(--lilac-50);
  overflow: hidden;
}
.testi__head {
  text-align: center;
  margin-bottom: clamp(60px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.testi__viewport {
  position: relative;
  height: 340px;
  max-width: 980px;
  margin: 0 auto;
}
.testi__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 24px;
}
.testi__slide--active { opacity: 1; pointer-events: auto; }
.testi__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.4;
  max-width: 30ch;
  color: var(--ink);
  letter-spacing: -0.003em;
}
.testi__attr {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lilac-700);
  font-weight: 500;
}
.testi__nav {
  display: flex; justify-content: center; gap: 24px;
  margin-top: 40px;
}
.testi__arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all .3s;
}
.testi__arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.testi__arrow svg { width: 14px; height: 14px; }

/* -------------- WALL OF INSPIRATION -------------- */
.wall { background: var(--bg); padding-block: var(--section-y); }
.wall__head {
  max-width: 720px;
  margin: 0 auto clamp(60px, 7vw, 100px);
  text-align: center;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
.wall__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wall__card {
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line-soft);
  transition: transform .4s ease, background .4s ease;
  min-height: 240px;
}
.wall__card:hover { transform: translateY(-4px); background: var(--lilac-50); }
.wall__card--lilac { background: var(--lilac-100); color: var(--lilac-700); }
.wall__card--ink   { background: var(--ink); color: #f5efe8; }
.wall__card--ink .wall__quote { color: #f5efe8; }
.wall__card--ink .wall__author { color: var(--lilac-200); }
.wall__quote {
  font-family: var(--serif);
  font-weight: 300;
  /* v3: bumped up — was clamp(16, 1.4, 22) */
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.wall__author {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
/* spans */
.wall__card.span-4 { grid-column: span 4; }
.wall__card.span-5 { grid-column: span 5; }
.wall__card.span-6 { grid-column: span 6; }
.wall__card.span-7 { grid-column: span 7; }
.wall__card.span-8 { grid-column: span 8; }
@media (max-width: 860px) {
  .wall__card { grid-column: span 12 !important; }
}

/* -------------- BOOK CTA -------------- */
.book-cta {
  position: relative;
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--lilac-50) 100%);
  overflow: hidden;
}
.book-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px; align-items: center;
}
.book-cta h2 { max-width: 18ch; }
.book-cta__butterfly-img {
  position: absolute;
  width: clamp(280px, 40vw, 540px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

/* -------------- FOOTER -------------- */
.foot {
  background: var(--ink);
  color: #d4c0de;
  padding: clamp(60px, 8vw, 120px) var(--gutter) 40px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(212, 192, 222, 0.18);
}
.foot__brand {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 320px;
}
.foot__brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.foot__butterfly {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: right center;
  opacity: .95;
}
.foot__brand-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: #fff;
  line-height: 1.1;
}
.foot__brand-name em { font-style: italic; color: var(--lilac-200); }
.foot__tag { font-size: 14px; line-height: 1.6; color: rgba(212,192,222,.7); }
.foot__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot__col a { font-size: 14px; color: rgba(212,192,222,.7); transition: color .2s; }
.foot__col a:hover { color: #fff; }
.foot__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(212,192,222,.55);
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot__top { grid-template-columns: 1fr; gap: 32px; }
}

/* -------------- MODAL -------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20,10,30,.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.modal--open { opacity: 1; pointer-events: auto; }
/* v3: centered variant for Customized Experience modal */
.modal__card--centered { text-align: center; }
.modal__card--centered ul { display: inline-block; text-align: center; }

.modal__card {
  background: var(--bg);
  max-width: 620px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform .4s ease;
}
.modal--open .modal__card { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; font-size: 22px;
  color: var(--ink); font-family: var(--serif);
  display: flex; align-items: center; justify-content: center;
}
.modal__close:hover { color: var(--lilac-500); }
.modal h3 { margin-bottom: 20px; font-size: 28px; font-weight: 400; }
.modal ul { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.modal ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.modal ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--lilac-500);
}
.modal p { margin-bottom: 16px; color: var(--ink-soft); }

/* -------------- TWEAKS PANEL -------------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 280px;
  background: rgba(250, 246, 242, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  padding: 20px;
  z-index: 90;
  font-family: var(--sans);
  box-shadow: 0 20px 60px rgba(42,31,61,.18);
  display: none;
  color: var(--ink);
}
.tweaks--on { display: block; }
.tweaks h5 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h5 span { font-size: 10px; letter-spacing: 0.2em; color: var(--muted); font-family: var(--sans); font-weight: 500; text-transform: uppercase; }
.tweaks__group { margin-bottom: 14px; }
.tweaks__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.tweaks__row { display: flex; gap: 6px; }
.tweaks__btn {
  flex: 1;
  padding: 8px 4px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: all .2s;
  font-family: var(--sans);
}
.tweaks__btn:hover { border-color: var(--ink); }
.tweaks__btn--on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* -------------- SECTION HEAD -------------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 { max-width: 20ch; }

/* -------------- UTILITIES -------------- */
.mt-sm { margin-top: 20px; }
.mt    { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.text-center { text-align: center; }
.max-prose { max-width: 60ch; }

/* -------------- ACCESSIBILITY: SKIP LINK + FOCUS RINGS -------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  z-index: 100000;
  padding: 10px 18px;
  background: var(--ink, #1f0f33);
  color: #faf6ff;
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--peach, #E9B89C);
  outline-offset: 2px;
}
*:focus-visible {
  outline: 2px solid var(--peach, #E9B89C) !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

/* -------------- STATS (animated counters) -------------- */
.stats {
  background: var(--lilac-900, #1f0f33);
  color: #faf6ff;
  padding: clamp(64px, 8vw, 96px) 24px;
}
.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__item { padding: 0 8px; }
.stats__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  color: var(--peach, #E9B89C);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.stats__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 255, 0.75);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* -------------- PRESS / FEATURED STRIP -------------- */
.press {
  padding: 56px 24px;
  background: var(--bg-2, #f8f5fb);
  text-align: center;
  border-top: 1px solid rgba(106, 79, 133, 0.06);
  border-bottom: 1px solid rgba(106, 79, 133, 0.06);
}
.press__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lilac-700, #3b2762);
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 500;
}
.press__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
}
.press__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--lilac-800, #2f1d4f);
  opacity: 0.55;
  transition: opacity .25s ease;
  letter-spacing: 0.01em;
}
.press__item:hover { opacity: 1; }

/* -------------- V2: SEAMLESS PAGE TRANSITIONS -------------- */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------- V2: UNIFIED SITE HEADER (used on every secondary page) -------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 40px);
  background: rgba(250, 246, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft, rgba(28,25,23,0.06));
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink, #1f0f33);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.site-header__brand img {
  width: 30px; height: auto;
  transition: transform .5s ease;
}
.site-header__brand:hover img { transform: rotate(-6deg) scale(1.08); }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-header__nav a {
  color: var(--ink-soft, #2f1d4f);
  text-decoration: none;
  transition: color .25s ease;
}
.site-header__nav a:hover { color: var(--peach-deep, #C99A5B); }
.site-header__cta {
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F) !important;
  padding: 10px 20px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, transform .15s ease;
}
.site-header__cta:hover {
  background: var(--peach-deep, #C99A5B);
  color: white !important;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .site-header__nav .nav-link-secondary { display: none; }
  .site-header__brand { font-size: 16px; }
}

/* -------------- V2: UNIFIED SITE FOOTER (slim, used on every secondary page) -------------- */
.site-footer-slim {
  background: var(--ink, #1f0f33);
  color: rgba(250, 246, 242, 0.7);
  padding: 40px clamp(20px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 13px;
}
.site-footer-slim__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.site-footer-slim__brand img {
  width: 24px;
  filter: brightness(2);
  opacity: 0.7;
}
.site-footer-slim__brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(250, 246, 242, 0.85);
}
.site-footer-slim__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer-slim__links a {
  color: rgba(250, 246, 242, 0.7);
  text-decoration: none;
  transition: color .25s;
}
.site-footer-slim__links a:hover { color: rgba(250, 246, 242, 1); }
.site-footer-slim__copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 242, 0.45);
}
.site-footer-slim__version {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(233, 184, 156, 0.15);
  color: rgba(233, 184, 156, 0.85);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* -------------- CUSTOM CURSOR (subtle, follows mouse).
   Only hides system cursor when the JS has had a chance to initialize and
   the .cursor-active class is set on <html>. Prevents "no cursor" if JS fails. */
html.cursor-active body { cursor: none; }
html.cursor-active a,
html.cursor-active button,
html.cursor-active input,
html.cursor-active select,
html.cursor-active textarea,
html.cursor-active [role="button"],
html.cursor-active .custom__dot,
html.cursor-active .testi__arrow { cursor: none; }
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lilac-500, #6a4f85);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease, opacity .25s ease;
  mix-blend-mode: multiply;
  opacity: 0;
}
html.cursor-active #cursor { opacity: 0.85; }
#cursor.cursor--hover {
  width: 44px; height: 44px;
  background: var(--peach, #E9B89C);
  opacity: 0.5;
}
#cursor.cursor--text {
  width: 3px; height: 24px;
  border-radius: 0;
  background: var(--lilac-700);
}

/* -------------- MANIFESTO (full-bleed belief statement) -------------- */
.manifesto {
  background: var(--lilac-900, #1f0f33);
  color: #faf6ff;
  padding: clamp(96px, 14vw, 180px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  /* soft radial bloom */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233, 184, 156, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto__inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.manifesto__eye {
  color: var(--peach, #E9B89C);
  display: block;
  margin-bottom: 36px;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
}
.manifesto__line {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22,0.61,0.36,1);
}
.manifesto__line--in { opacity: 1; transform: translateY(0); }
.manifesto__line em {
  font-style: italic;
  color: var(--peach, #E9B89C);
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__line { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -------------- RECENT ACTIVITY TICKER (social proof, bottom-left) -------------- */
.ticker {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 55;
  background: white;
  padding: 14px 20px 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(31, 15, 51, 0.16), 0 0 0 1px rgba(106, 79, 133, 0.06);
  font-size: 13px;
  color: var(--lilac-900, #1f0f33);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 48px);
  animation: tickerIn 0.6s cubic-bezier(0.22,0.61,0.36,1);
}
@keyframes tickerIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ticker strong { color: var(--lilac-700, #3b2762); font-weight: 600; }
.ticker__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2f7a3a;
  box-shadow: 0 0 0 0 rgba(47, 122, 58, 0.55);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.ticker__when {
  color: var(--lilac-500, #6a4f85);
  font-size: 12px;
  white-space: nowrap;
}
.ticker__close {
  background: none;
  border: 0;
  color: var(--lilac-500);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 4px;
  line-height: 1;
}
.ticker__close:hover { color: var(--lilac-900); }
@media (max-width: 600px) {
  .ticker { left: 12px; right: 12px; bottom: 12px; max-width: none; font-size: 12px; padding: 12px 16px; }
  .ticker__when { display: none; }
}

/* -------------- MAGNETIC BUTTON HOVER (data-magnetic="true") -------------- */
[data-magnetic] {
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-flex;
}

/* -------------- ANNOUNCEMENT BAR (top of page) -------------- */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 24px;
  background: var(--lilac-900, #1f0f33);
  color: #faf6ff;
  font-size: 13px;
  letter-spacing: 0.02em;
  /* Pinned to the very top of the viewport, above the fixed nav. */
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;        /* nav is z:50, so announce sits above it */
  min-height: 44px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.4;
}
.announce strong { color: var(--peach, #E9B89C); font-weight: 600; }
.announce__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peach, #E9B89C);
  box-shadow: 0 0 0 0 rgba(233, 184, 156, 0.55);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(233, 184, 156, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(233, 184, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 184, 156, 0); }
}
.announce__cta {
  color: var(--peach, #E9B89C);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.announce__cta:hover { border-bottom-color: var(--peach, #E9B89C); }
.announce__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: rgba(250, 246, 255, 0.5);
  font-size: 22px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, background .2s ease;
}
.announce__close:hover { color: #fff; background: rgba(250, 246, 255, 0.1); }
@media (max-width: 600px) {
  .announce { font-size: 12px; padding: 10px 16px; gap: 10px; flex-wrap: wrap; min-height: 60px; }
  /* .nav top handled by --announce-h variable in <html> style attribute */
}

/* -------------- TRUST STRIP -------------- */
.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  padding: 24px 24px;
  background: var(--bg, #faf6f2);
  border-bottom: 1px solid rgba(106, 79, 133, 0.08);
  flex-wrap: wrap;
}
.trust__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac-700, #3b2762);
  font-weight: 500;
  opacity: 0.75;
}
.trust__cities {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
}
.trust__city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--lilac-800, #2f1d4f);
}
.trust__city-mark {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lilac-400, #a18bb9);
}

/* -------------- HERO PARALLAX -------------- */
.hero__media {
  will-change: transform;
  /* Slightly oversize so the parallax doesn't reveal the bottom edge */
  height: 130%;
  bottom: -30%;
}

/* -------------- TEXT SELECTION (premium polish) -------------- */
::selection {
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F);
}
::-moz-selection {
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F);
}

/* -------------- MARQUEE — pause on hover -------------- */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee { cursor: default; }

/* -------------- TESTIMONIAL CROSS-FADE (smoother slide transitions) -------------- */
.testi__viewport {
  position: relative;
  /* keep a stable height — original layout depends on it */
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}
.testi__slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testi__quote { max-width: 56ch; margin: 0 auto; }
.testi__attr { margin-top: 20px; }

/* -------------- WALL OF INSPIRATION — hover lift -------------- */
.wall__card {
  transition: transform .35s cubic-bezier(0.22,0.61,0.36,1), box-shadow .35s ease, background .25s ease;
  cursor: default;
}
.wall__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 15, 51, 0.10);
}

/* -------------- NEWSLETTER inline form (Netlify Forms) -------------- */
.newsletter {
  background: var(--lilac-100, #f3eef9);
  padding: clamp(56px, 7vw, 88px) 24px;
  text-align: center;
}
.newsletter__inner { max-width: 520px; margin: 0 auto; }
.newsletter h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin: 12px 0 8px;
  color: var(--lilac-900, #1f0f33);
  line-height: 1.2;
}
.newsletter p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lilac-800, #2f1d4f);
  margin: 0 0 24px;
}
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input[type="email"] {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 13px 16px;
  border: 1px solid rgba(106, 79, 133, 0.25);
  border-radius: 999px;
  background: white;
  font-size: 14px;
  font-family: inherit;
  color: var(--lilac-900);
  outline: none;
}
.newsletter input[type="email"]:focus {
  border-color: var(--lilac-500, #6a4f85);
  box-shadow: 0 0 0 3px rgba(106, 79, 133, 0.12);
}
.newsletter button {
  padding: 13px 24px;
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, transform .15s ease;
}
.newsletter button:hover { background: var(--peach-deep, #C99A5B); color: white; transform: translateY(-1px); }
.newsletter__note {
  font-size: 12px;
  color: var(--lilac-700, #3b2762);
  margin-top: 16px;
  opacity: 0.8;
}
.newsletter__success {
  display: none;
  background: #eaf5ec;
  color: #1e4d2b;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
}
.newsletter--sent form { display: none; }
.newsletter--sent .newsletter__success { display: block; }

/* -------------- LOADING SPLASH (visible until React mounts) -------------- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg, #faf6f2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity .55s ease, visibility 0s linear .55s;
}
#splash.splash--gone {
  opacity: 0;
  visibility: hidden;
}
.splash__logo {
  width: 180px;
  max-width: 60vw;
  height: auto;
  animation: splashLogo 2s ease-in-out infinite;
}
@keyframes splashLogo {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
.splash__bar {
  width: 140px;
  height: 2px;
  background: rgba(106, 79, 133, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.splash__bar-fill {
  width: 30%;
  height: 100%;
  background: var(--lilac-500, #6a4f85);
  border-radius: 2px;
  animation: splashBar 1.6s ease-in-out infinite;
}
@keyframes splashBar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(170%); }
  100% { transform: translateX(370%); }
}

/* -------------- SCROLL PROGRESS BAR (fixed top) -------------- */
#progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--lilac-500, #6a4f85), var(--peach, #E9B89C));
  z-index: 1000;
  transition: width .12s linear;
  pointer-events: none;
}

/* -------------- STICKY FLOATING RESERVE CTA (appears after hero) -------------- */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  padding: 14px 24px;
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F) !important;
  border-radius: 999px;
  font-family: var(--ui-font, sans-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(31, 15, 51, 0.18), 0 4px 12px rgba(201, 154, 91, 0.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .25s ease;
}
.float-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--peach-deep, #C99A5B);
  color: #fff !important;
}
@media (max-width: 600px) {
  .float-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 11px; }
}

/* -------------- GRAIN TEXTURE OVERLAY (SVG noise, ~4% opacity, fixed) -------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* -------------- HERO ENTRY ANIMATIONS (staggered fade up on load) -------------- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__corner   { animation: heroIn 0.9s ease-out 0.20s both; }
.hero__title    { animation: heroIn 1.1s cubic-bezier(0.22,0.61,0.36,1) 0.45s both; }
.hero__lede     { animation: heroIn 1.0s cubic-bezier(0.22,0.61,0.36,1) 0.85s both; }
.hero__ctas     { animation: heroIn 0.9s cubic-bezier(0.22,0.61,0.36,1) 1.10s both; }
.hero__scroll   { animation: heroIn 0.8s ease-out 1.40s both; }

@media (prefers-reduced-motion: reduce) {
  .hero__corner, .hero__title, .hero__lede, .hero__ctas, .hero__scroll { animation: none !important; }
}

/* -------------- DROP CAP (first paragraph in About modal) -------------- */
.modal__card .body:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  line-height: 0.9;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--lilac-500, #6a4f85);
  font-style: italic;
  font-weight: 400;
}

/* -------------- SCROLL BEHAVIOR + REVEAL ANIMATIONS -------------- */
html { scroll-behavior: smooth; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* -------------- WHAT TO EXPECT (5-step timeline) -------------- */
.wte { background: var(--bg, #faf6f2); padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); }
.wte__head { text-align: center; max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); }
.wte__head h2 { margin-left: auto; margin-right: auto; }

.wte__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: wte;
}
/* Soft horizontal connecting line — sits behind the numbered circles, aligned to their vertical center */
.wte__list::before {
  content: '';
  position: absolute;
  top: 26px;
  /* Align endpoints to the centers of the first and last circles
     (1/(2*5) = 10% to first center, 100 - 10% = 90% to last) */
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--lilac-400, #a18bb9) 0%,
    var(--lilac-400, #a18bb9) 100%
  );
  opacity: 0.4;
  z-index: 0;
}
.wte__step {
  position: relative;
  padding: 0 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wte__num {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--bg, #faf6f2);
  border: 1px solid var(--lilac-400, #a18bb9);
  color: var(--lilac-700, #3b2762);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: background .3s, color .3s, transform .3s;
}
.wte__step:hover .wte__num {
  background: var(--peach, #E9B89C);
  color: var(--peach-ink, #6B3F1F);
  border-color: var(--peach, #E9B89C);
  transform: scale(1.06);
}
.wte__label {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink, #1f0f33);
  line-height: 1.25;
}
.wte__copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft, #5a4f72);
  margin: 0;
  max-width: 22ch;
}
@media (max-width: 860px) {
  .wte__list { grid-template-columns: 1fr; gap: 32px; }
  .wte__list::before { display: none; }
  .wte__step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; padding: 0; }
  .wte__num { margin-bottom: 0; flex-shrink: 0; }
  .wte__copy { max-width: none; }
}

/* -------------- ACCENT COLOR (peach — for primary CTAs) -------------- */
:root {
  --peach:       #E9B89C;
  --peach-soft:  #F4D3BE;
  --peach-deep:  #C99A5B;
  --peach-ink:   #6B3F1F;
}

/* Promote primary CTAs from ink to a warm peach so they pop against the lilac palette */
.btn--primary {
  background: var(--peach) !important;
  color: var(--peach-ink) !important;
  border-color: transparent !important;
  transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}
.btn--primary:hover {
  background: var(--peach-deep) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 154, 91, 0.32);
}

/* -------------- INTERSTITIAL (single-line breath quotes between sections) -------------- */
.interstitial {
  padding: clamp(40px, 5vw, 64px) 24px;
  text-align: center;
  background: var(--bg, #faf6f2);
}
.interstitial__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.35;
  color: var(--lilac-700, #3b2762);
  max-width: 24ch;
  margin: 0 auto;
  letter-spacing: -0.005em;
  position: relative;
}
.interstitial__text::before,
.interstitial__text::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lilac-400, #a18bb9);
  margin: 18px auto;
  opacity: 0.55;
}

/* -------------- EXPERIENCE CARD ACCENT EDGES -------------- */
.exp-card {
  position: relative;
  border-left: 3px solid transparent;
  transition: background .35s, border-color .35s;
}
.exp-card:nth-child(1) { border-left-color: var(--lilac-400, #a18bb9); }
.exp-card:nth-child(2) { border-left-color: var(--peach, #E9B89C); }
.exp-card:nth-child(3) { border-left-color: var(--lilac-500, #6a4f85); }
.exp-card:nth-child(4) { border-left-color: var(--peach-deep, #C99A5B); }
.exp-card:nth-child(5) { border-left-color: var(--lilac-600, #4f3870); }
.exp-card:hover { border-left-width: 5px; }

/* -------------- WHATSAPP CONTACT BUTTON --------------
   Inline button used on /book.html and homepage Reserve section.
   Brand-styled (no neon green) so it doesn't break the wellness aesthetic. */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--lilac-100);
  color: var(--lilac-900);
  border: 1px solid var(--lilac-400);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all .35s ease;
}
.wa-btn:hover {
  background: var(--lilac-700);
  color: var(--bg);
  border-color: var(--lilac-700);
}
.wa-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* -------------- LOGO (footer) — v3: same butterfly + wordmark style as header -------------- */
.foot__brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}
.foot__brand-mark-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  transition: transform .5s ease;
}
.foot__brand-mark:hover .foot__brand-mark-icon { transform: rotate(-6deg) scale(1.08); }
.foot__brand-mark-text {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #faf6f2;
  font-weight: 400;
}
.foot__brand-mark-text em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 19px;
  color: var(--lilac-200);
}

/* -------------- MOBILE NAV (added) -------------- */
.nav__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: inherit;
  /* Keep the touch target stable so it never gets crushed by the logo */
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--lilac-900, #1f0f33);
  color: #faf6ff;
  z-index: 100;
  /* Safe-area-aware padding: notch/dynamic island at top, home indicator at bottom.
     iPhone 13 Pro / 15 Pro / 17 all have ~59px notch — the inset variables handle it. */
  padding-top:    max(80px, calc(env(safe-area-inset-top, 0px) + 64px));
  padding-bottom: max(40px, calc(env(safe-area-inset-bottom, 0px) + 24px));
  padding-left:   max(24px, env(safe-area-inset-left, 0px));
  padding-right:  max(24px, env(safe-area-inset-right, 0px));
  transform: translateY(-100%);
  transition: transform .35s ease, visibility .35s linear;
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* When closed, hide entirely so transformed pane never intercepts iOS touches */
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
}
.nav__mobile--open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.nav__mobile a {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: #faf6ff;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(250,246,242,0.1);
}
.nav__mobile-close {
  position: absolute;
  /* Sits below the notch on iPhone 13 Pro / 15 Pro / 17 */
  top:   max(20px, calc(env(safe-area-inset-top, 0px) + 12px));
  right: max(20px, calc(env(safe-area-inset-right, 0px) + 12px));
  background: none; border: 0;
  color: #faf6ff;
  font-size: 32px; line-height: 1;
  width: 44px; height: 44px;  /* iOS minimum touch-target size */
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}

/* -------------- FAQ (added) -------------- */
.faq { background: var(--bg-2); }
.faq__head { text-align: center; margin-bottom: 56px; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line, rgba(0,0,0,0.08));
}
.faq__item { border-bottom: 1px solid var(--line, rgba(0,0,0,0.08)); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--serif);
  /* v3: bumped up — was clamp(17, 1.6, 21) */
  font-size: clamp(20px, 1.9vw, 25px);
  color: var(--ink);
  line-height: 1.4;
  font-weight: 400;
}
.faq__q:hover { color: var(--lilac-700); }
.faq__icon {
  flex-shrink: 0;
  width: 14px; height: 14px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--lilac-700, #3b2762);
  transition: transform .3s ease;
}
.faq__icon::before { top: 6px; left: 0; right: 0; height: 1.5px; }
.faq__icon::after  { left: 6px; top: 0; bottom: 0; width: 1.5px; }
.faq__item--open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item--open .faq__a { max-height: 400px; }
.faq__a-inner {
  padding: 0 8px 24px;
  /* v3: bumped up to match question font scale */
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
}
