@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --color-espresso: #171717;
  --color-umber: #8c2a56;
  --color-mauve: #c8447f;
  --color-rose: #ffc8dc;
  --color-blush: #ffd6e5;
  --color-cream: #ffe5ee;
  --color-cream-dim: #ffdde9;
  --color-pink: #ea5290;
  --color-pink-deep: #c23570;
  --color-gold: #d18fb0;
  --color-ink: #262626;
  --color-ink-soft: #666666;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 45px -20px rgba(77, 15, 46, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(77, 15, 46, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

button { font-family: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--color-pink); outline-offset: 3px; }

.btn-primary {
  background: var(--color-pink-deep);
  color: #fff;
  box-shadow: 0 14px 28px -12px rgba(194, 53, 112, 0.55);
}
.btn-primary:hover { background: #a82a5f; box-shadow: 0 18px 34px -12px rgba(194, 53, 112, 0.65); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-espresso);
  border-color: rgba(77, 15, 46, 0.22);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.85); }

.btn-dark {
  background: var(--color-mauve);
  color: #fff;
}
.btn-dark:hover { background: var(--color-pink-deep); }

/* ---------- Top Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 214, 229, 0.85);
}

.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(77, 15, 46, 0.12);
  color: var(--color-espresso);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: background 200ms var(--ease), color 200ms var(--ease);
  min-height: 44px;
}

.nav-links a:hover { color: var(--color-espresso); background: rgba(255, 255, 255, 0.5); }
.nav-links a.is-active { background: #fff; color: var(--color-pink-deep); }

.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--color-espresso);
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(77, 15, 46, 0.14);
  color: var(--color-espresso);
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-1px); }
.icon-btn.solid { background: var(--color-pink-deep); color: #fff; border-color: transparent; }
.icon-btn.solid:hover { background: var(--color-pink); }
.icon-btn svg { width: 18px; height: 18px; }

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer-scrim {
  position: absolute; inset: 0;
  background: rgba(77, 15, 46, 0.4);
  backdrop-filter: blur(2px);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: var(--color-blush);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  box-shadow: var(--shadow-soft);
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-close {
  align-self: flex-end;
  margin-bottom: 18px;
}
.mobile-drawer-panel a {
  padding: 14px 8px;
  font-size: 1.1rem;
  color: var(--color-espresso);
  border-bottom: 1px solid rgba(77, 15, 46, 0.12);
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--color-espresso);
  overflow: hidden;
  padding-top: 110px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 20%;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,229,238,0.92) 0%, rgba(255,221,233,0.78) 30%, rgba(255,214,229,0.5) 58%, rgba(255,200,220,0.24) 100%),
    linear-gradient(0deg, rgba(255,221,233,0.65) 0%, rgba(255,221,233,0.08) 45%);
}

.hero-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  gap: 40px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  margin-bottom: 18px;
  font-weight: 700;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-pink-deep);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-pink-deep);
}
.hero-title strong { font-weight: 700; }

.hero-copy {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(184, 57, 125, 0.22);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-espresso);
  backdrop-filter: blur(6px);
}
.pill-tag svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-pink-deep); }

.hero-cards {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.hero-play {
  position: absolute;
  top: -84px;
  right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-espresso);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
}

.play-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(77, 15, 46, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.play-circle:hover { background: rgba(255, 255, 255, 0.85); transform: scale(1.05); }
.play-circle svg { width: 20px; height: 20px; margin-left: 3px; }

.hero-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: var(--shadow-card);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-card.photo { width: 128px; }
.hero-card.info {
  width: 190px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--color-espresso);
}
.hero-card.info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--color-pink-deep);
}
.hero-card.info p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-ink-soft);
  margin: 0;
}
.card-corner-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(251, 243, 238, 0.92);
  color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-corner-btn svg { width: 14px; height: 14px; }

.hero-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  font-weight: 500;
}

.progress-track {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(77, 15, 46, 0.16);
  border-radius: 2px;
}
.progress-track span {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 26%;
  background: var(--color-pink-deep);
  border-radius: 2px;
}

.hero-arrows { display: flex; gap: 8px; }
.hero-arrows .icon-btn { width: 40px; height: 40px; }

.hero .icon-btn:not(.solid) {
  background: rgba(77, 15, 46, 0.08);
  border-color: rgba(77, 15, 46, 0.2);
  color: var(--color-espresso);
}
.hero .icon-btn:not(.solid):hover { background: rgba(77, 15, 46, 0.16); }

/* ---------- Section shells ---------- */
section { position: relative; }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--color-pink-deep); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--color-espresso);
  max-width: 20ch;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  max-width: 42ch;
  margin: 0;
}

