/* ============================================================
   HANBANG BEAUTY — GLOBAL STYLESHEET (v2)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --cream:        #FAF6F0;
  --cream-mid:    #F0E8DC;
  --cream-deep:   #E4D5C0;
  --gold:         #B99659;
  --gold-light:   #CDB07A;
  --gold-pale:    #F5ECD9;
  --navy:         #1A2B45;
  --navy-light:   #2A4060;
  --bark:         #1A2B45;
  --bark-mid:     #243B58;
  --bark-light:   #3A5570;
  --text-body:    #1A1612;
  --text-muted:   #6B5E50;
  --text-light:   #9A8C7E;
  --white:        #FFFFFF;
  --border:       rgba(185,150,89,0.18);
  --border-light: rgba(185,150,89,0.09);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body:  'Montserrat', system-ui, sans-serif;

  --max-w:      1200px;
  --nav-h:      80px;
  --section-py: 80px;
  --radius:     6px;
  --shadow:     0 2px 20px rgba(185,150,89,0.09);
  --shadow-lg:  0 8px 48px rgba(185,150,89,0.14);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: none; font-family: var(--font-body); }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s, border-color 0.3s;
  opacity: 0.5;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text-body);
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 500; }
h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 500; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 16px; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--text-muted); font-size: 15px; line-height: 1.9; }

.body-lg { font-size: 17px; line-height: 1.85; }
.body-sm { font-size: 13px; }

/* Eyebrow with line */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}
section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header .eyebrow {
  justify-content: center;
}
.section-header .eyebrow::before { display: none; }
.section-header p { margin-top: 18px; font-size: 16px; }

.divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* Diamond section divider — gold lines + ◆ */
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.6rem 2rem;
  background: var(--cream);
}
.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.7;
}
.diamond-divider::before {
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.6;
}
.diamond-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
  opacity: 0.6;
}
.diamond-divider span {
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.25s;
}
.btn-dark {
  background: var(--bark-mid);
  color: var(--cream);
  border-color: var(--bark-mid);
}
.btn-dark:hover {
  background: var(--bark);
  border-color: var(--bark);
}
.btn-outline {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
sup.tm {
  font-size: 0.45em;
  vertical-align: super;
  line-height: 0;
  font-weight: inherit;
  letter-spacing: 0;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-white {
  background: var(--white);
  color: var(--bark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--bark);
  border-color: var(--white);
}

/* ── Navigation ────────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: height 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
  height: 68px;
  box-shadow: 0 2px 32px rgba(26,43,69,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo { flex-shrink: 0; display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

/* Nav item with dropdown */
.nav-item { position: relative; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
  padding: 0.3rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-body);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  padding-top: calc(0.75rem + 1.2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  margin-top: 0;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}
.nav-dropdown li a:hover {
  color: var(--gold);
  background: var(--cream-mid);
}
.nav-dropdown-header {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.6rem 1.25rem 0.3rem;
  margin-top: 0.4rem;
}
.nav-dropdown-header:first-child { margin-top: 0; }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-body);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile Menu (slides from right) ──────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,43,69,0.4);
  z-index: 489;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--cream);
  z-index: 490;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  padding: 6rem 2.5rem 3rem;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(26,43,69,0.15);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links { display: flex; flex-direction: column; gap: 0; }
.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-body);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); }
.mobile-menu .btn {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.5rem;
}

/* Page body offset */
.page-body { padding-top: var(--nav-h); }

/* ── Marquee Strip ──────────────────────────────────────────── */
#strip {
  background: var(--bark);
  padding: 1.4rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237,242,247,0.55);
  font-weight: 500;
  font-family: var(--font-body);
}
.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero (split 50/50) ─────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 6% 7rem;
  background: var(--cream);
  position: relative;
  z-index: 2;
}
.hero-text h1 { margin-bottom: 1.4rem; }
.hero-sub {
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--cream-mid);
}
.hero-img-main {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,43,69,0.05), rgba(26,43,69,0.25)),
    url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1200&q=85&fm=webp') center/cover no-repeat;
  animation: subtle-zoom 18s ease-in-out infinite alternate;
}
@keyframes subtle-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* Floating card in hero */
.hero-float-card {
  position: absolute;
  bottom: 3rem;
  left: -1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.float-card-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}
.float-card-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-body);
  line-height: 1.2;
}
.float-card-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-family: var(--font-body);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scroll-drip 2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%       { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
  50.001%  { transform: scaleY(1); transform-origin: bottom; }
  100%     { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--cream-mid);
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(78,107,138,0.08) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=1600&q=70&fm=webp') center/cover no-repeat;
  opacity: 0.18;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--cream-mid), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-inner .eyebrow { justify-content: center; }
.page-hero-inner .eyebrow::before { display: none; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── About / Split layout ───────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Stacked image stack */
.about-image-stack { position: relative; padding-bottom: 2rem; padding-right: 2rem; }
.about-img-main {
  aspect-ratio: 3/4;
  background: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=800&q=85&fm=webp') center/cover no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 48%;
  aspect-ratio: 4/3;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=600&q=80&fm=webp') center/cover no-repeat;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.about-year {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-year-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  display: block;
}
.about-year-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
}

/* About pills */
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-pill {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
}

/* ── Services Tabs ──────────────────────────────────────────── */
.services-tabs-wrapper { margin-bottom: 3rem; }
.services-tabs {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.tab-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  transition: background 0.25s, color 0.25s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: var(--bark);
  color: var(--cream);
}
.tab-btn:hover:not(.active) {
  background: var(--cream-mid);
  color: var(--text-body);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Service Items ───────────────────────────────────────────── */
.service-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  min-height: 124px;
  transition: border-color 0.25s, box-shadow 0.3s, transform 0.25s;
}
.service-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-item-body {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.8rem 2rem;
}
.service-item-info { flex: 1; }
.service-item-info h4 { margin-bottom: 0.4rem; color: var(--text-body); }
.service-item-info p  { font-size: 14px; line-height: 1.75; }
.service-meta { text-align: right; flex-shrink: 0; }

/* ── Service Card Tags ───────────────────────────────────────── */
.service-item-tags { margin-top: 1rem; }
.service-item-separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 0.85rem;
}
.card-best-for {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.card-best-for-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 0.15rem;
  flex-shrink: 0;
}
.card-best-for-tag {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border-radius: 20px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.03em;
}
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
}
.card-chip-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.card-chip-icon svg { width: 100%; height: 100%; }
.card-chip-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.service-duration {
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-family: var(--font-body);
}
.service-view {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  opacity: 1;
  position: relative;
  padding-bottom: 2px;
  transition: transform 0.22s ease, letter-spacing 0.22s ease;
}
.service-view::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.service-item:hover .service-view {
  transform: scale(1.08);
  letter-spacing: 0.16em;
}
.service-item:hover .service-view::after {
  width: 100%;
}
.service-item-image {
  width: 210px;
  flex-shrink: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.service-item-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--white) 0%, rgba(255,255,255,0) 55%);
  z-index: 1;
  pointer-events: none;
}
.service-item:hover .service-item-image {
  transform: scale(1.06);
}

