/* =========================================================
   MAISON NAIL — 럭셔리 네일 살롱
   Airy editorial layout (Townhouse-style), slightly denser,
   Korean. Coral accent, tracked light headings.
   Fonts: Jost (Latin display) · Pretendard (KR) ·
          Cormorant Garamond (serif accent) · Sacramento (script)
   ========================================================= */

:root {
  --white: #ffffff;
  --paper: #fbfaf9;
  --gray: #f4f3f1;       /* press / footer panels */
  --gray-2: #ebe9e6;
  --blush: #faeee8;      /* peach panel */
  --blush-2: #f6e2d8;
  --ink: #1b1a18;
  --ink-2: #3c3a37;
  --muted: #8a8783;
  --line: #e4e1dd;

  /* accents */
  --coral: #e6a48d;          /* salmon button */
  --coral-deep: #d98c70;
  --coral-soft: #f0c4b3;
  --red: #c0533f;            /* italic serif accent word */

  --maxw: 1500px;
  --gutter: 40px;

  --jost: "Jost", "Pretendard", sans-serif;
  --sans: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: "Cormorant Garamond", serif;
  --script: "Sacramento", cursive;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- shared heading system (tracked, light) ---- */
.eyebrow {
  font-family: var(--jost);
  font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--coral-deep); font-weight: 500;
}
.h-display {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.h-display .en {
  display: block; font-family: var(--jost); font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.5em; color: var(--muted); margin-bottom: 14px; line-height: 1.3;
}
.lead { font-size: 15.5px; color: var(--ink-2); line-height: 1.85; }
.script { font-family: var(--script); color: var(--ink); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--jost); font-weight: 500; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 38px; transition: all .3s var(--ease); white-space: nowrap;
}
.btn-coral { background: var(--coral); color: var(--ink); }
.btn-coral:hover { background: var(--coral-deep); color: var(--white); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--ink); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--coral-deep); }
.btn-line { border: 1px solid var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 12px 26px; font-size: 11px; }

/* ===== IMAGE PLACEHOLDER (for agent replacement) ===== */
.ph {
  position: relative;
  background-color: var(--gray-2);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0, transparent 13px,
      rgba(0,0,0,0.035) 13px, rgba(0,0,0,0.035) 14px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: 0.03em; text-align: center; line-height: 1.5;
  background: rgba(255,255,255,0.92); color: var(--ink-2);
  padding: 7px 12px; border: 1px solid var(--line); max-width: 78%;
}
.ph-dark { background-color: #2a2723; }
.ph-dark::after { background: rgba(20,18,16,0.85); color: #d8d4cf; border-color: #4a463f; }
/* real image fill (agent can swap the inline background-image url; data-label kept as hint) */
.ph.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph.has-img::after { display: none; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.announce a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--jost); font-size: 13px; letter-spacing: 0.06em;
  padding: 11px 0; color: var(--ink); font-weight: 500;
}
.announce a:hover { color: var(--coral-deep); }
.announce .flag { font-size: 13px; }

/* =========================================================
   HEADER (centered wordmark)
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,0.05); }
.header-top { position: relative; display: flex; flex-direction: column; align-items: center; padding: 22px 0 0; }
.brand {
  font-family: var(--jost); font-weight: 400; font-size: 34px;
  letter-spacing: 0.42em; text-indent: 0.42em; line-height: 1; color: var(--ink);
}
.brand-sub { font-family: var(--sans); font-size: 10px; letter-spacing: 0.5em; text-indent: 0.5em; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* side tabs (BOOK / SHOP) */
.header-tabs { position: absolute; right: var(--gutter); top: 0; display: flex; align-items: stretch; gap: 0; height: 84px; }
.htab {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--jost); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--coral-soft); color: var(--ink); padding: 14px 9px; font-weight: 500;
  transition: background .25s; display: flex; align-items: center;
}
.htab:hover { background: var(--coral); }
.htab.alt { background: var(--blush-2); }
.header-acct { position: absolute; right: var(--gutter); top: 0; }
.acct-btn { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: border-color .2s; }
.acct-btn:hover { border-color: var(--ink); }
.acct-btn svg { width: 19px; height: 19px; }

