/* ============================================================
   BELOVED FLOW — Miryam
   Palette derived from the brand shoot:
   deep teal shadow, warm sand skin, cream linen, indigo drape
   ============================================================ */

:root {
  --ink:        #14232b;   /* deepest shadow in the shoot */
  --ink-soft:   #24404c;
  --teal:       #0f3d4a;
  --indigo:     #1b3a5c;   /* the blue drape */
  --sand:       #c9a689;   /* warm skin midtone */
  --sand-deep:  #a8794f;
  --cream:      #f5efe6;   /* linen */
  --cream-warm: #ece2d4;
  --glow:       #7fd8d0;   /* the energy */
  --glow-soft:  #bfeeea;

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  --measure: 34rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: .005em;
  margin: 0;
}

a { color: inherit; }

.wrap { width: min(100% - 2.5rem, 68rem); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 46rem); margin-inline: auto; }

/* --- reveal on scroll ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HERO — her hands, with the energy alive on the spine
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 34rem;
  overflow: hidden;
  background: var(--ink);
}

/* The image and the energy SVG live in ONE stage that scales as a
   unit — if only the photo breathed, the glow would drift off her
   hands. Both use dead-centre cropping (object-position 50% 50%
   === preserveAspectRatio xMidYMid slice) so they stay locked
   together at every viewport size. */
.hero__stage {
  position: absolute;
  inset: 0;
  animation: heroBreath 26s var(--ease) infinite;
  will-change: transform;
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1.03); }
  50%      { transform: scale(1.09); }
}

.hero__media,
.hero__energy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media { object-fit: cover; object-position: 50% 50%; }

.hero__energy { pointer-events: none; }

/* One crop + its matching spine path, switched together by a single
   rule. Landscape gets the 16:9 crop, portrait the 3:4 one. */
.hero__media--desk,
.hero__energy--desk { display: block; }
.hero__media--mob,
.hero__energy--mob  { display: none; }

@media (max-aspect-ratio: 1/1) {
  .hero__media--desk,
  .hero__energy--desk { display: none; }
  .hero__media--mob,
  .hero__energy--mob  { display: block; }
}

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

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20,35,43,.55) 0%,
      rgba(20,35,43,.12) 34%,
      rgba(20,35,43,.30) 68%,
      rgba(20,35,43,.80) 100%);
}

.hero__inner {
  position: relative;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--cream);
}

.hero__mark {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .48em;
  text-transform: uppercase;
  opacity: .82;
  margin-bottom: 2rem;
  animation: fadeUp 2s var(--ease) .3s both;
}

.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.4rem);
  letter-spacing: -.01em;
  text-wrap: balance;
  animation: fadeUp 2.2s var(--ease) .6s both;
  text-shadow: 0 .12em .9em rgba(20,35,43,.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--glow-soft);
}

.hero__sub {
  max-width: 32rem;
  margin: 1.6rem auto 0;
  font-size: 1.03rem;
  line-height: 1.85;
  opacity: .9;
  text-wrap: balance;
  animation: fadeUp 2.2s var(--ease) 1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.4rem); }
  to   { opacity: 1; transform: none; }
}

.hero__cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .85rem;
  color: var(--cream);
  font-size: .62rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  opacity: .7;
  animation: fadeUp 2s var(--ease) 1.6s both;
}

.hero__cue span::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.4rem;
  margin: .85rem auto 0;
  background: linear-gradient(to bottom, var(--glow-soft), transparent);
  animation: cueDrift 3.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cueDrift {
  0%, 100% { transform: scaleY(.35); opacity: .35; }
  50%      { transform: scaleY(1);   opacity: .95; }
}

/* ============================================================
   THE TWO PATHS
   ============================================================ */

.paths {
  padding: clamp(5rem, 12vh, 9rem) 0;
  background: var(--cream);
}

.paths__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(3rem, 7vh, 5rem);
}

.eyebrow {
  font-size: .68rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 1.4rem;
}

.paths__intro p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.4rem;
}

.path {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  background: var(--ink);
}

.path img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), filter 1.6s var(--ease);
  filter: saturate(.92);
}

.path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,35,43,.88) 0%,
    rgba(20,35,43,.34) 45%,
    rgba(20,35,43,.10) 100%);
  transition: opacity .9s var(--ease);
}

.path:hover img,
.path:focus-visible img { transform: scale(1.06); filter: saturate(1); }

.path__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 2.2rem;
  z-index: 2;
}

.path__label h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: .45rem;
}

.path__label p {
  margin: 0;
  font-size: .95rem;
  opacity: .86;
  max-width: 22rem;
}

.path__arrow {
  display: inline-block;
  margin-top: 1.3rem;
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245,239,230,.42);
  padding-bottom: .4rem;
  transition: border-color .6s var(--ease), letter-spacing .6s var(--ease);
}

.path:hover .path__arrow { border-color: var(--glow); letter-spacing: .42em; }

/* ============================================================
   QUOTE / BREATH SECTIONS
   ============================================================ */

.breath {
  padding: clamp(6rem, 16vh, 11rem) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breath::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46rem;
  height: 46rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127,216,208,.13) 0%, transparent 62%);
  animation: pulse 11s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(.82); opacity: .5; }
  50%      { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}

.breath blockquote {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4.2vw, 2.85rem);
  line-height: 1.42;
  max-width: 32rem;
  margin-inline: auto;
}

.breath cite {
  display: block;
  margin-top: 2.2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .62;
}

/* ============================================================
   BIO
   ============================================================ */

