/* =========================================================
   K1 KOSMETIK — KOREAN BEAUTY · STRAUBING
   Design System: Warm Cream & Espresso (Rhode-inspired)
   ========================================================= */

/* Google Fonts loaded via <link> in HTML for performance */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── CSS Custom Properties ── */
:root {
  --white: #FFFFFF;
  --cream: #FFFFFF;
  --cream-mid: #F2F4F5;
  --cream-dark: #E2E4E5;
  --sand: #B5B5B5;
  --sand-dark: #6D6D6D;
  --espresso: #000000;
  --text: #000000;
  --text-muted: #6D6D6D;
  --text-light: #A8A8A8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --transition: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);

  --nav-height: 108px;
  --max-w: 1320px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── Animations ── */
@keyframes warmShimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--cream-dark);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 1px 0 var(--cream-dark);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.nav-logo-k1 {
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  transition: opacity var(--transition);
}

.nav-logo-k1:hover { opacity: 0.7; }

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--sand);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--espresso);
  color: var(--cream) !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #332820; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--espresso);
  transition: var(--transition);
}

/* ── Mobile Nav ── */
.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--sand-dark); }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { display: none; }
.hero-image { display: none; }
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-height) clamp(24px, 6vw, 80px) 60px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
}

.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand-dark);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--espresso);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sand-dark);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero-rating {
  position: absolute;
  bottom: 48px;
  right: clamp(24px, 6vw, 120px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.2s forwards;
}

.hero-rating-badge {
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cream-dark);
  padding: 16px 24px;
  text-align: center;
}

.hero-rating-score {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin: 4px 0;
}

.hero-rating-stars span {
  color: var(--espresso);
  font-size: 10px;
}

.hero-rating-count {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.btn-outline {
  border: 1px solid var(--espresso);
  color: var(--espresso);
  background: transparent;
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-silver {
  border: 1px solid var(--cream-dark);
  color: var(--text);
  background: transparent;
}
.btn-silver:hover {
  background: var(--cream-mid);
  transform: translateY(-1px);
}

/* ── Section Structure ── */
.section {
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-full {
  padding: var(--section-pad) 0;
}

.section-header {
  max-width: 640px;
}

.section-header.center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-eyebrow.center { justify-content: center; }

.section-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--sand);
  transform-origin: left;
  animation: lineExpand 0.8s var(--ease-out) forwards;
}

.section-eyebrow span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--sand-dark);
}

.section-desc {
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 520px;
}

.section-desc.center { margin: 0 auto; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--espresso);
  padding: 28px clamp(24px, 6vw, 120px);
  overflow: hidden;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(247, 243, 238, 0.15);
}

/* ── About Preview ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-preview-media {
  position: relative;
}

.about-preview-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-preview-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(28, 21, 18, 0.08);
}

.about-preview-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
}

.about-preview-badge-text {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-preview-quote {
  position: relative;
  padding-left: 24px;
  margin: 32px 0;
}

.about-preview-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sand), transparent);
}

.about-preview-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  background: var(--cream-mid);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  transition: background var(--transition), transform var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-in-out);
  z-index: 0;
}

.service-card:hover::before { transform: scaleY(1); }
.service-card > * { position: relative; z-index: 1; }

/* Stretched link for crawlable service card navigation */
.service-card > .service-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.service-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  transition: filter var(--transition);
}

.service-card:hover .service-card-icon { filter: brightness(0) invert(1); }

.service-card-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--sand);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.service-card:hover .service-card-num { color: rgba(247, 243, 238, 0.4); }

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.service-card:hover .service-card-title { color: var(--cream); }

.service-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.service-card:hover .service-card-desc { color: rgba(247, 243, 238, 0.6); }

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--transition);
}

.service-card:hover .service-card-price { color: var(--cream); }

.service-card-duration {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.service-card:hover .service-card-duration { color: rgba(247, 243, 238, 0.5); }

.service-card-arrow {
  margin-left: auto;
  width: 32px; height: 32px;
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.service-card:hover .service-card-arrow {
  border-color: rgba(247, 243, 238, 0.3);
  transform: translate(2px, -2px);
}

.service-card-arrow svg { transition: stroke var(--transition); }
.service-card:hover .service-card-arrow svg { stroke: var(--cream); }

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.service-card.featured::before { display: none; }

.service-card.featured .service-card-content {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  background: var(--cream-dark);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card.featured .service-card-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--espresso);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-in-out);
  z-index: 0;
}

.service-card.featured:hover .service-card-content::before { transform: scaleY(1); }
.service-card.featured .service-card-content > * { position: relative; z-index: 1; }

.service-card.featured:hover .service-card-title,
.service-card.featured:hover .service-card-num,
.service-card.featured:hover .service-card-price { color: var(--cream); }

