/* ── MAISON CIELUNE — Shared Styles ── */
:root {
  /* Sky palette — oklch for modern colour depth */
  --sky: #ceeaf8;
  --cloud: #f4f4f4;
  --dawn-gold: #ffebb0;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --navy: #1a2a3a;
  --beige-pillar: rgba(212,193,165,0.45);

  /* ── Design tokens (superdesign oklch scale) ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Spring easing presets */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);  /* bouncy overshoot */
  --ease-out:    cubic-bezier(0.0,  0.0,  0.2,  1);  /* fast in, slow out */
  --ease-in-out: cubic-bezier(0.4,  0.0,  0.2,  1);  /* symmetric */

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
}

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

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Smooth scroll + selection ── */
html { scroll-behavior: smooth; }
::selection { background: rgba(206,234,248,0.4); color: var(--navy); }

/* ── LANGUAGE TOGGLE — three-state: show only the active language ── */
/* Default (no language class): show EN */
[data-lang="en"] { display: inline; }
[data-lang="zh"],
[data-lang="ja"] { display: none; }

/* ZH active */
body.zh [data-lang="zh"] { display: inline; }
body.zh [data-lang="en"],
body.zh [data-lang="ja"] { display: none; }

/* JA active */
body.ja [data-lang="ja"] { display: inline; }
body.ja [data-lang="en"],
body.ja [data-lang="zh"] { display: none; }

/* EN active — reset to default */
body.en [data-lang="en"] { display: inline; }
body.en [data-lang="zh"],
body.en [data-lang="ja"] { display: none; }

/* ── NAV — Glassmorphism ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  /* Glassmorphism: translucent white with blur */
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(206,234,248,0.35);
  box-shadow: 0 1px 24px rgba(26,42,58,0.06);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 32px rgba(26,42,58,0.1);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo span { color: var(--sky); font-size: 0.85em; vertical-align: middle; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s var(--ease-out), font-size 0.2s var(--ease-out);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out), left 0.25s var(--ease-out), height 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  font-size: 0.88rem;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
  height: 2px;
}
.nav-cta {
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  padding: 8px 20px;
  border: 1px solid var(--sky);
  border-radius: var(--radius-pill);
  color: var(--navy) !important;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-spring), border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--sky) !important;
  transform: translateY(-1px);
}
.nav-cta:active { transform: translateY(0) scale(0.97); }
.lang-btns { display: flex; gap: 8px; align-items: center; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(206,234,248,0.6);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.72rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.2s var(--ease-out);
}
.lang-btn.active {
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 0 0 2px rgba(206,234,248,0.4);
}
.lang-btn:hover:not(.active) {
  background: var(--dawn-gold);
  border-color: var(--dawn-gold);
  transform: translateY(-1px);
}
.lang-btn:active { transform: scale(0.95); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  transition: opacity 0.2s;
}
.hamburger:hover { opacity: 0.6; }
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s, width 0.25s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO (shared) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;           /* taller than container for parallax travel */
  top: -7.5%;             /* starts centered, extends beyond top/bottom */
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transition: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(206,234,248,0.35) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(26,42,58,0.4) 100%
  );
  will-change: transform;
}

/* Cloud parallax layer — eased via JS rAF, not CSS transition */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  /* Removed linear transition — JS drives this with rAF for buttery 60fps */
}
.hero-clouds svg { width: 100%; height: 100%; }

/* ── European double-border frame ── */
.hero {
  box-shadow:
    inset 5px 0 0 rgba(212,193,166,0.5),    /* gold outer left */
    inset 6px 0 0 rgba(245,237,228,0.8),     /* cream inner left */
    inset -5px 0 0 rgba(212,193,166,0.5),   /* gold outer right */
    inset -6px 0 0 rgba(245,237,228,0.8),    /* cream inner right */
    inset 0 5px 0 rgba(212,193,166,0.5),     /* gold outer top */
    inset 0 6px 0 rgba(245,237,228,0.8);     /* cream inner top */
}

/* European pillar lines — gold gradient columns */
.hero-pillars::before,
.hero-pillars::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,
    rgba(212,193,166,0.9) 0%,
    rgba(212,193,166,0.5) 15%,
    rgba(212,193,166,0.3) 50%,
    rgba(212,193,166,0.5) 85%,
    rgba(212,193,166,0.9) 100%
  );
  z-index: 2;
  pointer-events: none;
}
/* Gold column capital — decorative top flourish */
.hero-pillars::before { left: 24px; }
.hero-pillars::after  { right: 24px; }

