/* ===========================================================
   NATURAL DANCE — Stylesheet v2 "Cinematic / Editorial"
   Inspired by the original presentation deck:
   full-bleed photo backgrounds, deep green grade,
   dramatic display serif, translucent legibility bands.
=========================================================== */

:root {
  --forest: #1f3b2c;
  --forest-dark: #0f1c14;
  --forest-darker: #0a130d;
  --forest-light: #4d7360;
  --gold: #cda86e;
  --gold-light: #e6d3ac;
  --cream: #f9f6ef;
  --cream-dark: #efe9da;
  --text: #2a2a24;
  --white: #ffffff;
  --radius: 6px;
  --max-width: 1160px;
  --overlay-soft: linear-gradient(180deg, var(--forest-darker) 0%, rgba(10,19,13,.25) 12%, rgba(10,19,13,.55) 55%, rgba(10,19,13,.88) 88%, var(--forest-darker) 100%);
  --overlay-strong: linear-gradient(180deg, var(--forest-darker) 0%, rgba(10,19,13,.55) 12%, rgba(10,19,13,.72) 45%, rgba(10,19,13,.92) 88%, var(--forest-darker) 100%);
  --overlay-hero: linear-gradient(180deg, rgba(10,19,13,.32) 0%, rgba(10,19,13,.14) 20%, rgba(10,19,13,.18) 40%, rgba(10,19,13,.38) 62%, rgba(10,19,13,.7) 82%, rgba(10,19,13,.92) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--white);
  background: var(--forest-darker);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 400; }

p { margin: 0 0 1em; }
a { color: var(--gold-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-bottom: 24px;
  border-bottom: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,19,13,0.82) 0%, rgba(10,19,13,0.82) 55%, rgba(10,19,13,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--white);
  position: relative;
  z-index: 60;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle::after {
  content: "";
  position: absolute;
  inset: -8px;
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--forest-darker);
    flex-direction: column; align-items: center; gap: 18px;
    padding: 20px 0 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
    z-index: 55;
  }
  .nav__links.is-open { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary { background: var(--gold); color: var(--forest-darker); font-weight: 600; }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- Full-bleed section pattern ---------- */
.bleed {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white);
}
.bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-soft);
  z-index: 1;
}
.bleed--strong::before { background: var(--overlay-strong); }
.bleed--faint::before { background: rgba(10, 19, 13, 0.88); }
/* Extra shading that hugs the top of the photo, so a heading/eyebrow sitting
   near the top of a section reads clearly without needing a solid pill
   background behind the text. */
.bleed--top-shade::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(10,19,13,0.82) 0%, rgba(10,19,13,0.5) 45%, rgba(10,19,13,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.bleed__inner { position: relative; z-index: 2; padding: 110px 0; }
.bleed--tight .bleed__inner { padding: 72px 0; }

/* Photo layer, separated from the tint overlay so it can cross-fade in
   on scroll — gives adjacent full-bleed sections a soft dissolve into
   one another instead of a hard cut. Eased with a slow "expo-out" curve
   instead of linear ease, so the reveal feels like a deliberate dissolve
   rather than a flat cut from one photo block to the next. */
.bleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 2.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.bleed__bg.is-visible {
  opacity: 1;
  transform: scale(1);
  /* Once settled, drift very slowly (a subtle Ken Burns pan/zoom) so the
     photo reads as a living scene instead of a static image pasted into a
     box — this is what keeps consecutive full-bleed sections from feeling
     like flat, stacked photo tiles as you scroll past them. */
  animation: nd-bg-drift 34s ease-in-out 2.6s infinite;
}
video.bleed__bg { object-fit: cover; width: 100%; height: 100%; }

@keyframes nd-bg-drift {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  50%  { transform: scale(1.045) translate3d(0, -1.2%, 0); }
  100% { transform: scale(1) translate3d(0, 0, 0); }
}

/* Parallax: on desktop-class pointers only (never on touch/mobile, where
   background-attachment:fixed is unreliable), the photo scrolls slightly
   slower than the page — it feels like a layer behind the content rather
   than a block that simply gets swapped for the next one underneath it. */
@media (min-width: 861px) and (hover: hover) and (pointer: fine) {
  .bleed__bg { background-attachment: fixed; }
}

/* Reveal-on-scroll for text/content blocks (headings, intros, cards),
   so a section's copy eases in alongside its photo crossfade instead of
   just sitting there static. Add [style="--i:1"] etc. on siblings for a
   soft stagger (used on card grids). */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: calc(var(--i, 0) * 110ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--overlay-strong); z-index: 1; }
