@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Montserrat:wght@300;400;500&display=swap');

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS VARIABLES ───────────────────────────────── */
:root {
  --serif: 'Cormorant Garamond', serif;
  --sans:  'Montserrat', sans-serif;
  /* Aliases for consistency */
  --font-serif: var(--serif);
  --font-sans:  var(--sans);

  /* Dark theme (Mystic / Main) */
  --dark-bg:     #07050f;
  --dark-card:   #0e0a1a;
  --dark-mid:    #110d1f;
  --dark-text:   #e8deff;
  --dark-muted:  rgba(200,170,255,0.58);
  --dark-dim:    rgba(180,140,255,0.38);
  --dark-dimmer: rgba(180,140,255,0.15);
  --dark-soft:   #c5a8ff;
  --dark-faint:  rgba(180,140,255,0.32);
  --dark-border: rgba(155,110,255,0.14);

  /* Dark theme — accent colours */
  --dark-accent:       #b87fff;   /* hero em, primary accent */
  --dark-accent-mid:   #a07fff;   /* tagline em, secondary */
  --dark-accent-deep:  #9b6fff;   /* mystic card, deeper */
  --dark-accent-pale:  #d4a8ff;   /* nail card name, softer */
  --dark-surface:      #0d0a14;   /* page body bg */
  --dark-surface-card: #0e0a1a;   /* = --dark-card */
  --dark-surface-nail: #120d1c;   /* nail card bg */
  --dark-surface-mystic:#090612;  /* mystic card bg */

  /* Social brand colours */
  --color-instagram: rgba(225,48,108,1);
  --color-facebook:  #1877F2;
  --color-wechat:    #07C160;
  --color-line:      #06C755;
  --color-whatsapp:  #25D366;

  /* Light theme (Nail) */
  --light-bg:       #faf8f5;
  --light-card:     #ffffff;
  --light-soft-bg:  #ede8f7;
  --light-deep:     #3d2b5e;
  --light-morandi:  #8b7aa8;
  --light-lavender: #c4b0e0;
  --light-text:     #2e2040;
  --light-muted:    #7a6a8a;
  --light-faint:    #b0a0c0;
  --light-border:   rgba(180,150,220,0.18);

  /* Spacing */
  --page-pad: 2rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 24px;
}

/* ── BASE ────────────────────────────────────────── */
body { font-family: var(--sans); -webkit-text-size-adjust: 100%; }

