/* ============================================================
   Natural Brows — Design Tokens
   Coordinator step 1c · derived from PRODUCT.md + DESIGN.md
   Source: coordinator_derived · NOT industry-default
   Locked 2026-05-20
   ============================================================ */

:root {
  /* ──────────────────────────────────────────────────────────
     COLOR — Warm dark ink + antique brass + oxblood + cream
     Committed palette (not Drenched, not Restrained)
     ────────────────────────────────────────────────────────── */

  /* Backgrounds (warm-tinted dark — sRGB hex so axe-core can read them.
     OKLCH preserved as comments for design reference / future re-tuning. */
  --bg:               #1c1612;  /* was #1c1612 */
  --bg-raised:        #241e1a;  /* was oklch(0.22 0.012 40) */
  --bg-elevated:      #2d2722;  /* was oklch(0.26 0.012 40) */

  /* Accent — antique brass */
  --brass:            #c9a567;  /* was oklch(0.74 0.09 80) */
  --brass-hover:      #dab97e;  /* was oklch(0.80 0.09 80) */
  --brass-muted:      rgba(201, 165, 103, 0.18);

  /* Accent secondary — oxblood */
  --oxblood:          #7d3d35;  /* was oklch(0.42 0.10 25) */
  --oxblood-soft:     rgba(125, 61, 53, 0.50);

  /* Text — bumped subtle to clear 4.5:1 with margin */
  --fg:               #f4f1ec;  /* was oklch(0.96 0.008 85) — 15:1 on bg */
  --fg-muted:         #b8aa9a;  /* bumped from #b3a596 — 7.5:1 on bg */
  --fg-subtle:        #9d9388;  /* bumped from #8d8378 — 5.4:1 on bg (was 4.65, axe rounding margin) */

  /* Borders */
  --border:           rgba(244, 241, 236, 0.10);
  --border-strong:    rgba(244, 241, 236, 0.20);
  --border-brass:     rgba(201, 165, 103, 0.22);

  /* ──────────────────────────────────────────────────────────
     TYPOGRAPHY — Editorial serif display + humanist sans body
     ────────────────────────────────────────────────────────── */

  /* Fraunces tuned with low SOFT axis reads as editorial cap-spread,
     NOT the default Fraunces look. Pairs with Manrope for body. */
  --font-display:     'Fraunces', 'Tiempos Headline', 'GT Sectra', Georgia, serif;
  --font-heading:     'Manrope', 'ABC Diatype', 'Mona Sans', system-ui, sans-serif;
  --font-body:        'Manrope', 'ABC Diatype', 'Mona Sans', system-ui, sans-serif;
  --font-mono:        'JetBrains Mono', ui-monospace, monospace;

  /* Korean — Pretendard variable + Noto Serif KR for display */
  --font-display-kr:  'Noto Serif KR', 'Pretendard Variable', 'Apple SD Gothic Neo', serif;
  --font-body-kr:     'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', sans-serif;

  /* Type scale (modular, 1.250 ratio) */
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.75rem;
  --fs-4xl:   3.75rem;
  --fs-5xl:   5rem;
  --fs-6xl:   7rem;

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-base:    1.6;
  --lh-loose:   1.75;

  --tracking-tight:    -0.02em;
  --tracking-normal:   0;
  --tracking-wide:     0.04em;
  --tracking-display:  -0.015em;

  /* ──────────────────────────────────────────────────────────
     SPACING — 8px base
     ────────────────────────────────────────────────────────── */
  --space-1:   0.5rem;
  --space-2:   1rem;
  --space-3:   1.5rem;
  --space-4:   2rem;
  --space-5:   3rem;
  --space-6:   4rem;
  --space-8:   6rem;
  --space-10:  8rem;
  --space-12:  12rem;

  /* ──────────────────────────────────────────────────────────
     RADIUS — restrained
     ────────────────────────────────────────────────────────── */
  --radius-none:  0;
  --radius-sm:    2px;
  --radius-md:    4px;
  --radius-lg:    8px;
  --radius-pill:  9999px;

  /* ──────────────────────────────────────────────────────────
     SHADOWS — Layered (large soft + small sharp) per polish #11
     ────────────────────────────────────────────────────────── */
  --shadow-soft:
    0 24px 48px -12px rgba(0,0,0,0.40),
    0 4px 8px -2px rgba(0,0,0,0.20);
  --shadow-medium:
    0 32px 64px -16px rgba(0,0,0,0.50),
    0 6px 12px -3px rgba(0,0,0,0.25);
  --shadow-deep:
    0 48px 96px -24px rgba(0,0,0,0.60),
    0 8px 16px -4px rgba(0,0,0,0.30);
  --shadow-brass:
    0 0 32px -8px rgba(201, 165, 103, 0.30),
    0 8px 16px -4px rgba(0,0,0,0.30);

  /* ──────────────────────────────────────────────────────────
     MOTION — Soft, refined, 1.5–2× longer than HV default
     ────────────────────────────────────────────────────────── */
  --ease-out:        cubic-bezier(0.22, 0.10, 0.20, 1);
  --ease-in-out:     cubic-bezier(0.45, 0, 0.20, 1);
  --ease-editorial:  cubic-bezier(0.30, 0.05, 0.10, 0.95);

  --dur-fast:     250ms;
  --dur-base:     400ms;
  --dur-slow:     600ms;
  --dur-entrance: 700ms;
  --dur-hero:     12s;

  /* ──────────────────────────────────────────────────────────
     Z-INDEX
     ────────────────────────────────────────────────────────── */
  --z-base:     0;
  --z-raised:   10;
  --z-sticky:   100;
  --z-overlay:  500;
  --z-modal:    1000;
  --z-toast:    2000;

  /* ──────────────────────────────────────────────────────────
     LAYOUT
     ────────────────────────────────────────────────────────── */
  --max-content:  72rem;
  --max-narrow:   42rem;
  --max-prose:    36rem;
  --header-h:     72px;
  --nav-h:        56px;
}

