/* =========================================================
   萬利髮廊 MANLY SALON — Editorial stylesheet
   Palette: ivory + ink + gold accent (restrained luxury)
   ========================================================= */

:root {
  --ivory:        #ffffff;
  --ivory-soft:   #f7f7f7;
  --paper:        #ffffff;
  --ink:          #14100c;
  --ink-2:        #2a201a;
  --char:         #4a3d34;
  --muted:        #847468;
  --muted-2:      #b3a294;
  --line:         #e2d6c4;
  --line-soft:    #ede3d2;
  --gold:         #b9974f;
  --gold-deep:    #8d6f37;
  --gold-soft:    #d9bd84;

  --serif:  "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  --serif-tc: "Noto Serif TC", "Cormorant Garamond", serif;
  --sans:   "Inter", "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tc:     "Noto Sans TC", "Inter", sans-serif;

  --shadow-sm: 0 6px 20px rgba(20, 16, 12, 0.06);
  --shadow:    0 14px 40px rgba(20, 16, 12, 0.10);
  --shadow-lg: 0 30px 80px rgba(20, 16, 12, 0.16);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
::selection { background: var(--ink); color: var(--ivory); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 400; }
h3 { font-size: 1.4rem; }
h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.h-cn {
  display: block;
  font-family: var(--serif-tc);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--char);
  margin-top: 18px;
  line-height: 1.5;
}
h1 + .h-cn { font-size: clamp(1.2rem, 2vw, 1.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}

.muted { color: var(--muted); }
.small { font-size: 0.8rem; }
.lead  { font-size: 1.08rem; line-height: 1.7; }
.placeholder { color: var(--muted-2); font-style: italic; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Announcement bar (marquee)
   ========================================================= */
.announce {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}
.announce__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding: 11px 0;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}
.announce__track span {
  padding: 0 28px;
  opacity: 0.75;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.brand__logo {
  width: 96px; height: 96px;
  flex-shrink: 0;
  object-fit: contain;
  /* `darken` keeps only pixels DARKER than the background — the JPEG's white
     background falls away entirely, regardless of the navbar tint, while the
     black silhouette stays. */
  mix-blend-mode: darken;
}
.brand--footer .brand__logo {
  /* Dark footer: invert flips white→black and silhouette→white, then `lighten`
     keeps only the brighter pixels — silhouette glows ivory, white box drops out. */
  mix-blend-mode: lighten;
  filter: invert(1);
  width: 84px; height: 84px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; gap: 4px; }
.brand__cn {
  font-family: var(--serif-tc);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand__en {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__lang {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.nav__lang:hover { color: var(--ink); }

.icon-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s var(--ease);
  padding: 0;
}
.icon-btn:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.cart-btn { width: auto; padding: 0 18px; }
.cart-count {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gold-deep);
  color: var(--ivory);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold {
  background: var(--gold-deep);
  color: var(--ivory);
}
.btn--gold:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--full { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 100px 0 130px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(185, 151, 79, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(185, 151, 79, 0.06), transparent 60%),
    var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%; left: -100px;
  font-family: var(--serif);
  font-size: 24rem;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.025;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 30px; }
.hero h1 em { display: block; font-size: 0.95em; }
.hero__sub {
  font-size: 1.08rem;
  color: var(--char);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; margin-bottom: 70px; flex-wrap: wrap; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__meta > div:not(.divider) { display: flex; flex-direction: column; gap: 6px; }
.hero__meta strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.hero__meta span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.divider { width: 1px; height: 40px; background: var(--line); }

.hero__visual { position: relative; }
.hero__stage {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(217, 189, 132, 0.18), transparent 70%),
    linear-gradient(180deg, var(--ivory-soft) 0%, var(--ivory) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__bottle {
  width: 65%;
  filter: drop-shadow(0 30px 40px rgba(20, 16, 12, 0.25));
  animation: float 6s ease-in-out infinite;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__seal {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 96px; height: 96px;
  color: var(--gold-deep);
  animation: rotate 22s linear infinite;
  background: var(--ivory);
  border-radius: 50%;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
@keyframes rotate {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* =========================================================
   Press strip
   ========================================================= */
.press {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.press__lead {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.press__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.press__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--char);
  letter-spacing: 0.04em;
  font-style: italic;
}
.press__dot { color: var(--gold); font-size: 0.7rem; }

/* =========================================================
   Story
   ========================================================= */
.story { padding: 140px 0; }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.story__visual { position: relative; }
.story__photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(180deg, rgba(20, 16, 12, 0) 55%, rgba(20, 16, 12, 0.55) 100%),
    url("quarry%20bay.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story__photo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(245, 239, 230, 0.35);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 2;
}
.story__photo--video {
  background-image: linear-gradient(180deg, rgba(20, 16, 12, 0) 55%, rgba(20, 16, 12, 0.55) 100%);
  background-color: #0d0805;
}
.story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.story__photo--video .story__year { z-index: 3; }
.story__year {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  z-index: 1;
}
.story__quote {
  position: absolute;
  bottom: -40px; right: -30px;
  background: var(--paper);
  padding: 28px 32px;
  border-radius: var(--radius);
  max-width: 280px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.story__quote svg { color: var(--gold); margin-bottom: 12px; }
.story__quote p {
  font-family: var(--serif-tc);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 10px;
}
.story__quote span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.story__copy h2 { margin-bottom: 32px; }
.story__copy h2 em { display: block; }
.story__copy p { margin-bottom: 22px; }
.story__copy strong { color: var(--ink); font-weight: 600; }

.story__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
.value {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.value__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.16em;
  padding-top: 4px;
}
.value h4 { font-size: 0.85rem; padding-top: 4px; }
.value p { font-size: 0.92rem; color: var(--char); }

/* =========================================================
   Categories
   ========================================================= */
.categories {
  padding: 140px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--char); font-size: 1.05rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cat-card {
  position: relative;
  padding: 50px 36px 44px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 380px;
  color: var(--ink);
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.cat-card:hover { background: var(--ivory-soft); }
.cat__icon {
  width: 64px;
  height: 80px;
  color: var(--gold-deep);
  margin-bottom: 28px;
  transition: transform 0.5s var(--ease), color 0.3s var(--ease);
}
.cat-card:hover .cat__icon { transform: translateY(-6px); color: var(--ink); }
.cat__num {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.cat-card h3 {
  font-family: var(--serif-tc);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cat__en {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.cat__desc {
  font-size: 0.92rem;
  color: var(--char);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 26px;
}
.cat__cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cat-card:hover .cat__cta { color: var(--gold-deep); border-color: var(--ink); }

/* =========================================================
   Featured products
   ========================================================= */
.featured { padding: 140px 0; }

.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.tab {
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--char);
  transition: all 0.25s var(--ease);
}
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.active {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.product {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product__photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  display: grid;
  place-items: center;
}
.product__photo svg {
  width: 55%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(20, 16, 12, 0.18));
  transition: transform 0.6s var(--ease);
}
.product__photo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(20, 16, 12, 0.16));
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.product__photo img.is-loaded { opacity: 1; }
/* Skeleton shimmer behind the (still-loading) image */
.product__photo::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 70%) -200% 0/200% 100% no-repeat,
    rgba(20, 16, 12, 0.04);
  animation: img-shimmer 1.6s linear infinite;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}
.product__photo:has(img.is-loaded)::before { opacity: 0; }
.product__photo > * { position: relative; z-index: 1; }
@keyframes img-shimmer {
  to { background-position: 200% 0, 0 0; }
}
.product:hover .product__photo svg,
.product:hover .product__photo img { transform: translateY(-6px) scale(1.04); }
.product__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--ivory);
  padding: 5px 12px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--sans);
}
.product__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.product__body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product__cat {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-weight: 500;
}
.product__name {
  font-family: var(--serif-tc);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product__sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
  letter-spacing: 0.02em;
}
.product__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.product__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
}
.product__price s {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 400;
  margin-bottom: 2px;
}
.add-btn { flex-shrink: 0; }
.add-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.add-btn:hover { background: var(--ink); color: var(--ivory); }

/* =========================================================
   Ritual
   ========================================================= */
.ritual {
  padding: 140px 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(185, 151, 79, 0.08), transparent 60%),
    var(--ivory);
}
.ritual__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.ritual__copy { position: sticky; top: 120px; }
.ritual__copy h2 em { display: block; }
.ritual__copy p { margin-top: 24px; color: var(--char); font-size: 1.05rem; }

.ritual__steps { list-style: none; }
.ritual__steps li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.ritual__steps li:first-child { border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
}
.ritual__steps h4 {
  font-family: var(--serif-tc);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 8px;
}
.ritual__steps p { color: var(--char); font-size: 0.96rem; }

/* =========================================================
   Promise (ingredients)
   ========================================================= */
.promise {
  padding: 140px 0;
  background: var(--ink);
  color: var(--ivory);
}
.promise h2 { color: var(--ivory); }
.promise .eyebrow { color: var(--gold-soft); }

.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 20px;
}
.promise__col h4 {
  color: var(--gold-soft);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 189, 132, 0.3);
}
.promise__col ul { list-style: none; }
.promise__col li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.85);
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.promise__in li::before {
  content: "✓";
  color: var(--gold-soft);
  font-weight: 600;
}
.promise__out li::before {
  content: "—";
  color: var(--muted-2);
  opacity: 0.6;
}

/* =========================================================
   Salon services
   ========================================================= */
.salon { padding: 140px 0; }
.salon__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.salon__copy h2 em { display: block; }
.salon__copy p { margin: 24px 0 36px; color: var(--char); font-size: 1.05rem; max-width: 480px; }
.salon__list {
  list-style: none;
  margin-bottom: 44px;
  border-top: 1px solid var(--line);
}
.salon__list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif-tc);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  align-items: center;
}
.salon__list li span {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.18em;
}