.bio {
  padding: clamp(5rem, 12vh, 8rem) 0;
  background: var(--cream-warm);
}

.bio__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 46rem) {
  .bio__grid { grid-template-columns: 1fr; }
}

.bio__photo { aspect-ratio: 3 / 4; overflow: hidden; }
.bio__photo img { width: 100%; height: 100%; object-fit: cover; }

.bio h2 {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  margin-bottom: 1.6rem;
}

.bio p { max-width: var(--measure); color: var(--ink-soft); }
.bio p + p { margin-top: 1.15rem; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 1.05rem 2.6rem;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .7s var(--ease), color .7s var(--ease), border-color .7s var(--ease);
}

.btn:hover { background: var(--ink); color: var(--cream); }

.btn--glow { border-color: var(--teal); background: var(--teal); color: var(--cream); }
.btn--glow:hover { background: var(--ink); border-color: var(--ink); }

.btn[disabled] { opacity: .32; cursor: not-allowed; }
.btn[disabled]:hover { background: transparent; color: var(--ink); }

/* ============================================================
   OFFERINGS PAGE
   ============================================================ */

.page-head {
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(3rem, 7vh, 5rem);
  text-align: center;
}

.page-head h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  margin-bottom: 1.2rem;
}

.page-head p {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.tier {
  border-top: 1px solid rgba(20,35,43,.14);
  padding: clamp(3rem, 7vh, 4.5rem) 0;
}

.tier__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.tier__head h2 { font-size: clamp(2rem, 5vw, 3rem); }

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

.price-row b { font-weight: 500; }

.offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 2.4rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer h3 {
  font-size: 1.42rem;
  margin-bottom: .55rem;
}

.offer p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

.note {
  margin-top: 2.4rem;
  padding: 1.4rem 1.6rem;
  background: rgba(201,166,137,.16);
  font-size: .92rem;
  color: var(--ink-soft);
}

/* ============================================================
   BOOKING — questionnaire in water
   ============================================================ */

.water {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(165deg, #0b2b3a 0%, #12455a 46%, #1b3a5c 100%);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(4rem, 10vh, 7rem) 0 6rem;
}

.water__caustics {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: .5;
}

.q-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 40rem);
  margin-inline: auto;
}

.q-progress {
  display: flex;
  gap: .5rem;
  margin-bottom: 3rem;
}

.q-progress i {
  flex: 1;
  height: 2px;
  background: rgba(245,239,230,.2);
  transition: background .8s var(--ease);
}

.q-progress i.done { background: var(--glow); }

.q-step { display: none; animation: fadeUp 1.1s var(--ease) both; }
.q-step.active { display: block; }

.q-step__count {
  font-size: .64rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 1.5rem;
}

.q-step h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  margin-bottom: .9rem;
}

.q-step__hint {
  font-size: .95rem;
  opacity: .74;
  margin: 0 0 2rem;
  max-width: 30rem;
}

.field { margin-bottom: 1.5rem; }

.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: .7rem;
}

.field .req { color: var(--glow); }

.field input,
.field textarea {
  width: 100%;
  background: rgba(245,239,230,.07);
  border: 1px solid rgba(245,239,230,.24);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: .95rem 1.1rem;
  border-radius: 2px;
  transition: border-color .5s var(--ease), background .5s var(--ease);
}

.field textarea { min-height: 7.5rem; resize: vertical; line-height: 1.7; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--glow);
  background: rgba(245,239,230,.12);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(245,239,230,.38); }

.scale {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.scale button {
  flex: 1 1 2.4rem;
  aspect-ratio: 1;
  min-width: 2.4rem;
  background: rgba(245,239,230,.07);
  border: 1px solid rgba(245,239,230,.24);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all .4s var(--ease);
}

.scale button:hover { background: rgba(245,239,230,.16); }
.scale button.on { background: var(--glow); color: var(--ink); border-color: var(--glow); }

.q-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
}

.q-nav .btn {
  border-color: rgba(245,239,230,.4);
  color: var(--cream);
}
.q-nav .btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.q-nav .btn[disabled]:hover { background: transparent; color: var(--cream); }

.link-skip {
  background: none;
  border: none;
  color: var(--cream);
  opacity: .55;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .5rem;
  transition: opacity .4s;
}
.link-skip:hover { opacity: 1; }

.err {
  color: #ffc9b8;
  font-size: .85rem;
  margin-top: .6rem;
  display: none;
}
.err.show { display: block; }

/* booking reveal */
.booking { display: none; }
.booking.open { display: block; animation: fadeUp 1.6s var(--ease) both; }

.booking__frame {
  margin-top: 2.5rem;
  min-height: 34rem;
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(245,239,230,.2);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: .8rem;
}

.booking__frame small { opacity: .6; font-size: .8rem; letter-spacing: .1em; }

/* ============================================================
   FOOTER + NAV
   ============================================================ */

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.9rem clamp(1.25rem, 4vw, 3rem);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.nav a { text-decoration: none; opacity: .85; transition: opacity .4s; }
.nav a:hover { opacity: 1; }
.nav--light { color: var(--cream); }
.nav--dark  { color: var(--ink); position: relative; }

.nav__links { display: flex; gap: clamp(1.2rem, 4vw, 2.6rem); }

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 9vh, 6rem) 0 2.5rem;
  text-align: center;
}

.foot__mark {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.foot__line {
  font-size: .95rem;
  opacity: .68;
  max-width: 26rem;
  margin: 0 auto 2.4rem;
}

.foot__legal {
  margin-top: 3rem;
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .4;
}