/* nav row */
.nav { display: flex; align-items: center; justify-content: center; gap: 42px; padding: 18px 0 16px; }
.nav > li > a {
  font-family: var(--jost); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink); position: relative; padding: 5px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav > li > a .caret { width: 8px; height: 8px; opacity: .55; }
.nav > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--coral-deep); transition: width .3s var(--ease);
}
.nav > li > a:hover::after { width: 100%; }

.burger { display: none; position: absolute; left: var(--gutter); top: 24px; width: 38px; height: 38px; place-items: center; }
.burger svg { width: 24px; height: 24px; }
.head-acct-m { display: none; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero { position: relative; height: clamp(560px, 78vh, 820px); overflow: hidden; background: var(--gray); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease);
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media .ph { position: absolute; inset: 0; height: 100%; background-position: center right; }
.hero-text {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 6vw, 92px); max-width: 760px;
  background: linear-gradient(90deg, var(--white) 0%, rgba(251,250,249,0.92) 34%, rgba(251,250,249,0.55) 55%, rgba(251,250,249,0) 78%);
}
.hero-text h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1.04; letter-spacing: -0.01em; color: var(--ink);
}
.hero-text h1 em { font-style: italic; color: var(--red); }
.hero-text h1 .kr { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.44em; letter-spacing: -0.01em; margin-top: 12px; color: var(--ink); }
.hero-text p { font-size: 16px; color: var(--ink-2); margin: 22px 0 30px; max-width: 380px; }
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.hero-dot { width: 26px; height: 3px; background: rgba(0,0,0,0.2); transition: background .3s; cursor: pointer; }
.hero-dot.active { background: var(--ink); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(255,255,255,0.75); transition: background .25s;
}
.hero-arrow:hover { background: var(--white); }
.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow.prev { left: 18px; } .hero-arrow.next { right: 18px; }

/* =========================================================
   SPLIT SECTIONS
   ========================================================= */
.section-pad { padding: 72px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-copy { max-width: 460px; }
.split-copy.right { margin-left: auto; }
.split-copy .lead { margin: 20px 0; }
.split-copy .lead + .lead { margin-top: 14px; }
.split-copy .btn { margin-top: 14px; }
.split-media { position: relative; }
.split-media .ph { aspect-ratio: 5/4; }

/* guarantee seal overlapping the experts image */
.seal {
  position: absolute; top: -34px; left: -34px; z-index: 4;
  width: 138px; height: 138px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--ink);
  display: grid; place-items: center; text-align: center;
}
.seal span {
  font-family: var(--jost); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  line-height: 1.5; color: var(--ink);
}
.seal .heart { font-size: 18px; color: var(--coral-deep); display: block; margin: 3px 0; }

/* founder signature */
.signature { font-family: var(--script); font-size: 52px; color: var(--ink); position: absolute; right: 18px; bottom: -18px; z-index: 3; line-height: 1; }

/* =========================================================
   THREE TILES
   ========================================================= */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tile { position: relative; aspect-ratio: 3/3.4; overflow: hidden; display: block; }
.tile .ph { position: absolute; inset: 0; height: 100%; transition: transform .8s var(--ease); }
.tile:hover .ph { transform: scale(1.05); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 50%); }
.tile-body { position: absolute; left: 38px; bottom: 36px; z-index: 3; color: var(--white); }
.tile-body h3 {
  font-family: var(--sans); font-weight: 600; font-size: 30px; line-height: 1.1; letter-spacing: -0.01em;
}
.tile-body .en { display: block; font-family: var(--jost); font-weight: 300; font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .9; margin-bottom: 8px; }
.tile-body .btn { margin-top: 16px; }

/* =========================================================
   PRESS REVIEWS (carousel)
   ========================================================= */
.press { background: var(--gray); text-align: center; }
.press .wrap { padding: 80px var(--gutter); position: relative; }
.press .eyebrow { margin-bottom: 26px; }
.press-track { overflow: hidden; max-width: 860px; margin: 0 auto; }
.press-slides { display: flex; transition: transform .6s var(--ease); }
.press-quote { min-width: 100%; padding: 0 20px; }
.press-quote blockquote {
  font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.4; color: var(--ink); font-weight: 400;
}
.press-quote cite {
  display: block; font-family: var(--jost); font-style: normal; font-size: 13px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 26px;
}
.press-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); transition: color .2s; }
.press-nav:hover { color: var(--coral-deep); }
.press-nav svg { width: 22px; height: 22px; }
.press-nav.prev { left: 30px; } .press-nav.next { right: 30px; }