.service-card.featured:hover .service-card-desc,
.service-card.featured:hover .service-card-duration { color: rgba(247, 243, 238, 0.6); }
.service-card.featured:hover .service-card-arrow { border-color: rgba(247, 243, 238, 0.3); }
.service-card.featured:hover .service-card-arrow svg { stroke: var(--cream); }

.service-card-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

/* ── Korean Beauty Section ── */
.korean-section {
  background: var(--espresso);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.korean-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 300;
  color: rgba(247, 243, 238, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.korean-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.korean-content .section-eyebrow span { color: var(--sand); }
.korean-content .section-eyebrow-line { background: var(--sand); }
.korean-content .section-title { color: var(--cream); }
.korean-content .section-title em { color: var(--sand); }
.korean-content .section-desc { color: rgba(247, 243, 238, 0.55); max-width: 100%; }

.korean-steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.korean-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
}

.korean-step:last-child { border-bottom: none; padding-bottom: 0; }

.korean-step-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.2em;
  min-width: 28px;
  margin-top: 2px;
}

.korean-step-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 4px;
}

.korean-step-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.45);
  line-height: 1.6;
}

.korean-media {
  position: relative;
}

.korean-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.korean-media-badge {
  position: absolute;
  top: 32px;
  left: -32px;
  background: rgba(247, 243, 238, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 243, 238, 0.1);
  padding: 24px 28px;
}

.korean-media-badge-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}

.korean-media-badge-text {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
}

/* ── Founder Section ── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.founder-media {
  position: relative;
  overflow: hidden;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.founder-media:hover .founder-img { transform: scale(1.03); }

.founder-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(247, 243, 238, 0.08));
}

.founder-content {
  background: var(--cream-mid);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 6px;
}

.founder-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 36px;
}

.founder-bio {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 44px;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  padding-left: 0;
}

.founder-credential {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-credential-dot {
  width: 4px; height: 4px;
  background: var(--sand);
  border-radius: 50%;
  flex-shrink: 0;
}

.founder-credential span {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.founder-signature {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--sand-dark);
  margin-bottom: 8px;
}

/* ── Gallery Strip ── */
.gallery-section {
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--cream);
}

.gallery-header {
  padding: 0 clamp(24px, 6vw, 120px);
  margin-bottom: 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 clamp(24px, 6vw, 120px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery-item img {
  height: clamp(280px, 35vw, 480px);
  width: auto;
  object-fit: cover;
  transition: filter var(--transition);
  filter: saturate(0.9);
}

.gallery-item:hover img { filter: saturate(1.05); }

/* ── Reviews ── */
.reviews-section {
  background: var(--cream-mid);
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
}

.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.review-card {
  background: var(--cream);
  padding: 40px 36px;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.review-stars span { color: var(--espresso); font-size: 11px; }

.review-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-initial {
  width: 36px; height: 36px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--sand-dark);
  border-radius: 50%;
}

.review-author-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.05em;
}

.review-author-date {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── CTA Full Width ── */
.cta-section {
  position: relative;
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
  text-align: center;
  overflow: hidden;
  background: var(--cream);
}

.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.06;
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-shimmer-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: 20px;
}

.cta-shimmer-title span {
  font-style: italic;
  color: var(--sand-dark);
}

.cta-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.75;
}

.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-info-item {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-info-divider {
  width: 1px; height: 16px;
  background: var(--cream-dark);
}

/* ── Opening Hours ── */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.hours-day {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.hours-time {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

/* ── Map ── */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--cream-mid);
  overflow: hidden;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: sepia(30%) contrast(0.9);
  transition: filter var(--transition);
}

.map-container:hover iframe { filter: sepia(0%) contrast(1); }

/* ── Footer ── */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 120px) 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-k1 {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}

.footer-logo-sub {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 6px;
}

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.5);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left {
  font-size: 11px;
  color: rgba(247, 243, 238, 0.3);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: rgba(247, 243, 238, 0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(247, 243, 238, 0.7); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 6vw, 120px) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 0;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.page-hero .breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--text); }
.page-hero .breadcrumb span { color: var(--cream-dark); }

/* ── Service Page Layout ── */
.service-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  padding: var(--section-pad) clamp(24px, 6vw, 120px);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.service-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.service-book-card {
  background: var(--cream-mid);
  padding: 40px;
  margin-bottom: 24px;
}

.service-book-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 4px;
}

.service-book-price-note {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-book-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-book-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-book-detail svg { flex-shrink: 0; }

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--espresso);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.service-content h2:first-child { margin-top: 0; }

