/* LUME — ClearPath-inspired skincare studio */

:root {
  --mist: #EEF2EF;
  --foam: #F7FAF8;
  --paper: #FFFFFF;
  --sage: #5F7A6C;
  --sage-deep: #3D5248;
  --sage-soft: #A8BBAF;
  --ink: #1C2621;
  --ink-2: #4A5750;
  --ink-3: #6B7871;
  --blush: #E4D4D0;
  --line: #D5DDD7;
  --line-2: #C4CFC8;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-dark: rgba(28, 38, 33, 0.35);

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
  --f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-text: "Outfit", system-ui, -apple-system, sans-serif;
}

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

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

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

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.45em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- chrome ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-head.is-scrolled {
  background: rgba(247, 250, 248, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.3s;
}
.site-head.is-scrolled .brand,
.site-head.nav-open .brand { color: var(--ink); }
.brand span { opacity: 0.55; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
}
.site-head.is-scrolled .site-nav a,
.site-head.nav-open .site-nav a { color: var(--ink-2); }
.site-nav a:hover { color: var(--sage); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.site-head.is-scrolled .nav-toggle,
.site-head.nav-open .nav-toggle {
  border-color: var(--line-2);
  color: var(--ink);
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* mobile drawer */
@media (max-width: 899px) {
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 320px);
    padding: 5.5rem 1.6rem 2rem;
    background: var(--foam);
    transform: translateX(-105%);
    transition: transform 0.35s var(--ease);
    gap: 1.2rem;
    z-index: 60;
  }
  .site-head.nav-open .site-nav { transform: translateX(0); }
  .site-nav a { color: var(--ink) !important; font-size: 0.9rem; }
  .scrim {
    position: fixed;
    inset: 0;
    background: rgba(28, 38, 33, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 55;
  }
  .site-head.nav-open .scrim {
    opacity: 1;
    pointer-events: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.btn-primary {
  background: #fff;
  color: var(--ink);
}
.btn-primary:hover { background: var(--mist); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); }
.btn-sage {
  background: var(--sage);
  color: #fff;
}
.btn-sage:hover { background: var(--sage-deep); }
.btn-outline {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage-deep); }
.btn-soft {
  background: rgba(95, 122, 108, 0.12);
  color: var(--sage-deep);
  border-color: rgba(95, 122, 108, 0.2);
}
.head-cta { display: none; }
@media (min-width: 900px) {
  .head-cta { display: block; }
  .site-head.is-scrolled .head-cta .btn-primary {
    background: var(--sage);
    color: #fff;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(61, 82, 72, 0.55) 0%, rgba(61, 82, 72, 0.15) 42%, rgba(238, 242, 239, 0.08) 100%),
    linear-gradient(to top, rgba(28, 38, 33, 0.55) 0%, transparent 45%);
  z-index: 1;
}
.hero-arcs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
}
.hero-arcs svg {
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 2.4rem, var(--wrap));
  margin: 0 auto 4.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    margin-bottom: 5.5rem;
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  color: #fff;
  max-width: 11ch;
  margin: 0;
}
.hero-copy {
  max-width: 36ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.hero-copy p { margin-bottom: 1.4rem; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  max-width: 22ch;
}
.section-lead {
  max-width: 48ch;
  color: var(--ink-2);
  font-size: 1.02rem;
}

/* ---------- sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 800px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.band-mist { background: var(--mist); }
.band-paper { background: var(--paper); }
.band-sage {
  background: var(--sage-deep);
  color: #fff;
}
.band-sage .section-lead,
.band-sage p { color: rgba(255, 255, 255, 0.78); }
.band-sage .eyebrow { color: var(--sage-soft); }

/* balance intro */
.balance {
  text-align: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.balance h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  max-width: 22ch;
  margin-inline: auto;
}
.balance p {
  max-width: 42ch;
  margin: 0.8rem auto 0;
  color: var(--ink-2);
}

/* rituals */
.ritual-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .ritual-grid { grid-template-columns: 1fr 1fr; }
}
.ritual-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  color: #fff;
  isolation: isolate;
}
.ritual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: -2;
}
.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 38, 33, 0.78) 0%, rgba(28, 38, 33, 0.15) 55%);
  z-index: -1;
}
.ritual-card:hover img { transform: scale(1.05); }
.ritual-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
}
.ritual-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.ritual-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  max-width: 34ch;
  margin-bottom: 0.85rem;
}
.more {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* philosophy */
.philosophy {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .philosophy {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3.5rem;
  }
}
.philosophy-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.philosophy-media img,
.philosophy-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.philosophy blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.25;
  font-weight: 500;
}