/* =========================================================
   STYLED BY US (IG)
   ========================================================= */
.styled { background: var(--blush); text-align: center; }
.styled .wrap { padding: 80px var(--gutter); }
.styled h2 {
  font-family: var(--sans); font-weight: 600; font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.01em; line-height: 1.12;
}
.styled h2 .en { display: block; font-family: var(--jost); font-weight: 300; font-size: 0.5em; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 10px; }
.styled .handle { font-family: var(--jost); font-size: 14px; letter-spacing: 0.3em; color: var(--ink-2); margin: 14px 0 38px; }
.ig-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1080px; margin: 0 auto; }
.ig-tile { position: relative; aspect-ratio: 1/1.08; overflow: hidden; }
.ig-tile .ph { position: absolute; inset: 0; height: 100%; transition: transform .7s var(--ease); }
.ig-tile:hover .ph { transform: scale(1.06); }
.ig-play { position: absolute; top: 14px; right: 14px; z-index: 3; width: 30px; height: 30px; opacity: .85; }
.ig-play svg { width: 100%; height: 100%; fill: var(--white); }

/* =========================================================
   AS SEEN IN
   ========================================================= */
.seen { text-align: center; }
.seen .wrap { padding: 64px var(--gutter); }
.seen-head { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 40px; }
.seen-head .line { height: 1px; width: 180px; background: var(--coral-soft); }
.seen-head span { font-family: var(--jost); font-size: 16px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.seen-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 48px; }
.seen-logos span { font-family: var(--serif); font-size: 25px; letter-spacing: 0.08em; color: var(--ink-2); opacity: .7; font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--gray); color: var(--ink); }
.footer .wrap { padding: 70px var(--gutter) 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; flex-direction: column; gap: 16px; }
.footer-logo .mark { width: 92px; height: 92px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; }
.footer-logo .mark span { font-family: var(--jost); font-size: 9px; letter-spacing: 0.18em; }
.footer-col h5 { font-family: var(--jost); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; padding: 6px 0; font-size: 13.5px; color: var(--ink-2); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--coral-deep); padding-left: 4px; }
.footer-news .news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 0; }
.footer-news input { width: 100%; background: var(--white); border: 1px solid var(--line); padding: 14px 16px; font-family: inherit; font-size: 14px; }
.footer-news input:focus { outline: none; border-color: var(--ink); }
.footer-news input.full { grid-column: 1 / -1; border-top: none; }
.footer-news .btn { width: 100%; margin-top: 0; border: none; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--white); display: grid; place-items: center; transition: background .25s; }
.footer-social a:hover { background: var(--coral-deep); }
.footer-social svg { width: 17px; height: 17px; }
.footer-legal { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 26px; }
.footer-legal .biz { font-size: 11.5px; color: var(--muted); line-height: 1.8; text-align: center; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: perspective(1000px) translateY(36px) rotateX(8deg); transform-origin: center bottom; transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: perspective(1000px) translateY(0) rotateX(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   GLOBAL 3D + MOTION (applies site-wide)
   ========================================================= */
/* tilt-ready cards: smooth, depth, hover lift */
.feature-card, .svc-tile, .salon-card, .product, .choice, .lb-card, .job-row {
  transform-style: preserve-3d; will-change: transform;
}
.feature-card, .svc-tile, .product, .choice { transition: transform .25s var(--ease), box-shadow .3s ease; }
.feature-card:hover, .svc-tile:hover, .product:hover, .choice:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.12); }

