/* =========================================================================
   Sunny Rejuvenation — shared stylesheet
   Used by every page in both languages (zh at /, en at /en/). All asset
   paths in the HTML are absolute (/css, /js, /images) so the same files
   work from any directory depth.
   ========================================================================= */

:root {
  --cream: #F7F1E8;
  --cream-alt: #F0E6D8;
  --cream-deep: #E9DCC9;
  --ink: #3A2A1E;
  --coffee: #4A3427;
  --coffee-deep: #33231A;
  --gold: #B5883E;
  --gold-light: #D9B778;
  --gold-pale: #EBD9B4;
  --blush: #E7C9B6;
  --leaf: #7A9471;
  --leaf-dark: #5E7856;
  --border: rgba(74, 52, 39, 0.15);
  --border-strong: rgba(74, 52, 39, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px -10px rgba(74, 52, 39, 0.4);
  --shadow-md: 0 18px 40px -18px rgba(74, 52, 39, 0.45);
  --shadow-lg: 0 30px 70px -24px rgba(74, 52, 39, 0.5);
  --header-h: 70px;
  --serif: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

/* `clip`, not `hidden`, and only on <html>. `overflow-x: hidden` on <body>
   turns body into a scroll container, which stops position:sticky descendants
   (the header) from ever sticking — they scroll away with the page. `clip`
   contains stray horizontal overflow without creating a scroll container. */
html { overflow-x: clip; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.wrap-narrow { max-width: 860px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--coffee);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
a { color: var(--coffee); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: block;
}
.eyebrow.center { text-align: center; }

.center { text-align: center; }
.lead { font-size: 1.08rem; }
.muted { opacity: 0.72; }

/* A hairline gold rule used as a section flourish */
.rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.2em;
}
.rule-left { margin-left: 0; margin-right: 0; background: linear-gradient(90deg, var(--gold), transparent); }

/* =========================== Buttons ==================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coffee);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  min-height: 46px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease, color 0.3s ease;
}
/* gold wipe that sweeps in from the left on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-out);
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateX(0); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--coffee);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--coffee-deep); }

.btn-small { padding: 11px 22px; font-size: 0.85rem; min-height: 40px; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold::after { background: linear-gradient(120deg, var(--coffee), var(--coffee-deep)); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==================== Scroll progress + page curtain ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--coffee));
  z-index: 60;
  pointer-events: none;
}

/* Cross-page transition: a cream curtain wipes over the viewport before the
   browser navigates, and the incoming page fades/rises in. Purely additive —
   if JS is off, links behave completely normally. */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(160deg, var(--cream), var(--cream-deep));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.page-curtain.is-active { opacity: 1; }
.page-curtain-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.32s ease 0.06s, transform 0.5s var(--ease-out) 0.06s;
}
.page-curtain.is-active .page-curtain-mark { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (prefers-reduced-motion: no-preference) {
  .js-transitions main,
  .js-transitions .site-footer { animation: page-in 0.6s var(--ease-out) both; }
  .js-transitions .site-footer { animation-delay: 0.05s; }
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================== Language modal ============================= */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(58, 42, 30, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fade-in 0.4s ease both;
}
.lang-modal.is-hidden { display: none; }
.lang-modal-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modal-rise 0.5s var(--ease-out) both;
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.lang-modal-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--coffee);
  margin: 0 0 1.4em;
}
.lang-modal-actions { display: grid; gap: 12px; }
.lang-btn { width: 100%; }

/* =============================== Header ================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.82);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(74, 52, 39, 0.8);
  background: rgba(247, 241, 232, 0.93);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 10px 24px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--coffee);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.93rem;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease-out);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.site-nav a[aria-current="page"] { color: var(--gold); font-weight: 600; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language toggle pill. Each language is a separate static page, so this is
   just two links; which side is active is set per-file. */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch-opt {
  position: relative;
  z-index: 1;
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.lang-switch-opt.is-active { color: var(--cream); }
.lang-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--coffee);
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out);
  z-index: 0;
}
.lang-switch-thumb-en { transform: translateX(100%); }

