/* ============================================
   SUNNYLASH — Neutral Earthy Palette
   ============================================ */
:root {
  --cream: #FAF7F2;
  --beige: #EDE5D8;
  --sand:  #D4B896;
  --tan:   #A67C52;
  --taupe: #6B5A40;
  --coffee:#3D342B;
  --ink:   #1F1A15;
  --soft:  rgba(61,52,43,0.08);
  --soft-2:rgba(61,52,43,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1200px;
  --shadow: 0 10px 30px rgba(61,52,43,0.08);
  --shadow-hover: 0 20px 50px rgba(61,52,43,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--coffee);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--tan); text-decoration: none; }
a:hover { color: var(--coffee); }

img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--tan);
  font-weight: 500;
  margin: 0 0 1rem;
}
.eyebrow.center { text-align: center; }
.eyebrow.light  { color: var(--sand); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
}
.nav__mark { color: var(--tan); font-size: 1.2rem; }
.nav__name { font-weight: 500; }
.nav__links {
  display: flex; gap: 2rem;
  font-size: 0.9rem;
}
.nav__links a {
  color: var(--coffee);
  font-weight: 400;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--tan);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 30px; height: 24px;
  flex-direction: column; justify-content: space-between;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--coffee);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--soft);
  background: var(--cream);
}
.nav__mobile a { color: var(--coffee); font-size: 1rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s ease;
  text-align: center;
}
.btn--primary {
  background: var(--coffee);
  color: var(--cream);
  border-color: var(--coffee);
}
.btn--primary:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: white;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--coffee);
  border-color: var(--soft-2);
}
.btn--ghost:hover {
  background: var(--coffee);
  color: var(--cream);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,26,21,0.55) 0%, rgba(31,26,21,0.2) 60%, rgba(31,26,21,0.6) 100%),
              url('https://images.unsplash.com/photo-1583241475880-083f84372725?w=1200&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index: -1;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--cream);
}
.hero__title {
  color: white;
  max-width: 700px;
}
.hero__sub {
  max-width: 540px;
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 2.2rem;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__cta .btn--primary { background: var(--cream); color: var(--coffee); border-color: var(--cream); }
.hero__cta .btn--primary:hover { background: var(--tan); color: white; border-color: var(--tan); }
.hero__cta .btn--ghost { color: white; border-color: rgba(255,255,255,0.4); }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,0.12); color: white; }
.hero .eyebrow { color: var(--sand); }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============ STRIP ============ */
.strip {
  background: var(--beige);
  padding: 2.5rem 1.5rem;
}
.strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.strip h3 {
  font-size: 2.4rem;
  color: var(--tan);
  margin: 0;
}
.strip p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 1.5rem;
}
.section--cream { background: var(--beige); }
.section--dark  { background: var(--ink); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }

.section__title {
  text-align: center;
  margin-bottom: 1rem;
}
.section__title.left { text-align: left; }
.section__title.light { color: var(--cream); }
.section__sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: var(--taupe);
  font-size: 1.05rem;
}
.section--dark .section__sub { color: var(--sand); }
.section__sub.light { color: var(--sand); }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: sepia(0.35) saturate(0.85) brightness(0.95);
}
.service-card h3 {
  padding: 1.5rem 1.5rem 0;
}
.service-card p {
  padding: 0 1.5rem;
  color: var(--taupe);
  font-size: 0.95rem;
  flex: 1;
}
.service-card__meta {
  padding: 0.8rem 1.5rem 1.5rem;
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  color: var(--tan);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--soft);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.gallery__item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  transition: transform .4s ease, filter .4s ease;
  cursor: pointer;
  filter: sepia(0.35) saturate(0.85) brightness(0.95);
}
.gallery__item:hover {
  transform: scale(1.02);
  filter: sepia(0.2) saturate(1) brightness(1.05);
}

/* ============ CARE ============ */
.care {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.care__img {
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  filter: sepia(0.35) saturate(0.85) brightness(0.95);
}
.care__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.care__list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--soft);
  font-size: 0.98rem;
}
.care__list strong {
  color: var(--coffee);
  display: block;
  font-weight: 500;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}

/* ============ FIRST VISIT ============ */
.first-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.first-card {
  padding: 2rem 1.5rem;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(212,184,150,0.18);
  border-radius: var(--radius);
}
.first-card__num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--sand);
  margin-bottom: 0.8rem;
}
.first-card p {
  color: var(--sand);
  font-size: 0.92rem;
  margin: 0;
}