.service-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.service-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-content ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--sand);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.service-faq { margin-top: 60px; }

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sand-dark); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 14px;
  color: var(--sand-dark);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ── About Page ── */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.about-hero-media {
  position: relative;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero-content {
  padding: calc(var(--nav-height) + 80px) clamp(40px, 6vw, 100px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

/* ── Services Overview (all services) ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-list-item {
  background: var(--cream-mid);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.service-list-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.service-list-item:hover::after { transform: scaleX(1); }
.service-list-item:hover { background: var(--cream-dark); }

.service-list-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  flex-shrink: 0;
}

.service-list-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}

.service-list-info p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
  padding: 4px 10px;
  border: 1px solid var(--cream-dark);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --section-pad: clamp(60px, 8vw, 100px); }
  .about-preview { grid-template-columns: 1fr; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-media { min-height: 60vw; }
  .korean-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .service-page { grid-template-columns: 1fr; }
  .service-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero-split { grid-template-columns: 1fr; }
  .about-hero-media { min-height: 50vw; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-template-columns: 1fr; }
  .service-card.featured .service-card-image { min-height: 240px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-rating { bottom: 20px; right: 16px; }
  .stat-divider { display: none; }
  .stats-inner { gap: 20px; }
  .about-preview-badge { right: 0; bottom: -16px; }
}

/* ── Utility ── */
.text-silver {
  color: var(--sand-dark);
}

.divider {
  width: 100%; height: 1px;
  background: var(--cream-dark);
}

.divider-silver {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
  margin: 24px 0;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Sticky Mobile CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  background: var(--espresso);
  padding: 0 24px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -4px 24px rgba(28, 21, 18, 0.2);
}
.sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-mobile-cta a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--sand);
  padding: 16px 24px;
  transition: background var(--transition);
}
.sticky-mobile-cta a:hover { background: var(--sand-dark); color: var(--cream); }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 64px; }
}

/* ── Animations ── */
@keyframes pulse-sand {
  0% { box-shadow: 0 0 0 0 rgba(196, 168, 130, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(196, 168, 130, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 168, 130, 0); }
}

/* ── Focus / Accessibility ── */
:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

/* ── Category Filter Tabs ── */
.category-filter {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-filter::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 16px 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active { color: var(--espresso); border-bottom-color: var(--sand); }

/* ── Service Image Cards ── */
.services-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-img-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.service-img-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  display: block;
}
.service-img-card:hover .service-img-card-image { transform: scale(1.04); }
.service-img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,21,18,0.8) 0%, rgba(28,21,18,0.2) 55%, transparent 100%);
  transition: opacity var(--transition);
}
.service-img-card:hover .service-img-card-overlay { opacity: 0.88; }
.service-img-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.service-img-card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.service-img-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.service-img-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-img-card-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  color: var(--cream);
}
.service-img-card-duration {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.55);
}
.service-img-card-arrow {
  margin-left: auto;
  width: 28px; height: 28px;
  border: 1px solid rgba(247,243,238,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all var(--transition);
  transform: translate(6px, 6px);
  opacity: 0;
}
.service-img-card:hover .service-img-card-arrow {
  transform: translate(0,0);
  opacity: 1;
}

/* ── Category Section Divider ── */
.category-section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0 28px;
}
.category-section-label-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.category-section-label span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand-dark);
  white-space: nowrap;
}

/* ── Why Strip ── */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.why-strip-item {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
}
.why-strip-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 8px;
  line-height: 1;
}
.why-strip-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand-dark);
}