/* Hamburger — hidden on desktop, drives the mobile drawer */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--coffee);
  border-radius: 2px;
  transition: transform 0.32s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================== Hero ==================================== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 9vw, 104px) 0 clamp(60px, 9vw, 96px);
  background: linear-gradient(170deg, var(--cream-deep) 0%, var(--cream-alt) 45%, var(--cream) 100%);
}
/* Slow-drifting aurora wash behind the hero content */
.hero-aurora {
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(38% 44% at 22% 28%, rgba(217, 183, 120, 0.55), transparent 65%),
    radial-gradient(34% 40% at 78% 22%, rgba(231, 201, 182, 0.6), transparent 65%),
    radial-gradient(42% 46% at 62% 82%, rgba(122, 148, 113, 0.28), transparent 68%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-aurora { animation: aurora-drift 22s ease-in-out infinite alternate; }
}
@keyframes aurora-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.03); }
}
.hero .spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 10%), rgba(181, 136, 62, 0.26), transparent 70%);
}
.hero:hover .spotlight { opacity: 1; }

/* Drifting petals — decorative, generated in main.js, skipped for
   reduced-motion and on small screens where they only add noise. */
.hero-petals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -8%;
  width: 12px;
  height: 12px;
  border-radius: 50% 0 50% 50%;
  background: linear-gradient(140deg, #fff, var(--gold-pale));
  opacity: 0;
  animation: petal-fall linear infinite;
}
@keyframes petal-fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.75; }
  90%  { opacity: 0.5; }
  100% { transform: translate3d(var(--drift, 40px), 108vh, 0) rotate(420deg); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}
.hero-inner { max-width: 640px; min-width: 0; }
.hero .lead { font-size: clamp(1rem, 2.4vw, 1.12rem); max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6em; }

/* Small trust row under the hero buttons */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 2em;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  opacity: 0.8;
}
.hero-badges li { display: flex; align-items: center; gap: 7px; }
.hero-badges li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Shimmering display heading — skipped entirely under reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .shimmer {
    background: linear-gradient(100deg, var(--coffee) 35%, var(--gold-light) 50%, var(--coffee) 65%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer-sweep 6s ease-in-out infinite;
  }
}
@keyframes shimmer-sweep {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
}

/* ====================== Interior page hero ============================== */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 66px);
  background: linear-gradient(165deg, var(--cream-deep), var(--cream));
  text-align: center;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.35em; }
.page-hero p { max-width: 640px; margin-inline: auto; }
.page-hero-glow {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 160%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(40% 50% at 30% 40%, rgba(217, 183, 120, 0.5), transparent 68%),
    radial-gradient(36% 46% at 74% 34%, rgba(231, 201, 182, 0.55), transparent 68%);
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero-glow { animation: aurora-drift 24s ease-in-out infinite alternate; }
}

/* ============================ Marquee =================================== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--cream-alt);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 34s linear infinite; }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--coffee);
  padding: 0 26px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 26px;
  opacity: 0.85;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================ Sections ================================== */
.section { padding: clamp(58px, 8vw, 92px) 0; position: relative; }
.section-alt { background: var(--cream-alt); }
.section-deep {
  background: linear-gradient(165deg, var(--coffee), var(--coffee-deep));
  color: var(--cream);
}
.section-deep h2, .section-deep h3 { color: var(--cream); }
.section-deep .eyebrow { color: var(--gold-light); }
.section-tight { padding-block: clamp(42px, 6vw, 64px); }