.salon__visual { position: relative; }
.salon__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(217, 189, 132, 0.4), transparent 60%),
    linear-gradient(135deg, #4a3d34 0%, #1a120c 70%, #14100c 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.salon__photo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(217, 189, 132, 0.3);
  border-radius: calc(var(--radius-lg) - 8px);
}
.salon__photo::after {
  content: "✂ ・ SALON ・ ✂";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.45em;
  color: rgba(217, 189, 132, 0.55);
}
.salon__caption {
  position: absolute;
  bottom: -30px; left: 30px; right: 30px;
  background: var(--paper);
  padding: 22px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.salon__caption strong {
  font-family: var(--serif-tc);
  font-size: 1rem;
  font-weight: 600;
}
.salon__caption span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* =========================================================
   Reviews
   ========================================================= */
.reviews { padding: 140px 0; background: var(--ivory-soft); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--paper);
  padding: 40px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stars {
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}
.review p {
  font-family: var(--serif-tc);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}
.review__author {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter { padding: 100px 0; }
.newsletter__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--paper);
  padding: 70px 80px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.newsletter h2 { margin-bottom: 14px; }
.newsletter p { color: var(--char); }
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.newsletter__form input {
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.92rem;
  background: var(--ivory-soft);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 100px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
}
.brand--footer { color: var(--ivory); }
.brand--footer .brand__cn { color: var(--ivory); }
.brand--footer .brand__en { color: var(--gold-soft); }
.footer .muted { color: rgba(245, 239, 230, 0.65); }
.footer__brand p { margin: 22px 0 24px; max-width: 320px; line-height: 1.6; font-size: 0.92rem; }
.footer h4 {
  color: var(--gold-soft);
  margin-bottom: 24px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
}
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245, 239, 230, 0.7);
  padding: 7px 0;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__col p { font-size: 0.88rem; margin-bottom: 10px; }

