:root {
  --espresso: #1C1714;
  --warmblack: #231F1B;
  --stone: #3D3632;
  --taupe: #7A6E65;
  --sand: #B5A99A;
  --linen: #F5F0EA;
  --cream: #FAF7F2;
  --white: #FEFDFB;
  --gold: #9A7B4F;
  --gold-soft: #C4A97D;
  --accent: #8B6F47;
}

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

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

::selection { background: var(--gold-soft); color: var(--white); }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.tag {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
}

/* ===== NAV ===== */
nav {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 1.4rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
nav.scrolled {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  padding: 1rem 3.5rem;
  box-shadow: 0 1px 0 rgba(154,123,79,0.06);
}
.nav-left { display: flex; align-items: center; gap: 3rem; }
.nav-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(0);
  transition: 0.3s;
}

/* Slightly shrink on scroll so nav stays compact */
nav.scrolled .nav-logo img {
  height: 24px;
}
.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--stone);
  text-decoration: none; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content:''; position: absolute; bottom: -4px; left:0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.lang-toggle {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe); cursor: pointer; transition: 0.3s;
  background: none; border: none; font-family: 'Sora', sans-serif;
  font-weight: 400;
}
.lang-toggle:hover { color: var(--espresso); }
.lang-toggle .active { color: var(--espresso); font-weight: 500; }

/* Minimal, no-asset flags next to language labels */
.lang-toggle .lang-opt{ display:inline-flex; align-items:center; gap:0.35rem; }
.lang-toggle .flag{ font-size: 0.95em; line-height: 1; }
.lang-toggle .sep{ margin: 0 0.45rem; opacity: 0.7; }
.lang-toggle .flag { font-size: 0.78rem; vertical-align: -1px; margin: 0 0.25rem 0 0; }
.lang-toggle .sep { margin: 0 0.5rem; opacity: 0.6; }
.nav-cta-btn {
  font-family: 'Sora', sans-serif; font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); background: var(--espresso);
  padding: 0.75rem 1.8rem; text-decoration: none;
  transition: all 0.4s; border: 1px solid var(--espresso);
}
.nav-cta-btn:hover { background: transparent; color: var(--espresso); }

/* Mobile */
.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 26px; height: 18px; position: relative; z-index: 200;
}
.menu-btn span {
  display: block; width: 100%; height: 1px; background: var(--espresso);
  position: absolute; left: 0; transition: all 0.3s;
}
.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 8px; }
.menu-btn span:nth-child(3) { top: 16px; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-links, .nav-right .nav-cta-btn {
    display: none;
  }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .mobile-open .nav-links {
    display: flex; position: fixed; inset: 0;
    background: var(--cream); flex-direction: column;
    justify-content: center; align-items: center; gap: 2.5rem;
    z-index: 150;
  }
  .mobile-open .nav-links a { font-size: 1.1rem; letter-spacing: 0.18em; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  background: var(--cream);
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 10rem 6rem 6rem 6rem;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem; font-weight: 400;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  color: var(--espresso); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic; display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.95rem; line-height: 1.85; color: var(--taupe);
  max-width: 440px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.btn-primary {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream); background: var(--espresso);
  padding: 1.05rem 2.6rem; text-decoration: none;
  transition: all 0.4s; border: 1px solid var(--espresso);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stone);
  padding: 1.05rem 0; text-decoration: none;
  transition: all 0.3s; border-bottom: 1px solid var(--sand);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img,
.hero-right .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroZoom 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Prevent iOS from forcing fullscreen; keep video inline */
.hero-right .hero-video {
  display: block;
}

.hero-stat {
  /* Keep this in normal flow so it never overlaps buttons or gets clipped on odd viewport sizes */
  position: relative;
  margin-top: 3.25rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.stat-item { min-width: 140px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--espresso);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.4rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--espresso); padding: 1.1rem 0; overflow: hidden;
  position: relative;
}
.marquee {
  display: flex; gap: 4rem; animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); font-weight: 300;
}
.marquee .dot { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 0.8fr 1fr;
  gap: 6rem; align-items: center;
}
.phil-image { position: relative; }
.phil-image img { width: 100%; display: block; }
.phil-image-accent {
  position: absolute; top: -30px; left: -30px;
  width: 120px; height: 120px;
  border-top: 1px solid var(--gold-soft); border-left: 1px solid var(--gold-soft);
  opacity: 0.4;
}
.phil-content .tag { margin-bottom: 1.6rem; }
.phil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25; margin-bottom: 1.8rem;
}
.phil-text {
  font-size: 0.92rem; line-height: 1.9; color: var(--taupe);
  margin-bottom: 1rem;
}
.phil-divider {
  width: 50px; height: 1px; background: var(--gold-soft);
  margin: 2rem 0;
}