/* ── Treatment Modal ─────────────────────────────────────────── */
.treatment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.treatment-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.treatment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,43,69,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.treatment-modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: calc(var(--radius) * 2);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 32px 80px rgba(26,43,69,0.28);
}
.treatment-modal.open .treatment-modal-box {
  transform: translateY(0) scale(1);
}
.treatment-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,43,69,0.55);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.treatment-modal-close:hover { background: var(--bark); }
.treatment-modal-image {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  transition: height 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s ease;
  overflow: hidden;
}
.treatment-modal-box.img-collapsed .treatment-modal-image {
  height: 0;
  opacity: 0;
}
.treatment-modal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,43,69,0.1) 0%, rgba(26,43,69,0.65) 100%);
}
.treatment-modal-image-meta {
  position: absolute;
  bottom: 1.6rem;
  left: 2.2rem;
  z-index: 2;
}
.treatment-modal-category {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(180,210,240,0.95);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.treatment-modal-image-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.treatment-modal-body {
  overflow-y: auto;
  padding: 1.8rem 2.2rem 2.4rem;
  flex: 1;
}
.treatment-modal-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.treatment-modal-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-right: 0.25rem;
}
.treatment-modal-pill {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream-mid);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  line-height: 1;
}
.treatment-modal-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 1.2rem 0 1.4rem;
}
.treatment-modal-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.treatment-modal-section { margin-bottom: 1.6rem; }
.treatment-modal-section-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}
.treatment-modal-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.treatment-modal-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}
.treatment-modal-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.treatment-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.treatment-modal-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(78,107,138,0.18);
  border-radius: 100px;
  padding: 0.32rem 0.85rem;
}
.treatment-modal-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.4rem;
}

/* ── Modal Meta Block (price + duration below Best For) ─────── */
.modal-meta-block {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.modal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.modal-meta-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-body);
}
.modal-meta-value {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.modal-meta-trial {
  color: var(--text-body);
  font-weight: 600;
}
.modal-meta-trial em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
}
.modal-meta-alacarte {
  font-size: 0.72rem;
  color: var(--text-light);
}
.modal-book-top {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.2s, transform 0.2s;
}
.modal-book-top:hover {
  background: var(--bark);
  transform: translateY(-1px);
}

/* ── Modal Book Now (top CTA) ────────────────────────────────── */
.modal-book-top {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.modal-book-top:hover {
  background: var(--bark);
  transform: translateY(-1px);
}

/* ── Modal Before / After ────────────────────────────────────── */
.modal-before-after {
  margin: 1.4rem 0;
  text-align: center;
}
.modal-ba-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}
.modal-ba-caption {
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.modal-ba-disclaimer {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
}

/* ── Modal Benefits Checkmarks ───────────────────────────────── */
.treatment-modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.modal-benefit-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ── Modal Benefit Chips ─────────────────────────────────────── */
.modal-benefit-chips {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.8rem;
  padding: 0;
  margin: 0;
}
.modal-benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
}
.modal-chip-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-chip-icon svg {
  width: 100%;
  height: 100%;
}
.modal-chip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Modal Best For Tags ─────────────────────────────────────── */
.modal-best-for {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.modal-best-for-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.2rem;
}
.modal-best-for-tag {
  background: rgba(78,107,138,.08);
  border: 1px solid rgba(78,107,138,.2);
  border-radius: 2rem;
  padding: 0.2rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

/* ── Video Feature Section ───────────────────────────────────── */
.video-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-feature-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-mid);
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px dashed rgba(185,150,89,.35);
  border-radius: var(--radius);
}
.feature-video-placeholder svg {
  width: 48px; height: 48px;
  color: var(--gold);
  opacity: 0.5;
}
.feature-video-placeholder span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .video-feature-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Modal Reviews ───────────────────────────────────────────── */
.modal-reviews-section {
  margin: 1.4rem 0;
}
.modal-reviews-header {
  margin-bottom: 0.8rem;
}
.modal-reviews-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.modal-reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.modal-review-card {
  background: var(--cream-mid);
  border-radius: calc(var(--radius) * .6);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-review-stars {
  font-size: 0.7rem;
  color: #f5a623;
  letter-spacing: 0.05em;
}
.modal-review-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.modal-review-name {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .modal-reviews-list { grid-template-columns: 1fr; }
}

/* ── Modal Steps (facial & body) ─────────────────────────────── */
.modal-step {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(185,150,89,.1);
}
.modal-step:last-child { border-bottom: none; }
.modal-step-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.05rem;
}
.modal-step-content { flex: 1; }
.modal-step-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
  margin: 0 0 0.3rem;
  letter-spacing: 0.02em;
}
.modal-step-ko {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 400;
  margin-left: 0.4rem;
  opacity: 0.85;
}
.modal-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Icon cards (services overview, trust badges) ───────────── */
.icon-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.icon-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 28px;
}
.icon-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.icon-card p  { font-size: 14px; margin-bottom: 1.5rem; }

/* ── Philosophy dark section ────────────────────────────────── */
.philosophy-section {
  background: var(--bark);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-size: 20rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.philosophy-section h2 { color: var(--cream); }
.philosophy-section .eyebrow { color: var(--gold); }
.philosophy-section .eyebrow::before { background: var(--gold); }
.philosophy-section p { color: rgba(237,242,247,0.72); }

/* Ingredient grid (on dark bg) */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.ingredient-cell {
  background: rgba(255,255,255,0.03);
  padding: 2rem 1.8rem;
  transition: background 0.25s;
}
.ingredient-cell:hover { background: rgba(255,255,255,0.06); }
.ingredient-cell-kr {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.ingredient-cell h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.ingredient-cell p {
  font-size: 0.82rem;
  color: rgba(237,242,247,0.65);
  line-height: 1.8;
}

/* ── Ingredient cards (heritage page, on dark section) ──────── */
.ingredient-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.ingredient-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}
.ingredient-emoji { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.ingredient-card h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.ingredient-card p {
  font-size: 0.8rem;
  color: rgba(237,242,247,0.65);
  line-height: 1.8;
}

/* ── Stats row ──────────────────────────────────────────────── */
.stats-section {
  background: var(--cream-mid);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Dark stats variant */
.stats-row-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell-dark {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-cell-dark:last-child { border-right: none; }
.stat-cell-dark .stat-number { color: var(--gold); }
.stat-cell-dark .stat-label  { color: rgba(237,242,247,0.55); }

/* ── Testimonial cards ──────────────────────────────────────── */
.testimonial-card {
  background: var(--cream-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--cream-deep);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.05em;
}
.testimonial-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  font-family: var(--font-body);
}

/* ── Value cards (philosophy) ───────────────────────────────── */
.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s;
}
.value-card:hover { border-color: var(--gold); }
.value-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--cream-deep);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 700;
}
.value-card h4 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.value-card p { font-size: 14px; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
  padding-top: 3px;
  line-height: 1.3;
}
.timeline-content {
  padding-left: 2rem;
  border-left: 1px solid var(--border);
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-content h4 {
  color: var(--text-body);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
}
.timeline-content p { font-size: 14px; }

/* ── Result cards ───────────────────────────────────────────── */
.result-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-images { display: grid; grid-template-columns: 1fr 1fr; }
.result-img {
  aspect-ratio: 1;
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--cream-mid), var(--cream-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}
.result-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
  background: var(--cream-mid);
  color: var(--text-muted);
}
.result-label.after {
  background: var(--gold-pale);
  color: var(--gold);
}
.result-info { padding: 1.4rem 1.6rem; }
.result-info h4 { margin-bottom: 0.4rem; }
.result-info p  { font-size: 13px; }