/* story */
.story {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .story {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
  .story--flip { direction: rtl; }
  .story--flip > * { direction: ltr; }
}
.story-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

/* how */
.steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 1.5rem 1.35rem;
  border-top: 1px solid var(--line-2);
}
.step-num {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.step p { color: var(--ink-2); font-size: 0.95rem; }

/* stats / ready */
.ready {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}
.ready h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 18ch;
  margin-inline: auto;
}
.ready p {
  max-width: 46ch;
  margin: 0.9rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}
.trust {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}
.trust strong { font-weight: 600; }

/* pricing */
.price-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--mist);
  margin-bottom: 1.75rem;
}
.price-toggle button {
  border: 0;
  background: transparent;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.price-toggle button.is-on {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(28, 38, 33, 0.08);
}
.plans {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.45rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.25s, transform 0.25s;
}
.plan:hover {
  border-color: var(--sage-soft);
  transform: translateY(-2px);
}
.plan.is-featured {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}
.plan.is-featured p,
.plan.is-featured li { color: rgba(255, 255, 255, 0.78); }
.plan h3 {
  font-size: 1.5rem;
  margin: 0;
  color: inherit;
}
.plan-price {
  font-family: var(--f-display);
  font-size: 2.6rem;
  line-height: 1;
}
.plan-price small {
  font-family: var(--f-text);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
}
.plan ul {
  list-style: none;
  margin: 0.4rem 0 1rem;
  padding: 0;
  flex: 1;
}
.plan li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-2);
}
.plan.is-featured li { border-color: rgba(255, 255, 255, 0.15); }
.plan .btn { width: 100%; }

/* quote */
.quote-block {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}
.quote-block blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  line-height: 1.3;
  font-style: italic;
}
.quote-block cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* journal */
.journal-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .journal-grid { grid-template-columns: repeat(3, 1fr); }
}
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.journal-card figure {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.journal-card:hover img { transform: scale(1.04); }
.journal-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.journal-card p {
  color: var(--ink-2);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

/* metrics */
.metrics {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 700px) {
  .metrics { grid-template-columns: repeat(4, 1fr); }
}
.metric strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.metric span {
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: var(--f-display);
  font-weight: 500;
}
.faq-item .icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}
.faq-item.is-open .icon { transform: rotate(45deg); }
.faq-panel {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--ink-2);
  max-width: 54ch;
}
.faq-item.is-open .faq-panel { display: block; }

/* booking */
.booking {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .booking {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}
.book-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}
.form-grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 560px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--foam);
}
.field textarea { min-height: 110px; resize: vertical; }
.check-set {
  display: grid;
  gap: 0.55rem;
  margin: 0.4rem 0 0.8rem;
}
.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin: 0.8rem 0 0;
}
.form-ok {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(95, 122, 108, 0.12);
  color: var(--sage-deep);
  font-size: 0.95rem;
}
.form-ok.is-show { display: block; }

/* footer */
.site-foot {
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 2rem;
}
.foot-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .foot-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 2.5rem;
  }
}
.site-foot h2 {
  color: #fff;
  font-size: 1.8rem;
}
.site-foot a:hover { color: #fff; }
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.newsletter input {
  flex: 1 1 180px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.45); }
.foot-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}
.foot-links strong {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.foot-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.no-js .reveal { opacity: 1; transform: none; }