/* ── Responsive overrides ── */
@media (max-width: 900px) {
  .services-image-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-image-grid { grid-template-columns: 1fr !important; }
  .service-img-card-image { aspect-ratio: 4/3 !important; }
  .filter-tab { padding: 14px 18px; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   BRAND SYSTEM UPDATE — Monochrome Editorial Direction
   Based on Gentle Monster design language
   ═══════════════════════════════════════════════════════ */

/* ── Typography: Editorial Tightening ── */
.section-title {
  letter-spacing: -0.03em;
}
.hero-eyebrow span,
.section-eyebrow span {
  letter-spacing: 0.28em;
  font-size: 9px;
}
/* ── Fix: remaining hardcoded warm colors on dark surfaces ── */
.korean-section {
  background: #111;
}
.stats-strip {
  background: #000;
}
.founder-content {
  background: var(--cream-mid);
}
.service-card {
  background: var(--cream-mid);
}
.service-card::before {
  background: #000;
}
.about-preview-badge {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}

/* rgba warm values on dark sections → cool equivalents */
.korean-bg-text {
  color: rgba(255,255,255,0.03);
}
.korean-step {
  border-bottom-color: rgba(255,255,255,0.08);
}
.footer-top {
  border-bottom-color: rgba(255,255,255,0.08);
}
.stat-divider {
  background: rgba(255,255,255,0.15);
}
.korean-media-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

/* ── HERO: Split Layout ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-height));
  margin-top: var(--nav-height);
  background: var(--cream);
  overflow: hidden;
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(32px, 6vw, 96px) 60px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%) contrast(1.02);
}

/* Dark overlay on hero image for editorial feel */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-rating {
  position: static;
  animation: none;
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.hero-rating-badge {
  background: transparent;
  backdrop-filter: none;
  border: 1px solid var(--cream-dark);
  padding: 14px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-rating-score {
  font-size: 24px;
}

.hero-rating-count {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: var(--nav-height);
  }
  .hero-right {
    height: 75vw;
    min-height: 340px;
  }
  .hero-left {
    padding-top: 40px;
    padding-bottom: 48px;
  }
  .hero-rating {
    margin-top: 32px;
  }
}

/* ── Content: larger body text ── */
.service-card-desc {
  font-size: 15px;
}
.section-desc {
  font-size: clamp(15px, 1.3vw, 17px);
}
.founder-bio {
  font-size: clamp(15px, 1.3vw, 17px);
}
.service-content p {
  font-size: 16px;
}
.service-content ul li {
  font-size: 15px;
}
.faq-question {
  font-size: 16px;
}
.faq-answer p {
  font-size: 15px;
}
.footer-desc {
  font-size: 14px;
}
.footer-links a {
  font-size: 14px;
}
.cta-desc {
  font-size: 16px;
}
.korean-step-title {
  font-size: 14px;
}
.korean-step-desc {
  font-size: 13px;
}
.service-book-detail {
  font-size: 14px;
}
.hours-day, .hours-time {
  font-size: 13px;
}
.service-list-info p {
  font-size: 14px;
}

/* ── Buttons: minimal editorial style ── */
.btn {
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 18px 44px;
  border-radius: 0;
}
.btn-primary {
  background: #000;
  color: #fff;
}
.btn-outline {
  border-color: #000;
  color: #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}
.btn-silver {
  border-color: var(--cream-dark);
}
.nav-cta {
  background: #000 !important;
  color: #fff !important;
  letter-spacing: 0.16em !important;
}
.nav-cta:hover {
  background: #222 !important;
}

/* ── Stats strip overrides ── */
.stat-label {
  color: rgba(255,255,255,0.45);
}

/* ── Section header: minimal lines ── */
.section-eyebrow-line {
  background: var(--sand);
}

/* ── Service menu list (Behandlungen page) ── */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition);
}
.svc-item:last-child {
  border-bottom: none;
}
.svc-name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-top: 4px;
}
.svc-meta {
  text-align: right;
  flex-shrink: 0;
}
.svc-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  display: block;
  white-space: nowrap;
}
.svc-duration {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
  white-space: nowrap;
}
.svc-book {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.svc-book:hover {
  color: var(--sand-dark);
  border-color: var(--sand-dark);
}
.svc-addon {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-dark);
  background: var(--cream-mid);
  padding: 3px 8px;
  display: inline-block;
  margin-top: 6px;
}
.svc-category-head {
  padding: 48px 0 20px;
  border-bottom: 2px solid var(--espresso);
  margin-bottom: 0;
}
.svc-category-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.svc-category-head p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 520px;
  line-height: 1.7;
}
.svc-category-block {
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .svc-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .svc-meta {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

/* ── Voucher Popup ── */
.voucher-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.voucher-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.voucher-modal {
  background: #fff;
  max-width: 540px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.22);
  transform: translateY(32px);
  transition: transform 0.4s var(--ease-out);
}
.voucher-overlay.open .voucher-modal {
  transform: translateY(0);
}
.voucher-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%) contrast(1.02);
}
.voucher-body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voucher-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 12px;
}
.voucher-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 300;
  color: #000;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.voucher-title em {
  font-style: italic;
  color: var(--sand-dark);
}
.voucher-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.voucher-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voucher-input {
  border: 1px solid var(--cream-dark);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #000;
  background: var(--cream-mid);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
}
.voucher-input:focus {
  border-color: #000;
}
.voucher-submit {
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}
.voucher-submit:hover {
  background: #222;
}
.voucher-privacy {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.5;
}
.voucher-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  line-height: 1;
  z-index: 2;
  transition: opacity var(--transition);
}
.voucher-close:hover { opacity: 0.5; }
.voucher-success {
  display: none;
  text-align: center;
  padding: 8px 0;
}
.voucher-success.show { display: block; }
.voucher-code {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
  border: 1px solid #000;
  padding: 12px 20px;
  display: inline-block;
  margin: 12px 0;
}
.voucher-success-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .voucher-modal {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .voucher-img {
    min-height: 200px;
    max-height: 200px;
  }
  .voucher-body {
    padding: 28px 24px;
  }
}
