/* ─────────────────────────────────────────────
   SOLÉA AESTHETIC CLINIC — design system + layout
   Kecantikan yang Selaras.
───────────────────────────────────────────── */
:root {
  --background: #F8F6F2;
  --surface: #EFE8DE;
  --primary: #E4D8CA;
  --accent: #B89C7D;
  --accent-deep: #9A7E5F;
  --text: #2B2B2B;
  --muted: #6E6A65;
  --hairline: rgba(43,43,43,0.10);
  --cream: #F8F6F2;
  --serif: 'Cormorant Garamond', Georgia, serif; /* @kind font */
  --sans: 'Inter', -apple-system, sans-serif; /* @kind font */
  --ease: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --shadow-soft: 0 18px 50px rgba(43,43,43,0.07);
  --shadow-lift: 0 28px 70px rgba(43,43,43,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: rgba(184,156,125,0.28); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

/* ── type system ── */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 36px; height: 1px; background: var(--accent); }
.section-title { font-size: clamp(38px, 4.6vw, 60px); margin-top: 22px; }
.section-lede { font-size: 17px; color: var(--muted); max-width: 560px; margin-top: 20px; text-wrap: pretty; }

section { padding: 130px 0; }

/* ── reveal on scroll ── */
.rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
    transition-delay: var(--d, 0ms);
  }
  .rv.in { opacity: 1; transform: translateY(0); }
}

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 34px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 400ms var(--ease), color 400ms var(--ease), border-color 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.btn-primary { background: var(--text); color: var(--background); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost { border-color: rgba(43,43,43,0.22); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--text); background: rgba(43,43,43,0.04); }
.btn-light { background: var(--background); color: var(--text); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-tan { background: var(--primary); color: var(--text); }
.btn-tan:hover { background: var(--background); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline-light { border-color: rgba(248,246,242,0.45); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(248,246,242,0.1); }

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 600ms var(--ease), border-color 600ms var(--ease), height 600ms var(--ease);
}
nav.site-nav.scrolled {
  height: 66px;
  background: linear-gradient(105deg, rgba(252,250,246,0.92) 0%, rgba(244,234,216,0.9) 48%, rgba(228,207,174,0.88) 100%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(154,126,95,0.18);
}
.nav-logo { display: block; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .logo-dark { display: none; }
nav.site-nav.scrolled .logo-light { display: none; }
nav.site-nav.scrolled .logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 13px;
  color: rgba(248,246,242,0.85);
  letter-spacing: 0.02em;
  transition: color 250ms ease;
}
.nav-links a:hover { color: #FFFFFF; }
nav.site-nav.scrolled .nav-links a { color: var(--muted); }
nav.site-nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  background: var(--cream);
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 350ms var(--ease), color 350ms var(--ease);
}
.nav-cta:hover { background: var(--primary); }
nav.site-nav.scrolled .nav-cta { background: var(--text); color: var(--background); }
nav.site-nav.scrolled .nav-cta:hover { background: var(--accent-deep); }

/* ── HERO (full-bleed image, copy overlay) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(66,49,26,0.76) 0%, rgba(94,71,38,0.48) 38%, rgba(150,118,70,0.14) 68%, rgba(184,156,125,0) 100%),
    linear-gradient(0deg, rgba(66,49,26,0.45) 0%, rgba(66,49,26,0) 30%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: 580px; }
.hero-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.75);
}
.hero h1 {
  font-size: clamp(54px, 6.6vw, 100px);
  font-weight: 500;
  margin: 24px 0 0;
  color: #FDFCF9;
}
.hero-rule { width: 64px; height: 1px; background: var(--accent); margin: 34px 0; }
.hero .lede { font-size: 17px; line-height: 1.75; color: rgba(248,246,242,0.88); max-width: 470px; text-wrap: pretty; }
.hero .lede + .lede { margin-top: 16px; font-size: 15.5px; color: rgba(248,246,242,0.7); }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.hero-rating .stars { color: #E2C394; font-size: 16px; letter-spacing: 5px; text-shadow: 0 2px 12px rgba(43,33,18,0.4); }
.hero-rating .cap { font-size: 12.5px; color: rgba(248,246,242,0.72); letter-spacing: 0.04em; }
.hero .btn-row { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
}
.hero-stat { padding: 0 36px; border-left: 1px solid rgba(248,246,242,0.25); }
.hero-stat:first-child { padding-left: 0; border-left: none; }
.hero-stat .num { font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.1; color: #FDFCF9; }
.hero-stat .lbl { font-size: 12.5px; color: rgba(248,246,242,0.66); margin-top: 4px; line-height: 1.45; }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; transform: translateY(18px); animation: heroIn 1300ms var(--ease) forwards; }
  .hero-copy > .hero-brand { animation-delay: 150ms; }
  .hero-copy > h1 { animation-delay: 300ms; }
  .hero-copy > .hero-rule { animation-delay: 420ms; }
  .hero-copy > .lede { animation-delay: 500ms; }
  .hero-copy > .lede + .lede { animation-delay: 600ms; }
  .hero-copy > .hero-rating { animation-delay: 700ms; }
  .hero-copy > .hero-stats { animation-delay: 800ms; }
  .hero-copy > .btn-row { animation-delay: 950ms; }
  @keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
}

/* ── INTRODUCTION ── */
.intro { background: var(--background); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.intro h2 { font-size: clamp(38px, 4.4vw, 58px); margin-top: 22px; }
.intro-body p { color: var(--muted); font-size: 16.5px; text-wrap: pretty; }
.intro-body p + p { margin-top: 22px; }
.intro-body p:first-child {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--text);
  line-height: 1.4;
}
.intro-rule { width: 60px; height: 1px; background: var(--accent); margin-bottom: 30px; }

/* ── SERVICES (arched cards) ── */
.services { background: var(--surface); }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  height: 480px;
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  background: var(--primary);
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-card img.slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1400ms var(--ease);
}
.service-card:hover img.slot { transform: scale(1.05); }
.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(43,33,24,0) 42%, rgba(43,33,24,0.68) 100%);
  pointer-events: none;
}
.service-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  color: var(--cream);
  pointer-events: none;
}
.service-num { font-size: 11px; letter-spacing: 0.3em; font-weight: 600; color: rgba(248,246,242,0.7); }
.service-body h3 { font-size: 30px; margin: 8px 0 6px; color: #FDFCF9; }
.service-body p { font-size: 13.5px; line-height: 1.55; color: rgba(248,246,242,0.78); text-wrap: pretty; }

/* ── PHILOSOPHY ── */
.philosophy { background: var(--text); color: var(--background); }
.philosophy .eyebrow { color: var(--accent); }
.philosophy-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 90px; align-items: start; }
.philosophy h2 { font-size: clamp(38px, 4.4vw, 58px); margin-top: 22px; }
.philosophy-lines { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; }
.philosophy-lines p { font-family: var(--serif); font-size: 24px; line-height: 1.45; color: rgba(248,246,242,0.85); }
.philosophy-lines p strong { color: var(--primary); font-weight: 500; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(248,246,242,0.12); border: 1px solid rgba(248,246,242,0.12); border-radius: 20px; overflow: hidden; }
.feature-cell { background: var(--text); padding: 34px 30px 38px; transition: background 500ms var(--ease); }
.feature-cell:hover { background: #353331; }
.feature-glyph { width: 34px; height: 34px; position: relative; margin-bottom: 22px; }
.feature-glyph::before, .feature-glyph::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--accent); border-radius: 50%; }
.feature-glyph.g-circles::after { transform: translateX(10px); opacity: 0.55; }
.feature-glyph.g-diamond::before { border-radius: 0; transform: rotate(45deg) scale(0.82); }
.feature-glyph.g-diamond::after { display: none; }
.feature-glyph.g-line::before { border: none; border-top: 1px solid var(--accent); top: 50%; }
.feature-glyph.g-line::after { border: none; border-left: 1px solid var(--accent); left: 50%; }
.feature-glyph.g-ring::after { transform: scale(0.55); opacity: 0.55; }
.feature-cell h3 { font-size: 22px; color: var(--background); }
.feature-cell p { font-size: 13.5px; color: rgba(248,246,242,0.6); margin-top: 8px; text-wrap: pretty; }