/* Reduced-motion gate per WCAG 2.1 AA + polish #16 */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms; --dur-base: 0ms; --dur-slow: 0ms;
    --dur-entrance: 0ms; --dur-hero: 0ms;
  }
}

/* ──────────────────────────────────────────────────────────
   BASE — atmospheric warm dark canvas
   ────────────────────────────────────────────────────────── */

html[lang="kr"] body { font-family: var(--font-body-kr); }
html[lang="kr"] h1, html[lang="kr"] h2, html[lang="kr"] h3 { font-family: var(--font-display-kr); }

/* Explicit bg on html for headless a11y scanners that don't resolve
   CSS variables through body. */
html { background-color: #1c1612; color-scheme: dark; }

body {
  margin: 0;
  background-color: #1c1612;
  background: var(--bg);
  color: #f4f1ec;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Sections + main carry the background-color too so axe can walk
   up the cascade from any descendant span and find a real bg. */
main, .section { background-color: #1c1612; }

/* Candlelit-from-above vignette (per DESIGN.md scene sentence) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,
      transparent 0%,
      rgba(28, 22, 18, 0.70) 60%,
      #1c1612 90%),
    var(--bg);
}

/* Film-grain SVG per polish #10 — 2% opacity, 1.4× scale */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.02;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 280px 280px;
  mix-blend-mode: overlay;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-tight);
  color: var(--fg);
  /* Fraunces variable axes — low SOFT for crisper terminals,
     opsz tracks display size automatically */
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}

h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
}

a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
a:hover { color: var(--brass); border-color: var(--brass); }

button { cursor: pointer; font-family: var(--font-heading); }

.tnum, .price { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* Focus rings — WCAG 2.1 AA polish #14 */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* Skip-to-content — first focusable element */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--bg-elevated);
  color: var(--fg);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  z-index: var(--z-toast);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-to-content:focus { top: 1rem; }

/* ============================================================
   COMPONENT LAYER
   Per Worker C polish 1-20 — semantic HTML, baseline-aligned,
   editorial spacing, no fixed-height cards, layered shadows.
   ============================================================ */

/* ── Layout primitives ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-4); } }
@media (min-width: 1024px) { .container { padding-inline: var(--space-5); } }

.section { padding-block: var(--space-10); position: relative; }
.section--tight { padding-block: var(--space-8); }
.section--hero { padding-block: var(--space-12) var(--space-10); }

/* Soft section blending per polish #7 — gradient fade between sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
}

/* ── Eyebrow + heading rhythm ──────────────────────────────── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-3);
  max-width: 28ch;
}
@media (min-width: 768px) {
  .section-title { font-size: var(--fs-4xl); }
}

.section-lede {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: var(--fg-muted);
  margin: 0 0 var(--space-5);
  max-width: var(--max-prose);
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(28, 22, 18, 0.85);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--space-3);
}
@media (min-width: 768px) {
  .site-header__inner { padding-inline: var(--space-4); }
}
.brand {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: var(--tracking-display);
  border: 0;
  color: var(--fg);
}
.brand:hover { color: var(--brass); }

.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    gap: var(--space-4);
    align-items: center;
  }
}
.primary-nav a {
  border: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  color: var(--fg-muted);
  text-transform: uppercase;
}
.primary-nav a:hover { color: var(--brass); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ── Language toggle ───────────────────────────────────────── */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: var(--fg);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  min-height: 44px;
  min-width: 44px;
}
.lang-toggle:hover { border-color: var(--brass); color: var(--brass); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--brass);
  color: #1c1612;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--brass-hover);
  box-shadow: var(--shadow-brass);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
  box-shadow: none;
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: var(--fs-base); }