.first-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.first-form, .contact__form {
  background: var(--cream);
  color: var(--coffee);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.first-form h3 { margin-bottom: 0.3rem; }
.form-sub { color: var(--taupe); margin-bottom: 0.8rem; font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.first-form label, .contact__form label {
  display: flex; flex-direction: column;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  gap: 0.4rem;
}
.first-form input, .first-form select, .first-form textarea,
.contact__form input, .contact__form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--soft-2);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  text-transform: none;
  letter-spacing: 0;
}
.first-form input:focus, .first-form textarea:focus, .first-form select:focus,
.contact__form input:focus, .contact__form textarea:focus {
  border-color: var(--tan);
}
.checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.9rem !important;
  color: var(--coffee) !important;
}
.checkbox input { width: auto; }

/* ============ VAGARO BOOK ============ */
.vagaro-embed {
  max-width: 800px;
  margin: 0 auto;
}
.vagaro-placeholder {
  padding: 3rem 2rem;
  background: var(--beige);
  border: 2px dashed var(--sand);
  border-radius: var(--radius);
  text-align: center;
}
.vagaro-placeholder p { color: var(--taupe); }
.vagaro-placeholder strong { color: var(--coffee); font-size: 1.1rem; }

/* ============ SOCIAL — simple icon row ============ */
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  margin-bottom: 3rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--coffee);
  transition: transform .2s, color .2s;
  text-decoration: none;
}
.social-card:hover {
  transform: translateY(-2px);
  color: var(--tan);
}
.social-card__icon {
  font-size: 1.9rem;
  line-height: 1;
}
.social-card strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.social-card span:not(.social-card__icon) { display: none; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ============ CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.contact__list li {
  padding: 0.6rem 0;
  color: var(--taupe);
  font-size: 1rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--sand);
  padding: 4rem 1.5rem 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,184,150,0.18);
}
.footer__brand .nav__name { color: var(--cream); }
.footer__brand p { margin-top: 0.8rem; color: var(--sand); font-size: 0.92rem; max-width: 280px; }
.footer h5 {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer a {
  display: block;
  color: var(--sand);
  font-size: 0.92rem;
  padding: 0.25rem 0;
}
.footer a:hover { color: var(--cream); }
.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  color: var(--taupe);
  font-size: 0.82rem;
}