/* ===== OUR SPACE ===== */
.space {
  padding: 8rem 6rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.space-content .tag { margin-bottom: 1.6rem; display: block; }
.space-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.space-text {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--taupe);
  max-width: 520px;
}
.space-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.space-gallery img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
}


/* ===== METHOD ===== */
.method {
  background: var(--cream);
  color: var(--espresso);
  padding: 8rem 6rem;
}
.method-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem;
}
.method-header .tag { color: var(--gold); margin-bottom: 1.5rem; display: block; }
.method-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.method-header p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--taupe);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.method-card {
  padding: 2.6rem 2.2rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(154,123,79,0.14);
  box-shadow: 0 2px 30px rgba(0,0,0,0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  border-color: rgba(154,123,79,0.22);
}
.method-icon {
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.method-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: rgba(154,123,79,0.18);
  margin-bottom: 1.1rem;
  line-height: 1;
}
.method-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 0.9rem;
}
.method-card p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--taupe);
}

/* ===== TRANSFORMATIONS ===== */
.transformations {
  padding: 8rem 6rem;
  background: var(--linen);
}
.trans-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.trans-header-left {}
.trans-header-left .tag { margin-bottom: 1.2rem; display: block; }
.trans-header-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.2;
}
.trans-header-right {
  font-size: 0.85rem; line-height: 1.8; color: var(--taupe);
  max-width: 380px; text-align: right;
}
.trans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trans-card {
  position: relative; overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
  transition: transform 0.5s, box-shadow 0.5s;
}
.trans-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.trans-card img { width: 100%; display: block; }
.trans-badge {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; gap: 0.5rem;
}
.trans-badge span {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; font-weight: 400;
}
.trans-badge .before-badge { background: rgba(0,0,0,0.5); color: var(--cream); }
.trans-badge .after-badge { background: var(--gold); color: var(--cream); }
.trans-card-foot {
  padding: 1.2rem 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--taupe); text-transform: uppercase;
}

/* ===== REVIEWS PHOTOS ===== */
.reviews-photos {
  padding: 6rem 6rem;
  background: var(--white);
}
.reviews-photos-inner { max-width: 1100px; margin: 0 auto; }
.reviews-photos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  text-align: center;
  color: var(--stone);
  margin: 0 0 1rem 0;
}
.reviews-photos-sub {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--taupe);
  margin: 0 0 2.5rem 0;
}
.reviews-more-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(154,123,79,0.35);
  padding-bottom: 1px;
}
.reviews-more-link:hover {
  color: var(--espresso);
  border-bottom-color: rgba(28,23,20,0.35);
}

.reviews-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Clickable review tiles (opens lightbox) */
.review-photo {
  display: block;
  background: var(--linen);
  box-shadow: 0 2px 30px rgba(0,0,0,0.04);
  text-decoration: none;
  border: 1px solid rgba(154,123,79,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(154,123,79,0.22);
}
.review-photo img {
  width: 100%;
  /* These are mostly screenshot-style review images (often tall).
     Use contain so we never crop text. */
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.6rem;
  background: transparent;
  cursor: zoom-in;
}

/* Lightbox */
.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-figure {
  max-width: min(980px, 92vw);
  max-height: 86vh;
  margin: 0;
}
.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: rgba(255,255,255,0.02);
  box-shadow: 0 18px 80px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  cursor: pointer;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== FOUNDER ===== */
.founder {
  padding: 8rem 6rem;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 6rem; align-items: center;
}
.founder-image { position: relative; }
.founder-image img { width: 100%; max-width: 440px; display: block; }
.founder-image-frame {
  position: absolute; bottom: -25px; right: -25px;
  width: 100px; height: 100px;
  border-bottom: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
  opacity: 0.4;
}
.founder-content .tag { margin-bottom: 1.6rem; }
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 2rem;
}
.founder-text {
  font-size: 0.92rem; line-height: 1.9; color: var(--taupe);
  margin-bottom: 1rem;
}
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--stone); line-height: 1.75;
  margin-top: 2.5rem; padding-left: 2rem;
  border-left: 2px solid var(--gold-soft);
}
.founder-sig {
  margin-top: 1.5rem; padding-left: 2rem;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}