/* ---------- Services ---------- */
.services { background: var(--color-cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -18px rgba(77,15,46,0.4); }

.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.service-card:hover img { transform: scale(1.06); }

.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(46,10,28,0.92) 0%, rgba(46,10,28,0.35) 46%, rgba(46,10,28,0.05) 70%);
}

.service-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 22px;
  color: var(--color-cream);
}

.service-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251, 243, 238, 0.16);
  border: 1px solid rgba(251, 243, 238, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}
.service-icon svg { width: 18px; height: 18px; }

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.service-card-body p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(251, 243, 238, 0.85);
  margin: 4px 0 0;
}

/* ---------- About / brand ---------- */
.about {
  background: var(--color-rose);
  color: var(--color-espresso);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-espresso);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.about-badge strong { font-family: var(--font-display); font-size: 1.4rem; display: block; }
.about-badge span { font-size: 0.75rem; color: var(--color-ink-soft); }

.about .section-eyebrow { color: var(--color-pink-deep); }
.about .section-eyebrow::before { background: var(--color-pink-deep); }
.about .section-title { color: var(--color-espresso); }
.about-copy {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin: 20px 0 32px;
  max-width: 54ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-bottom: 34px;
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-espresso);
}
.about-stats span {
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}

/* ---------- Product / equipment ---------- */
.product {
  background: var(--color-cream-dim);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.product-copy p { font-size: 1.02rem; line-height: 1.7; color: var(--color-ink-soft); margin: 18px 0 28px; max-width: 50ch; }
.product-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-ink);
}
.product-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-pink-deep); margin-top: 2px; }

/* ---------- Results / before-after ---------- */
.results {
  background: var(--color-cream);
}
.results-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.results-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.results-media img { width: 100%; }
.results-copy p { font-size: 1.02rem; line-height: 1.7; color: var(--color-ink-soft); margin: 18px 0 30px; max-width: 48ch; }

.results-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.metric-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.metric-card strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--color-pink-deep); }
.metric-card span { font-size: 0.82rem; color: var(--color-ink-soft); }

/* ---------- Gallery strip ---------- */
.gallery { background: var(--color-cream-dim); }
.gallery .section-eyebrow { color: var(--color-pink-deep); }
.gallery .section-eyebrow::before { background: var(--color-pink-deep); }
.gallery .section-title { color: var(--color-espresso); }
.gallery .section-desc { color: var(--color-ink-soft); }

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--color-cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  text-align: left;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -18px rgba(77,15,46,0.28); }

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--color-pink-deep); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--color-espresso);
  margin: 0 0 22px;
  flex: 1;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-cream-dim);
  color: var(--color-pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-ink-soft); }

@media (max-width: 1080px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA / booking ---------- */
.cta {
  background: linear-gradient(120deg, var(--color-blush), var(--color-rose) 55%, var(--color-mauve) 100%);
  color: var(--color-espresso);
  text-align: center;
  padding: 100px 0;
  border-radius: 0;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 18px;
}
.cta-copy {
  font-size: 1.02rem;
  color: var(--color-ink-soft);
  max-width: 50ch;
  margin: 0 auto 34px;
  line-height: 1.6;
}
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-blush);
  color: var(--color-ink-soft);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(77, 15, 46, 0.14);
}
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; color: var(--color-espresso); margin-bottom: 14px; }
.footer-about p { font-size: 0.9rem; line-height: 1.6; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-espresso);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--color-pink-deep); }
.footer-col li.contact-line { display: flex; gap: 10px; font-size: 0.9rem; align-items: flex-start; }
.footer-col li.contact-line svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--color-pink-deep); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .product-grid, .results-grid { grid-template-columns: 1fr; }
  .about-media, .product-media { aspect-ratio: 16/10; }
  .about-media img, .product-media img { height: 100%; object-position: 50% 20%; }
  .gallery-track { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero-play { display: none; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { aspect-ratio: 1/1.1; }
  .gallery-track { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(3, auto); gap: 18px; }
  .about-stats strong { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .results-metrics { grid-template-columns: 1fr 1fr; }
  .hero-footer-row { justify-content: center; }
  .hero-progress { justify-content: center; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-track { grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HERO (subpages: Results, FAQ, Terms)
   ========================================================= */
.page-hero {
  background: linear-gradient(120deg, var(--color-blush), var(--color-rose) 60%, var(--color-mauve));
  color: var(--color-espresso);
  padding: 168px 0 76px;
  text-align: center;
}
.page-hero .section-eyebrow { justify-content: center; color: var(--color-pink-deep); }
.page-hero .section-eyebrow::before { background: var(--color-pink-deep); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  margin: 0 auto 14px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--color-ink-soft);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-ink-soft);
  margin-top: 18px;
}
.breadcrumb a { color: var(--color-pink-deep); }
.breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   ANIMATED COUNTER
   ========================================================= */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   PAYMENT BRANDS
   ========================================================= */
.payments {
  background: var(--color-cream-dim);
  overflow: hidden;
}
.payments-head {
  text-align: center;
  margin-bottom: 40px;
}
.payments-head .section-eyebrow { justify-content: center; }
.payments-head .section-eyebrow::before { display: none; }
.payments-head h2 { max-width: none; }

.payments-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.payments-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: payments-scroll 28s linear infinite;
}
.payments-marquee:hover .payments-track { animation-play-state: paused; }

@keyframes payments-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 34px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.payment-chip img { height: 34px; width: auto; display: block; }
.payment-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-espresso);
  min-height: 44px;
}
.faq-question:focus-visible { outline: 3px solid var(--color-pink); outline-offset: -3px; }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-cream-dim);
  color: var(--color-pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms var(--ease), background 300ms var(--ease);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--color-pink); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease);
}
.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-ink-soft);
}