/* shine sweep on buttons */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-22deg); transition: left .65s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* page banner 3D entrance */
@media (prefers-reduced-motion: no-preference) {
  .page-banner .crumb { animation: bnrDrop .7s var(--ease) both; }
  .page-banner h1 { animation: bnrIn .95s .05s var(--ease) both; }
  .page-banner p { animation: bnrIn .95s .18s var(--ease) both; }
  .page-banner { perspective: 1000px; }
}
@keyframes bnrIn { from { opacity: 0; transform: translateY(34px) rotateX(16deg) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes bnrDrop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

/* floating accent on split media images */
.split-media .ph, .gift-card-visual { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.split-media:hover .ph { box-shadow: 0 30px 70px rgba(0,0,0,0.14); }

/* section heading subtle rise */
.section-head-c h2, .h-display { transform-origin: left center; }

/* cta band glow pulse */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,164,141,0.18), transparent 65%);
  top: -20vw; left: 50%; transform: translateX(-50%); animation: glowPulse 7s ease-in-out infinite; pointer-events: none;
}
@keyframes glowPulse { 0%,100% { opacity: .5; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.15); } }

/* =========================================================
   NAV DROPDOWNS + ACTIVE
   ========================================================= */
.nav > li { position: relative; }
.nav > li > a.active { color: var(--coral-deep); }
.nav > li > a.active::after { width: 100%; }
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  min-width: 200px; padding: 10px 0; opacity: 0; visibility: hidden; transition: all .25s var(--ease); z-index: 90;
}
.nav > li.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: block; padding: 9px 22px; font-size: 13.5px; letter-spacing: -0.005em; color: var(--ink-2);
  font-family: var(--sans); text-transform: none; transition: background .2s, color .2s;
}
.submenu a:hover { background: var(--gray); color: var(--coral-deep); }
.foot-tag { font-size: 13px; color: var(--ink-2); max-width: 220px; line-height: 1.7; }

/* =========================================================
   PAGE BANNER (inner pages)
   ========================================================= */