/* ── BEFORE / AFTER ── */
.results { background: var(--background); }
.results-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.results-head .section-lede { margin-left: auto; margin-right: auto; }
.result-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.result-tab {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(43,43,43,0.16);
  border-radius: 100px;
  padding: 11px 24px;
  transition: all 400ms var(--ease);
}
.result-tab:hover { border-color: var(--accent); color: var(--text); }
.result-tab.active { background: var(--text); border-color: var(--text); color: var(--background); }
.ba-stage { max-width: 880px; margin: 0 auto; }
.ba-pair { display: none; }
.ba-pair.active { display: block; }
.ba-compare {
  position: relative;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  touch-action: pan-y;
}
.ba-compare img.slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; background: var(--background); box-shadow: 0 0 18px rgba(43,43,43,0.3); }
.ba-knob {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--background);
  box-shadow: 0 8px 26px rgba(43,43,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  color: var(--accent-deep);
  user-select: none;
}
.ba-tag {
  position: absolute;
  top: 22px;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(43,43,43,0.55);
  color: var(--background);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-tag.before { left: 22px; }
.ba-tag.after { right: 22px; }
.ba-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 22px; }

/* ── CLINIC EXPERIENCE ── */
.experience { background: var(--surface); }
.exp-head { max-width: 620px; margin-bottom: 64px; }
.exp-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 230px;
  gap: 22px;
}
.exp-item { position: relative; border-radius: 22px; overflow: hidden; }
.exp-item img.slot { width: 100%; height: 100%; display: block; transition: transform 1400ms var(--ease); }
.exp-item:hover img.slot { transform: scale(1.04); }
.exp-item.tall { grid-row: span 2; }
.exp-label {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 3;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--background);
  text-shadow: 0 2px 18px rgba(43,43,43,0.5);
  pointer-events: none;
}
.exp-label small { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.85; margin-bottom: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--background); overflow: hidden; padding-left: 0; padding-right: 0; }
.testi-head { text-align: center; margin-bottom: 60px; }
.testi-track-outer { 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); }
.testi-track { display: flex; gap: 24px; width: max-content; padding: 10px 0 20px; animation: testiScroll 80s linear infinite; }
.testi-track-outer:hover .testi-track { animation-play-state: paused; }
@keyframes testiScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  width: 400px;
  background: var(--surface);
  border: 1px solid rgba(43,43,43,0.05);
  border-radius: 22px;
  padding: 36px 34px 30px;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}