/* Reveal-on-scroll. Elements start hidden only when motion is allowed, so a
   reduced-motion or no-JS visitor always sees the full page. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s var(--ease-out) var(--reveal-delay, 0s),
      transform 0.6s var(--ease-out) var(--reveal-delay, 0s);
  }
  .js-reveal [data-reveal="left"]  { transform: translate3d(-28px, 0, 0); }
  .js-reveal [data-reveal="right"] { transform: translate3d(28px, 0, 0); }
  .js-reveal [data-reveal="zoom"]  { transform: scale(0.94); }
  .js-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }
}

/* ============================== About =================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}
.about-copy { min-width: 0; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: grid;
  gap: 11px;
}
.checklist li {
  padding-left: 1.7em;
  position: relative;
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Vertical timeline used on the About page */
.timeline {
  list-style: none;
  margin: 2.5em 0 0;
  padding: 0 0 0 30px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--border), transparent);
}
.timeline li { position: relative; padding-bottom: 2em; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
}
.timeline h3 { margin-bottom: 0.25em; font-size: 1.12rem; }
.timeline p { margin: 0; font-size: 0.95rem; opacity: 0.85; }

/* Photo frames */
.portrait-frame, .real-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream-alt);
  box-shadow: var(--shadow-sm);
}
.portrait-frame img, .real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-frame { aspect-ratio: 3 / 4; }

/* Tilt cards: 3D pop-in on scroll, plus a subtle cursor-tilt once revealed. */
.tilt-card {
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out), box-shadow 0.35s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .tilt-card {
    opacity: 0;
    transform: perspective(900px) translateY(30px) rotateX(16deg) scale(0.93);
  }
  .tilt-card.in {
    opacity: 1;
    transform: perspective(900px) translateY(0) rotateX(0deg) scale(1);
  }
  .tilt-card:hover { box-shadow: var(--shadow-lg); }
}

/* ============================== Cards =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 2.6em;
}
.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  overflow: hidden;
  isolation: isolate;
  min-width: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}
/* cursor-following sheen (coords set from main.js) */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(240px circle at var(--cx, 50%) var(--cy, 0%), rgba(217, 183, 120, 0.28), transparent 70%);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card:hover::before { opacity: 1; }
.service-card h3 { margin-bottom: 0.4em; }
.service-card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  color: var(--gold);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.service-card:hover .card-icon { transform: translateY(-2px) rotate(-6deg); background: var(--gold-pale); }
.card-icon svg { width: 22px; height: 22px; }