/* ============ LEGAL ============ */
.legal details {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.legal summary {
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0;
}
.legal summary::-webkit-details-marker { display: none; }
.legal summary h2 {
  display: inline-block;
  margin: 0;
  font-size: 1.5rem;
}
.legal summary::after {
  content: '+';
  float: right;
  font-size: 1.6rem;
  color: var(--tan);
  font-weight: 200;
}
.legal details[open] summary::after { content: '−'; }
.legal h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-top: 1.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .first-grid { grid-template-columns: repeat(2, 1fr); }
  .care, .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .care__img { height: 320px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .socials { gap: 1.8rem 2.2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .first-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .first-form, .contact__form { padding: 1.5rem; }
  .hero__badges { gap: 0.8rem; font-size: 0.7rem; }
}

/* ============ LOGO + LANG TOGGLE ============ */
.nav__logo {
  width: 38px;
  height: 32px;
  display: block;
}
.footer__logo { width: 48px; height: 40px; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--soft-2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.45rem;
  color: var(--taupe);
  transition: border-color .2s;
}
.lang-toggle:hover { border-color: var(--tan); }
.lang-toggle__opt {
  cursor: pointer;
  padding: 0.05rem 0.2rem;
  border-radius: 3px;
}
.lang-toggle__opt.is-active { color: var(--coffee); font-weight: 500; }
.lang-toggle__sep { color: var(--soft-2); }

body[data-lang="zh"] { font-family: 'Noto Sans SC', 'DM Sans', system-ui, sans-serif; }
body[data-lang="zh"] h1, body[data-lang="zh"] h2, body[data-lang="zh"] h3, body[data-lang="zh"] h4 {
  font-family: 'Noto Serif SC', 'Fraunces', serif;
  letter-spacing: 0.02em;
}

/* ============ SERVICE TIERS ============ */
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tier {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sand);
}
.tier--featured {
  background: linear-gradient(180deg, #FBF6EC 0%, var(--cream) 100%);
  border-color: var(--sand);
}
.tier--premium {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--coffee);
}
.tier--premium .tier__name span,
.tier--premium .tier__zh-sub,
.tier--premium .tier__price,
.tier--premium .chip,
.tier--premium .refill-label,
.tier--premium .tier__refills span,
.tier--premium .tier__refills b { color: var(--cream); }
.tier--premium .chip { background: rgba(232,181,71,0.12); border-color: rgba(232,181,71,0.35); }
.tier--premium .tier__refills { border-top-color: rgba(232,181,71,0.18); }

.tier__badge {
  position: absolute;
  top: -10px; right: 1.5rem;
  background: #E8B547;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.tier__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem;
}
.tier__name {
  font-size: 1.5rem;
  margin: 0 0 0.2rem;
  color: inherit;
}
.tier__zh-sub { display: none; }
.tier__price {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: #E8B547;
  font-weight: 500;
  line-height: 1;
}
.tier--featured .tier__price { color: #C99830; }
.tier__styles {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.chip {
  display: inline-block;
  background: var(--beige);
  border: 1px solid transparent;
  color: var(--coffee);
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.tier__refills {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--soft);
  font-size: 0.85rem;
  color: var(--taupe);
}
.tier__refills b {
  color: var(--coffee);
  font-weight: 500;
  margin-right: 0.25rem;
}
.refill-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tan);
  font-weight: 500;
}
.services-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--tan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* care list refinement */
.care__list li { display: flex; flex-direction: column; gap: 0.1rem; }
.care__list li span { color: var(--taupe); font-size: 0.92rem; }

/* mobile tweaks for new bits */
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
  .nav__actions .nav__cta { display: none; }
}
@media (max-width: 680px) {
  .nav__actions .lang-toggle { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
  .tier { padding: 1.5rem; }
  .tier__price { font-size: 2rem; }
}

/* ============ EYELASH ILLUSTRATION PLACEHOLDERS ============ */
:root {
  --lash-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 140'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23EDE5D8'/><stop offset='1' stop-color='%23D4B896'/></linearGradient></defs><rect width='200' height='140' fill='url(%23g)'/><path d='M20 80 Q100 60 180 80' stroke='%231F1A15' stroke-width='3' fill='none' stroke-linecap='round'/><path d='M30 78 Q26 110 22 130' stroke='%231F1A15' stroke-width='2.2' fill='none' stroke-linecap='round'/><path d='M45 76 Q40 112 35 132' stroke='%231F1A15' stroke-width='2.2' fill='none' stroke-linecap='round'/><path d='M60 73 Q56 113 51 134' stroke='%231F1A15' stroke-width='2.2' fill='none' stroke-linecap='round'/><path d='M75 70 Q72 114 68 135' stroke='%231F1A15' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M90 68 Q88 114 85 136' stroke='%231F1A15' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M105 67 Q105 114 105 136' stroke='%231F1A15' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M120 68 Q122 114 124 135' stroke='%231F1A15' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M135 70 Q138 114 142 134' stroke='%231F1A15' stroke-width='2.4' fill='none' stroke-linecap='round'/><path d='M150 73 Q154 113 158 132' stroke='%231F1A15' stroke-width='2.2' fill='none' stroke-linecap='round'/><path d='M165 76 Q170 110 175 130' stroke='%231F1A15' stroke-width='2.2' fill='none' stroke-linecap='round'/><path d='M175 79 Q180 105 184 124' stroke='%231F1A15' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
}

/* Real eyelash photos for gallery and care */
.gallery__item,
.care__img {
  background-size: cover !important;
  background-position: center !important;
  filter: none !important;
}
.gallery__item:nth-child(1) { background-image: url('images/gallery/42cf77db9de5f387af9813a690fb4e.JPG') !important; }
.gallery__item:nth-child(2) { background-image: url('images/gallery/woman-before-after-eyelashes-extensions.jpg') !important; }
.gallery__item:nth-child(3) { background-image: url('images/gallery/8babeac2adcb6b4c01f578e8183be6.JPG') !important; }
.gallery__item:nth-child(4) { background-image: url('images/gallery/985f684c47c2f854823f3f107c32b4.JPG') !important; }
.gallery__item:nth-child(5) { background-image: url('images/gallery/9df00f96575ffbebea0e468a19ef30.JPG') !important; }
.gallery__item:nth-child(6) { background-image: url('images/gallery/9ef2c7532b6e446221c56201c5978f.JPG') !important; }
.gallery__item:nth-child(7) { background-image: url('images/gallery/a0cc32e5a094e6f8139c6f45e8d6e9.JPG') !important; }
.gallery__item:nth-child(8) { background-image: url('images/gallery/close-up-before-after-eyelashes-extensions.jpg') !important; }

.care__img {
  background-image: url('images/gallery/eyelash-extension-procedure-woman-eye-with-long-blue-eyelashes-ombre-effect-close-up-selective-focus.jpg') !important;
}

/* Hero — clean earthy gradient (no photo, soft and inviting) */
.hero__bg {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(212,184,150,0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 70%, rgba(166,124,82,0.40) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(232,181,71,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #1F1A15 0%, #3D342B 50%, #8B7355 100%) !important;
}

/* Tier sub-description */
.tier__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.5;
  font-style: italic;
}
.tier--premium .tier__desc { color: var(--sand); }

/* ============ ADD-ON SERVICES (Lash Perm / Brow Tint) ============ */
.addons {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px dashed var(--soft-2);
}
.addons__header {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.addons__line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--sand);
}
.addons__heading {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
.addons__sub {
  text-align: center;
  color: var(--taupe);
  margin: 0 0 2.5rem;
  font-size: 0.98rem;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
.addon {
  background: var(--cream);
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: border-color .2s, transform .2s;
}
.addon:hover {
  border-color: var(--sand);
  transform: translateY(-2px);
}
.addon__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.8rem;
}
.addon__head h4 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--ink);
}
.addon__price {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: #C99830;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.addon__desc {
  margin: 0;
  color: var(--taupe);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}