.faq-category {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin: 48px 0 18px;
}
.faq-category:first-child { margin-top: 0; }

/* =========================================================
   RESULTS / GALLERY GRID + LIGHTBOX
   ========================================================= */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-page-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  min-height: 44px;
}
.gallery-page-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease);
}
.gallery-page-item:hover img { transform: scale(1.07); }
.gallery-page-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(77,15,46,0.55) 0%, rgba(77,15,46,0) 40%);
  opacity: 0;
  transition: opacity 250ms var(--ease);
}
.gallery-page-item:hover::after { opacity: 1; }
.gallery-page-item .zoom-hint {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
}
.gallery-page-item:hover .zoom-hint { opacity: 1; transform: translateY(0); }
.gallery-page-item .zoom-hint svg { width: 16px; height: 16px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-scrim {
  position: absolute; inset: 0;
  background: rgba(23, 6, 18, 0.88);
  backdrop-filter: blur(6px);
}
.lightbox-figure {
  position: relative;
  max-width: min(680px, 92vw);
  max-height: 86vh;
  z-index: 1;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: block;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.lightbox-close svg, .lightbox-nav svg { width: 18px; height: 18px; }
.lightbox-close { top: -18px; right: -18px; }
.lightbox-nav.prev { left: -22px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: -22px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 245, 251, 0.75);
  font-size: 0.85rem;
}

/* =========================================================
   TERMS PAGE TYPOGRAPHY
   ========================================================= */
.legal {
  max-width: 780px;
  margin: 0 auto;
}
.legal p { font-size: 0.98rem; line-height: 1.75; color: var(--color-ink-soft); margin: 0 0 18px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-espresso);
  margin: 40px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-espresso);
  margin: 22px 0 8px;
}
.legal ul { margin: 0 0 18px; padding-left: 22px; color: var(--color-ink-soft); }
.legal li { font-size: 0.98rem; line-height: 1.7; margin-bottom: 6px; }
.legal .legal-updated {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-bottom: 36px;
}
.legal-contact {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-cream-dim);
  border-radius: var(--radius-md);
}
.legal-contact p { margin: 0 0 6px; }

/* =========================================================
   SCROLL-TO-TOP BUTTON
   ========================================================= */
.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-pink-deep);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(77, 15, 46, 0.55);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease), background 200ms var(--ease);
}
.scroll-top-btn.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-top-btn:hover { background: #a02f6e; }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* =========================================================
   CARD TILT MICRO-INTERACTION
   ========================================================= */
.tilt-card { transition: transform 200ms ease-out; will-change: transform; }

/* =========================================================
   RESPONSIVE — new components
   ========================================================= */
@media (max-width: 1080px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .page-hero { padding-top: 140px; }
}
@media (max-width: 640px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
  .lightbox-close { top: 4px; right: 4px; }
  .payment-chip { padding: 14px 22px; }
  .payment-chip img { height: 26px; }
}
@media (max-width: 420px) {
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
}