.testi-stars { color: var(--accent); font-size: 14px; letter-spacing: 4px; }
.testi-card blockquote { font-family: var(--serif); font-size: 21px; line-height: 1.45; margin: 18px 0 24px; text-wrap: pretty; }
.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-who .name { font-size: 13.5px; font-weight: 600; }
.testi-who .role { font-size: 12px; color: var(--muted); }

/* ── JOURNEY ── */
.journey { background: var(--surface); }
.journey-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 90px; }
.journey-sticky { position: sticky; top: 130px; align-self: start; }
.timeline { position: relative; padding-left: 56px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 17px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(43,43,43,0.12);
}
.timeline-progress {
  position: absolute;
  left: 17px; top: 8px;
  width: 1px;
  height: 0;
  background: var(--accent);
  transition: height 200ms linear;
}
.tl-step { position: relative; padding-bottom: 64px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -56px; top: 4px;
  width: 35px; height: 35px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(43,43,43,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: all 600ms var(--ease);
}
.tl-step.lit .tl-dot { background: var(--text); border-color: var(--text); color: var(--background); }
.tl-step h3 { font-size: 28px; }
.tl-step p { font-size: 14.5px; color: var(--muted); margin-top: 10px; max-width: 440px; text-wrap: pretty; }

/* ── FAQ ── */
.faq { background: var(--background); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid rgba(43,43,43,0.12); }
.faq-item { border-bottom: 1px solid rgba(43,43,43,0.12); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 4px;
  font-family: var(--serif);
  font-size: 23px;
  color: var(--text);
  transition: color 300ms ease;
}
.faq-q:hover { color: var(--accent-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(43,43,43,0.2);
  position: relative;
  transition: all 500ms var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 500ms var(--ease);
}
.faq-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon { background: var(--text); border-color: var(--text); color: var(--background); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 700ms var(--ease);
}
.faq-a p { font-size: 15px; color: var(--muted); padding: 0 56px 30px 4px; max-width: 580px; text-wrap: pretty; }

/* ── CTA ── */
.cta { background: var(--text); color: var(--background); text-align: center; padding: 160px 0; }
.cta .eyebrow { color: var(--accent); }
.cta h2 { font-size: clamp(42px, 5.4vw, 74px); max-width: 820px; margin: 26px auto 0; }
.cta p { font-size: 17px; color: rgba(248,246,242,0.65); max-width: 480px; margin: 26px auto 0; text-wrap: pretty; }
.cta .btn-row { display: flex; justify-content: center; gap: 16px; margin-top: 48px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-strip { border-bottom: 1px solid var(--hairline); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 70px 0;
}
.contact-cell .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-cell p { font-size: 14.5px; color: var(--muted); }
.contact-cell a { color: var(--text); border-bottom: 1px solid rgba(43,43,43,0.2); transition: border-color 250ms ease; }
.contact-cell a:hover { border-color: var(--text); }

/* ── MAP ── */
.map-section { background: var(--surface); line-height: 0; }
.map-frame {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  filter: grayscale(0.85) sepia(0.18) saturate(1.05);
}

/* ── FOOTER ── */
footer { background: var(--background); padding: 90px 0 50px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.footer-brand img { height: 40px; width: auto; }
.footer-brand .tag { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); margin-top: 14px; }
.footer-cols { display: flex; gap: 90px; }
.footer-col .hd { font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 250ms ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  section { padding: 90px 0; }
  nav.site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 130px 0 70px; }
  .hero-stats { flex-wrap: wrap; gap: 20px 0; margin-top: 48px; }
  .hero-stat { padding: 0 24px; }
  .hero-stat .num { font-size: 30px; }
  .intro-grid, .philosophy-grid, .journey-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .journey-sticky { position: static; }
  .services-head { flex-direction: column; align-items: flex-start; margin-bottom: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 420px; }
  .exp-masonry { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .exp-item.tall { grid-row: span 1; }
  .ba-compare { height: 400px; }
  .contact-grid { grid-template-columns: 1fr 1fr; padding: 50px 0; }
  .map-frame { height: 380px; }
  .footer-cols { gap: 44px; flex-wrap: wrap; }
  .testi-card { width: 320px; }
  .cta { padding: 110px 0; }
  }

/* ── UGC REEL (Cerita Alya) ── */
.ugc { background: var(--surface); overflow: hidden; }
.ugc-meta { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.ugc-meta .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background-image: url('img/ugc/scene5-daylight.webp');
  background-size: cover; background-position: 50% 22%;
  box-shadow: 0 0 0 1px var(--hairline);
}
.ugc-meta .who .nm { font-family: var(--serif); font-size: 19px; line-height: 1.1; }
.ugc-meta .who .rl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-top: 3px; }.reel-stage { position: absolute; inset: 0; }
.reel-scene {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 620ms var(--ease);
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform, opacity;
}
.reel-scene.is-active { opacity: 1; }
/* unifying grade so mixed sources cohere */
.reel-stage::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(184,156,125,0.10), transparent 60%),
    linear-gradient(180deg, rgba(27,25,23,0.18) 0%, rgba(27,25,23,0) 26%, rgba(27,25,23,0) 44%, rgba(27,25,23,0.62) 100%);
  mix-blend-mode: normal;
}
.reel-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(27,25,23,0.34);
}