.page-banner { background: var(--gray); text-align: center; padding: 64px var(--gutter) 56px; }
.page-banner.blush { background: var(--blush); }
.page-banner .crumb { font-family: var(--jost); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.page-banner .crumb a:hover { color: var(--coral-deep); }
.page-banner h1 {
  font-family: var(--sans); font-weight: 600; font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08; letter-spacing: -0.015em;
}
.page-banner h1 .en { display: block; font-family: var(--jost); font-weight: 300; font-size: 0.42em; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.page-banner p { max-width: 560px; margin: 18px auto 0; color: var(--ink-2); font-size: 15.5px; }

.section-head-c { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head-c .eyebrow { margin-bottom: 14px; }
.section-head-c p { color: var(--ink-2); margin-top: 14px; }

/* =========================================================
   SERVICES + PRICING
   ========================================================= */
.svc-intro { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-tile { text-align: left; }
.svc-tile .ph { aspect-ratio: 4/3.2; margin-bottom: 20px; }
.svc-tile h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.svc-tile .en { font-family: var(--jost); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral-deep); display: block; margin-bottom: 8px; }
.svc-tile p { font-size: 14px; color: var(--ink-2); margin: 10px 0 16px; line-height: 1.7; }
.svc-tile .link-arrow { font-family: var(--jost); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.svc-tile .link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-tile:hover .link-arrow svg { transform: translateX(4px); }

.pricing { background: var(--gray); }
.price-block { max-width: 880px; margin: 0 auto; }
.price-cat { margin-bottom: 44px; }
.price-cat h3 {
  font-family: var(--sans); font-weight: 600; font-size: 24px; letter-spacing: -0.01em;
  padding-bottom: 14px; border-bottom: 1.5px solid var(--ink); margin-bottom: 6px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.price-cat h3 .en { font-family: var(--jost); font-weight: 300; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.price-row .pr-name { font-weight: 600; font-size: 15.5px; flex-shrink: 0; }
.price-row .pr-desc { font-size: 13.5px; color: var(--muted); flex: 1; line-height: 1.6; }
.price-row .pr-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.price-row .pr-price { font-family: var(--serif); font-size: 20px; color: var(--coral-deep); white-space: nowrap; }
.price-note { font-size: 12.5px; color: var(--muted); margin-top: 28px; line-height: 1.8; text-align: center; }

/* price CARDS */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1180px; margin: 0 auto; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform .25s var(--ease), box-shadow .3s ease; transform-style: preserve-3d; will-change: transform; }
.price-card:hover { box-shadow: 0 24px 54px rgba(0,0,0,0.12); }
.pc-head { position: relative; padding: 30px 30px 22px; background: var(--blush); border-bottom: 1px solid var(--line); }
.pc-head::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--coral), var(--coral-soft)); }
.pc-en { font-family: var(--jost); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--coral-deep); display: block; margin-bottom: 8px; }
.pc-head h3 { font-family: var(--sans); font-weight: 600; font-size: 23px; letter-spacing: -0.01em; color: var(--ink); }
.pc-list { padding: 10px 30px 26px; }
.pc-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line-soft, #eee); }
.pc-item:last-child { border-bottom: none; }
.pc-item.feat { margin: 6px -16px 0; padding: 16px; background: var(--blush); border-radius: 4px; border-bottom: none; }
.pc-item.feat + .pc-item { border-top: 1px solid var(--line-soft, #eee); }
.pc-info { display: flex; flex-direction: column; gap: 4px; }
.pc-name { font-weight: 600; font-size: 15.5px; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pc-badge { font-style: normal; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--white); background: var(--coral-deep); padding: 2px 8px; border-radius: 999px; }
.pc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.pc-price { font-family: var(--serif); font-size: 21px; color: var(--coral-deep); white-space: nowrap; line-height: 1.3; }

/* =========================================================
   LOOKBOOK
   ========================================================= */
.lb-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 42px; }
.lb-tab {
  font-family: var(--jost); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 24px; border: 1px solid var(--line); color: var(--ink-2); transition: all .25s var(--ease);
}
.lb-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.lb-tab:hover:not(.active) { border-color: var(--ink); }
.lb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lb-card { position: relative; overflow: hidden; cursor: pointer; }
.lb-card .ph { aspect-ratio: 3/4; transition: transform .6s var(--ease); }
.lb-card:hover .ph { transform: scale(1.05); }
.lb-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%); opacity: 0; transition: opacity .3s; color: var(--white); }
.lb-card:hover .lb-overlay { opacity: 1; }
.lb-overlay b { font-size: 16px; font-weight: 600; }
.lb-overlay span { font-family: var(--jost); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* =========================================================
   SALONS (locations)
   ========================================================= */
.salon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.salon-card { border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s, transform .3s var(--ease); display: block; }
.salon-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.1); }
.salon-card .ph { aspect-ratio: 16/10; }
.salon-card .sc-body { padding: 22px 24px 26px; }
.salon-card h3 { font-size: 21px; font-weight: 600; display: flex; align-items: baseline; gap: 10px; }
.salon-card h3 .en { font-family: var(--jost); font-weight: 300; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.salon-card address { font-style: normal; font-size: 13.5px; color: var(--ink-2); margin: 12px 0; line-height: 1.7; }
.salon-row { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); padding: 3px 0; }
.salon-row svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .6; }
.salon-card .sc-foot { display: flex; gap: 10px; margin-top: 18px; }
.salon-card .sc-foot .btn { flex: 1; }

/* split column ordering (alternating left/right) */
.split.media-left .split-media { order: 1; }
.split.media-left .split-copy { order: 2; }
.split.media-right .split-media { order: 2; }
.split.media-right .split-copy { order: 1; }