.service-card-cta {
  background: linear-gradient(160deg, var(--coffee), var(--coffee-deep));
  color: var(--cream);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.service-card-cta h3, .service-card-cta p { color: var(--cream); }
.service-card-cta .card-icon { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); color: var(--gold-light); }
.service-card-cta .btn { background: var(--gold); color: var(--coffee-deep); margin-top: 10px; }
.service-card-cta .btn::after { background: linear-gradient(120deg, var(--gold-light), #fff); }

/* Three-up feature row on the home page */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 2.5em;
}
.feature {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  min-width: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature .card-icon { margin-inline: auto; }
.feature h3 { font-size: 1.15rem; }
.feature p { font-size: 0.93rem; margin-bottom: 0; opacity: 0.85; }

/* ==================== Treatment / concern groups ======================== */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2.4em;
}
.concern-group {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.section-alt .concern-group { background: var(--cream); }
.concern-group:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.concern-group h3 { margin-bottom: 0.15em; }
.concern-group .group-note {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2em;
}
.concern-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.concern-list li {
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  transition: background 0.25s ease, transform 0.25s var(--ease-out), color 0.25s ease;
}
.concern-list li:hover { background: var(--gold-pale); transform: translateY(-2px); }

/* Compliance / information callout */
.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 2.4em auto 0;
  max-width: 780px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.callout p:last-child { margin-bottom: 0; }

/* ============================== Pricing ================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 2.6em;
}
.price-group {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease;
}
.price-group:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.price-group h3 { margin-bottom: 0.7em; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.93rem;
}
.price-row:last-child { border-bottom: none; }
.price-row > span:first-child { min-width: 0; }
.price-row > span:last-child {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
/* Soft values ("Price varies by product", or a long list of assessable areas)
   must wrap. Note the `span.price-soft:last-child` selector: plain
   `.price-row .price-soft` LOSES to `.price-row > span:last-child` above on
   specificity, so nowrap stuck and these cells pushed the page sideways.
   min-width:0 is what actually lets the flex item shrink below min-content. */
.price-row > span.price-soft:last-child {
  white-space: normal;
  text-align: right;
  font-size: 0.85rem;
  min-width: 0;
  line-height: 1.45;
}
.pricing-footnote { margin-top: 2.4em; }

/* ============================== Gallery ================================= */
.gallery-note { opacity: 0.72; margin-bottom: 2em; }
.gallery-feature {
  max-width: 900px;
  margin: 2.5em auto 0;
  aspect-ratio: 16 / 10;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 2.4em;
}
/* Slow zoom on the framed photos when hovered */
.zoom-frame { overflow: hidden; }
.zoom-frame img { transition: transform 1.1s var(--ease-out); }
.zoom-frame:hover img { transform: scale(1.06); }

/* ============================== Reviews ================================= */
.review-card {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 2.5em auto 0;
}
.review-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.review-photo img { width: 100%; height: auto; display: block; }
.review-quotes { min-width: 0; }
.review-quotes blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--coffee);
  margin: 0 0 0.7em;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.review-caption { font-weight: 600; margin-top: 1em; margin-bottom: 0.3em; }
.review-disclaimer { font-size: 0.8rem; }
.note { font-style: italic; color: var(--gold); }

/* ============================== FAQ ===================================== */
.faq {
  max-width: 780px;
  margin: 2.4em auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  color: var(--coffee);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq-body { padding: 0 22px 20px; font-size: 0.93rem; opacity: 0.9; }
.faq-body p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-body { animation: faq-open 0.4s var(--ease-out) both; }
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ============================== Contact ================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.6em 0;
  display: grid;
  gap: 14px;
}
.contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.contact-details svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-details a { text-decoration: none; border-bottom: 1px solid var(--border); }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--sans);
  font-size: 16px; /* 16px keeps iOS Safari from zooming on focus */
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  max-width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 136, 62, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.6;
  margin: 0;
}
.form-note.is-error { color: #B0453B; opacity: 1; }
.form-note.is-success { color: #4A7A4E; opacity: 1; }
.contact-form button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Honeypot — present in the DOM for bots, invisible/unreachable for people */
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ========================= Closing CTA band ============================= */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: clamp(56px, 8vw, 88px) 0;
  background: linear-gradient(160deg, var(--coffee), var(--coffee-deep));
  color: var(--cream);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: -1;
  opacity: 0.35;
  background: radial-gradient(40% 50% at 30% 30%, rgba(217, 183, 120, 0.5), transparent 65%),
              radial-gradient(36% 44% at 72% 70%, rgba(231, 201, 182, 0.34), transparent 65%);
}
@media (prefers-reduced-motion: no-preference) {
  .cta-band::before { animation: aurora-drift 26s ease-in-out infinite alternate; }
}
.cta-band h2 { color: var(--cream); }
.cta-band p { max-width: 560px; margin-inline: auto; opacity: 0.85; }
.cta-band .btn { background: var(--gold); color: var(--coffee-deep); }
.cta-band .btn::after { background: linear-gradient(120deg, var(--gold-light), #fff); }
.cta-band .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(247, 241, 232, 0.4); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 1.6em; }

/* ======================= Prev / next page pager ========================= */
.page-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  margin-top: clamp(40px, 6vw, 64px);
}
.pager-link {
  text-decoration: none;
  display: grid;
  gap: 2px;
  max-width: 48%;
}
.pager-link small {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pager-link strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--coffee);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
  display: inline-block;
}
.pager-link:hover strong { color: var(--gold); }
.pager-next { text-align: right; margin-left: auto; }
.pager-next:hover strong { transform: translateX(4px); }
.pager-prev:hover strong { transform: translateX(-4px); }