.addon__meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--soft);
}
.addon__chip {
  background: var(--beige);
  color: var(--coffee);
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.addons__bundle {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--tan);
  letter-spacing: 0.06em;
}

@media (max-width: 680px) {
  .addons__grid { grid-template-columns: 1fr; }
  .addons__line { flex-basis: 30px; }
}

/* ============ PROCESS ROW (3 photos under Book section) ============ */
.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  padding: 0 1rem;
}
.process-row__img {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(31,26,21,0.25);
}
.process-row__img--side {
  width: 30%;
  aspect-ratio: 4 / 3;
}
.process-row__img--center {
  width: 42%;
  aspect-ratio: 4 / 3;
  position: relative;
  z-index: 2;
  margin: 0 -3.5%;
  transform: translateY(-12px);
  box-shadow: 0 18px 50px rgba(31,26,21,0.35);
}

@media (max-width: 680px) {
  .process-row { flex-direction: column; gap: 0.8rem; padding: 0; }
  .process-row__img--side, .process-row__img--center {
    width: 100%;
    margin: 0;
    transform: none;
    aspect-ratio: 16 / 10;
  }
}

/* ============ HERO COLLAGE (replaces plain hero) ============ */
.hero__inner--split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero__text { max-width: 540px; }

.hero__collage {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.hero__photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(31,26,21,0.35);
  transition: transform .4s ease;
}
.hero__photo--top {
  top: 0; right: 6%;
  width: 58%; height: 42%;
  z-index: 1;
}
.hero__photo--mid {
  top: 22%; left: 0;
  width: 70%; height: 50%;
  z-index: 3;
  box-shadow: 0 30px 70px rgba(31,26,21,0.45);
}
.hero__photo--bot {
  bottom: 0; right: 0;
  width: 60%; height: 42%;
  z-index: 2;
}
.hero__photo:hover { transform: scale(1.02); }

/* Remove old centered padding now that we use grid */
.hero__inner--split.hero__inner { padding-left: 1.5rem; padding-right: 1.5rem; }

@media (max-width: 980px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__collage {
    max-width: 100%;
    aspect-ratio: 16 / 11;
    justify-self: center;
  }
}
@media (max-width: 680px) {
  .hero__collage { aspect-ratio: 4 / 3; }
  .hero__photo--mid { width: 65%; height: 60%; }
  .hero__photo--top { width: 50%; height: 45%; }
  .hero__photo--bot { width: 55%; height: 45%; }
}

/* Remove the process-row CSS no longer needed (was under booking) */
.process-row { display: none !important; }

/* ============ HERO — single feature photo (right) ============ */
.hero__feature {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  position: relative;
}
.hero__feature-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(31,26,21,0.45),
              0 0 0 1px rgba(232,181,71,0.15);
  transition: transform .4s ease;
}
.hero__feature-img:hover { transform: scale(1.01); }

/* Hide the old collage classes if they linger */
.hero__collage, .hero__photo { display: none !important; }

@media (max-width: 980px) {
  .hero__feature {
    max-width: 100%;
    aspect-ratio: 16 / 11;
    justify-self: center;
  }
}
@media (max-width: 680px) {
  .hero__feature { aspect-ratio: 4 / 3; }
}

/* ============ PREMIUM REFRESH ============ */