/* salon detail */
.salon-hero { position: relative; height: clamp(380px, 50vh, 560px); perspective: 1300px; }
.salon-hero .ph { position: absolute; inset: 0; height: 100%; transform-style: preserve-3d; backface-visibility: hidden; will-change: transform; }
.salon-hero .sh-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%); z-index: 2; display: flex; align-items: flex-end; perspective: 1000px; }
.salon-hero .sh-inner { padding: 48px var(--gutter); color: var(--white); max-width: var(--maxw); margin: 0 auto; width: 100%; transform-style: preserve-3d; will-change: transform; }
/* 3D entrance variants (per-location via data-fx) */
@media (prefers-reduced-motion: no-preference) {
  .salon-hero .ph { animation: heroFxSpin 1.2s cubic-bezier(.22,1,.36,1) both; }
  .salon-hero[data-fx="zoom"] .ph { animation-name: heroFxZoom; }
  .salon-hero[data-fx="flipx"] .ph { animation-name: heroFxFlipX; transform-origin: bottom center; }
  .salon-hero[data-fx="rise"] .ph { animation-name: heroFxRise; }
  .salon-hero[data-fx="tilt"] .ph { animation-name: heroFxTilt; }
  .salon-hero .sh-inner { animation: heroFxText 1s .25s cubic-bezier(.22,1,.36,1) both; }
}
@keyframes heroFxSpin { from { opacity: 0; transform: rotateY(18deg) translateX(7%) scale(1.12); } to { opacity: 1; transform: none; } }
@keyframes heroFxZoom { from { opacity: 0; transform: scale(1.3) translateZ(-120px); } to { opacity: 1; transform: none; } }
@keyframes heroFxFlipX { from { opacity: 0; transform: rotateX(30deg) scale(1.1); } to { opacity: 1; transform: none; } }
@keyframes heroFxRise { from { opacity: 0; transform: translateY(10%) rotateX(-12deg) scale(1.1); } to { opacity: 1; transform: none; } }
@keyframes heroFxTilt { from { opacity: 0; transform: rotateY(-16deg) rotateX(8deg) scale(1.12); } to { opacity: 1; transform: none; } }
@keyframes heroFxText { from { opacity: 0; transform: translateY(34px) translateZ(50px); } to { opacity: 1; transform: none; } }
.salon-hero .crumb { font-family: var(--jost); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .85; margin-bottom: 14px; }
.salon-hero h1 { font-family: var(--sans); font-weight: 600; font-size: clamp(34px, 4.4vw, 60px); }
.salon-hero h1 .en { font-family: var(--jost); font-weight: 300; font-size: 0.4em; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 8px; opacity: .9; }
.salon-info { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; }
.info-block { margin-bottom: 36px; }
.info-block h4 { font-family: var(--jost); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.info-block p { font-size: 14.5px; color: var(--ink-2); line-height: 1.8; }
.hours-list { display: grid; gap: 0; }
.hours-list .hrow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-list .hrow span:first-child { color: var(--ink-2); }
.hours-list .hrow span:last-child { font-weight: 600; }
.salon-aside { background: var(--gray); padding: 32px; position: sticky; top: 160px; align-self: start; }
.salon-aside h4 { font-size: 19px; font-weight: 600; margin-bottom: 16px; }
.salon-aside .aside-row { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); padding: 8px 0; align-items: flex-start; }
.salon-aside .aside-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: .6; }
.salon-aside .btn { width: 100%; margin-top: 18px; }
.map-ph { aspect-ratio: 16/7; margin-top: 14px; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-cat { font-family: var(--jost); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral-deep); margin: 40px 0 8px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-q .fic { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform .3s var(--ease); }
.faq-q .fic::before, .faq-q .fic::after { content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-q .fic::before { width: 14px; height: 1.5px; }
.faq-q .fic::after { width: 1.5px; height: 14px; transition: transform .3s var(--ease); }
.faq-item.open .fic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 0 24px; font-size: 14.5px; color: var(--ink-2); line-height: 1.85; max-width: 660px; }

/* =========================================================
   FORMS (contact / booking)
   ========================================================= */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { margin-bottom: 22px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-family: var(--jost); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--white); border: 1px solid var(--line); padding: 14px 16px;
  font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .2s;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--ink); }
.form-actions { margin-top: 10px; }
.form-actions .btn { min-width: 200px; }

/* booking steps */
.book-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; }
.book-step { display: flex; align-items: center; gap: 12px; font-family: var(--jost); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.book-step .num { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 12px; }
.book-step.active { color: var(--ink); }
.book-step.active .num { background: var(--coral); border-color: var(--coral); color: var(--ink); }
.book-step .bar { width: 60px; height: 1px; background: var(--line); margin: 0 18px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.choice { border: 1px solid var(--line); padding: 22px; cursor: pointer; transition: all .25s var(--ease); }
.choice:hover { border-color: var(--ink); }
.choice.sel { border-color: var(--coral-deep); background: var(--blush); }
.choice h4 { font-size: 16px; font-weight: 600; }
.choice .c-price { font-family: var(--serif); font-size: 18px; color: var(--coral-deep); margin-top: 6px; }
.choice p { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* =========================================================
   PROSE / LEGAL
   ========================================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin: 38px 0 14px; letter-spacing: -0.01em; }
.prose h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; }
.prose p { font-size: 15px; color: var(--ink-2); line-height: 1.9; margin-bottom: 14px; }
.prose ul.bul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.prose ul.bul li { font-size: 15px; color: var(--ink-2); line-height: 1.85; margin-bottom: 6px; }
.prose .updated { font-size: 13px; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }

/* =========================================================
   GIFT CARDS / CAREERS / GROUPS / SHOP
   ========================================================= */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card { border: 1px solid var(--line); padding: 36px 32px; transition: box-shadow .3s, transform .3s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }
.feature-card .fc-num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--coral-deep); }
.feature-card h3 { font-size: 19px; font-weight: 600; margin: 12px 0 10px; }
.feature-card p { font-size: 14px; color: var(--ink-2); line-height: 1.75; }