/* Lucide icons inline — baseline-aligned per polish #9 */
.btn svg, .icon-inline svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke-width: 1.25;
  flex-shrink: 0;
}

/* ── Hero — centered single-axis editorial (post-critique v2) ── */
.container--hero {
  max-width: var(--max-narrow);
  text-align: center;
}
.eyebrow--center {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.hero__display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, var(--fs-6xl));
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
  margin: var(--space-3) 0 0;
}
.hero__display--center { text-align: center; }
.hero__display em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--fg-muted);
  margin: var(--space-3) 0 0;
  line-height: var(--lh-snug);
}
.hero__tagline--center { text-align: center; }

.hero__body {
  font-size: var(--fs-lg);
  color: var(--fg-muted);
  margin: var(--space-4) auto var(--space-5);
  max-width: 34rem;
  line-height: var(--lh-base);
}
.hero__body--center { text-align: center; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  align-items: center;
}
.hero__ctas--center {
  justify-content: center;
}

/* Secondary inline link (replaces equal-weight ghost button) */
.hero__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--fg-muted);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: lowercase;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.hero__link:hover { color: var(--brass); border-bottom-color: var(--brass); }
.hero__link svg { width: 0.8em; height: 0.8em; stroke-width: 1.25; }

/* Quiet trust line — single line, no badges, no review counts */
.hero__trust--quiet {
  display: block;
  margin: var(--space-6) auto 0;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--fg-subtle);
  text-transform: uppercase;
  text-align: center;
  max-width: 36rem;
}

/* ── Philosophy band — editorial prose (post-critique v2) ─── */
.section-title--prose {
  font-size: clamp(2rem, 4vw, var(--fs-4xl));
  margin-bottom: var(--space-6);
  max-width: 38rem;
}
.section-title--quiet {
  font-size: clamp(1.6rem, 3vw, var(--fs-2xl));
  margin: 0 0 var(--space-2);
}

.prose-band {
  max-width: var(--max-prose);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
}
.prose-band p {
  margin: 0 0 var(--space-4);
}
.prose-band p:last-child { margin-bottom: 0; }
/* Editorial drop-initial on first paragraph */
.prose-band p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.9;
  margin: 0.08em 0.12em -0.04em 0;
  color: var(--brass);
  font-style: italic;
  font-weight: 400;
}

/* ── Services grid ─────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 640px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--bg);
  padding: var(--space-5) var(--space-4);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: var(--space-2);
  transition: background var(--dur-base) var(--ease-out);
  position: relative;
}
.service-card:hover { background: var(--bg-raised); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--fg-subtle);
  letter-spacing: var(--tracking-wide);
}
.service-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  margin: 0;
  color: var(--fg);
}
.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: var(--lh-base);
  margin: 0;
}
.service-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  color: var(--brass);
  font-feature-settings: "tnum";
  letter-spacing: var(--tracking-wide);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-brass);
  align-self: end;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.service-card__price small {
  font-size: var(--fs-xs);
  color: var(--fg-subtle);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ── Gallery — quiet teaser pointing to IG (post-critique v2) ── */
.gallery-quiet {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: end;
  padding-block: var(--space-2);
}
@media (min-width: 768px) {
  .gallery-quiet {
    grid-template-columns: 1.4fr auto;
    gap: var(--space-6);
    align-items: end;
  }
}