/* Buttons — squarer corners (4px) for that luxe feel, gold hairline on hover */
.btn { border-radius: 4px !important; letter-spacing: 0.14em !important; font-weight: 500 !important; padding: 1rem 2rem !important; }
.btn--primary { position: relative; }
.btn--primary::after {
  content: "";
  position: absolute; inset: -5px;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color .3s ease;
  pointer-events: none;
}
.btn--primary:hover::after { border-color: #E8B547; }
.hero__cta .btn--primary { background: var(--cream) !important; color: var(--ink) !important; border-color: var(--cream) !important; }
.hero__cta .btn--primary:hover { background: white !important; color: var(--ink) !important; transform: none !important; }
.hero__cta .btn--ghost { color: var(--cream) !important; border-color: rgba(250,247,242,0.35) !important; }
.hero__cta .btn--ghost:hover { background: rgba(250,247,242,0.08) !important; border-color: rgba(232,181,71,0.6) !important; color: var(--cream) !important; }

/* Hero background — add deep vignette for richness */
.hero__bg {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(15,12,9,0.55) 100%),
    radial-gradient(ellipse at 25% 30%, rgba(212,184,150,0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 70%, rgba(166,124,82,0.40) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(232,181,71,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #15110D 0%, #2A231C 50%, #5A4836 100%) !important;
}

/* Hero typography refinement */
.hero__title {
  font-family: 'Fraunces', Georgia, serif !important;
  font-variation-settings: "opsz" 144;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.05;
}
.hero__title::after {
  content: "";
  display: block;
  width: 60px; height: 1px;
  background: #E8B547;
  margin-top: 1.75rem;
}
.hero__sub {
  font-size: 1.05rem !important;
  line-height: 1.65;
  max-width: 460px !important;
  color: rgba(250,247,242,0.78) !important;
}

/* Hero eyebrow — refined with gold dot accent */
.hero .eyebrow {
  color: #E8B547 !important;
  font-size: 11px !important;
  letter-spacing: 0.32em !important;
  font-weight: 500 !important;
  display: flex; align-items: center; gap: 0.7rem;
}
body[data-lang="zh"] .hero .eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
}
.hero .eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: #E8B547;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Hero badges — refined */
.hero__badges {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,247,242,0.12);
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  color: rgba(250,247,242,0.7) !important;
}
body[data-lang="zh"] .hero__badges {
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
}
.hero__badges span:first-child { color: #E8B547 !important; letter-spacing: 0.4em !important; }

/* Hero feature photo — gold hairline + double shadow for depth */
.hero__feature-img {
  border-radius: 6px !important;
  box-shadow:
    0 0 0 1px rgba(232,181,71,0.25),
    0 8px 24px rgba(15,12,9,0.4),
    0 40px 100px rgba(15,12,9,0.55) !important;
}

/* Tighter, more refined feature aspect ratio */
.hero__feature { aspect-ratio: 4 / 5.2 !important; }

/* Hero spacing — more generous */
.hero__inner--split { gap: 5rem !important; padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* Nav — slightly more refined */
.nav__name { letter-spacing: 0.3em !important; font-weight: 500 !important; }
.nav__cta.btn--primary { padding: 0.85rem 1.6rem !important; font-size: 0.78rem !important; }

/* Section titles — more elegant Fraunces optical sizing */
.section__title, .tier__name, h1, h2, h3, h4 {
  font-variation-settings: "opsz" 144;
}

/* ============ PHOTO HERO — blurred background + premium overlays ============ */
.hero { overflow: hidden !important; }
.hero__bg {
  background:
    /* soft vignette around the edges */
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 35%, rgba(15,12,9,0.35) 100%),
    /* subtle warm-gold glow from bottom (brand tint) */
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(232,181,71,0.18) 0%, transparent 60%),
    /* lighter dark overlay — lets rosy photo color show through */
    linear-gradient(180deg, rgba(15,12,9,0.3) 0%, rgba(31,26,21,0.4) 50%, rgba(15,12,9,0.5) 100%),
    /* the actual photo (lightly blurred) */
    url('images/magnific__talk__60645.jpeg') center 40% / cover no-repeat !important;
  background-blend-mode: normal, screen, multiply, normal !important;
  filter: blur(10px);
  transform: scale(1.08);
  transform-origin: center;
}

/* Hero text centered, big and confident */
/* Shorter hero so the stats bar peeks above the fold */
.hero { min-height: 72vh !important; }
.hero__inner--centered { padding: 4rem 1.5rem !important; }
.hero__inner--centered {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1.5rem !important;
  gap: 0;
}

.hero__inner--centered .eyebrow {
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero__inner--centered .eyebrow::after {
  content: "";
  width: 6px; height: 6px;
  background: #E8B547;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  /* compensate for trailing letter-spacing (0.32em) so this dot sits at the same gap
     from the text as the left ::before dot does — no double spacing */
  margin-left: -0.32em;
  order: 1;
}

.hero__inner--centered .hero__title {
  font-size: clamp(3rem, 7vw, 5.6rem) !important;
  margin-bottom: 0;
  max-width: none;
}
.hero__inner--centered .hero__title::after {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  background: linear-gradient(90deg, transparent, #E8B547, transparent);
  width: 120px;
}

.hero__inner--centered .hero__sub {
  margin: 2rem auto 0 !important;
  max-width: 520px !important;
  font-size: 1.1rem !important;
}

.hero__inner--centered .hero__cta {
  margin-top: 2.8rem;
  justify-content: center;
}

.hero__inner--centered .hero__badges {
  margin-top: 3rem;
  padding-top: 2.5rem;
  justify-content: center;
  border-top: 1px solid rgba(232,181,71,0.18);
  max-width: 600px;
}

/* Override the split-layout grid; centered hero uses flex */
.hero__inner--split, .hero__feature, .hero__feature-img, .hero__collage, .hero__photo {
  display: none !important;
}
.hero__inner { display: flex !important; }

/* ============ TIER CATEGORIES (new menu structure) ============ */
.tier-category { margin-top: 3.5rem; }
.tier-category:first-of-type { margin-top: 0; }
.tier-category__header {
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.tier-category__line {
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}
.tier-category__heading {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
}
body[data-lang="zh"] .tier-category__heading { text-transform: none; letter-spacing: 0.08em; }

/* ============ CHINESE TITLE FIX — reset negative tracking, balance punctuation ============ */
body[data-lang="zh"] .hero__title {
  letter-spacing: 0 !important;
  font-family: 'Noto Serif SC', 'Fraunces', serif !important;
  /* CJK punctuation handling — trim leading/trailing punctuation whitespace */
  text-spacing-trim: trim-both;
  hanging-punctuation: allow-end;
}

/* ============ HERO ALIGNMENT — force everything truly centered ============ */
.hero__inner--centered > * {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero__inner--centered .hero__title {
  text-align: center !important;
  width: 100%;
  display: block;
}
.hero__inner--centered .hero__cta,
.hero__inner--centered .hero__badges {
  justify-content: center;
}

/* ============ HERO HEIGHT TRIM — let stats bar peek above fold ============ */
.hero { min-height: 0 !important; height: 78vh; }
.hero__inner--centered { padding: 3rem 1.5rem !important; gap: 0; }
.hero__inner--centered .hero__title { font-size: clamp(2.4rem, 5vw, 4.4rem) !important; }
.hero__inner--centered .hero__title::after { margin-top: 1.5rem !important; }
.hero__inner--centered .hero__sub { margin-top: 1.5rem !important; font-size: 1rem !important; }
.hero__inner--centered .hero__cta { margin-top: 2rem !important; }
.hero__inner--centered .hero__badges { margin-top: 2rem !important; padding-top: 1.5rem !important; }
.hero__inner--centered .eyebrow { margin-bottom: 1.5rem !important; }

/* ============ VAGARO IFRAME EMBED ============ */
.vagaro-embed {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(31,26,21,0.12);
  background: white;
}
.vagaro-embed iframe {
  width: 100%;
  height: 850px;
  border: 0;
  display: block;
}
.vagaro-fallback {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
@media (max-width: 680px) {
  .vagaro-embed iframe { height: 700px; }
}

/* ============ BOOKING CTA CARD (replaces iframe) ============ */
.vagaro-embed,
.vagaro-placeholder,
.vagaro-fallback { display: none !important; }

.book-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 3.5rem 3.5rem;
  background: var(--cream);
  border: 1px solid rgba(232,181,71,0.18);
  border-radius: 4px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(31,26,21,0.06);
}
.book-card__rule {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #E8B547, transparent);
  margin: 0 auto 2rem;
}
.book-card__overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C99830;
  font-weight: 500;
  margin: 0 0 1rem;
}
body[data-lang="zh"] .book-card__overline {
  font-size: 12px;
  letter-spacing: 0.22em;
}
.book-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
body[data-lang="zh"] .book-card__title {
  font-family: 'Noto Serif SC', 'Fraunces', serif;
  letter-spacing: 0;
}
.book-card__sub {
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 2.2rem;
}
.book-card__cta {
  display: inline-block;
  padding: 1rem 2.5rem !important;
}
.book-card__alt {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--taupe);
}
.book-card__alt a {
  color: var(--coffee);
  font-weight: 500;
  margin-left: 0.4rem;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1px;
}
.book-card__alt a:hover { color: var(--tan); border-color: var(--tan); }

@media (max-width: 680px) {
  .book-card { padding: 2.5rem 1.8rem; }
}

/* ============================================
   STICKY BOTTOM NAV (mobile only — base styles)
   ============================================ */
.mobile-nav { display: none; }

/* ============================================
   COMPREHENSIVE MOBILE PASS — addresses all sizing issues
   ============================================ */
@media (max-width: 680px) {
  /* Body padding to clear sticky bottom nav */
  body { padding-bottom: 72px; }

  /* ----- NAV header: shrink everything, kill hamburger ----- */
  .nav__toggle, .nav__mobile { display: none !important; }
  .nav__inner { padding: 0.7rem 0.9rem !important; gap: 0.4rem !important; }
  .nav__brand { font-size: 0.82rem !important; letter-spacing: 0.14em !important; gap: 0.3rem !important; }
  .nav__name { white-space: nowrap; }
  .nav__logo { width: 26px !important; height: 22px !important; }
  .nav__links { display: none; }
  .nav__cta { display: none !important; }  /* Book Now is in bottom nav now */
  .nav__actions { gap: 0 !important; }

  /* Language toggle: smaller + force single-line */
  .lang-toggle { padding: 0.3rem 0.55rem !important; font-size: 0.7rem !important; gap: 0.3rem !important; letter-spacing: 0.04em !important; }
  .lang-toggle__opt { white-space: nowrap !important; }

  /* ----- HERO: scale down ----- */
  .hero { min-height: auto !important; height: auto !important; }
  .hero__inner--centered { padding: 2.5rem 1rem !important; }
  .hero__inner--centered .hero__title { font-size: clamp(1.9rem, 9vw, 2.6rem) !important; }
  .hero__inner--centered .hero__title::after { width: 60px !important; margin-top: 1rem !important; }
  .hero__inner--centered .hero__sub { font-size: 0.92rem !important; margin-top: 1.2rem !important; line-height: 1.5; padding: 0 0.5rem; }
  .hero__inner--centered .eyebrow { margin-bottom: 1rem !important; }
  .hero .eyebrow { font-size: 9.5px !important; letter-spacing: 0.2em !important; }
  body[data-lang="zh"] .hero .eyebrow { font-size: 10.5px !important; letter-spacing: 0.15em !important; }
  .hero__cta { gap: 0.7rem !important; margin-top: 1.5rem !important; }
  .hero__cta .btn { padding: 0.8rem 1.5rem !important; font-size: 0.78rem !important; }
  .hero__badges { font-size: 10px !important; letter-spacing: 0.16em !important; gap: 0.6rem !important; margin-top: 1.5rem !important; padding-top: 1.2rem !important; }
  body[data-lang="zh"] .hero__badges { font-size: 11px !important; }

  /* ----- STATS STRIP: compact ----- */
  .strip { padding: 1.2rem 0.5rem !important; }
  .strip__inner { grid-template-columns: repeat(4, 1fr) !important; gap: 0.4rem !important; }
  .strip h3 { font-size: 1.35rem !important; }
  .strip p { font-size: 9.5px !important; letter-spacing: 0.12em !important; line-height: 1.2; }

  /* ----- SECTIONS: tighter padding overall ----- */
  .section { padding: 3.2rem 1rem !important; }
  .section__title { font-size: clamp(1.5rem, 6vw, 1.9rem) !important; }
  .section__sub { font-size: 0.92rem !important; margin-bottom: 2rem !important; padding: 0 0.5rem; }
  .container { padding: 0 1rem !important; }
  .eyebrow.center { font-size: 0.68rem !important; letter-spacing: 0.22em !important; }

  /* ----- SERVICE TIERS ----- */
  .tier-category { margin-top: 2.5rem !important; }
  .tier-category__heading { font-size: 1.15rem !important; letter-spacing: 0.14em !important; }
  .tier-category__line { flex-basis: 30px !important; }
  .tier { padding: 1.3rem !important; }
  .tier__name { font-size: 1.15rem !important; }
  .tier__price { font-size: 1.7rem !important; }
  .tier__desc { font-size: 0.88rem !important; }
  .tier__refills { font-size: 0.78rem !important; gap: 0.4rem 0.8rem !important; }
  .refill-label { font-size: 0.68rem !important; }

  /* ----- ADD-ONS ----- */
  .addons__heading { font-size: 1.15rem !important; letter-spacing: 0.14em !important; }
  .addon { padding: 1.3rem !important; }
  .addon__head h4 { font-size: 1.05rem !important; }
  .addon__price { font-size: 1.5rem !important; }
  .addon__desc { font-size: 0.88rem !important; }

  /* ----- SOCIALS: single row, smaller, icons + tiny labels ----- */
  .socials {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0.4rem !important;
    padding: 0 !important;
    margin-bottom: 1.8rem !important;
  }
  .social-card { flex: 1; gap: 0.25rem !important; padding: 0.4rem 0.1rem !important; min-width: 0; }
  .social-card__icon { font-size: 1.4rem !important; }
  .social-card strong { font-size: 0.62rem !important; letter-spacing: 0.02em !important; font-family: 'DM Sans', sans-serif !important; font-weight: 500 !important; line-height: 1.1; }

  /* ----- MAP iframe smaller ----- */
  .map iframe { height: 280px !important; }

  /* ----- CONTACT ----- */
  .contact { gap: 1.5rem !important; }
  .contact__list { font-size: 0.92rem !important; }
  .contact__form { padding: 1.5rem 1.2rem !important; }

  /* ----- FIRST VISIT ----- */
  .first-grid { grid-template-columns: 1fr !important; gap: 0.8rem !important; }
  .first-card { padding: 1.3rem !important; }
  .first-card__num { font-size: 1.5rem !important; }
  .first-form { padding: 1.5rem 1.2rem !important; }

  /* ----- CARE ----- */
  .care__img { height: 260px !important; }

  /* ----- BOOK CARD ----- */
  .book-card { padding: 2.2rem 1.3rem !important; margin: 0 !important; }
  .book-card__title { font-size: 1.5rem !important; }
  .book-card__sub { font-size: 0.92rem !important; }

  /* ----- FOOTER ----- */
  .footer { padding: 2.5rem 1rem 1.5rem !important; }
  .footer__inner { grid-template-columns: 1fr !important; gap: 1.8rem !important; text-align: center; }
  .footer__brand p, .footer__addr { max-width: none !important; margin-left: auto; margin-right: auto; }

  /* ----- LEGAL ----- */
  .legal details { padding: 0.8rem 1rem !important; }
  .legal summary h2 { font-size: 1.2rem !important; }

  /* ----- STICKY BOTTOM NAV ----- */
  .mobile-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31,26,21,0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(232,181,71,0.18);
    z-index: 100;
    padding: 0.5rem 0.3rem calc(0.5rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: stretch;
  }
  .mobile-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    color: rgba(250,247,242,0.75);
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color .2s;
  }
  .mobile-nav__item:hover, .mobile-nav__item:active { color: var(--cream); }
  .mobile-nav__icon { width: 22px; height: 22px; }
  .mobile-nav__cta { color: #E8B547 !important; }
  .mobile-nav__cta:active { color: #FFD27A !important; }
  body[data-lang="zh"] .mobile-nav__label { font-size: 11px; }
}

/* iPad / tablet (between mobile & desktop) — also benefits from some shrinking */
@media (min-width: 681px) and (max-width: 980px) {
  .strip h3 { font-size: 1.8rem; }
  .socials { gap: 1.5rem 2rem !important; }
}

/* Vertical logo hidden everywhere — horizontal logo + text used on all viewports */
.nav__logo--vertical { display: none !important; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: 1rem;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(15,12,9,0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 6px;
  border: 1px solid rgba(232,181,71,0.25);
  box-shadow: 0 16px 40px rgba(15,12,9,0.35);
  z-index: 110;
  display: flex; align-items: center; gap: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(250,247,242,0.85);
  flex: 1;
}
.cookie-banner__actions {
  display: flex; align-items: center; gap: 1rem;
  flex-shrink: 0;
}
.cookie-banner__link {
  color: var(--sand);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-banner__link:hover { color: #E8B547; }
.cookie-banner__accept {
  background: var(--cream);
  color: var(--ink);
  border: 0;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.cookie-banner__accept:hover { background: #E8B547; }

@media (max-width: 680px) {
  .cookie-banner {
    bottom: 80px;  /* sits above the sticky mobile-nav (72px tall) */
    left: 0.5rem; right: 0.5rem;
    padding: 0.85rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .cookie-banner__text { font-size: 0.78rem; text-align: center; }
  .cookie-banner__actions { justify-content: center; gap: 1.2rem; }
}