/* ===== TRIAL BOOKING ===== */
.trial-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  font-family: 'DM Sans', sans-serif;
}
.trial-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.trial-label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A87460;
  margin-bottom: 20px;
}
.trial-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.trial-header .divider {
  width: 48px;
  height: 1px;
  background: #C4917B;
  margin: 20px auto;
  opacity: 0.5;
}
.trial-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #4A4A4A;
  max-width: 520px;
  margin: 0 auto;
}
.trial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.trial-info {
  padding: 40px 0;
}
.trial-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: #1A1A1A;
  margin-bottom: 32px;
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.expect-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0DDD5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: 2px;
}
.expect-text h4 {
  font-weight: 500;
  font-size: 15px;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.expect-text p {
  font-size: 14px;
  color: #8A8A8A;
  line-height: 1.5;
}
.trial-promise {
  margin-top: 36px;
  padding: 24px;
  background: #F0DDD5;
  border-radius: 12px;
  text-align: center;
}
.trial-promise p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: #A87460;
  line-height: 1.5;
}
.trial-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #E8E0DB;
}
.trial-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 4px;
}
.trial-card .card-subtitle {
  text-align: center;
  font-size: 13px;
  color: #8A8A8A;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  background: #FAF7F5;
  border: 1px solid #E8E0DB;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C4917B;
  box-shadow: 0 0 0 3px rgba(196, 145, 123, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8A8A8A;
  font-size: 13px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calendly-inline-widget {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8E0DB;
  background: #FFFFFF;
}
.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  background: #A87460;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  margin-top: 8px;
}
.submit-btn:hover { background: #926050; transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #8A8A8A;
}
.form-footer a {
  color: #A87460;
  text-decoration: none;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--espresso); color: var(--cream);
  padding: 7rem 6rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.cta-left .tag { color: var(--gold-soft); margin-bottom: 1.5rem; display: block; }
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream); line-height: 1.2; margin-bottom: 1.5rem;
}
.cta-left p {
  font-size: 0.9rem; line-height: 1.8; color: var(--sand);
  margin-bottom: 2.5rem;
}
.btn-gold {
  display: inline-block; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--espresso); background: var(--gold-soft);
  padding: 1.1rem 2.8rem; text-decoration: none;
  transition: all 0.4s;
}
.btn-gold:hover { background: var(--cream); }
.cta-details {
  display: block;
}

/* Visit card (CTA right side) */
.visit-card {
  border-radius: 18px;
  border: 1px solid rgba(196,169,125,0.18);
  background: rgba(250,247,242,0.04);
  padding: 1.6rem;
}
.visit-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.visit-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.visit-block p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--sand);
}
.visit-block a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,169,125,0.3);
  transition: 0.3s;
}
.visit-block a:hover { border-color: var(--gold-soft); }

/* Map embed */
.map-link { display: inline-block; }
.visit-map { margin-top: 1.25rem; }
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(196,169,125,0.22);
  background: rgba(250,247,242,0.04);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); padding: 7rem 6rem; }
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-head h2 { font-size: clamp(2rem, 3.2vw, 2.6rem); line-height: 1.2; margin-top: 0.8rem; }
.faq-head p { margin-top: 1rem; max-width: 680px; color: var(--taupe); line-height: 1.8; font-size: 0.9rem; }

.faq-list { margin-top: 2.5rem; display: grid; gap: 1rem; }
.faq-item {
  border: 1px solid rgba(154,123,79,0.14);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid rgba(154,123,79,0.18);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 1.35rem 1.25rem; }
.faq-body p { color: var(--taupe); line-height: 1.85; font-size: 0.92rem; }
.faq-body ul { margin: 0.75rem 0 0.75rem 1.2rem; color: var(--taupe); }
.faq-body li { margin: 0.35rem 0; line-height: 1.8; font-size: 0.92rem; }