.socials { display: flex; gap: 22px; }
.socials a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid rgba(245, 239, 230, 0.3);
  padding-bottom: 3px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.socials a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

.footer__bottom {
  padding: 26px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.55);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.payments { display: flex; gap: 16px; flex-wrap: wrap; }
.payments span {
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-style: italic;
  color: rgba(245, 239, 230, 0.7);
}

/* =========================================================
   Cart drawer
   ========================================================= */
.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 92vw;
  background: var(--ivory);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart.open { transform: translateX(0); }
.cart__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(2px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cart__backdrop.open { opacity: 1; pointer-events: auto; }
.cart__head {
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__head h3 { font-size: 1.4rem; font-family: var(--serif); font-weight: 500; }
.cart__head .small { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }
.cart__body { flex: 1; padding: 24px 30px; overflow-y: auto; }
.cart__empty {
  text-align: center;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}
.cart__empty svg { color: var(--muted-2); }
.cart__empty p { line-height: 1.6; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__photo {
  width: 80px; height: 100px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cart-item__photo svg { width: 60%; }
.cart-item__photo img { width: 80%; height: 80%; object-fit: contain; }
.cart-item__main { display: flex; flex-direction: column; }
.cart-item__name {
  font-family: var(--serif-tc);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.cart-item__sub { font-size: 0.74rem; color: var(--muted); margin-bottom: 12px; letter-spacing: 0.04em; }
.cart-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50px;
  overflow: hidden;
}
.cart-item__qty button {
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink);
}
.cart-item__qty button:hover { background: var(--paper); }
.cart-item__qty span {
  min-width: 24px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
}
.cart-item__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 6px;
  padding: 0;
  align-self: flex-start;
}
.cart-item__remove:hover { color: var(--ink); }

.cart__foot {
  padding: 24px 30px 28px;
  border-top: 1px solid var(--line);
  background: var(--ivory-soft);
}
.cart__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 8px;
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
.cart__total strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}
.cart__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  width: 100%;
  justify-content: center;
}