/* ── SHARED NAV ──────────────────────────────────── */
.kmc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--page-pad);
  position: relative;
}
.nav-left  { display: flex; align-items: center; gap: 1rem; }
.nav-logo-ph {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-ph span { font-size: 8px; letter-spacing: 1px; text-align: center; line-height: 1.5; }
.nav-logo-ph img  { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-sm); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-links a { font-size: 13px; letter-spacing: 1.5px; transition: color .2s; }
.nav-sep { width: 0.5px; height: 16px; }
.nav-book {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  border-width: 1px !important;
  border-style: solid !important;
}

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 200;
  padding: 1rem var(--page-pad) 1.5rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: .7rem 0;
  border-bottom: 0.5px solid;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer .nav-book-mobile {
  margin-top: .8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  border: 1px solid;
  width: fit-content;
}

/* ── HERO (shared) ───────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.hero-left { padding: 4.5rem var(--page-pad) 4.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.hero-tag  { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.hero-title{ font-family: var(--serif); font-size: 52px; font-weight: 300; line-height: 1.2; margin-bottom: .2rem; }
.hero-title em { font-style: italic; }
.hero-zh   { font-size: 15px; letter-spacing: 4px; margin-bottom: 1.6rem; }
.hero-desc { font-size: 14px; line-height: 2; margin-bottom: 2rem; max-width: 380px; }
.hero-right{ display: flex; align-items: center; justify-content: center; }
.hero-img-ph {
  width: 260px; height: 340px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-ph span { font-size: 11px; letter-spacing: 1.5px; text-align: center; line-height: 1.6; }

/* ── BUTTONS ─────────────────────────────────────── */

/* Base — shared by ALL button variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: opacity .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { opacity: .8; }

/* Dark ghost (default) — outline on dark bg */
.btn-ghost-dark {
  color: var(--dark-soft);
  border-color: rgba(155,110,255,0.35);
  background: transparent;
}
.btn-ghost-dark:hover { background: rgba(155,110,255,0.08); }

/* Dark filled — subtle fill on dark bg */
.btn-filled-dark {
  color: var(--dark-soft);
  border-color: rgba(155,110,255,0.4);
  background: rgba(155,110,255,0.15);
}
.btn-filled-dark:hover { background: rgba(155,110,255,0.25); }

/* Light ghost — outline on light bg */
.btn-ghost-light {
  color: var(--light-deep);
  border-color: rgba(61,43,94,0.3);
  background: transparent;
}

/* Sizes */
.btn-sm { font-size: 9px;  letter-spacing: 2px; padding: 7px 16px; }
.btn-lg { font-size: 13px; letter-spacing: 2px; padding: 13px 30px; }

/* Legacy — keep for backwards compat */
.btn-primary {
  display: inline-block;
  font-size: 12px; letter-spacing: 2px;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-right: 1rem;
}
.btn-ghost { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* ── SECTION LABELS ──────────────────────────────── */
.sec-label {
  text-align: center;
  font-size: 12px; letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 500;
}
.sec-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 32px; font-weight: 300;
  margin-bottom: .3rem;
}
.sec-zh {
  text-align: center;
  font-size: 14px; letter-spacing: 3px;
  margin-bottom: 2rem;
}

/* ── CAT HEADER ──────────────────────────────────── */
.cat-wrap { margin: 0 var(--page-pad) 2rem; }
.cat-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.cat-icon { font-size: 16px; opacity: .8; }
.cat-label-text { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; white-space: nowrap; }
.cat-line { flex: 1; height: .5px; }

/* ── SERVICE GRID ────────────────────────────────── */
.svc-grid { display: grid; gap: 1px; border-radius: 10px; overflow: hidden; }
.svc-grid.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.svc-grid.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.svc { padding: 2rem 1.8rem; text-align: center; transition: background .2s; }
.svc.coming { opacity: .5; }
.svc-name    { font-family: var(--serif); font-size: 22px; margin-bottom: .3rem; line-height: 1.3; }
.svc-name-zh { font-size: 15px; letter-spacing: 2px; margin-bottom: .9rem; font-weight: 500; }
.svc-desc    { font-size: 13px; line-height: 1.9; margin-bottom: 1rem; }
.svc-price-row { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.svc-price { font-size: 13px; letter-spacing: 1px; }
.svc-link  { display: inline-block; font-size: 11px; letter-spacing: 2px; padding: 5px 14px; border-radius: 20px; text-transform: uppercase; border-width: .5px; border-style: solid; }
.badge { display: inline-block; font-size: 9px; letter-spacing: 2px; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; margin-bottom: .6rem; border-width: .5px; border-style: solid; }

/* ── DIVIDER ─────────────────────────────────────── */
.divider { width: 36px; height: .5px; margin: 2.8rem auto; }

/* ── NOTICE ──────────────────────────────────────── */
.notice {
  padding: 1.2rem 1.8rem;
  border-left: 2px solid;
  font-size: 13px;
  line-height: 1.9;
  border-radius: 0 8px 8px 0;
}
.notice strong { font-weight: 500; }

/* ── ABOUT GRID ──────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 var(--page-pad);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-card { padding: 2.5rem; }
.about-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 1.2rem;
}
.about-img-ph {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.about-img-ph span { font-size: 8px; letter-spacing: 1px; text-align: center; line-height: 1.4; }
.about-role  { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: .3rem; }
.about-name  { font-family: var(--serif); font-size: 28px; font-weight: 300; margin-bottom: .15rem; }
.about-name em { font-style: italic; }
.about-name-zh { font-size: 11px; letter-spacing: 3px; margin-bottom: 1rem; }
.about-text  { font-size: 13px; line-height: 2; }
.about-text p { margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-btns  { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.dm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 20px;
  text-transform: uppercase;
  border-width: .5px; border-style: solid;
}
.dm-btn i { font-size: 14px; }
.wechat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 20px;
  text-transform: uppercase; cursor: pointer; background: none;
  border-width: .5px; border-style: solid;
}
.wechat-btn i { font-size: 14px; }

/* ── CONTACT ITEMS ───────────────────────────────── */
.ci {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  margin-bottom: .6rem; line-height: 1.6;
}
.ci:hover { opacity: .85; }
.bi {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bi i   { font-size: 16px; }
.bi img { width: 18px; height: 18px; border-radius: 4px; object-fit: cover; display: block; }

/* ── SOCIAL ICON COLOURS ─────────────────────────── */
.si-instagram { color: var(--color-instagram); }
.si-facebook  { color: var(--color-facebook); }
.si-wechat    { color: var(--color-wechat); }
.si-line      { color: var(--color-line); }
.si-whatsapp  { color: var(--color-whatsapp); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1.8rem;
  font-size: 12px; letter-spacing: 2px;
}

/* ── PRESS-ON GRID (Nail page) ───────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 var(--page-pad);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.press-card { padding: 2.2rem 2rem; }
.press-title    { font-family: var(--serif); font-size: 20px; margin-bottom: .15rem; }
.press-title-zh { font-size: 10px; letter-spacing: 2px; margin-bottom: 1rem; }
.press-desc  { font-size: 11px; line-height: 1.9; margin-bottom: 1.2rem; }
.size-row    { display: flex; gap: 6px; margin-bottom: 1rem; flex-wrap: wrap; }
.size-tag    { font-size: 10px; font-weight: 500; padding: 4px 12px; border-radius: 8px; border-width: .5px; border-style: solid; }
.press-features  { margin-bottom: 1.2rem; }
.press-feature   { font-size: 10px; line-height: 1.8; padding-left: .8rem; border-left-width: 1.5px; border-left-style: solid; margin-bottom: .4rem; }
.press-price     { font-size: 12px; letter-spacing: 1px; margin-bottom: .3rem; }
.press-price-note{ font-size: 10px; font-style: italic; }
.press-btn { display: inline-block; font-size: 9px; letter-spacing: 2px; padding: 8px 18px; border-radius: 20px; text-transform: uppercase; margin-top: 1rem; border-width: .5px; border-style: solid; }

/* ════════════════════════════════════════════════════
   RWD — TABLET  (max 1024px)
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --page-pad: 1.5rem; }

  .hero-split { grid-template-columns: 1fr 1fr; min-height: 400px; }
  .hero-left  { padding: 3rem var(--page-pad) 3rem 2rem; }
  .hero-title { font-size: 42px; }
  .hero-desc  { font-size: 13px; max-width: 100%; }

  .svc-grid.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

  .nav-links a  { font-size: 12px; gap: 1.2rem; }
  .nav-links    { gap: 1.2rem; }
}

/* ════════════════════════════════════════════════════
   RWD — MOBILE  (max 768px)
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --page-pad: 1rem; }

  /* NAV */
  .kmc-nav { flex-wrap: wrap; padding: .9rem var(--page-pad); }
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }

  /* HERO → stack */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left  { padding: 2.5rem var(--page-pad) 1.5rem; }
  .hero-right { padding: 1.5rem var(--page-pad) 2.5rem; min-height: 220px; }
  .hero-title { font-size: 36px; }
  .hero-zh    { font-size: 13px; }
  .hero-desc  { font-size: 13px; max-width: 100%; }
  .hero-img-ph{ width: 200px; height: 200px; }

  /* SECTION LABELS */
  .sec-title { font-size: 26px; }
  .sec-zh    { font-size: 12px; }

  /* CAT */
  .cat-wrap { margin: 0 var(--page-pad) 1.5rem; }

  /* SERVICE GRID → 1 col mobile, 2 col tablet */
  .svc-grid.g3 { grid-template-columns: 1fr; }
  .svc-grid.g2 { grid-template-columns: 1fr; }
  .svc { padding: 1.5rem; }
  .svc-name    { font-size: 20px; }
  .svc-name-zh { font-size: 13px; }
  .svc-desc    { font-size: 12px; }

  /* ABOUT → stack */
  .about-grid { grid-template-columns: 1fr; margin: 0 var(--page-pad); }
  .about-card { padding: 1.8rem var(--page-pad); }
  .about-name { font-size: 24px; }
  .about-text { font-size: 13px; }

  /* PRESS-ON → stack */
  .press-grid { grid-template-columns: 1fr; margin: 0 var(--page-pad); }
  .press-card { padding: 1.8rem var(--page-pad); }

  /* FOLLOW US inline override */
  .follow-grid-rwd { grid-template-columns: 1fr !important; }

  /* NOTICE */
  .notice { margin: 0 var(--page-pad); font-size: 12px; }

  /* Buttons wrap */
  .about-btns { flex-direction: column; align-items: flex-start; }
  .dm-btn, .wechat-btn { width: 100%; justify-content: center; }

  /* DIVIDER */
  .divider { margin: 2rem auto; }
}

/* ════════════════════════════════════════════════════
   RWD — SMALL MOBILE (max 480px)
   ════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .sec-title  { font-size: 24px; }
  .about-name { font-size: 22px; }
  .svc-name   { font-size: 18px; }
}