@media (max-width: 1024px) {
  .faq { padding: 5rem 3rem; }
}
@media (max-width: 480px) {
  .faq { padding: 4rem 1.5rem; }
  .faq-item summary { font-size: 1.05rem; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--warmblack); color: rgba(245,240,234,0.35);
  padding: 3rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.08em;
  border-top: 1px solid rgba(154,123,79,0.08);
}
footer a {
  color: rgba(245,240,234,0.5); text-decoration: none;
  margin-left: 2rem; transition: 0.3s;
}
footer a:hover { color: var(--gold-soft); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 3rem 3rem; }
  .hero-right { height: 65vh; }
  .hero-stat { margin-top: 2.5rem; gap: 2.5rem; }
  .philosophy { padding: 5rem 3rem; grid-template-columns: 1fr; gap: 3rem; }
  .space { padding: 5rem 3rem; grid-template-columns: 1fr; gap: 3rem; }
  .space-gallery { grid-template-rows: auto; }
  .space-gallery img { max-height: 360px; }
  .method { padding: 5rem 3rem; }
  .method-grid { grid-template-columns: 1fr; }
  .transformations { padding: 5rem 3rem; }
  .reviews-photos { padding: 5rem 3rem; }
  .reviews-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .trans-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .trans-header-right { text-align: left; }
  .trans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .founder { padding: 5rem 3rem; grid-template-columns: 1fr; gap: 3rem; }
  .trial-section { padding: 5rem 3rem; }
  .trial-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { padding: 5rem 3rem; grid-template-columns: 1fr; gap: 3rem; }
  .visit-top { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 16 / 10; }
  footer { padding: 2rem 3rem; flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero-left { padding: 7rem 1.5rem 2rem; }
  .hero-right { height: 55vh; }
  .hero-stat { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .philosophy, .space, .method, .transformations, .founder, .cta-section { padding: 4rem 1.5rem; }
  .trial-section { padding: 4rem 1.5rem; }
  .trial-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-photos { padding: 4rem 1.5rem; }
  .reviews-photos-grid { grid-template-columns: 1fr; }
  nav { padding: 0.8rem 1.2rem; }
}

/* ===== BELOW-THE-FOLD RENDERING PERFORMANCE ===== */
.philosophy,
.space,
.method,
.transformations,
.reviews-v2,
.founder,
.faq,
.trial-section,
.cta-section,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* ===== LANGUAGE TOGGLE (single-language render) ===== */
.en-content,
.vn-content,
.en-inline,
.vn-inline { display: none; }

body.lang-vn .vn-content { display: block !important; }
body.lang-vn .vn-inline { display: inline !important; }
body.lang-vn .en-content,
body.lang-vn .en-inline { display: none !important; }

body:not(.lang-vn) .en-content { display: block !important; }
body:not(.lang-vn) .en-inline { display: inline !important; }
body:not(.lang-vn) .vn-content,
body:not(.lang-vn) .vn-inline { display: none !important; }


/* ===== INSTAGRAM ===== */
.instagram{ background: var(--cream); padding: 7rem 6rem; }
.ig-inner{ max-width: 1100px; margin: 0 auto; }
.ig-head{ display:flex; justify-content: space-between; gap: 2rem; align-items: flex-end; margin-bottom: 2.5rem; }
.ig-title{ font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; margin-top: 0.6rem; }
.ig-sub{ margin-top: 1rem; max-width: 560px; color: var(--taupe); line-height: 1.8; font-size: 0.9rem; }
.ig-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ig-tile{ display:block; position:relative; overflow:hidden; border: 1px solid rgba(154,123,79,0.12); background: var(--white); }
.ig-tile img{ width:100%; aspect-ratio: 1/1; object-fit: cover; display:block; transform: scale(1); transition: transform 0.5s ease; }
.ig-tile:hover img{ transform: scale(1.04); }
@media (max-width: 1024px){ .instagram{ padding: 5rem 3rem; } }
@media (max-width: 600px){ .ig-head{ flex-direction: column; align-items: flex-start; } .ig-grid{ grid-template-columns: repeat(2, 1fr);} }

/* ===== REVIEWS V2 ===== */
.reviews-v2 { padding: 6rem 0; background: var(--white); }
.reviews-v2-inner { max-width: 1100px; margin: 0 auto; padding: 0 6rem; }
.reviews-v2-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.2vw, 2.4rem); line-height: 1.25; text-align: center; color: var(--stone); margin: 0 0 1rem 0; }
.google-rating-banner { display:flex; align-items:center; justify-content:center; gap:.45rem; margin:0 auto 2rem; text-decoration:none; color:var(--stone); font-size:.95rem; }
.google-rating-banner .stars { color:#FBBC04; letter-spacing:.08em; }
.google-rating-banner strong { font-weight:600; }
.google-rating-banner .google-g { font-weight:700; color:#4285F4; border:1px solid rgba(0,0,0,.08); border-radius:999px; width:20px; height:20px; display:inline-flex; align-items:center; justify-content:center; font-size:.75rem; }
.google-rating-banner .review-count { color:var(--taupe); }
.reviews-strip-wrap { position:relative; width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw); padding:0 4rem; }
.reviews-strip { display:flex; gap:1rem; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; -ms-overflow-style:none; padding:.3rem .2rem .9rem; }
.reviews-strip::-webkit-scrollbar { display:none; }
.review-card-v2 { scroll-snap-align:start; flex:0 0 clamp(320px, 36vw, 380px); min-height:320px; background:var(--white); border:1px solid rgba(154,123,79,.14); border-radius:16px; box-shadow:0 2px 24px rgba(0,0,0,.05); padding:1rem; display:flex; flex-direction:column; }
.review-head { display:flex; gap:.75rem; align-items:center; margin-bottom:.6rem; }
.avatar { width:40px; height:40px; border-radius:50%; background:#f1e6db; color:#7f5d4a; display:flex; align-items:center; justify-content:center; font-weight:600; }
.name { font-size:.9rem; color:var(--stone); font-weight:500; }
.meta { font-size:.72rem; color:var(--taupe); }
.rating { color:#FBBC04; letter-spacing:.08em; font-size:.85rem; margin:.15rem 0 .6rem; }
.review-text-v2 { font-size:.88rem; color:var(--taupe); line-height:1.7; display:-webkit-box; -webkit-line-clamp:6; -webkit-box-orient:vertical; overflow:hidden; min-height:9.2em; }
.toggle-original { margin-top:auto; padding-top:.6rem; border:0; background:none; color:#8a7c70; font-size:.76rem; text-align:left; cursor:pointer; }
.review-card-photo { display:block; margin-top:.65rem; border-radius:10px; overflow:hidden; border:1px solid rgba(154,123,79,.16); }
.review-card-photo img { display:block; width:100%; height:170px; object-fit:cover; }
.reviews-arrow { position:absolute; top:45%; transform:translateY(-50%); width:38px; height:38px; border-radius:999px; border:1px solid rgba(154,123,79,.25); background:rgba(255,255,255,.86); color:var(--stone); cursor:pointer; display:grid; place-items:center; font-size:1.3rem; z-index:2; }
.reviews-arrow-left { left:1rem; }
.reviews-arrow-right { right:1rem; }
.reviews-arrow[disabled] { opacity:0; pointer-events:none; }
.reviews-google-btn { display:block; width:fit-content; margin:1rem auto 0; padding:.8rem 1.4rem; border:1px solid rgba(154,123,79,.5); color:var(--gold); text-decoration:none; border-radius:999px; background:transparent; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }
.reviews-google-btn:hover { border-color:var(--gold); color:var(--espresso); }
@media (max-width: 1024px){ .reviews-v2-inner{ padding:0 3rem; } .reviews-strip-wrap{ padding:0 2rem; } }
@media (max-width: 768px){ .reviews-arrow{ display:none; } .review-card-v2{ flex-basis:85vw; } .reviews-strip-wrap{ padding:0 1.2rem; } }

/* ===== TRANSFORMATIONS STRIP V2 ===== */
.trans-strip-wrap { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 4rem; }
.trans-strip { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: .3rem .2rem .9rem; }
.trans-strip::-webkit-scrollbar { display: none; }
.trans-compare-card { scroll-snap-align: start; flex: 0 0 400px; background: var(--white); border-radius: 16px; border: 1px solid rgba(154,123,79,.14); box-shadow: 0 2px 30px rgba(0,0,0,.05); overflow: hidden; }
.compare-frame { position: relative; height: 500px; overflow: hidden; background: #f6f2ee; touch-action: pan-y; }
.compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
/* composite before/after files: use left half for before, right half for after */
.compare-before { width: 100%; max-width: none; left: 0; right: auto; object-position: center; z-index: 2; }
.compare-after { display: none; }
.compare-after-wrap { display: none; }
.compare-handle { display: none; }
.trans-compare-card .trans-card-foot { min-height: 56px; display: flex; align-items: center; padding: 1rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.12em; }
.trans-arrow { position: absolute; top: 42%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(154,123,79,.25); background: rgba(255,255,255,.86); color: var(--stone); cursor: pointer; display: grid; place-items: center; font-size: 1.3rem; z-index: 2; }
.trans-arrow-left { left: 1rem; }
.trans-arrow-right { right: 1rem; }
.trans-arrow[disabled] { opacity: 0; pointer-events: none; }
.trans-dots { display: flex; justify-content: center; gap: .45rem; margin-top: .3rem; }
.trans-dots span { width: 6px; height: 6px; border-radius: 999px; background: rgba(154,123,79,.3); }
.trans-dots span.active { background: var(--gold); }
@media (max-width: 768px){ .trans-arrow { display: none; } .trans-strip-wrap { padding: 0 1.2rem; } .trans-compare-card { flex-basis: 85vw; } .compare-frame { height: 400px; } }