.hero-pillars::before::before,
.hero-pillars::after::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -6px;
  width: 16px;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(212,193,166,0.9) 0%, transparent 70%);
  border-radius: 50%;
}
/* Doric capital: horizontal bar at top of pillar */
.hero-pillars::before::after,
.hero-pillars::after::after {
  content: '';
  position: absolute;
  top: 0;
  left: -9px;
  width: 22px;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(212,193,166,0.8), transparent);
  border-radius: 2px;
}

/* Ornamental SVG corners */
.ornament-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}
.ornament-corner svg { width: 100%; height: 100%; }
.ornament-corner.top-left    { top: 12px; left: 12px; }
.ornament-corner.top-right   { top: 12px; right: 12px; }
.ornament-corner.bottom-left  { bottom: 12px; left: 12px; }
.ornament-corner.bottom-right { bottom: 12px; right: 12px; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
  /* Entrance: rise + fade in */
  animation: heroRise 0.9s var(--ease-out) both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: heroRise 0.7s var(--ease-out) 0.1s both; }
.hero-sub     { animation: heroRise 0.8s var(--ease-out) 0.25s both; }
.hero-title .star { color: var(--dawn-gold); }
.hero-sub {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── PAGE HERO (smaller, for interior pages) ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    inset 4px 0 0 rgba(212,193,166,0.4),
    inset 5px 0 0 rgba(245,237,228,0.7),
    inset -4px 0 0 rgba(212,193,166,0.4),
    inset -5px 0 0 rgba(245,237,228,0.7),
    inset 0 4px 0 rgba(212,193,166,0.4),
    inset 0 5px 0 rgba(245,237,228,0.7);
}
.page-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(206,234,248,0.4) 0%,
    rgba(26,42,58,0.5) 100%
  );
}

/* ── AUTO-SCROLLING CAROUSEL ── */
.carousel-section {
  overflow: hidden;
  background: var(--cloud);
  position: relative;
  box-shadow: inset 4px 0 0 var(--beige-pillar),
              inset -4px 0 0 var(--beige-pillar);
}
.carousel-track {
  display: flex;
  animation: carousel-scroll 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-slide {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) sepia(0.08);
  transition: filter 0.3s;
}
.carousel-slide:hover img { filter: brightness(1) sepia(0.04); }
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
section { padding: 100px 48px; }
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--sky); }

/* ── STORY SECTIONS ── */
.story-section {
  background: var(--white);
  padding: 100px 48px;
  border-top: 1px solid rgba(206,234,248,0.5);
  border-bottom: 1px solid rgba(206,234,248,0.5);
}
.story-section.designer {
  background: linear-gradient(180deg, var(--cloud) 0%, var(--white) 100%);
}
.story-header { text-align: center; margin-bottom: 60px; }
.story-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dawn-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.story-label::before,
.story-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--dawn-gold));
}
.story-label::after { background: linear-gradient(to left, transparent, var(--dawn-gold)); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.story-grid.reversed { direction: rtl; }
.story-grid.reversed > * { direction: ltr; }
.story-img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 6px 32px rgba(26,42,58,0.1);
}
.story-text { color: var(--text-light); line-height: 1.9; font-size: 0.95rem; font-weight: 300; }
.story-text p + p { margin-top: 16px; }
.story-text .name-cn {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px;
  display: block;
}
.story-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}
.story-tagline {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--sky);
  border-bottom: 1px solid var(--sky);
  padding: 10px 0;
}

/* ── VALUES ── */
.values-section { background: var(--cloud); padding: 80px 48px; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(206,234,248,0.4);
}
.value-emoji { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; font-weight: 300; margin-top: 4px; }
.value-name-en { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }

/* ── COLLECTION ── */
.collection { background: linear-gradient(180deg, var(--cloud) 0%, var(--white) 100%); }
.collection-header { text-align: center; margin-bottom: 56px; }
.collection-header .section-title { margin-bottom: 12px; }
.collection-header p { color: var(--text-light); font-weight: 300; font-size: 0.9rem; max-width: 480px; margin: 0 auto; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,42,58,0.07);
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(206,234,248,0.55), 0 4px 12px rgba(26,42,58,0.08);
}
.product-card:active { transform: translateY(-2px) scale(0.99); }
.product-img-wrap { aspect-ratio: 3/4; overflow: hidden; background: var(--cloud); }
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-info { padding: 18px 20px 20px; }
.product-name { font-size: 0.82rem; color: var(--navy); font-weight: 400; margin-bottom: 6px; line-height: 1.4; }
.product-price { font-size: 0.8rem; color: var(--text-light); font-weight: 300; }
.product-link {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--sky);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  max-width: 280px;
  margin: 0 auto;
  transition:
    background 0.2s var(--ease-out),
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s var(--ease-out);
}
.product-link:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(206,234,248,0.4);
}
.product-link:active { transform: translateY(0) scale(0.97); }

/* ── LOOKBOOK STRIP ── */
.lookbook-strip { display: flex; overflow: hidden; gap: 4px; height: 420px; }
.lookbook-strip img { flex: 1; height: 100%; object-fit: cover; transition: flex 0.4s; }
.lookbook-strip img:hover { flex: 2; }

/* ── STORES ── */
.stores { background: var(--white); }
.stores-header { text-align: center; margin-bottom: 56px; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.store-card {
  border: 1px solid rgba(206,234,248,0.6);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    border-color 0.25s;
}
.store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(206,234,248,0.45);
  border-color: rgba(206,234,248,0.9);
}
.store-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.store-district { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 14px; }
.store-detail { font-size: 0.85rem; color: var(--text-light); font-weight: 300; line-height: 1.8; }
.store-detail strong { color: var(--text); font-weight: 400; }

/* ── SOCIAL ── */
.social { background: linear-gradient(135deg, var(--sky) 0%, #d8f0fc 100%); text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin: 40px 0 48px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s var(--ease-out),
    background 0.2s;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,42,58,0.14);
}
.social-btn:active { transform: translateY(0) scale(0.96); }
.social-btn.insta { background: var(--white); color: var(--navy); }
.social-btn.fb { background: var(--navy); color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.5); text-align: center; padding: 40px 48px; font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 300; }
footer .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--sky); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }

  /* Mobile nav — smooth slide down */
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(206,234,248,0.4);
    box-shadow: 0 8px 40px rgba(26,42,58,0.1);
    /* Hidden by default — slide in with JS */
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s var(--ease-out),
      opacity 0.25s var(--ease-out);
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(206,234,248,0.3);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a {
    padding: 16px 24px;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
  }
  /* Mobile: hide all lang variants first, then show active */
  .nav-links li a { display: none !important; }
  /* Show active language on mobile */
  body.en .nav-links a[data-lang="en"] { display: block !important; }
  body.zh .nav-links a[data-lang="zh"] { display: block !important; }
  body.ja .nav-links a[data-lang="ja"] { display: block !important; }

  /* Dot separators between nav items */
  .nav-links li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .nav-links li:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: 0;
    color: rgba(26,42,58,0.3);
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
  }
  .nav-links li a { width: 100%; }

  /* Remove pill bubble from Shop on mobile */
  .nav-cta { border: none !important; border-radius: 0 !important; padding: 16px 24px !important; }
  .hamburger { display: flex; }

  .hero-pillars::before { left: 12px; }
  .hero-pillars::after  { right: 12px; }
  section { padding: 72px 24px; }
  .story-section { padding: 72px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-grid.reversed { direction: ltr; }
  .values-section { padding: 60px 24px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .store-grid { grid-template-columns: 1fr; }
  .lookbook-strip { height: 260px; }
  .carousel-slide { width: 260px; height: 170px; }
  .story-label::before,
  .story-label::after { width: 24px; }
  .page-hero { height: 40vh; min-height: 280px; }

  /* Social buttons — mobile: wrap and prevent overflow */
  .social-icons {
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 8px;
  }
  .social-btn {
    font-size: 0.72rem !important;
    padding: 10px 16px !important;
    flex: 1 1 auto;
    max-width: calc(50% - 6px);
    justify-content: center;
  }
  .social-btn span { display: inline; }

  /* Footer safe area for notched phones */
  footer {
    padding: 40px 24px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}
  /* Store detail: stack on mobile */
  @media (max-width: 768px) {
    .store-detail {
      flex-direction: column !important;
      gap: 4px !important;
    }
    .store-detail br { display: none; }
  }


  /* Store detail: stack on mobile */
  @media (max-width: 768px) {
    .store-detail { display: block !important; }
    .store-detail br { display: none; }
  }

}