/* ── Reviews — editorial blockquote grid ───────────────── */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
@media (min-width: 768px) {
  .reviews { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
.review {
  margin: 0;
  padding: var(--space-4);
  background-color: #1c1612;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-brass);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--space-3);
}
.review__stars {
  font-size: var(--fs-sm);
  letter-spacing: 0.2em;
  color: #c9a567;
  color: var(--brass);
  font-feature-settings: "tnum";
}
.review__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-style: italic;
  line-height: var(--lh-base);
  color: #f4f1ec;
  color: var(--fg);
}
.review__quote p { margin: 0; }
.review__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.review__name { color: #f4f1ec; color: var(--fg); font-weight: 500; }
.review__platform { color: #9d9388; color: var(--fg-subtle); }

.reviews__footer {
  margin-top: var(--space-5);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: #9d9388;
  color: var(--fg-subtle);
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
}
.reviews__footer a { border: 0; color: #b8aa9a; color: var(--fg-muted); }
.reviews__footer a:hover { color: var(--brass); }

/* ── Contact form (Brevo /api/client-contact) ──────────── */
.message-band {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .message-band { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
.contact-form {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}
.form-row { display: grid; gap: var(--space-1); }
.form-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #b8aa9a;
  color: var(--fg-muted);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: #f4f1ec;
  color: var(--fg);
  background: transparent;
  background-color: #241e1a;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9a567;
  border-color: var(--brass);
  outline: 0;
  background-color: #2d2722;
  background: var(--bg-elevated);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit {
  justify-self: start;
  margin-top: var(--space-2);
}
.form-submit[disabled] { opacity: 0.5; cursor: progress; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  margin: 0;
  min-height: 1.2em;
  color: #b8aa9a;
  color: var(--fg-muted);
}
.form-status.is-error { color: #c9a567; color: var(--brass); }
.form-status.is-ok { color: #c9a567; color: var(--brass); }

/* ── Floating KakaoTalk button ─────────────────────────── */
.kakao-fab {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FEE500;            /* KakaoTalk official yellow */
  color: #3A1D1F;                 /* dark brown — official KakaoTalk text color */
  border: 0;
  box-shadow:
    0 12px 32px -8px rgba(0,0,0,0.50),
    0 4px 8px -2px rgba(0,0,0,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.kakao-fab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px -10px rgba(0,0,0,0.55),
    0 6px 12px -3px rgba(0,0,0,0.30);
}
.kakao-fab:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}
.kakao-fab svg {
  width: 26px;
  height: 26px;
  display: block;
}
.kakao-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #1c1612;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.kakao-fab:hover .kakao-fab__tooltip,
.kakao-fab:focus-visible .kakao-fab__tooltip {
  opacity: 1;
}
@media (max-width: 640px) {
  .kakao-fab__tooltip { display: none; }
  .kakao-fab { right: var(--space-2); bottom: var(--space-2); }
}

/* ── Booking — "Coming Soon" Square placeholder ────────── */
.booking-coming-soon {
  margin: var(--space-4) 0 0;
  padding: var(--space-3);
  background-color: #1c1612;
  background: var(--bg-elevated);
  border: 1px dashed var(--border-brass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--fg-muted);
}
.booking-coming-soon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.25;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-coming-soon strong { color: var(--fg); }

/* ── FAQ — definition list (post-critique v2) ────────────── */
.faq {
  margin: var(--space-2) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: var(--max-narrow);
}
.faq__item {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: 0; }
.faq__q {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0 0 var(--space-2);
}
.faq__a {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--fg-muted);
  margin: 0;
  max-width: var(--max-prose);
}

/* ── Booking ───────────────────────────────────────────────── */
.booking-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-5);
  background: var(--bg-raised);
  border: 1px solid var(--border-brass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .booking-card {
    grid-template-columns: 1.2fr 1fr;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-8);
  }
}
.booking-policy {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: var(--lh-base);
  margin: var(--space-3) 0 var(--space-4);
}
.booking-cta-stack {
  display: grid;
  gap: var(--space-2);
  align-content: end;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  border-top: 0;
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
  border-radius: 0;
}
.contact-row:hover { color: var(--brass); }
.contact-row__label {
  flex-shrink: 0;
  width: 7rem;
  font-size: var(--fs-xs);
  color: var(--fg-subtle);
}
.contact-row__value {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--fg);
  text-transform: none;
  letter-spacing: var(--tracking-normal);
}

/* Hours table */
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-1);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: var(--tracking-wide);
}
.hours li.closed { color: var(--fg-subtle); }
.hours li time { font-feature-settings: "tnum"; color: var(--fg-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-6) var(--space-5);
  margin-top: var(--space-8);
  color: var(--fg-muted);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.site-footer__inner {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--space-3);
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-inline: var(--space-4);
  }
}
.site-footer__center { justify-self: center; }
.site-footer__right { justify-self: end; display: flex; gap: var(--space-3); }
.site-footer a { color: var(--fg-muted); border: 0; }
.site-footer a:hover { color: var(--brass); }

/* ── Reveal class — present in markup but no longer hides ──
   Was a JS scroll-triggered fade; removed because IO and
   animation-timeline both kept content invisible in full-page
   screenshots. Site stays visible at all scroll positions. */
.reveal { opacity: 1; transform: none; }

/* ── i18n: hide/show per html[lang] ────────────────────────── */
html[lang="en"] [data-lang="kr"] { display: none; }
html[lang="kr"] [data-lang="en"] { display: none; }

/* ── Korean type adjustments ───────────────────────────────── */
html[lang="kr"] body { line-height: var(--lh-loose); }
html[lang="kr"] .section-lede,
html[lang="kr"] .hero__body,
html[lang="kr"] .philosophy__item p {
  letter-spacing: -0.01em;
}