/* =============================== Footer ================================= */
.site-footer {
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
  padding: clamp(44px, 6vw, 64px) 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 36px;
}
.footer-col { min-width: 0; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { max-width: 320px; opacity: 0.8; font-size: 0.88rem; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  opacity: 0.7;
}
.footer-bottom p { margin: 0; }

/* ============================ Back to top =============================== */
.to-top {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--coffee);
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out), background 0.2s ease;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); }

/* ======================= 3D lily (hero ornament) ======================== */
.lily-model {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  perspective: 1200px;
  flex-shrink: 0;
}
.lily-disc {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg);
  filter: drop-shadow(0 18px 30px rgba(74, 52, 39, 0.25));
  /* promote to its own GPU compositor layer — avoids the software-rendered
     jagged edges CSS 3D shapes can get when rotated to a shallow angle */
  will-change: transform;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}
@media (prefers-reduced-motion: no-preference) {
  .lily-model { animation: lily-float 7s ease-in-out infinite; }
}
@keyframes lily-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.lily-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0.5px);
}
.lily-back { transform: rotateY(180deg) translateZ(0.5px); }
.lily-petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 82px;
  margin: -82px 0 0 -23px;
  transform-origin: 50% 100%;
  background: linear-gradient(180deg, #ffffff, #f2ebdd);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  box-shadow: inset 0 -6px 10px rgba(74, 52, 39, 0.08), 0 2px 4px rgba(74, 52, 39, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.lily-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 75%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.65);
  z-index: 2;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.lily-leaf {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 62px;
  height: 34px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  /* softened corners — sharp geometric corners are what aliased at shallow
     3D viewing angles */
  border-radius: 8% 100% 8% 100%;
  box-shadow: 0 0 0 1px rgba(94, 120, 86, 0.15);
  z-index: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ------------------------- Training / certification ---------------------
   Photos of Sunny with her training certificates. Used on /about/ (both
   languages) and echoed on the CalerieLife page, which styles its own
   version — this block is only the site-palette one.
   ---------------------------------------------------------------------- */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 44px);
}

.cert-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.cert-card figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-deep);
}
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms var(--ease-out);
}
.cert-card:hover img { transform: scale(1.04); }

.cert-body { padding: 20px 22px 24px; }
.cert-body h3 { font-size: 1.1rem; margin: 0 0 0.3em; }
.cert-body .cert-where {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.7em;
  font-family: var(--sans);
}
.cert-body p { margin: 0; font-size: 0.93rem; line-height: 1.7; }

/* ------------------------------ Legal pages ----------------------------
   Long-form prose for /terms/ and /privacy/ (and their /en/ mirrors). Plain
   document typography — no cards, no reveal-dependent styling, so the text
   is readable even with JS off.
   ---------------------------------------------------------------------- */

.legal { max-width: 780px; margin-inline: auto; }

.legal > section { margin-bottom: clamp(30px, 4vw, 46px); }
.legal > section:last-child { margin-bottom: 0; }

.legal h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 0.6em;
  padding-bottom: 0.45em;
  border-bottom: 1px solid var(--border);
}
.legal h3 {
  font-size: 1.02rem;
  margin: 1.6em 0 0.5em;
}
.legal p, .legal li { line-height: 1.85; }
.legal p { margin: 0 0 1em; }
.legal ul, .legal ol { margin: 0 0 1em; padding-left: 1.25em; }
.legal li { margin-bottom: 0.5em; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }

/* "Last updated" strip that sits above the first section */
.legal-meta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0 0 clamp(26px, 4vw, 40px);
  padding-bottom: 1em;
  border-bottom: 1px dashed var(--border);
}