/* progress bars */
.reel-bars {
  position: absolute; top: 14px; left: 14px; right: 14px; z-index: 6;
  display: flex; gap: 5px;
  opacity: 0; transition: opacity 300ms ease;
}.reel-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.28); overflow: hidden; }
.reel-bar-fill { display: block; height: 100%; width: 0%; background: #FDFCF9; border-radius: 3px; }

/* sound toggle */
.reel-sound {
  position: absolute; top: 30px; right: 14px; z-index: 7;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(27,25,23,0.38); border: 1px solid rgba(255,255,255,0.32);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #FDFCF9; opacity: 0; transition: opacity 300ms ease, background 200ms ease;
}.reel-sound svg { width: 16px; height: 16px; display: block; }
.reel-sound .ic-on { display: none; }/* caption */
.reel-caption {
  position: absolute; left: 0; right: 0; bottom: 12.5%; z-index: 5;
  padding: 0 26px; text-align: center; pointer-events: none;
}
.reel-caption p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(21px, 5.4vw, 27px);
  line-height: 1.32;
  color: #FFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 6px 26px rgba(0,0,0,0.5);
  text-wrap: balance;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.reel-caption p.is-hidden { opacity: 0; transform: translateY(8px); }

/* poster (idle) */
.reel-poster {
  position: absolute; inset: 0; z-index: 8;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 30px 26px 30px;
  background: linear-gradient(180deg, rgba(27,25,23,0.42) 0%, rgba(27,25,23,0.05) 32%, rgba(27,25,23,0.08) 58%, rgba(27,25,23,0.62) 100%);
  opacity: 1; transition: opacity 460ms var(--ease);
}.reel-kicker { font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.86); }
.reel-poster .ttl { font-family: var(--serif); font-size: 30px; line-height: 1.15; color: #FFF; margin-top: auto; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.reel-poster .sub { font-size: 13px; color: rgba(255,255,255,0.82); margin-top: 8px; letter-spacing: 0.02em; }
.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 320ms var(--ease), background 240ms ease;
}
.reel-play::after { content: ""; width: 0; height: 0; margin-left: 5px; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #FFF; }
.reel-poster:hover .reel-play { transform: translate(-50%, -50%) scale(1.07); background: rgba(255,255,255,0.26); }

/* pause flash + end card */
.reel-pausebtn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.9); z-index: 7;
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center; pointer-events: none;
  background: rgba(27,25,23,0.34); border: 1px solid rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 240ms ease, transform 240ms ease;
}
.reel-pausebtn::before, .reel-pausebtn::after { content: ""; width: 6px; height: 24px; background: #FFF; border-radius: 2px; }
.reel-pausebtn::before { margin-right: 7px; }.reel-end {
  position: absolute; inset: 0; z-index: 9;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 0 34px;
  background: rgba(24,22,20,0.6); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  opacity: 0; pointer-events: none; transition: opacity 520ms var(--ease);
}.reel-end .heart { color: var(--primary); font-size: 22px; }
.reel-end .line {
  font-family: var(--serif); font-style: italic; font-size: clamp(21px, 5.2vw, 26px);
  line-height: 1.4; color: #FFF; margin-top: 18px; text-wrap: balance;
}
.reel-replay {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 100px;
  background: transparent; border: 1px solid rgba(255,255,255,0.55); color: #FFF;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em;
  transition: background 220ms ease, border-color 220ms ease;
}
.reel-replay:hover { background: rgba(255,255,255,0.12); border-color: #FFF; }
.reel-replay svg { width: 15px; height: 15px; }


/* ── <image-slot> web component replaced by plain <img> ── */
img.slot { object-fit: cover; background: var(--primary, #E4D8CA); }

/* accessibility floor (absent from the original) */
:where(a,button,input,textarea,select,[tabindex]):focus-visible {
  outline: 2px solid var(--accent-deep, #9A7E5F); outline-offset: 3px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important; scroll-behavior:auto !important; }
}


/* ══ Cerita Alya — 16:9 player (replaces the 9:16 story reel) ══════════════ */
.ugc-v { display: block; }
.ugc-head { max-width: 620px; margin: 0 auto; text-align: center; }
.ugc-head .eyebrow { justify-content: center; }
.ugc-head .eyebrow::before { display: none; }
.ugc-head h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 20px; }
.ugc-head .section-lede { margin-top: 20px; }

.vreel {
  position: relative; margin: 44px auto 0; max-width: 1080px;
  aspect-ratio: 16 / 9; border-radius: 26px; overflow: hidden;
  background: #1B1917; box-shadow: var(--shadow-lift); cursor: pointer;
}
.vreel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.vreel::after {  /* the same inner vignette the old reel used */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 120px rgba(27,25,23,0.30);
}

.vreel-poster {
  position: absolute; inset: 0; z-index: 8;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(20px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(27,25,23,0.50) 0%, rgba(27,25,23,0.08) 32%, rgba(27,25,23,0.14) 52%, rgba(27,25,23,0.78) 100%),
              linear-gradient(90deg, rgba(27,25,23,0.42) 0%, rgba(27,25,23,0) 58%);
  transition: opacity 460ms var(--ease);
}
.vreel[data-state="playing"] .vreel-poster,
.vreel[data-state="ended"] .vreel-poster { opacity: 0; pointer-events: none; }
.vreel-kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.vreel-lines { max-width: 46%; }
.vreel-poster .ttl {
  font-family: var(--serif); font-size: clamp(24px, 3.4vw, 42px); line-height: 1.14;
  color: #FFF; text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.vreel-poster .sub { font-size: clamp(12px, 1.1vw, 14px); color: rgba(255,255,255,0.82); margin-top: 10px; }
.vreel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(62px, 6vw, 84px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform 320ms var(--ease), background 240ms ease;
}
.vreel-play::after {
  content: ""; margin-left: 6px; border-style: solid;
  border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #FFF;
}
.vreel:hover .vreel-play { transform: translate(-50%,-50%) scale(1.07); background: rgba(255,255,255,0.26); }

.vreel-sound {
  position: absolute; top: clamp(16px, 2.2vw, 26px); right: clamp(16px, 2.2vw, 26px); z-index: 9;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(27,25,23,0.42); border: 1px solid rgba(255,255,255,0.32);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #FDFCF9; opacity: 0; transition: opacity 300ms ease, background 200ms ease; cursor: pointer;
}
.vreel[data-state="playing"] .vreel-sound,
.vreel[data-state="paused"]  .vreel-sound,
.vreel:hover .vreel-sound { opacity: 1; }
.vreel-sound:hover { background: rgba(27,25,23,0.62); }
.vreel-sound svg { width: 17px; height: 17px; display: block; }
.vreel-sound .ic-off { display: none; }
.vreel.is-muted .vreel-sound .ic-on  { display: none; }
.vreel.is-muted .vreel-sound .ic-off { display: block; }

.vreel-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 9; height: 16px;
  display: flex; align-items: flex-end; cursor: pointer;
  opacity: 0; transition: opacity 260ms ease;
}
.vreel[data-state="playing"] .vreel-bar,
.vreel[data-state="paused"]  .vreel-bar,
.vreel:hover .vreel-bar { opacity: 1; }
.vreel-bar::before { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: rgba(255,255,255,0.26); }
.vreel-bar i {
  position: absolute; inset: auto 0 0 0; height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform 120ms linear;
}

.vreel-end {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 0 34px;
  background: rgba(24,22,20,0.62); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  opacity: 0; pointer-events: none; transition: opacity 520ms var(--ease);
}
.vreel[data-state="ended"] .vreel-end { opacity: 1; pointer-events: auto; }
.vreel-end .heart { color: var(--primary); font-size: 22px; }
.vreel-end .line {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4; color: #FFF; margin-top: 18px; max-width: 22ch; text-wrap: balance;
}
.vreel-replay {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.5); background: rgba(255,255,255,0.10);
  color: #FFF; font-size: 13px; letter-spacing: 0.06em;
  transition: background 220ms ease;
}
.vreel-replay:hover { background: rgba(255,255,255,0.22); }
.vreel-replay svg { width: 15px; height: 15px; }

.ugc-cap {
  max-width: 1080px; margin: 20px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.ugc-meta { display: flex; align-items: center; gap: 14px; }
.ugc-meta .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background-image: url('img/ugc/scene5-daylight.webp');
  background-size: cover; background-position: 50% 22%;
  box-shadow: 0 0 0 1px var(--hairline);
}
.ugc-meta .who .nm { font-family: var(--serif); font-size: 19px; line-height: 1.1; }
.ugc-meta .who .rl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-top: 3px; }
.vreel-time { font-size: 12px; letter-spacing: 0.14em; color: var(--muted); font-variant-numeric: tabular-nums; }

@media (max-width: 860px) {
  .vreel { border-radius: 18px; margin-top: 32px; }
  .vreel-lines { max-width: 74%; }
  .ugc-cap { margin-top: 16px; }
}
@media (max-width: 560px) {
  .ugc-cap { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* video source refused (preview sandbox, 404, or wrong MIME type on the host) */
.vreel[data-error] { cursor: default; }
.vreel[data-error] .vreel-play,
.vreel[data-error] .vreel-sound,
.vreel[data-error] .vreel-bar { display: none; }
.vreel[data-error] .vreel-poster { opacity: 1 !important; pointer-events: auto; }
.vreel-fallback {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 11; display: none; text-align: center; padding: 14px 20px;
  border-radius: 999px; background: rgba(27,25,23,0.62);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #FDFCF9; font-size: 13px; letter-spacing: 0.02em;
}
.vreel[data-error] .vreel-fallback { display: block; }
