/* ============================================================
   [Your Name] — Yoga & Habit Coaching
   Palette + type in :root. Change brand colors in one place.
   ============================================================ */
:root {
  --sand:      #f6f1e9;
  --sand-2:    #efe7db;
  --cream:     #fbf8f3;
  --ink:       #34302a;
  --ink-soft:  #6b6459;
  --sage:      #7a8b6f;
  --sage-deep: #5c6b52;
  --terra:     #c17a58;
  --terra-deep:#a8623f;
  --line:      #e6ddce;

  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 18px 40px -24px rgba(52, 48, 42, .45);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
a  { color: inherit; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra-deep); margin: 0 0 .8rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sage-deep); color: var(--cream);
  padding: .8rem 1.4rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 22px -14px rgba(92,107,82,.9);
}
.btn:hover { background: var(--sage); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--sage-deep); box-shadow: inset 0 0 0 1.5px var(--sage); }
.btn--ghost:hover { background: rgba(122,139,111,.12); color: var(--sage-deep); }
.btn--sm { padding: .55rem 1rem; font-size: .85rem; }

/* "Booking available soon" — a label, not a button. Not clickable by design. */
.btn--soon {
  background: transparent; color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 500; cursor: default; white-space: nowrap;
}
.btn--soon:hover { background: transparent; transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-weight: 600; }
.brand__mark { color: var(--terra); font-size: 1.15rem; }
.brand__name { font-family: var(--font-head); font-size: 1.15rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { text-decoration: none; font-size: .93rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: var(--cream); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { max-width: 34rem; }
.lede { font-size: 1.12rem; color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__glow {
  position: absolute; inset: auto -10% -40% 30%; height: 60vh; z-index: -1;
  background: radial-gradient(closest-side, rgba(193,122,88,.18), transparent 70%);
  filter: blur(10px);
}

/* ---------- Photo placeholders ---------- */
.photo {
  position: relative; width: 100%; border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(122,139,111,.22), rgba(193,122,88,.18)),
    var(--sand-2);
  box-shadow: var(--shadow);
  display: grid; place-items: center; overflow: hidden;
  min-height: 220px;
}
.photo::before {
  content: "❋"; position: absolute; font-size: 4rem; color: rgba(52,48,42,.10);
}
.photo::after {
  content: attr(data-label); position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); font-size: .7rem; letter-spacing: .04em;
  color: var(--ink-soft); background: rgba(251,248,243,.75);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--square   { aspect-ratio: 1 / 1; }
.photo--tall     { aspect-ratio: 3 / 4; }
.photo--wide     { aspect-ratio: 3 / 2; }

/* A photo slot holding a real image: drop the placeholder glyph + filename label. */
.photo--img { background-size: cover; background-position: center; }
.photo--img::before,
.photo--img::after { content: none; }

/* To fill a slot: add class "photo--img" and
   style="background-image:url('images/NAME.jpg')" — then drop the data-label. */

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: var(--sand); }
.section__head { max-width: 40rem; margin-bottom: 2.6rem; }
.section__sub { color: var(--ink-soft); font-size: 1.05rem; }

.grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.grid--about { grid-template-columns: .85fr 1.15fr; }
.grid--coach { grid-template-columns: 1.15fr .85fr; }

.creds { list-style: none; display: flex; flex-wrap: wrap; gap: 1.8rem; padding: 0; margin: 1.6rem 0 0; }
.creds li { font-size: .92rem; color: var(--ink-soft); }
.creds span { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); }

/* ---------- Events ---------- */
.events { display: grid; gap: 1rem; }
.event {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.4rem;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.6rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.event:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event__date {
  display: grid; place-items: center; width: 66px; height: 66px;
  background: var(--sand-2); border-radius: 14px; line-height: 1;
}
.event__month { font-size: .72rem; font-weight: 600; letter-spacing: .1em; color: var(--terra-deep); }
.event__day   { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); }
.event__body h3 { margin-bottom: .2rem; }
.event__meta { font-size: .85rem; color: var(--terra-deep); font-weight: 600; margin-bottom: .35rem; }
.event__body p:last-child { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Habit coaching ---------- */
.section--coach { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.coach__steps { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step__n { font-family: var(--font-head); font-size: 1.1rem; color: var(--terra); width: 2.2rem; flex: none; }
.step h3 { margin-bottom: .15rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Plans / sessions ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.plan {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--sage); box-shadow: var(--shadow); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: #fff; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; padding: .3rem .8rem; border-radius: 999px;
}
.plan__price { font-family: var(--font-head); font-size: 1.25rem; color: var(--sage-deep); margin: -.2rem 0 .8rem; }
.plan ul { list-style: none; padding: 0; margin: .4rem 0 1.4rem; display: grid; gap: .5rem; }
.plan li { position: relative; padding-left: 1.4rem; font-size: .93rem; color: var(--ink-soft); }
.plan li::before { content: "❋"; position: absolute; left: 0; color: var(--terra); font-size: .8rem; }
.plan .btn, .plan .btn--ghost { margin-top: auto; justify-content: center; }
.plans__note { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); }
.plans__note a { color: var(--terra-deep); font-weight: 600; text-decoration: none; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery .photo { min-height: 0; aspect-ratio: 4 / 5; }

/* ---------- Quote ---------- */
.quote { text-align: center; background: var(--sage-deep); color: var(--cream); }
.quote blockquote {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  line-height: 1.3; margin: 0 auto 1.6rem; max-width: 42rem; font-weight: 400;
}
.quote .btn { background: var(--cream); color: var(--sage-deep); }
.quote .btn:hover { background: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--sand); padding: 3rem 0 1.5rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer__name { font-family: var(--font-head); font-size: 1.3rem; margin: .4rem 0 0; }
.footer__tag { color: rgba(246,241,233,.6); font-size: .9rem; margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.footer__links a { color: rgba(246,241,233,.85); text-decoration: none; font-size: .93rem; }
.footer__links a:hover { color: #fff; }
.footer__fine { text-align: center; color: rgba(246,241,233,.45); font-size: .82rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 1.2rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 1.5rem 1.5rem 2rem; transform: translateY(-120%);
    transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .hero__inner,
  .grid--about,
  .grid--coach { grid-template-columns: 1fr; }
  .grid--about .about__media { order: -1; max-width: 22rem; }
  .plans { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .event { grid-template-columns: auto 1fr; }
  .event .btn { grid-column: 1 / -1; justify-content: center; }
}