/* Key/value block for the business contact details */
.legal-contact {
  list-style: none;
  padding: clamp(18px, 2.6vw, 24px);
  margin: 0 0 1em;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.legal-contact li { margin-bottom: 0.45em; }
.legal-contact li:last-child { margin-bottom: 0; }

/* Inline jump list at the top of each legal page */
.legal-toc {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(30px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.legal-toc li { margin: 0; }
.legal-toc a {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--coffee);
  transition: border-color 260ms var(--ease-out), color 260ms var(--ease-out);
}
.legal-toc a:hover { border-color: var(--gold); color: var(--gold); }

/* Legal links in the footer bottom bar */
.footer-legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 0;
  margin: 0;
}
.footer-legal li { margin: 0; }

/* ============================ Responsive ================================ */

/* The English nav is noticeably wider than the Chinese one, so the header
   needs to start shedding weight well before the drawer takes over. */
@media (max-width: 1280px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 0.88rem; }
}

@media (max-width: 1160px) {
  /* Drop the header CTA first — every page still has prominent booking
     buttons in the body, and the nav itself links to /contact/. */
  .header-actions .btn-small { display: none; }
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 1040px) {
  :root { --header-h: 62px; }

  .nav-toggle { display: flex; }

  /* Mobile drawer: the same nav element, re-laid-out as a full-height panel.
     Deliberately position:absolute against .site-header, NOT fixed to the
     viewport — the header carries a backdrop-filter, and that makes it the
     containing block for any fixed-position descendant, which silently
     clamped this panel to the header's own 62px height. */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 26px 24px calc(40px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, transform 0.4s var(--ease-out), visibility 0.32s;
    border-top: 1px solid var(--border);
  }
  .site-nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .site-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .site-nav a::after { display: none; }
  .site-nav.is-open a {
    animation: nav-item-in 0.45s var(--ease-out) both;
    animation-delay: calc(var(--i, 0) * 55ms + 60ms);
  }
  @keyframes nav-item-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
  body.nav-open { overflow: hidden; }

  .header-actions .btn-small { display: none; }

  .about-grid,
  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  /* Once the two-column about layout stacks, the portrait must not stretch to
     the full container width — a 3/4 aspect box at ~860px wide would be over
     1100px tall. */
  .about-grid > .portrait-frame,
  .about-grid > .real-img { max-width: 320px; }
  .review-card { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .lily-model { margin: 0 auto; }
}

@media (max-width: 700px) {
  /* min-height + aspect-ratio on one element is a mobile-overflow trap: if a
     min-height is taller than the ratio wants, the browser re-derives WIDTH
     from the height and blows the box past its container. Nothing here sets
     a min-height alongside aspect-ratio — keep it that way. */
  .gallery-feature { aspect-ratio: 4 / 3; margin-top: 1.8em; }
  .wrap { padding-inline: 18px; }
  .header-inner { padding-inline: 18px; }
  .service-card, .price-group, .concern-group, .contact-form { padding: 24px 20px; }
  .review-quotes blockquote { font-size: 1.15rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .page-pager { gap: 22px; }
  .pager-link { max-width: 100%; }
  .pager-next { text-align: left; margin-left: 0; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
  .price-row { font-size: 0.9rem; }
  .marquee-item { font-size: 0.95rem; padding: 0 18px; gap: 18px; }
}

@media (max-width: 400px) {
  .logo { font-size: 1.2rem; }
  .lang-switch-opt { padding: 6px 10px; font-size: 0.7rem; }
  .lily-model { width: 160px; height: 160px; }
}

/* 320px (iPhone SE 1st gen and small Androids): logo + language pill +
   hamburger no longer fit on one line, so drop the wide letter-spaced
   tagline and tighten everything in the header bar. */
@media (max-width: 380px) {
  .header-inner { gap: 10px; padding-inline: 14px; }
  .logo { font-size: 1.08rem; min-width: 0; }
  .logo small { display: none; }
  .lang-switch-opt { padding: 6px 8px; font-size: 0.66rem; }
  .nav-toggle { width: 40px; height: 40px; }
  .wrap { padding-inline: 14px; }
}

/* Kill every non-essential animation for reduced-motion visitors */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-petals { display: none; }
}
