/* ─── Pure Skin — cinematic one-page ─────────────────────────── */
:root {
  --cream: #fdfbf7;
  --beige: #faf8f5;
  --beige-deep: #f1ece4;
  --terra: #c68b75;
  --terra-deep: #a96f5a;
  --ink: #3d332c;
  --ink-soft: #6f6259;
  --line: rgba(61, 51, 44, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .promo__highlight, .footer__logo {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

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

/* Reveal-on-scroll (transform/opacity only — no layout shift) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--terra);
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(198, 139, 117, 0.35);
}
.btn--solid:hover { background: var(--terra-deep); }
.btn--outline {
  border: 1px solid var(--terra);
  color: var(--terra-deep);
}
.btn--outline:hover { background: var(--terra); color: var(--cream); }
.btn--light {
  background: var(--cream);
  color: var(--terra-deep);
}
.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.88rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.eyebrow--light { color: #e8c4b3; }

/* ─── Header / nav ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { text-decoration: none; line-height: 1.1; }
.nav__logo-mark {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.nav__logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  color: var(--terra);
  font-weight: 600;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}
.nav__menu a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__menu a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 0.65rem 1.5rem; font-size: 0.72rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  padding: 8rem 1.5rem 6rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(253,251,247,0.55) 0%, rgba(253,251,247,0.32) 45%, rgba(253,251,247,0.82) 100%);
}
.hero__content { max-width: 780px; }
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__title span { display: block; font-style: italic; font-weight: 400; color: var(--terra-deep); }
.hero__subtitle {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin: 1rem 0 1.4rem;
}
.hero__text {
  max-width: 620px;
  margin: 0 auto 1.8rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.hero__pillars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 2.4rem;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid var(--terra-deep);
  border-radius: 999px;
}
.hero__scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--terra-deep);
  animation: scrollhint 1.8s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── Promo ─── */
.promo {
  background: linear-gradient(120deg, var(--terra) 0%, var(--terra-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 4.5rem 1.5rem;
}
.promo__highlight {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.promo__text {
  max-width: 640px;
  margin: 0 auto 1.8rem;
  color: rgba(253, 251, 247, 0.9);
  font-size: 0.95rem;
}

/* ─── Sections shared ─── */
.section { padding: 7rem 2rem; max-width: 1280px; margin: 0 auto; }
.section--tint {
  max-width: none;
  background: var(--beige);
}
.section--tint > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 3.5rem; }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.section__lead { color: var(--ink-soft); margin-top: 0.9rem; }

/* ─── About ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 200px 200px 18px 18px;
  box-shadow: 0 30px 60px rgba(61, 51, 44, 0.14);
}
.about__media video { width: 100%; height: 100%; object-fit: cover; }
.about__copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 1.4rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.about__copy .btn { margin-top: 0.8rem; }

/* ─── Services ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(61, 51, 44, 0.1);
}
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terra);
}
.card h3 { font-size: 1.45rem; margin: 0.6rem 0 0.8rem; }
.card p { font-size: 0.92rem; color: var(--ink-soft); }
.services__extra {
  text-align: center;
  margin-top: 3.5rem;
}
.services__extra h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.services__extra p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.6rem; }

/* ─── Pricing ─── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem 3.5rem;
}
.pricing__group h3 {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--terra);
  margin-bottom: 1.1rem;
}
.pricing__group dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.pricing__group dt { font-size: 0.94rem; color: var(--ink-soft); }
.pricing__group dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}
.pricing__group abbr { text-decoration: none; font-size: 0.75rem; color: var(--terra-deep); }
.pricing__cta { text-align: center; margin-top: 3.5rem; }

/* ─── Gallery ─── */
.gallery { position: relative; height: 180vh; }
.gallery__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: end center;
  isolation: isolate;
}
.gallery__video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__overlay {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 0 1.5rem 5rem;
  max-width: 720px;
}
.gallery__overlay::before {
  content: "";
  position: absolute;
  inset: -6rem -100vw 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(40, 30, 24, 0.66));
}
.gallery__overlay h2 { color: var(--cream); font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 0.7rem; }
.gallery__overlay p { color: rgba(253, 251, 247, 0.85); font-size: 0.95rem; }

/* ─── Tips / AEO ─── */
.tips__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.tips__list li {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  font-size: 0.92rem;
  position: relative;
  padding-left: 3.1rem;
}
.tips__list li::before {
  content: "✦";
  position: absolute;
  left: 1.3rem;
  color: var(--terra);
}
.tips__aeo {
  background: var(--cream);
  border-left: 3px solid var(--terra);
  border-radius: 0 18px 18px 0;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 18px 45px rgba(61, 51, 44, 0.07);
}
.tips__aeo h3 { font-size: 1.55rem; margin-bottom: 0.9rem; }
.tips__aeo p { color: var(--ink-soft); margin-bottom: 1.5rem; max-width: 760px; }

/* ─── Reviews ─── */
.reviews { text-align: center; }
.reviews__quote { max-width: 820px; margin: 0 auto; }
.reviews__quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}
.reviews__quote figcaption {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra-deep);
}

/* ─── Final CTA ─── */
.final-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198, 139, 117, 0.18), transparent 65%),
    var(--beige-deep);
  text-align: center;
  padding: 7.5rem 1.5rem;
}
.final-cta h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 760px; margin: 0 auto 1rem; }
.final-cta__sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin-bottom: 2.4rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(253, 251, 247, 0.75);
  padding: 4.5rem 2rem 2rem;
}
.footer__grid {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 3rem;
}
.footer__logo {
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  line-height: 1.25;
}
.footer__logo span {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--terra);
}
.footer__slogan {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
}
.footer__nap { font-style: normal; font-size: 0.9rem; }
.footer__nap p { margin-bottom: 0.45rem; }
.footer__nap a { color: var(--cream); text-decoration: none; }
.footer__nap a:hover { color: var(--terra); }
.footer__nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav a {
  color: rgba(253, 251, 247, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--terra); }
.footer__copy {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(253, 251, 247, 0.12);
  font-size: 0.75rem;
  color: rgba(253, 251, 247, 0.45);
  text-align: center;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__media { max-width: 460px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
}
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0s 0.5s;
    z-index: -1;
  }
  .nav__menu.is-open { transform: none; visibility: visible; transition: transform 0.5s var(--ease); }
  .nav__menu a:not(.btn) { font-size: 1.1rem; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .section { padding: 5rem 1.5rem; }
}