/* =========================================================
   Checkout modal
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.modal.open { display: flex; }
.modal__inner {
  background: var(--ivory);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 50px 50px 44px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
}
.modal h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 6px 0 0;
}
.checkout-form { margin-top: 28px; }
.checkout-form h4 {
  margin: 24px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.checkout-form h4:first-of-type { margin-top: 0; }
.checkout-form label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 14px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.checkout-form input,
.checkout-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.2s var(--ease);
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.checkout-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.pay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--paper);
  font-size: 0.88rem;
  margin: 0 !important;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
  transition: all 0.2s var(--ease);
}
.pay:hover { border-color: var(--ink); }
.pay:has(input:checked) { border-color: var(--ink); background: var(--ivory-soft); box-shadow: 0 0 0 1px var(--ink) inset; }
.pay input { width: auto !important; margin: 0 !important; padding: 0 !important; accent-color: var(--ink); }

.checkout-summary {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.checkout-summary strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .nav__links { gap: 24px; }
  .hero__inner, .story__grid, .salon__grid, .ritual__grid, .newsletter__inner { grid-template-columns: 1fr; gap: 60px; }
  .ritual__copy { position: static; }
  .cat-grid, .products { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 50px; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav__inner { padding: 18px 22px; gap: 12px; }
  .nav__links { display: none; }
  .brand__en { display: none; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 60px 0 90px; }
  .hero__cta { gap: 8px; }
  .hero__meta { gap: 18px; flex-wrap: wrap; }
  .hero__meta strong { font-size: 1.6rem; }
  .divider { display: none; }
  .hero__seal { width: 72px; height: 72px; bottom: 16px; right: 16px; }
  .story, .categories, .featured, .ritual, .promise, .salon, .reviews, .newsletter { padding: 80px 0; }
  .story__quote { position: static; margin-top: 24px; max-width: none; }
  .cat-grid, .products, .promise__grid, .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .promise__grid { gap: 50px; }
  .newsletter__inner { padding: 40px 28px; }
  .newsletter__form { grid-template-columns: 1fr; }
  .salon__list { columns: 1; }
  .checkout-form .row, .pay-methods { grid-template-columns: 1fr; }
  .modal__inner { padding: 36px 24px; }
  .value { grid-template-columns: 50px 1fr; }
  .value h4 { padding-top: 0; margin-top: 6px; grid-column: 2; }
  .value p { grid-column: 2; }
  .ritual__steps li { grid-template-columns: 60px 1fr; gap: 16px; }
  .step__num { font-size: 1.8rem; }
  .footer__inner { gap: 40px; padding-bottom: 50px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   FOOTER LINK + ZOOM HINT
   ========================================================= */
.footer__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 239, 230, 0.25);
  transition: border-color 0.2s var(--ease);
}
.footer__link:hover { border-bottom-color: var(--gold); }

.product__photo { cursor: pointer; }
.product__name  { cursor: pointer; }
.product__zoom {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(26, 18, 12, 0.85);
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.product:hover .product__zoom { opacity: 1; transform: translateY(0); }

/* =========================================================
   PRODUCT DETAIL MODAL
   ========================================================= */
.modal--product { padding: 24px; }
.modal--product.open { display: flex; align-items: center; justify-content: center; }
.pm__inner {
  background: var(--paper);
  width: min(1100px, 100%);
  max-height: 92vh;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pm__inner .modal__close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
}
.pm__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: auto;
  max-height: 92vh;
}
.pm__gallery {
  background: var(--ivory-soft);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pm__main-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pm__main {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(20, 16, 12, 0.18));
  transition: opacity 0.25s var(--ease);
}
.pm__main.loading { opacity: 0.25; }
.pm__main-wrap::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 70%) -200% 0/200% 100% no-repeat,
    rgba(20, 16, 12, 0.04);
  animation: img-shimmer 1.6s linear infinite;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.25s var(--ease);
}
.pm__main-wrap:has(.pm__main.loading)::before { opacity: 1; }
.pm__main, .pm__nav { position: relative; z-index: 1; }
.pm__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 18, 12, 0.85);
  color: var(--ivory);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease);
}
.pm__nav:hover { background: var(--ink); }
.pm__prev { left: 14px; }
.pm__next { right: 14px; }
.pm__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding-bottom: 4px;
}
.pm-thumb {
  flex: 0 0 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ivory);
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.pm-thumb img { width: 90%; height: 90%; object-fit: contain; }
.pm-thumb:hover { transform: translateY(-1px); }
.pm-thumb.active { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }

.pm__info {
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.pm__badge {
  position: static;
  align-self: flex-start;
  margin-bottom: 4px;
}
.pm__cat {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.pm__name {
  font-family: var(--serif-tc);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 4px 0 0;
}
.pm__sub {
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pm__price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 8px;
}
.pm__price s { color: var(--muted); font-weight: 400; font-size: 1.1rem; margin-right: 8px; }
.pm__desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4a3f37;
}
.pm__desc p { margin: 0 0 12px; }
.pm__desc .pm-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.pm__desc .pm-bullets li {
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 4px;
}
.pm__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
}
.pm__actions .btn { flex: 1 1 0; min-width: 180px; justify-content: center; }

@media (max-width: 880px) {
  .pm__grid { grid-template-columns: 1fr; }
  .pm__gallery { padding: 22px 22px 16px; }
  .pm__info { padding: 24px 22px 28px; }
  .pm__name { font-size: 1.4rem; }
  .pm__thumbs { max-height: 110px; }
  .pm-thumb { flex: 0 0 54px; height: 54px; }
}

/* =========================================================
   MOBILE NAV DRAWER — slides from the right on phones
   Visually hidden on desktop (the .nav__burger is too).
   ========================================================= */
.nav__burger { display: none; }

.mnav {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 88vw);
  height: 100dvh;
  background: var(--paper);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px rgba(20, 16, 12, 0.18);
  padding-top: env(safe-area-inset-top);
}
.mnav.open { transform: translateX(0); }

.mnav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.mnav__title {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}