.hero__content { position: relative; z-index: 2; padding: 60px 24px 80px; max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero__content .eyebrow { color: var(--gold-light); }
.hero__content p { max-width: 560px; font-size: 1.2rem; }
.hero__statement {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold-light);
  margin: 2px 0 16px;
  max-width: 560px;
  min-height: 1.3em;
}
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: nd-cursor-blink 0.9s steps(1) infinite;
}
@keyframes nd-cursor-blink { 50% { opacity: 0; } }
.hero__note {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  opacity: 0.72;
  max-width: 480px;
  margin-top: -8px;
}
.hero__actions { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section__intro { max-width: 700px; margin: 0 0 48px; }
.section__intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Natural response (photo left, gradient into solid) ---------- */
.natural-response {
  position: relative;
  background: var(--forest-dark);
  overflow: hidden;
}
.natural-response__media {
  position: absolute;
  inset: 0;
  width: 58%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 2.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.natural-response__media.is-visible {
  opacity: 1;
  transform: scale(1);
  animation: nd-bg-drift 34s ease-in-out 2.6s infinite;
}
.natural-response__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,28,20,0) 45%, var(--forest-dark) 95%);
}
.natural-response__inner { position: relative; z-index: 2; padding: 130px 0; }
.natural-response__text { max-width: 460px; margin-left: auto; }
@media (max-width: 860px) {
  .natural-response__media { position: static; width: 100%; height: 280px; }
  .natural-response__media::after { background: linear-gradient(180deg, rgba(15,28,20,0) 35%, var(--forest-dark) 100%); }
  .natural-response__inner { padding: 0 0 64px; }
  .natural-response__text { max-width: 100%; margin-left: 0; }
}

/* ---------- Legibility band (text over photo) ---------- */
.band {
  display: inline-block;
  background: rgba(10, 19, 13, 0.48);
  backdrop-filter: blur(3px);
  padding: 4px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.band-block {
  background: rgba(10, 19, 13, 0.4);
  backdrop-filter: blur(3px);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: inline-block;
}

/* ---------- Glass cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--white);
}

.benefit__icon-svg { width: 34px; height: 34px; display: block; margin-bottom: 16px; color: var(--gold-light); }
.benefit h3 { margin-bottom: 8px; font-size: 1.25rem; }
.benefit p { margin: 0; opacity: 0.85; }

/* ---------- Path / session cards ---------- */
.path-card { display: flex; flex-direction: column; text-align: left; }
.path-card__meta {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--forest-darker);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.path-card h3 { margin-bottom: 10px; }
.path-card p { opacity: 0.9; }
.path-card__list { list-style: none; margin: 0 0 20px; padding: 0; font-size: 0.92rem; }
.path-card__list li { padding-left: 18px; position: relative; margin-bottom: 8px; opacity: 0.85; }
.path-card__list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-light); }
.path-card__price { margin-top: auto; margin-bottom: 4px; }
.path-card__price small {
  display: block; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); margin-top: 2px;
}
.path-card__price-tier {
  display: flex; align-items: baseline; gap: 8px;
  font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--white); font-weight: 400; line-height: 1.3;
}
.path-card__price-tier .note {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6);
}
.path-card .btn { align-self: flex-start; margin-top: 10px; }

/* ---------- Split (image + text), used on About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; display: block; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ---------- Contact ---------- */

/* Headline + lead line kept on a single line (no mid-phrase wrap) on
   tablet/desktop, where there's room for it. Font-size scales with the
   viewport (vw) so the line always fits without overflowing the page.
   Below 700px the page falls back to normal wrapping at a readable
   size — forcing a long sentence onto one line on a phone would mean
   either illegibly tiny text or the line spilling off the screen. */
#contact-heading { white-space: nowrap; font-size: clamp(1.3rem, 7vw, 5rem); }
#contact-lead { white-space: nowrap; font-size: clamp(0.7rem, 1.85vw, 1.05rem); }
@media (max-width: 700px) {
  #contact-heading, #contact-lead { white-space: normal; }
  #contact-lead { font-size: 1rem; }
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.calendly-slot { height: 1050px; min-height: 1050px; width: 100%; border-radius: var(--radius); overflow: hidden; }
.session-type-note { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--gold-light); margin-top: 4px; }
.contact-form-block--full { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
form.contact-form { display: grid; gap: 18px; }
.contact-form label { font-size: 0.9rem; font-weight: 600; color: var(--gold-light); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; background: rgba(255,255,255,0.06); color: var(--white);
}
.contact-form input::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23e6d3ac' stroke-width='2'%3E%3Cpath d='M5 7l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.contact-form select option { background: var(--forest-darker); color: var(--white); }
.contact-form select:invalid { color: rgba(255,255,255,0.4); }
.contact-form .hp-field { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-darker);
  color: rgba(249,246,239,0.65);
  padding: 48px 24px 28px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; opacity: 0.6; }

@media (prefers-reduced-motion: reduce) {
  .bleed__bg, .natural-response__media, .reveal {
    transition: opacity 0.6s ease;
    transform: none !important;
    transition-delay: 0s !important;
    animation: none !important;
  }
  .bleed__bg { background-attachment: scroll !important; }
}

/* ---------- Ribbon banner (design-v2 note) ---------- */
.v2-banner {
  background: var(--gold);
  color: var(--forest-darker);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  font-weight: 600;
}
.v2-banner a { color: var(--forest-darker); text-decoration: underline; }