/* ── Contact form ───────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 3rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
  padding: 0.75rem 1rem;
  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: var(--gold);
  box-shadow: 0 0 0 3px rgba(78,107,138,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-submit { width: 100%; padding: 1rem; font-size: 0.72rem; }
.form-note   { font-size: 0.7rem; color: var(--text-light); text-align: center; margin-top: 1rem; font-family: var(--font-body); }

/* ── Info panel (visit page) ────────────────────────────────── */
.info-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.info-item:last-child { border-bottom: none; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}
.info-text span { font-size: 14px; color: var(--text-muted); }

/* WhatsApp CTA box */
.wa-box {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-top: 2rem;
}
.wa-box h4 {
  color: var(--text-body);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-box p { font-size: 13px; margin-bottom: 1.2rem; }
.wa-box .btn { width: 100%; justify-content: center; }

/* ── Map placeholder ────────────────────────────────────────── */
.map-placeholder {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.map-placeholder .map-icon { font-size: 2.5rem; opacity: 0.5; }
.map-sub {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-body);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq-question.open .chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: 14px;
  color: var(--text-muted);
  padding-bottom: 1.3rem;
  display: none;
  line-height: 1.9;
}
.faq-answer.open { display: block; }

/* ── Price Disclaimer ───────────────────────────────────────── */
.price-disclaimer {
  padding: 1.5rem 0;
  background: var(--cream);
}
.price-disclaimer p {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--bark);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .eyebrow { color: rgba(237,242,247,0.8); }
.cta-banner .eyebrow::before { background: rgba(237,242,247,0.45); }
.cta-banner h2   { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p    { color: rgba(237,242,247,0.72); font-size: 16px; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns        { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Quote section ──────────────────────────────────────────── */
.quote-section {
  background: var(--gold-pale);
  padding: 7rem 0;
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.quote-section cite {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── Grid utilities ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Background utilities ───────────────────────────────────── */
.bg-cream     { background: var(--cream); }
.bg-cream-mid { background: var(--cream-mid); }
.bg-white     { background: var(--white); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-bark      { background: var(--bark); }

/* ── WhatsApp float button ──────────────────────────────────── */
/* ── WhatsApp Buttons (sitewide) ─────────────────────────────── */
a[href*="wa.me"].btn {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}
a[href*="wa.me"].btn:hover {
  background: #1ebe5d !important;
  border-color: #1ebe5d !important;
}
a[href*="wa.me"].btn::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.38);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.48);
}
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Sticky FAB ─────────────────────────────────────────────── */
.sticky-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  display: none;
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(78,107,138,0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-book.visible { display: block; }
.sticky-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(78,107,138,0.5);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--bark);
  padding: 5rem 0 0;
  color: rgba(237,242,247,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand .footer-logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(237,242,247,0.55);
  margin-bottom: 1.8rem;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.footer-links li   { margin-bottom: 0.65rem; }
.footer-links a    { font-size: 13px; color: rgba(237,242,247,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 13px;
  color: rgba(237,242,247,0.55);
}
.footer-contact-item .fi { flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(237,242,247,0.35);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible    { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Sourcing section ───────────────────────────────────────── */
.sourcing-section {
  background: var(--gold-pale);
  padding: 7rem 0;
}
.sourcing-section .eyebrow { color: var(--gold); }

/* ── Approach steps ─────────────────────────────────────────── */
.approach-step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.approach-num {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}
.approach-step h4  { margin-bottom: 0.35rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.approach-step p   { font-size: 14px; }

/* ── Services Stacked Panels (homepage) ──────────────────────── */
.services-split-section {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 clamp(1.5rem, 5vw, 5rem);
  min-height: 520px;
  text-decoration: none;
}

.service-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.service-panel:hover .service-panel-bg {
  transform: scale(1.06);
}

.service-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,14,24,0.85) 0%,
    rgba(8,14,24,0.72) 30%,
    rgba(8,14,24,0.35) 55%,
    transparent 72%
  );
  transition: background 0.5s;
}
.service-panel:hover .service-panel-overlay {
  background: linear-gradient(
    to right,
    rgba(8,14,24,0.90) 0%,
    rgba(8,14,24,0.78) 30%,
    rgba(8,14,24,0.40) 55%,
    transparent 72%
  );
}

.service-panel-content {
  position: relative;
  z-index: 2;
  width: min(560px, 48%);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.service-panel-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.service-panel-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.service-panel-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem;
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-panel:hover .service-panel-divider {
  width: 64px;
}

.service-panel-desc {
  color: rgba(237,242,247,0.88);
  font-size: 14px;
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.service-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-panel-list li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(237,242,247,0.78);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.35s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.service-panel-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1);
}
.service-panel:hover .service-panel-list li {
  color: rgba(237,242,247,0.88);
}
.service-panel:hover .service-panel-list li::before {
  width: 26px;
}

.service-panel-btn {
  align-self: flex-start;
}
.service-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s, gap 0.25s;
}
.service-panel:hover .service-panel-cta {
  color: #fff;
  gap: 0.9rem;
}

.services-split-section .service-panel:first-child {
  border-bottom: 1px solid rgba(185,150,89,0.25);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .service-panel { padding: 3.5rem 3rem 4rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .stats-row-dark { grid-template-columns: repeat(2, 1fr); }
  .grid-4       { grid-template-columns: repeat(2, 1fr); }
  #hero         { grid-template-columns: 1fr; min-height: auto; }
  #hero .hero-visual { min-height: 55vw; }
  .hero-text    { padding: calc(var(--nav-h) + 3rem) 6% 4rem; }
  .hero-float-card { left: 1.5rem; bottom: 2rem; }
  .scroll-hint  { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .service-panel { min-height: 480px; padding: 0 1.5rem; }
  .service-panel-content { width: 100%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger    { display: flex; }
  .grid-3       { grid-template-columns: 1fr; }
  .grid-2       { grid-template-columns: 1fr; }
  .split        { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { padding-bottom: 3rem; padding-right: 2rem; }
  .about-year   { left: 0.5rem; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 1.2rem; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .stats-row-dark { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 2rem 1.5rem; }

  /* Hide float card — too cramped on mobile hero */
  .hero-float-card { display: none; }

  /* Tab bar: full-width with tappable buttons */
  .services-tabs-wrapper { width: 100%; }
  .services-tabs { display: flex; width: 100%; }
  .tab-btn { flex: 1; min-height: 44px; }

  /* WhatsApp: icon-only circle, repositioned to avoid overlap with FAB */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; bottom: 88px; right: 16px; }
  .sticky-book { bottom: 16px; right: 16px; }

  /* Prevent iOS auto-zoom on form inputs (font must be ≥16px) */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 0.9rem 1rem; }
}

@media (max-width: 768px) {
  .service-item-image { width: 130px; }
  .service-item-body  { padding: 1.4rem 1.6rem; gap: 1.2rem; }
}

@media (max-width: 560px) {
  .treatment-modal { padding: 0; align-items: flex-end; }
  .treatment-modal-box {
    max-height: 93vh;
    border-radius: calc(var(--radius) * 2) calc(var(--radius) * 2) 0 0;
  }
  .treatment-modal-image { height: 130px; }
  .treatment-modal-body { padding: 1.4rem 1.4rem 2rem; }
  .treatment-modal-image-meta { left: 1.4rem; bottom: 1rem; }
  .service-item-image { display: none; }

  /* Stack modal CTA buttons vertically, full-width */
  .treatment-modal-actions { flex-direction: column; gap: 0.65rem; }
  .treatment-modal-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 52px; }
  .container    { padding: 0 4.5%; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-row    { grid-template-columns: 1fr 1fr; }
  .stats-row-dark { grid-template-columns: 1fr 1fr; }
  .stat-cell    { padding: 2rem 1rem; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns     { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; }
  .result-images { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-year { text-align: left; padding-left: 0; }
  .service-item      { flex-direction: column; gap: 0; }
  .service-item-body { flex-direction: column; align-items: flex-start; padding: 1.4rem; gap: 0; }
  .service-meta      { display: flex; align-items: center; gap: 1.2rem; text-align: left; margin-top: 0.9rem; width: 100%; }
  .service-duration  { margin-top: 0; }
  .services-tabs     { flex-wrap: wrap; }
  .grid-4        { grid-template-columns: 1fr 1fr; }
  h1 { font-size: clamp(30px, 8vw, 40px); }
}

/* ── Touch device enhancements ──────────────────────────────── */
/* Targets touchscreens where hover doesn't exist                */
@media (hover: none) {

  /* Service items: always show the tap cue — invisible on desktop until hover */
  .service-view {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.65rem;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    padding-bottom: 1px;
  }

  /* Pressed states replace hover feedback for all interactive cards */
  .service-item:active {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
  }
  .service-item:active .service-item-image {
    transform: scale(1.04);
  }

  .icon-card:active {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
  .value-card:active       { border-color: var(--gold); }
  .testimonial-card:active { border-color: var(--gold-pale); box-shadow: var(--shadow); }
  .ingredient-card:active  { border-color: var(--gold); transform: translateY(-2px); background: rgba(255,255,255,0.07); }
  .result-card:active      { box-shadow: var(--shadow-lg); }

  /* Service panels on homepage */
  .service-panel:active .service-panel-bg { transform: scale(1.03); }
  .service-panel:active .service-panel-divider { width: 52px; }

  /* FAQ tap feedback */
  .faq-question:active { color: var(--gold); }
}


 /* ── Logo Hero | Index.html ─────────────────────────────────────────── */
    .logo-hero {
      background: var(--cream);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem 1.2rem;
    }
    .logo-hero img {
      width: min(560px, 80vw);
      height: auto;
      display: block;
    }
    .logo-hero-sub {
      margin-top: 0.5rem;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ── Signature Banner ──────────────────────────────────── */
    /*
      BANNER BACKGROUND: edit url() below to swap the photo.
      BANNER COPY: edit the HTML in the <!-- ② SIGNATURE BANNER --> block.
    */
    .signature-banner {
      display: block;
      position: relative;
      width: 100%;
      min-height: 520px;
      overflow: hidden;
      text-decoration: none;
      cursor: pointer;
      background-color: #1A2B45;
      background-image: url('https://hanbangbeauty.com/wp-content/uploads/2026/03/banner-signature.jpg');
      background-size: cover;
      background-position: center top;
      transition: box-shadow 0.35s;
    }
    /* Radial gradient from centre — darkest in the middle, image shows at edges */
    .signature-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 100% at center, rgba(8,14,24,0.88) 0%, rgba(8,14,24,0.55) 45%, transparent 75%),
        linear-gradient(to bottom, rgba(8,14,24,0.2) 0%, rgba(8,14,24,0.45) 100%);
      transition: background 0.35s;
      z-index: 1;
    }
    .signature-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://hanbangbeauty.com/wp-content/uploads/2026/03/banner-signature.jpg');
      background-size: cover;
      background-position: center top;
      transition: transform 0.6s ease;
      z-index: 0;
    }
    .signature-banner:hover::after {
      transform: scale(1.025);
    }
    .signature-banner:hover::before {
      background:
        radial-gradient(ellipse 70% 100% at center, rgba(8,14,24,0.92) 0%, rgba(8,14,24,0.62) 45%, transparent 75%),
        linear-gradient(to bottom, rgba(8,14,24,0.25) 0%, rgba(8,14,24,0.5) 100%);
    }
    .signature-banner-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 1.1rem;
      padding: 3rem clamp(2rem, 10vw, 14rem);
    }
    @media (max-width: 700px) {
      .signature-banner-inner { padding: 3rem 1.5rem; }
      .signature-banner::before {
        background: rgba(8, 14, 24, 0.78);
      }
    }
    .signature-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .signature-kicker::before,
    .signature-kicker::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: rgba(255,255,255,0.35);
      flex-shrink: 0;
    }
    .signature-banner h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.18;
      margin: 0;
    }
    .signature-banner h2 em {
      font-style: italic;
      color: rgba(255,255,255,0.65);
    }
    .signature-banner p {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.72;
      margin: 0;
    }
    /* CTA — looks like a real button for strong clickability */
    .signature-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      margin-top: 0.4rem;
      padding: 0.75rem 1.8rem;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 3px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      width: fit-content;
      align-self: center;
      transition: background 0.25s, border-color 0.25s, gap 0.25s, transform 0.2s;
      backdrop-filter: blur(4px);
    }
    .signature-cta svg {
      transition: transform 0.25s;
    }
    .signature-banner:hover .signature-cta {
      background: rgba(255,255,255,0.2);
      border-color: rgba(255,255,255,0.7);
      gap: 0.9rem;
    }
    .signature-banner:hover .signature-cta svg {
      transform: translateX(3px);
    }
    /* Bottom tag strip */
    .signature-corner-label {
      position: absolute;
      bottom: 1.6rem;
      left: clamp(1.5rem, 5vw, 5rem);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .signature-corner-pill {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
    }

    /* ── Services Split (reused from before) ──────────────── */

    /* ── Location Section ──────────────────────────────────── */
    .location-section {
      background: var(--bark);
    }
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .location-heading {
      color: rgba(255,255,255,0.45);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .location-title {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: #fff;
      font-weight: 400;
      margin-bottom: 2rem;
      line-height: 1.25;
    }
    .location-detail {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.4rem;
      align-items: flex-start;
    }
    .location-detail-icon {
      font-size: 16px;
      line-height: 1;
      margin-top: 0.1rem;
      flex-shrink: 0;
    }
    .location-detail-text strong {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.25rem;
    }
    .location-detail-text span {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }
    .location-map-placeholder {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      aspect-ratio: 4/3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      color: rgba(255,255,255,0.25);
      font-size: 14px;
    }
    .location-map-placeholder span:first-child {
      font-size: 28px;
    }
    .location-wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #25D366;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 600;
      margin-top: 2rem;
      transition: opacity 0.2s;
      text-decoration: none;
    }
    .location-wa-btn:hover { opacity: 0.88; }

    @media (max-width: 768px) {
      .location-grid { grid-template-columns: 1fr; gap: 3rem; }
      .signature-banner { min-height: 360px; }
      .signature-banner-inner { min-height: 360px; padding: 0 1.5rem; }
      .signature-corner-label { display: none; }
      .logo-hero { padding: 3.5rem 1.5rem 3rem; }
    }
    
    
      /* ── Body Hero — full-bleed image - Body.html ──────────────────── */
    .page-hero.body-hero {
      background:
        linear-gradient(to right, rgba(250,246,240,.92) 0%, rgba(250,246,240,.7) 40%, rgba(250,246,240,.1) 70%, transparent 100%),
        url('https://hanbangbeauty.com/wp-content/uploads/2026/03/body-hero-bg.jpg') right center / cover no-repeat;
      padding: calc(var(--nav-h, 72px) + 5rem) 0 5rem;
      text-align: left;
    }
    .page-hero.body-hero::before,
    .page-hero.body-hero::after { display: none; }
    .page-hero.body-hero .page-hero-inner {
      margin: 0;
      text-align: left;
      max-width: 560px;
    }
    .page-hero.body-hero .eyebrow { justify-content: flex-start; }
    .page-hero.body-hero h1 { color: var(--text-body); }
    .page-hero.body-hero p { color: var(--text-muted); margin: 0; }

    /* ── KryoSculpt Brand Section ───────────────────────── */
    .kryo-section {
      background: var(--cream);
      padding: 5rem 5%;
      position: relative;
      overflow: hidden;
    }
    .kryo-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(185,150,89,.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .kryo-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 4rem;
    }
    .kryo-video-side {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--cream-mid);
      aspect-ratio: 16 / 9;
      box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    }
    .kryo-partner-label {
      font-size: 10px; font-weight: 700; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: .7rem;
      margin-bottom: 0.9rem;
    }
    .kryo-partner-label::before {
      content: ''; display: block; width: 24px; height: 1px;
      background: var(--gold); opacity: .6;
    }
    .kryo-logo-img {
      height: 44px; width: auto; margin-bottom: 1.8rem; display: block;
    }
    .kryo-text-side h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.3rem, 2vw, 1.7rem);
      color: var(--text-body); font-weight: 400;
      line-height: 1.3; margin-bottom: 1rem;
    }
    .kryo-text-side h3 em { color: var(--gold); font-style: italic; }
    .kryo-text-side p {
      font-size: 15px; color: var(--text-muted); line-height: 1.85;
    }

    @media(max-width: 768px) {
      .kryo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    
    
    /* ── HERO ────────────────────────────────────────────────── Geunmak.html */
  .gk-hero {
    position: relative;
    background:
      radial-gradient(ellipse 90% 90% at center, rgba(8,14,24,0.60) 0%, rgba(8,14,24,0.88) 70%, rgba(8,14,24,0.96) 100%),
      url('https://hanbangbeauty.com/wp-content/uploads/2026/03/geunmak-hero-bg.jpg') center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
    overflow: hidden;
  }
  .gk-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(185,150,89,0.35);
    pointer-events: none;
  }
  .gk-particle:nth-child(1)  { width:6px;  height:6px;  top:15%; left:12%;  animation: drift 9s  ease-in-out infinite; }
  .gk-particle:nth-child(2)  { width:3px;  height:3px;  top:35%; left:8%;   animation: drift 12s ease-in-out infinite 2s; }
  .gk-particle:nth-child(3)  { width:8px;  height:8px;  top:70%; left:18%;  animation: drift 8s  ease-in-out infinite 1s; opacity:.5; }
  .gk-particle:nth-child(4)  { width:4px;  height:4px;  top:20%; right:15%; animation: drift 11s ease-in-out infinite 3s; }
  .gk-particle:nth-child(5)  { width:7px;  height:7px;  top:55%; right:10%; animation: drift 10s ease-in-out infinite .5s; opacity:.4; }
  .gk-particle:nth-child(6)  { width:3px;  height:3px;  top:80%; right:22%; animation: drift 13s ease-in-out infinite 2.5s; }
  .gk-particle:nth-child(7)  { width:5px;  height:5px;  top:45%; left:48%;  animation: drift 7s  ease-in-out infinite 4s; opacity:.3; }
  .gk-particle:nth-child(8)  { width:4px;  height:4px;  top:10%; left:60%;  animation: drift 14s ease-in-out infinite 1.5s; }
  @keyframes drift {
    0%,100% { transform: translateY(0) translateX(0); opacity:.35; }
    33%      { transform: translateY(-18px) translateX(8px); opacity:.6; }
    66%      { transform: translateY(10px) translateX(-6px); opacity:.25; }
  }
  .gk-hero::before {
    content:'';
    position:absolute;
    width:600px; height:600px;
    background: radial-gradient(ellipse, rgba(185,150,89,.15) 0%, transparent 70%);
    border-radius:50%;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    pointer-events:none;
  }
  .gk-hero-content { position:relative; z-index:2; max-width:700px; }
  .gk-tag {
    display:inline-block;
    font-size:10px; font-weight:700; letter-spacing:.25em; text-transform:uppercase;
    color:rgba(255,255,255,.35);
    margin-bottom:2rem;
    border:1px solid rgba(255,255,255,.1);
    padding:.35rem 1rem; border-radius:50px;
  }
  .gk-hero h1 {
    font-family:var(--font-serif);
    font-size:clamp(3rem,6vw,5.5rem);
    color:#fff; font-weight:400; line-height:1.08;
    margin-bottom:1.6rem;
    opacity:0; animation:fadeUp .9s ease forwards .3s;
  }
  .gk-hero h1 em { font-style:italic; color:rgba(255,255,255,.42); }
  .gk-hero h1 sup.tm { font-size: 0.22em; }
  .gk-korean {
    font-family: var(--font-serif);
    font-size: 0.48em;
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
    vertical-align: middle;
    margin-right: 0.4em;
    font-style: normal;
  }
  .gk-hero-sub {
    font-size:16px; color:rgba(255,255,255,.45);
    max-width:460px; margin:0 auto 2.5rem; line-height:1.75;
    opacity:0; animation:fadeUp .9s ease forwards .55s;
  }
  .gk-hero-scroll {
    display:flex; flex-direction:column; align-items:center; gap:.4rem;
    color:rgba(255,255,255,.25); font-size:10px; letter-spacing:.15em; text-transform:uppercase;
    position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
    z-index:2; opacity:0; animation:fadeUp 1s ease forwards 1.2s;
  }
  .gk-scroll-line {
    width:1px; height:40px;
    background:linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation:scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:.4;} 50%{opacity:.9;} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }


  /* ── WHAT IS IT — image + text + layer diagram ───────────── */
  .gk-what {
    background: var(--cream);
    padding: 0;
  }
  /* Image + text split */
  .gk-what-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
  }
  .gk-what-image {
    position: relative;
    overflow: hidden;
    min-height: 480px;
  }
  .gk-what-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s ease;
  }
  .gk-what-image:hover img { transform: scale(1.03); }
  .gk-what-image-caption {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(8,15,24,.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: .6rem 1rem;
    font-size: 11px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.65);
  }
  .gk-what-text {
    padding: 4rem 4rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
  }
  .gk-what-text .gk-lead {
    font-family:var(--font-serif);
    font-size:clamp(1.4rem,2vw,1.85rem);
    line-height:1.42; color:var(--text-body);
    margin-bottom:1rem; font-weight:400;
  }
  .gk-what-text .gk-body {
    font-size:15px; color:var(--text-muted); line-height:1.82;
  }
  .gk-callout {
    margin-top: 2rem;
    background: var(--bark);
    border-radius: var(--radius);
    padding: 1.5rem 1.8rem;
    font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.72;
  }
  .gk-callout strong {
    display:block; font-family:var(--font-serif); font-size:1.05rem;
    color:#fff; font-weight:400; margin-bottom:.5rem;
  }



  /* ── 5 STEPS ─────────────────────────────────────────────── */
  /* ── SCIENCE ─────────────────────────────────────────────── */
  .gk-science {
    background: #1A2B45;
    padding: 0;
  }

  /* Header */
  .gk-science-header {
    text-align: center;
    padding: var(--section-py) 5% 4rem;
    position: relative;
  }
  .gk-science-header .gk-sci-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    font-family: var(--font-body); margin-bottom: 1.4rem;
  }
  .gk-science-header .gk-sci-eyebrow::before,
  .gk-science-header .gk-sci-eyebrow::after {
    content: ''; display: block;
    width: 40px; height: 1px;
    background: var(--gold); opacity: .5;
  }
  .gk-science-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff; font-weight: 400; line-height: 1.2;
    margin-bottom: 1rem;
  }
  .gk-science-header h2 em { color: var(--gold-light); font-style: italic; }
  .gk-science-header .gk-sci-sub {
    font-size: 14px; color: rgba(255,255,255,.4);
    max-width: 480px; margin: 0 auto 1.8rem; line-height: 1.8;
  }
  .gk-science-header .gk-sci-diamond {
    display: flex; align-items: center; justify-content: center; gap: .9rem;
  }
  .gk-science-header .gk-sci-diamond::before,
  .gk-science-header .gk-sci-diamond::after {
    content: ''; flex: 0 0 60px; height: 1px;
    background: var(--gold); opacity: .3;
  }
  .gk-science-header .gk-sci-diamond span {
    color: var(--gold); font-size: 7px; opacity: .6;
  }

  /* Step cards */
  .step-cards {
    display: flex;
    height: 420px;
    border-top: 1px solid rgba(185,150,89,.15);
  }
  .step-card {
    flex: 1;
    position: relative;
    border-right: 1px solid rgba(185,150,89,.12);
    transition: flex .55s cubic-bezier(.4,0,.2,1);
    cursor: default;
    overflow: hidden;
  }
  .step-card:last-child { border-right: none; }
  .step-card:hover { flex: 3.5; }

  /* image fills the full card */
  .step-card-img {
    position: absolute; inset: 0;
  }
  .step-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
  }
  .step-card:hover .step-card-img img { transform: scale(1.06); }

  /* overlay text — slides up from bottom on hover */
  .step-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 3.5rem 1.6rem 1.8rem;
    background: linear-gradient(to top,
      rgba(8,14,24,.92) 0%,
      rgba(8,14,24,.65) 55%,
      transparent 100%);
    transform: translateY(calc(100% - 3.6rem));
    transition: transform .48s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; gap: .6rem;
  }
  .step-card:hover .step-card-body { transform: translateY(0); }

  .step-card-num {
    font-family: var(--font-serif);
    font-size: 1.1rem; color: var(--gold);
    line-height: 1; font-weight: 400; opacity: .8;
  }
  .step-card-gold {
    width: 24px; height: 1px;
    background: var(--gold); opacity: .7;
    transition: width .4s cubic-bezier(.4,0,.2,1);
  }
  .step-card:hover .step-card-gold { width: 40px; }
  .step-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.6vw, 1.5rem);
    color: #fff; font-weight: 400; line-height: 1.25;
  }
  .step-card-desc {
    font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.75;
    opacity: 0;
    transition: opacity .3s .15s ease;
  }
  .step-card:hover .step-card-desc { opacity: 1; }

  @media(max-width: 900px) {
    .step-cards { flex-direction: column; height: auto; }
    .step-card { flex: none; height: 280px; }
    .step-card:hover { flex: none; }
    .step-card-body { transform: translateY(0); }
    .step-card-desc { opacity: 1; }
  }


  /* ── WHAT TO EXPECT ─────────────────────────────────────── */
  .gk-expect {
    position: relative;
    background: var(--navy);
    padding: var(--section-py) 5%;
    overflow: hidden;
  }
  /* soft background orbs for glassmorphism to blur against */
  .gk-expect::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,150,89,.13) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
  }
  .gk-expect::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,64,96,.6) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    pointer-events: none;
  }
  .gk-expect-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .gk-expect-header .gk-sci-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    font-family: var(--font-body); margin-bottom: 1.2rem;
  }
  .gk-expect-header .gk-sci-eyebrow::before,
  .gk-expect-header .gk-sci-eyebrow::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--gold); opacity: .5;
  }
  .gk-expect-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff; font-weight: 400; line-height: 1.2;
  }
  .gk-expect-header h2 em { color: var(--gold-light); font-style: italic; }

  .gk-expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    position: relative; z-index: 1;
    border: 1px solid rgba(185,150,89,.22);
    border-radius: 2px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255,255,255,.04);
    box-shadow: 0 8px 48px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .expect-panel {
    padding: 3rem 3rem 3.5rem;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .expect-panel:first-child {
    border-right: 1px solid rgba(185,150,89,.18);
  }
  /* gold top bar */
  .expect-panel::before {
    content: '';
    display: block; width: 36px; height: 2px;
    background: var(--gold); opacity: .9;
    margin-bottom: 2rem;
  }
  .expect-num {
    font-family: var(--font-serif);
    font-size: 5rem; color: rgba(185,150,89,.08);
    line-height: 1; position: absolute;
    top: 1.5rem; right: 2rem;
    user-select: none; pointer-events: none;
  }
  .expect-label {
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
  }
  .expect-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: #fff; font-weight: 400; line-height: 1.25;
    margin-bottom: 2.4rem;
  }
    /*
  .expect-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
  .expect-item {
    display: flex; align-items: flex-start; gap: 1rem;
    opacity: 0; transform: translateY(6px);
    transition: opacity .4s, transform .4s;
  }
  .expect-item.visible { opacity: 1; transform: translateY(0); }
  .expect-icon {
    color: var(--gold); font-size: 8px; flex-shrink: 0;
    margin-top: .4rem;
  }*/
  .expect-item-text { font-size: 16px; color: rgba(255,255,255,.92); line-height: 1.7; }

  @media(max-width:768px) {
    .gk-expect-grid { grid-template-columns: 1fr; }
    .expect-panel:first-child { border-right: none; border-bottom: 1px solid rgba(185,150,89,.15); }
  }


  /* ── SKINCEUTICALS ───────────────────────────────────────── */
  .sc-section {
    padding: var(--section-py) 5%;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .sc-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 15% 50%, rgba(185,150,89,.09) 0%, transparent 65%),
      radial-gradient(ellipse 50% 60% at 85% 30%, rgba(185,150,89,.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .sc-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
  }
  .sc-header .sc-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    font-family: var(--font-body); margin-bottom: 1.2rem;
  }
  .sc-header .sc-eyebrow::before,
  .sc-header .sc-eyebrow::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--gold); opacity: .5;
  }
  .sc-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--text-body); font-weight: 400; line-height: 1.25;
    margin-bottom: 1.2rem;
  }
  .sc-header h2 em { color: var(--gold); font-style: italic; }
  .sc-header p {
    font-size: 15px; color: var(--text-muted); line-height: 1.85;
  }
  .sc-divider {
    display: flex; align-items: center; justify-content: center;
    gap: .9rem; margin: 2rem auto 0;
  }
  .sc-divider::before, .sc-divider::after {
    content: ''; flex: 0 0 50px; height: 1px;
    background: var(--gold); opacity: .35;
  }
  .sc-divider span { color: var(--gold); font-size: 7px; opacity: .6; }

  /* Glass cards */
  .sc-cards {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem;
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .sc-card {
    padding: 2.2rem 1.8rem 2.4rem;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(185,150,89,.22);
    border-top: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(185,150,89,.08), inset 0 1px 0 rgba(255,255,255,.7);
    display: flex; flex-direction: column; gap: .8rem;
    position: relative;
  }
  .sc-card-num {
    font-family: var(--font-serif); font-size: 3.5rem;
    color: rgba(185,150,89,.12); line-height: 1;
    position: absolute; top: 1rem; right: 1.4rem;
    user-select: none;
  }
  .sc-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem; font-weight: 400;
    color: var(--text-body); line-height: 1.3;
    margin-top: .4rem;
    padding-right: 2.5rem;
  }
  .sc-card-line {
    width: 28px; height: 1px;
    background: var(--gold); opacity: .7;
  }
  .sc-card-body {
    font-size: 14px; color: var(--text-muted); line-height: 1.75;
  }

  @media(max-width:900px){ .sc-cards { grid-template-columns: repeat(2,1fr); } }
  @media(max-width:768px){
    .sc-cards { grid-template-columns: 1fr; }
    .gk-what-split { grid-template-columns:1fr; }
    .gk-what-image { min-height:320px; }
    .gk-what-text { padding:2.5rem 1.5rem; }
  }


  /* ── PARTNERSHIP ─────────────────────────────────────────── */
  .gk-partnership {
    background:#1A2B45; padding:var(--section-py) 0;
    text-align:center; position:relative; overflow:hidden;
  }
  .gk-partnership-deco {
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 50%, rgba(185,150,89,.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 80% 50%, rgba(185,150,89,.07) 0%, transparent 60%);
    pointer-events:none;
  }
  .gk-partnership-inner { max-width:760px; margin:0 auto; position:relative; z-index:1; }
  .gk-partnership h2 {
    font-family:var(--font-serif);
    font-size:clamp(1.8rem,3vw,2.8rem);
    color:#fff; font-weight:400; margin-bottom:2rem;
  }
  .gk-quote {
    border:1px solid rgba(185,150,89,.3);
    background:rgba(185,150,89,.07);
    border-radius:var(--radius);
    padding:2rem 2.5rem; margin:0 0 2rem;
    font-family:var(--font-serif);
    font-size:clamp(1.1rem,1.8vw,1.35rem);
    font-style:italic; color:rgba(255,255,255,.82); line-height:1.62;
  }
  .gk-partnership p { font-size:15px; color:rgba(255,255,255,.45); line-height:1.85; }


  /* ── CTA ─────────────────────────────────────────────────── */
  .gk-cta { padding:var(--section-py) 0; text-align:center; background:var(--cream); }
  .gk-cta h2 { font-family:var(--font-serif); font-size:clamp(1.6rem,2.5vw,2.2rem); margin-bottom:.8rem; }
  .gk-cta p { color:var(--text-muted); font-size:15px; max-width:440px; margin:0 auto 2rem; }
  .gk-cta-row { display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; }
  
  
  
    /* ── CTA ───────────────────────────────────────────────────price-list.html */
    .page-hero::before {
      background:
        linear-gradient(140deg, rgba(78,107,138,0.08) 0%, transparent 60%),
        url('https://hanbangbeauty.com/wp-content/uploads/2026/03/pricelist-hero.jpg') right center/cover no-repeat;
      opacity: 0.75;
    }
    .price-section-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }
    .price-section-label img {
      height: 28px;
      width: auto;
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 3.5rem;
    }
    .price-table thead th {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 0 0 0.9rem;
      border-bottom: 1px solid var(--border);
      text-align: left;
    }
    .price-table thead th.pt-price-col {
      text-align: right;
      white-space: nowrap;
    }
    .price-table thead th.pt-trial-col {
      color: var(--gold);
    }
    .price-table tbody td.pt-price-col {
      text-align: right;
      white-space: nowrap;
    }
    .price-table tbody tr {
      border-bottom: 1px solid var(--border-light);
      transition: background 0.15s;
    }
    .price-table tbody tr:hover {
      background: var(--cream-mid);
    }
    .price-table tbody td {
      padding: 1.1rem 0;
      vertical-align: top;
    }
    .price-table .pt-name {
      font-weight: 600;
      font-size: 15px;
      color: var(--text-body);
      margin-bottom: 0.25rem;
    }
    .price-table .pt-desc {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 480px;
      line-height: 1.55;
    }
    .price-table .pt-duration {
      font-size: 13px;
      color: var(--text-muted);
      white-space: nowrap;
      padding: 1.1rem 1.5rem;
    }
    .price-table .pt-price {
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
      white-space: nowrap;
    }
    .price-note {
      background: var(--cream-mid);
      border-left: 3px solid var(--gold);
      padding: 1rem 1.4rem;
      border-radius: 0 var(--radius) var(--radius) 0;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 3rem;
    }
    .price-category-heading {
      margin-bottom: 2rem;
    }
    .price-category-heading h2 {
      margin-bottom: 0.3rem;
    }
    @media (max-width: 640px) {
      .price-table .pt-duration { display: none; }
      .price-table .pt-desc { display: none; }
    }
    
    
     /* ── CTA ───────────────────────────────────────────────────skin.html */   
    .page-hero.skin-hero {
      background:
        linear-gradient(to right, rgba(250,246,240,.92) 0%, rgba(250,246,240,.7) 40%, rgba(250,246,240,.1) 70%, transparent 100%),
        url('https://hanbangbeauty.com/wp-content/uploads/2026/03/skin-hero-bg.jpg') right center / cover no-repeat;
      padding: calc(var(--nav-h, 72px) + 5rem) 0 5rem;
      text-align: left;
    }
    .page-hero.skin-hero::before,
    .page-hero.skin-hero::after { display: none; }
    .page-hero.skin-hero .page-hero-inner {
      margin: 0;
      text-align: left;
      max-width: 560px;
    }
    .page-hero.skin-hero .eyebrow { justify-content: flex-start; }
    .page-hero.skin-hero h1 { color: var(--text-body); }
    .page-hero.skin-hero p { color: var(--text-muted); margin: 0; }
    
    
    
     /* ── WHAT TO EXPECT ─────────────────────────────────────── */
  .gk-expect {
    position: relative;
    background: var(--navy);
    padding: var(--section-py) 5%;
    overflow: hidden;
  }
  /* soft background orbs for glassmorphism to blur against */
  .gk-expect::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,150,89,.13) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
  }
  .gk-expect::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,64,96,.6) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    pointer-events: none;
  }
  .gk-expect-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .gk-expect-header .gk-sci-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    font-family: var(--font-body); margin-bottom: 1.2rem;
  }
  .gk-expect-header .gk-sci-eyebrow::before,
  .gk-expect-header .gk-sci-eyebrow::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--gold); opacity: .5;
  }
  .gk-expect-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff; font-weight: 400; line-height: 1.2;
  }
  .gk-expect-header h2 em { color: var(--gold-light); font-style: italic; }

  .gk-expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    position: relative; z-index: 1;
    border: 1px solid rgba(185,150,89,.22);
    border-radius: 2px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255,255,255,.04);
    box-shadow: 0 8px 48px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .expect-panel {
    padding: 3rem 3rem 3.5rem;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .expect-panel:first-child {
    border-right: 1px solid rgba(185,150,89,.18);
  }
  /* gold top bar */
  .expect-panel::before {
    content: '';
    display: block; width: 36px; height: 2px;
    background: var(--gold); opacity: .9;
    margin-bottom: 2rem;
  }
  .expect-num {
    font-family: var(--font-serif);
    font-size: 5rem; color: rgba(185,150,89,.08);
    line-height: 1; position: absolute;
    top: 1.5rem; right: 2rem;
    user-select: none; pointer-events: none;
  }
  .expect-label {
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
  }
  .expect-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    color: #fff; font-weight: 400; line-height: 1.25;
    margin-bottom: 2.4rem;
  }
  .expect-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
  .expect-item {
    display: flex; align-items: flex-start; gap: 1rem;
    opacity: 0; transform: translateY(6px);
    transition: opacity .4s, transform .4s;
  }
  .expect-item.visible { opacity: 1; transform: translateY(0); }
  .expect-icon {
    color: var(--gold); font-size: 8px; flex-shrink: 0;
    margin-top: .4rem;
  }
  .expect-item-text { font-size: 16px; color: rgba(255,255,255,.92); line-height: 1.7; }

  @media(max-width:768px) {
    .gk-expect-grid { grid-template-columns: 1fr; }
    .expect-panel:first-child { border-right: none; border-bottom: 1px solid rgba(185,150,89,.15); }
  }


  /* ── SKINCEUTICALS ───────────────────────────────────────── */
  .sc-section {
    padding: var(--section-py) 5%;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .sc-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 15% 50%, rgba(185,150,89,.09) 0%, transparent 65%),
      radial-gradient(ellipse 50% 60% at 85% 30%, rgba(185,150,89,.07) 0%, transparent 65%);
    pointer-events: none;
  }
  .sc-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
  }
  .sc-header .sc-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    font-family: var(--font-body); margin-bottom: 1.2rem;
  }
  .sc-header .sc-eyebrow::before,
  .sc-header .sc-eyebrow::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--gold); opacity: .5;
  }
  .sc-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--text-body); font-weight: 400; line-height: 1.25;
    margin-bottom: 1.2rem;
  }
  .sc-header h2 em { color: var(--gold); font-style: italic; }
  .sc-header p {
    font-size: 15px; color: var(--text-muted); line-height: 1.85;
  }
  .sc-divider {
    display: flex; align-items: center; justify-content: center;
    gap: .9rem; margin: 2rem auto 0;
  }
  .sc-divider::before, .sc-divider::after {
    content: ''; flex: 0 0 50px; height: 1px;
    background: var(--gold); opacity: .35;
  }
  .sc-divider span { color: var(--gold); font-size: 7px; opacity: .6; }

  /* Glass cards */
  .sc-cards {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem;
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .sc-card {
    padding: 2.2rem 1.8rem 2.4rem;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(185,150,89,.22);
    border-top: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(185,150,89,.08), inset 0 1px 0 rgba(255,255,255,.7);
    display: flex; flex-direction: column; gap: .8rem;
    position: relative;
  }
  .sc-card-num {
    font-family: var(--font-serif); font-size: 3.5rem;
    color: rgba(185,150,89,.12); line-height: 1;
    position: absolute; top: 1rem; right: 1.4rem;
    user-select: none;
  }
  .sc-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem; font-weight: 400;
    color: var(--text-body); line-height: 1.3;
    margin-top: .4rem;
    padding-right: 2.5rem;
  }
  .sc-card-line {
    width: 28px; height: 1px;
    background: var(--gold); opacity: .7;
  }
  .sc-card-body {
    font-size: 14px; color: var(--text-muted); line-height: 1.75;
  }

  @media(max-width:900px){ .sc-cards { grid-template-columns: repeat(2,1fr); } }
  @media(max-width:768px){
    .sc-cards { grid-template-columns: 1fr; }
    .gk-what-split { grid-template-columns:1fr; }
    .gk-what-image { min-height:320px; }
    .gk-what-text { padding:2.5rem 1.5rem; }
  }


  /* ── PARTNERSHIP ─────────────────────────────────────────── */
  .gk-partnership {
    background:#1A2B45; padding:var(--section-py) 0;
    text-align:center; position:relative; overflow:hidden;
  }
  .gk-partnership-deco {
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 50%, rgba(185,150,89,.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 80% 50%, rgba(185,150,89,.07) 0%, transparent 60%);
    pointer-events:none;
  }
  .gk-partnership-inner { max-width:760px; margin:0 auto; position:relative; z-index:1; }
  .gk-partnership h2 {
    font-family:var(--font-serif);
    font-size:clamp(1.8rem,3vw,2.8rem);
    color:#fff; font-weight:400; margin-bottom:2rem;
  }
  .gk-quote {
    border:1px solid rgba(185,150,89,.3);
    background:rgba(185,150,89,.07);
    border-radius:var(--radius);
    padding:2rem 2.5rem; margin:0 0 2rem;
    font-family:var(--font-serif);
    font-size:clamp(1.1rem,1.8vw,1.35rem);
    font-style:italic; color:rgba(255,255,255,.82); line-height:1.62;
  }
  .gk-partnership p { font-size:15px; color:rgba(255,255,255,.45); line-height:1.85; }


  /* ── CTA ─────────────────────────────────────────────────── */
  .gk-cta { padding:var(--section-py) 0; text-align:center; background:var(--cream); }
  .gk-cta h2 { font-family:var(--font-serif); font-size:clamp(1.6rem,2.5vw,2.2rem); margin-bottom:.8rem; }
  .gk-cta p { color:var(--text-muted); font-size:15px; max-width:440px; margin:0 auto 2rem; }
  .gk-cta-row { display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; }