.mnav__links {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.mnav__links a {
  display: flex;
  flex-direction: column;
  padding: 18px 26px;
  gap: 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s var(--ease), padding 0.25s var(--ease);
}
.mnav__links a:active,
.mnav__links a:hover { background: var(--ivory-soft); padding-left: 32px; }
.mnav__cn {
  font-family: var(--serif-tc);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.mnav__en {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.mnav__foot {
  border-top: 1px solid var(--line-soft);
  padding: 22px 26px calc(22px + env(safe-area-inset-bottom));
  background: var(--ivory-soft);
}
.mnav__phone {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.mnav__socials { display: flex; gap: 18px; flex-wrap: wrap; }
.mnav__socials a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.mnav__backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 16, 12, 0.45);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
}
.mnav__backdrop.open { opacity: 1; pointer-events: auto; }

/* =========================================================
   MOBILE — focused improvements
   ========================================================= */
@media (max-width: 720px) {
  /* Tighter sticky header — give back vertical space */
  .nav__inner { padding: 12px 18px; gap: 10px; }
  .brand__logo { width: 56px; height: 56px; }
  .brand__cn { font-size: 1rem; }
  .nav__lang { display: none; }       /* was eating space; lives in mobile menu instead */
  .nav__burger { display: inline-flex; }

  /* Cart icon — bigger touch target */
  .icon-btn { width: 42px; height: 42px; }
  .cart-count {
    top: -2px; right: -2px;
    min-width: 18px; height: 18px;
    font-size: 0.62rem;
    line-height: 18px;
  }

  /* Announcement marquee — faster on mobile so it doesn't feel stuck */
  .announce__track { animation-duration: 30s; font-size: 0.66rem; padding: 9px 0; }
  .announce__track span { padding: 0 18px; }

  /* Hero — calmer typography, better stat layout */
  .hero { padding: 40px 0 70px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.05; }
  .hero__sub { font-size: 0.95rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; padding: 14px 22px; }
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 18px 0 4px;
    border-top: 1px solid var(--line);
  }
  .hero__meta > div:not(.divider) {
    text-align: center;
    padding: 10px 6px;
    border-right: 1px solid var(--line-soft);
  }
  .hero__meta > div:last-child { border-right: none; }
  .hero__meta strong { font-size: 1.4rem; display: block; margin-bottom: 4px; }
  .hero__meta span { font-size: 0.66rem; line-height: 1.35; }
  .hero__stage { aspect-ratio: 1 / 1; }
  .hero__seal { width: 64px; height: 64px; bottom: 12px; right: 12px; }

  /* Section padding tightened */
  .story, .categories, .featured, .ritual, .salon, .reviews { padding: 64px 0; }

  /* Eyebrows — slightly larger so they're readable */
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; margin-bottom: 16px; }

  /* Headline Chinese subline — closer to the H */
  .h-cn { margin-top: 12px; font-size: 1.05rem; }

  /* Filter tabs — horizontal scroll instead of wrap */
  .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -22px 32px;
    padding: 4px 22px 14px;
    gap: 8px;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tabs .tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  /* Product cards — bigger touch targets, gentler aspect */
  .product__photo { aspect-ratio: 1 / 1; }
  .product__body { padding: 20px 20px 22px; }
  .product__name { font-size: 1.05rem; }
  .product__price { font-size: 1.15rem; }
  .add-btn { padding: 11px 18px; font-size: 0.74rem; min-height: 42px; }
  .product__zoom { display: none; }    /* hover-only label, hidden on touch */

  /* Cart drawer — fuller screen, bigger taps */
  .cart {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .cart__head { padding: 18px 22px; }
  .cart-item { padding: 16px 20px; gap: 14px; }
  .cart-item__photo { width: 72px; height: 72px; }
  .cart-item__qty button {
    width: 32px; height: 32px;
    font-size: 1rem;
  }
  .cart__foot { padding: 18px 22px calc(18px + env(safe-area-inset-bottom)); }
  .btn--full { padding: 14px 22px; font-size: 0.82rem; min-height: 50px; }

  /* Story video / photo — stop being huge on mobile */
  .story__photo { aspect-ratio: 4 / 5; }
  .story__year { top: 18px; left: 18px; font-size: 0.72rem; }
  .story__quote {
    padding: 22px 24px;
    background: var(--ivory-soft);
    border-radius: var(--radius);
  }
  .story__quote p { font-size: 1.02rem; line-height: 1.65; }

  /* Salon block — photo above, copy below */
  .salon__photo { aspect-ratio: 4 / 3; }
  .salon__list li { font-size: 0.95rem; }

  /* Reviews — comfortable single column */
  .review { padding: 26px 24px; }

  /* Footer — better touch padding */
  .footer__inner { padding-top: 60px; }
  .footer__col h4 { margin-bottom: 14px; }
  .footer__col a { padding: 6px 0; display: block; }
  .footer__bottom-inner { gap: 14px; padding: 22px 0 calc(22px + env(safe-area-inset-bottom)); font-size: 0.74rem; }
  .payments { flex-wrap: wrap; gap: 6px; }
  .payments span { font-size: 0.66rem; padding: 3px 7px; }

  /* Modals — phone-friendly */
  .modal__inner { padding: 28px 22px; max-height: 92dvh; }
  .modal__inner h3 { font-size: 1.4rem; }
  .checkout-form input, .checkout-form textarea {
    font-size: 16px;             /* prevents iOS zoom on focus */
    padding: 12px 14px;
  }
  .checkout-form label { font-size: 0.86rem; }
  .modal__close { width: 38px; height: 38px; }

  /* Product detail modal — stacked, touch-friendly */
  .pm__inner { max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .pm__nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .pm__actions { flex-direction: column; }
  .pm__actions .btn { width: 100%; min-width: 0; padding: 14px; min-height: 50px; }
  .pm__price { font-size: 1.4rem; }
}

/* Very small phones (≤ 380px) — last calibration */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 10px 14px; }
  .brand__logo { width: 48px; height: 48px; }
  .brand__cn { font-size: 0.92rem; }
  .hero h1 { font-size: 1.95rem; }
  h2 { font-size: 1.7rem; }
  .hero__meta strong { font-size: 1.2rem; }
}

/* =========================================================
   Mid-size phones (480-720px) — show 2 product columns
   so customers see more without scrolling
   ========================================================= */
@media (min-width: 480px) and (max-width: 720px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product__body { padding: 16px 16px 18px; }
  .product__name { font-size: 0.95rem; }
  .product__sub  { font-size: 0.78rem; }
  .product__price { font-size: 1rem; }
  .add-btn { padding: 8px 12px; font-size: 0.66rem; min-height: 36px; }
}