.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product { display: block; }
.product .ph { aspect-ratio: 1/1; margin-bottom: 16px; background-color: var(--gray); }
.product:hover .ph { background-color: var(--blush); }
.product h3 { font-size: 15px; font-weight: 600; }
.product .p-cat { font-family: var(--jost); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.product .p-price { font-family: var(--serif); font-size: 18px; color: var(--coral-deep); margin-top: 6px; }

.gift-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gift-card-visual { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--coral-soft), var(--blush-2)); display: flex; flex-direction: column; justify-content: space-between; padding: 32px; }
.gift-card-visual .gc-brand { font-family: var(--jost); font-size: 22px; letter-spacing: 0.3em; }
.gift-card-visual .gc-label { font-family: var(--jost); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; align-self: flex-end; }
.amount-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 26px; }
.amount-chip { padding: 12px 24px; border: 1px solid var(--line); font-family: var(--serif); font-size: 18px; cursor: pointer; transition: all .2s; }
.amount-chip:hover, .amount-chip.sel { border-color: var(--coral-deep); background: var(--blush); }

.job-list { max-width: 820px; margin: 0 auto; }
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s var(--ease); }
.job-row:hover { padding-left: 8px; }
.job-row .j-info h3 { font-size: 19px; font-weight: 600; }
.job-row .j-meta { font-family: var(--jost); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: flex; gap: 16px; }

.cta-band { background: var(--ink); color: var(--white); text-align: center; }
.cta-band .wrap { padding: 72px var(--gutter); }
.cta-band h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.01em; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 16px auto 28px; }

/* mobile floating CTA */
.fab { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 120; display: none; }
.fab .btn { width: 100%; box-shadow: 0 12px 40px rgba(0,0,0,0.18); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  :root { --gutter: 28px; }
  .nav { gap: 26px; }
  .split { gap: 44px; }
}
@media (max-width: 900px) {
  .nav, .header-tabs { display: none; }
  .burger { display: grid; }
  .head-acct-m { display: block; position: absolute; right: var(--gutter); top: 24px; }
  .hero-slide { grid-template-columns: 1fr; }
  .hero-text { background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.7)); padding: 0 28px; }
  .hero-media { display: none; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split.media-left .split-media, .split.media-left .split-copy,
  .split.media-right .split-media, .split.media-right .split-copy { order: 0; }
  .split-media .ph { aspect-ratio: 4/3; }
  .seal { width: 110px; height: 110px; top: -24px; left: 12px; }
  .tiles { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-news { grid-column: 1 / -1; }
  .section-pad { padding: 60px 0; }
  .fab { display: block; }
}
@media (max-width: 1100px) {
  .lb-grid, .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-intro, .salon-grid, .cards-3, .choice-grid { grid-template-columns: 1fr 1fr; }
  .lb-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .salon-info, .gift-hero { grid-template-columns: 1fr; }
  .salon-aside { position: static; }
  .submenu { display: none; }
}
@media (max-width: 560px) {
  .ig-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .seen-head .line { width: 60px; }
  .svc-intro, .salon-grid, .cards-3, .choice-grid, .lb-grid, .shop-grid, .form-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; max-width: 520px; }
  .price-note { text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }
  .price-row { flex-wrap: wrap; gap: 6px; }
  .price-row .pr-dots { display: none; }
  .book-steps { flex-wrap: wrap; gap: 10px; }
  .book-step .bar { display: none; }
  .job-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}
