/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, a { -webkit-tap-highlight-color: transparent; }

/* ===== VARIABLES — Harmoi Green Brand Palette ===== */
:root {
  --ink: #162018;
  --ink-soft: #344739;
  --gray: #66735f;
  --gold: #8bc34a;
  --gold-deep: #2e7d32;
  --gold-light: #c5e1a5;
  --jade: #558b2f;
  --jade-deep: #2e7d32;
  --cream: #e8f5e9;
  --cream-deep: #d8ead3;
  --pearl: #f7fbf4;
  --white: #ffffff;
  --line: #cfe4c5;
  --forest: #2e7d32;
  --pistachio: #c5e1a5;
  --olive: #558b2f;
  --mint: #e8f5e9;
  --sage: #8bc34a;
  --shadow-sm: 0 4px 20px rgba(24,49,24,0.08);
  --shadow: 0 12px 40px rgba(24,49,24,0.12);
  --shadow-lg: 0 24px 70px rgba(24,49,24,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.45s cubic-bezier(0.22,1,0.36,1);
  --serif: 'Playfair Display', 'Noto Serif SC', serif;
  --sans: 'Inter', 'Noto Sans SC', sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; letter-spacing: 0; }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 130px 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 72px; max-width: 720px; margin-left:auto; margin-right:auto; }
.section-tag {
  display: inline-block;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
  text-transform: uppercase;
  position: relative;
  padding: 0 4px;
}
.section-tag::before, .section-tag::after {
  content: ''; position: absolute; top: 50%; width: 28px; height: 1px; background: var(--gold-light);
}
.section-tag::before { right: 100%; margin-right: 14px; }
.section-tag::after { left: 100%; margin-left: 14px; }
.section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.25;
}
.section-header p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.95;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-ghost, .btn-buy, .btn-soon, .btn-shop {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); cursor: pointer; transition: var(--transition); border: none;
  letter-spacing: 0.06em;
}
.btn-primary {
  background: var(--forest); color: var(--pearl); padding: 16px 38px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  border-radius: 100px;
}
.btn-primary:hover { background: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--forest); padding: 16px 34px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  border: 1px solid var(--forest); border-radius: 100px;
}
.btn-ghost:hover { background: var(--forest); color: var(--pearl); }
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-buy:focus-visible,
.btn-detail:focus-visible,
.btn-reserve:focus-visible,
.btn-shop:focus-visible,
.btn-notify:focus-visible,
.social-btn:focus-visible,
.filter-pill:focus-visible,
.lang-toggle:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0; transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(232,245,233,0.88); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding: 14px 0;
}
.nav-container {
  max-width: 1240px; margin: 0 auto; padding: 10px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(197,225,165,0.65);
  border-radius: 999px;
  background: rgba(247,251,244,0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(22,32,24,0.08);
}
.navbar.scrolled .nav-container { background: rgba(247,251,244,0.95); }
.nav-logo .logo-img { height: 42px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 40px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding: 4px 0;
  transition: var(--transition);
}
.nav-links a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-track {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 0;
  border: 0; border-bottom: 1px solid transparent; background: transparent;
  color: var(--ink-soft); font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.nav-track:hover { color: var(--forest); border-color: var(--forest); }
.nav-track-icon { position: relative; width: 15px; height: 13px; border: 1.5px solid currentColor; border-radius: 2px; }
.nav-track-icon::before { content: ''; position: absolute; width: 7px; height: 3px; top: -5px; left: 2px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 2px 2px 0 0; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 8px 16px; border-radius: 100px; font-family: var(--sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.1em; cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-shop {
  background: var(--forest); color: var(--pearl); padding: 11px 26px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
}
.btn-shop:hover { background: var(--olive); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: var(--transition); }
.mobile-menu { display: none; }
.mobile-track { border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--forest); font-family: var(--sans); font-size: 14px; font-weight: 600; text-align: left; letter-spacing: 0.06em; padding: 12px 0; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,34,14,0.86) 0%, rgba(22,70,28,0.64) 40%, rgba(22,70,28,0.16) 74%),
    linear-gradient(180deg, rgba(10,34,14,0.26) 0%, rgba(10,34,14,0.56) 100%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 650px); gap: 0; align-items: end; min-height: 100svh; padding-top: 168px; padding-bottom: 112px; position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; background: rgba(232,245,233,0.18);
  border: 1px solid rgba(197,225,165,0.56); padding: 9px 20px; border-radius: 100px; margin-bottom: 30px;
  font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--pistachio); letter-spacing: 0.16em;
  backdrop-filter: blur(12px);
  text-transform: uppercase;
}
.hero-badge > span:first-child {
  color: var(--sage);
}
.hero-title { font-size: clamp(50px, 6.8vw, 96px); line-height: 0.98; color: var(--pearl); margin-bottom: 28px; font-weight: 600; text-shadow: 0 12px 42px rgba(0,0,0,0.28); }
.hero-title .title-accent { font-style: italic; color: var(--pistachio); }
.hero-desc { font-size: 18px; color: rgba(247,251,244,0.88); line-height: 1.8; max-width: 560px; margin-bottom: 40px; text-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero .btn-primary {
  background: var(--pistachio);
  color: var(--ink);
}
.hero .btn-primary:hover { background: var(--sage); }
.hero .btn-ghost {
  color: var(--pearl);
  border-color: rgba(247,251,244,0.78);
  background: rgba(247,251,244,0.08);
  backdrop-filter: blur(10px);
}
.hero .btn-ghost:hover {
  color: var(--ink);
  background: var(--pearl);
}
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 13px; color: rgba(247,251,244,0.86); font-weight: 600; }
.trust-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(197,225,165,0.24); color: var(--pistachio); font-size: 11px; border: 1px solid rgba(197,225,165,0.38); }

.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(247,251,244,0.70); z-index: 2; }
.scroll-arrow { width: 1px; height: 40px; background: linear-gradient(var(--pistachio), transparent); }

/* ===== MARQUEE / GIFT BANNER ===== */
.gift-banner { background: var(--ink); color: var(--cream); padding: 18px 0; overflow: hidden; }
.gift-banner-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 28s linear infinite; }
.gift-banner-track span { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--gold-light); display: inline-flex; align-items: center; gap: 60px; }
.gift-banner-track span::after { content: '✦'; color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STORY ===== */
.story { background: var(--pearl); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story-visual { position: relative; }
.story-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.story-badge {
  position: absolute; bottom: -28px; right: -20px; background: var(--white); padding: 24px 28px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line);
}
.story-badge strong { display: block; font-family: var(--serif); font-size: 30px; color: var(--gold-deep); }
.story-badge span { font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.story-text .section-tag { margin-left: 0; }
.story-text .section-tag::before { display: none; }
.story-text h2 { font-size: clamp(28px, 3.6vw, 42px); color: var(--ink); margin-bottom: 26px; line-height: 1.28; }
.story-text p { font-size: 16px; color: var(--ink-soft); line-height: 2; margin-bottom: 20px; }
.story-text .btn-primary { margin-top: 12px; }
.story-sign { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold-deep); margin-top: 8px; }

/* ===== SHOP ===== */
.shop { background: var(--cream); }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -28px 0 38px;
  padding: 16px 18px;
  border: 1px solid rgba(197,225,165,0.76);
  border-radius: var(--radius-lg);
  background: rgba(247,251,244,0.72);
  box-shadow: 0 12px 32px rgba(24,49,24,0.05);
}
.filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  min-height: 38px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgba(46,125,50,0.22);
  background: rgba(255,255,255,0.72);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--pearl);
  transform: translateY(-1px);
}
.shop-toolbar-note {
  max-width: 340px;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.65;
  text-align: right;
}
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.product-card {
  background: rgba(255,255,255,0.94); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(197,225,165,0.72); transition: var(--transition); display: flex; flex-direction: column;
  box-shadow: 0 10px 28px rgba(24,49,24,0.06);
}
.product-card.is-hidden { display: none !important; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.product-card.featured { grid-column: 1 / -1; flex-direction: row; }
.product-card.featured .product-img-wrap { width: 52%; }
.product-card.featured .product-info { width: 48%; }
.product-img-wrap { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--pearl), var(--cream-deep)); }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); aspect-ratio: 4/3; }
.product-card.featured .product-img { aspect-ratio: auto; min-height: 100%; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 18px; left: 18px; background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
}
.product-badge.gold { background: var(--gold-deep); }
.product-badge.jade { background: var(--jade-deep); }
.product-info { padding: 32px 34px 34px; display: flex; flex-direction: column; flex: 1; }
.product-card.featured .product-info { justify-content: center; padding: 50px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.product-material { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.product-rating { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.product-rating span { color: var(--gray); margin-left: 4px; }
.product-info h3 { font-size: 24px; color: var(--ink); margin-bottom: 8px; line-height: 1.25; }
.product-card.featured .product-info h3 { font-size: 32px; }
.product-subtitle { font-family: var(--sans); font-size: 13px; color: var(--jade-deep); letter-spacing: 0.04em; margin-bottom: 16px; font-weight: 500; }
.product-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 20px; }
.product-features { margin-bottom: 26px; }
.product-features li { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); padding: 6px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: center; gap: 10px; }
.product-features li::before { content: '✦'; color: var(--gold); font-size: 10px; }
.product-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 8px; }
.product-price { display: flex; flex-direction: column; }
.product-price .price { font-family: var(--serif); font-size: 28px; color: var(--ink); font-weight: 600; }
.product-price .price-note { font-family: var(--sans); font-size: 11px; color: var(--gray); letter-spacing: 0.08em; }
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn-buy {
  background: var(--ink); color: var(--cream); padding: 13px 26px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
}
.btn-buy:hover { background: var(--gold-deep); }
.btn-detail,
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-detail {
  border: 1px solid rgba(22,32,24,0.86);
  background: transparent;
  color: var(--ink);
}
.btn-detail:hover {
  background: var(--ink);
  color: var(--pearl);
}
.btn-reserve {
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--pearl);
}
.btn-reserve:hover {
  background: var(--olive);
  border-color: var(--olive);
  transform: translateY(-1px);
}
.btn-soon {
  background: transparent; color: var(--gold-deep); padding: 13px 24px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid var(--gold-light); cursor: default;
}
.btn-soon:hover { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }

/* ===== GIFTING / INSIDE THE BOX ===== */
.gifting { background: var(--pearl); position: relative; }
.gifting-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.gifting-visual { position: relative; }
.gifting-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.gifting-text .section-tag { margin-left: 0; }
.gifting-text .section-tag::before { display: none; }
.gifting-text h2 { font-size: clamp(28px,3.6vw,42px); margin-bottom: 24px; line-height: 1.28; }
.gifting-text > p { font-size: 16px; color: var(--ink-soft); line-height: 1.95; margin-bottom: 34px; }
.gift-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gift-item { display: flex; gap: 14px; align-items: flex-start; }
.gift-item-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.gift-item strong { display: block; font-family: var(--serif); font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.gift-item span { font-family: var(--sans); font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ===== RITUAL MATCHER ===== */
.ritual-matcher {
  background:
    radial-gradient(circle at 18% 8%, rgba(91,117,101,0.08), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(176,141,79,0.12), transparent 34%),
    var(--cream);
}
.matcher-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
}
.matcher-intro h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.16;
  color: var(--ink);
  margin-bottom: 22px;
}
.matcher-tag.section-tag { margin-left: 42px; }
.matcher-tag.section-tag::after { display: none; }
.matcher-copy {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 34px;
}
.pattern-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pattern-preview > div,
.quiz-panel,
.result-copy,
.product-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
}
.pattern-preview > div {
  min-height: 142px;
  padding: 18px;
}
.preview-number {
  display: block;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 18px;
}
.pattern-preview strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.35;
}
.pattern-preview p {
  margin-top: 8px;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.6;
}
.quiz-panel {
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  background: rgba(251,248,243,0.94);
}
.quiz-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.progress-track {
  height: 8px;
  background: var(--cream-deep);
  border-radius: 100px;
  overflow: hidden;
  margin: 16px 0 28px;
}
.progress-fill {
  width: 12.5%;
  height: 100%;
  background: linear-gradient(90deg, var(--jade-deep), var(--gold-deep), #6f879c);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.quiz-panel h3 {
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.22;
  color: var(--ink);
  min-height: 84px;
}
.option-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.option-button {
  min-height: 58px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink-soft);
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.option-button:hover {
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.option-button.selected {
  border-color: var(--jade);
  background: rgba(91,117,101,0.12);
  color: var(--ink);
}
.quiz-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: 26px;
}
.primary-button,
.secondary-button {
  min-height: 48px;
  border-radius: 100px;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.primary-button {
  background: var(--ink);
  color: var(--pearl);
}
.primary-button:hover { background: var(--gold-deep); }
.primary-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.secondary-button {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.secondary-button:hover { border-color: var(--gold-light); }
.secondary-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wide { width: 100%; }
.result-section { padding: 42px 0 0; }
.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
  align-items: stretch;
}
.result-copy {
  padding: clamp(26px, 4vw, 44px);
  background: var(--pearl);
  box-shadow: var(--shadow);
}
.result-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid var(--gold-light);
  background: var(--cream);
  color: var(--gold-deep);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.result-copy h3 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--ink);
}
#resultSummary {
  max-width: 720px;
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}
.result-insights {
  display: grid;
  grid-template-columns: 0.72fr 0.56fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.result-insights > div,
.secondary-insight,
.routine-step {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
}
.result-insights > div,
.secondary-insight { padding: 14px; }
.result-insights span,
.secondary-insight span {
  display: block;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.result-insights strong,
.secondary-insight strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}
.secondary-insight {
  margin-bottom: 18px;
  background: var(--cream);
}
.secondary-insight p {
  margin-top: 8px;
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.65;
}
.routine-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.routine-step {
  padding: 18px;
  min-height: 170px;
}
.routine-step span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 24px;
}
.routine-step strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
}
.routine-step p {
  margin-top: 8px;
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.65;
}
.safety-note {
  margin-top: 18px;
  border-left: 4px solid var(--jade);
  padding: 14px 18px;
  background: rgba(91,117,101,0.10);
  border-radius: var(--radius-lg);
}
.safety-note strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
.safety-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 13.5px;
}
.product-panel {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
}
.product-image-frame {
  aspect-ratio: 1;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-panel p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
  font-size: 13.5px;
}
.text-button {
  min-height: 38px;
  background: transparent;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.matcher-footer-line {
  margin-top: 22px;
  text-align: center;
  color: var(--gray);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
}
[hidden] { display: none !important; }

/* ===== RITUALS ===== */
.rituals {
  background:
    radial-gradient(circle at 12% 18%, rgba(139,195,74,0.20), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(197,225,165,0.40), transparent 34%),
    linear-gradient(180deg, var(--mint) 0%, #edf8e8 100%);
}
.rituals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: start; }
.ritual-card {
  align-self: start;
  min-height: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(197,225,165,0.66), transparent 30%),
    linear-gradient(155deg, rgba(247,251,244,0.92) 0%, rgba(232,245,233,0.96) 58%, rgba(213,235,203,0.92) 100%);
  border: 1px solid rgba(139,195,74,0.34); border-radius: var(--radius-lg);
  padding: 34px 28px 32px; transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 16px 42px rgba(46,125,50,0.08);
}
.ritual-card::after {
  content: '';
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(197,225,165,0.34);
  pointer-events: none;
}
.ritual-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage); }
.ritual-num { font-family: var(--serif); font-size: 54px; color: rgba(46,125,50,0.22); font-weight: 700; line-height: 1; margin-bottom: 16px; transition: var(--transition); }
.ritual-card:hover .ritual-num { color: rgba(46,125,50,0.34); }
.ritual-icon { font-size: 26px; margin-bottom: 14px; }
.ritual-card h3 { font-size: 19px; color: var(--ink); margin-bottom: 12px; }
.ritual-card p { font-family: var(--sans); font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; }
.rituals-note { text-align: center; margin-top: 44px; font-family: var(--sans); font-size: 13px; color: var(--gray); letter-spacing: 0.04em; }

/* ===== ABOUT ===== */
.about { background: var(--pearl); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-visual .panda-frame {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--cream), var(--cream-deep));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.about-visual .panda-frame img { width: 78%; filter: drop-shadow(0 18px 30px rgba(60,50,30,0.2)); }
.about-text .section-tag { margin-left: 0; }
.about-text .section-tag::before { display: none; }
.about-text h2 { font-size: clamp(28px,3.6vw,42px); margin-bottom: 24px; line-height: 1.28; }
.about-text p { font-size: 16px; color: var(--ink-soft); line-height: 2; margin-bottom: 20px; }
.about-values { display: grid; gap: 18px; margin-top: 30px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { font-size: 22px; flex-shrink: 0; }
.value strong { display: block; font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.value span { font-family: var(--sans); font-size: 13px; color: var(--gray); }

/* ===== COURSES ===== */
.courses { background: var(--cream); }
.course-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: -26px 0 46px;
}
.course-path > div {
  min-height: 106px;
  padding: 22px 24px;
  border: 1px solid rgba(197,225,165,0.74);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(232,245,233,0.72)),
    var(--pearl);
  box-shadow: 0 10px 28px rgba(24,49,24,0.05);
}
.course-path span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.course-path strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 60px; }
.course-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(197,225,165,0.74);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 12px 32px rgba(24,49,24,0.06);
}
.course-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(139,195,74,0.72); }
.course-img-wrap { height: 190px; overflow: hidden; background: linear-gradient(150deg, var(--cream), var(--cream-deep)); position: relative; }
.course-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.course-card:hover .course-img { transform: scale(1.04); }
.course-img-placeholder { height: 170px; background: linear-gradient(150deg, var(--cream), var(--cream-deep)); display: flex; align-items: center; justify-content: center; }
.course-emoji { font-size: 48px; opacity: 0.5; }
.course-info { padding: 30px 30px 34px; }
.course-tag { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--gold-light); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.course-info h3 { font-size: 21px; color: var(--ink); margin-bottom: 12px; line-height: 1.25; }
.course-info > p { font-family: var(--sans); font-size: 13.5px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 20px; }
.course-meta { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 12px; color: var(--gray); margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.btn-notify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 150px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(22,32,24,0.86);
  padding: 13px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-notify::after {
  content: '→';
  font-size: 13px;
  line-height: 1;
  transform: translateX(-3px);
  opacity: 0;
  transition: var(--transition);
}
.btn-notify:hover { background: var(--ink); color: var(--cream); padding-right: 18px; }
.btn-notify:hover::after { transform: translateX(0); opacity: 1; }
.partner-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,244,0.98)); }
.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 42%);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
.partner-card:hover::before { opacity: 1; }
.partner-visual {
  height: clamp(220px, 18vw, 280px);
  background: var(--mint);
}
.partner-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,34,14,0.00) 44%, rgba(10,34,14,0.34) 100%),
    linear-gradient(120deg, rgba(46,125,50,0.16), rgba(232,245,233,0.04));
  pointer-events: none;
}
.partner-card .course-img {
  filter: saturate(0.94) contrast(1.02);
}
.partner-card:nth-child(1) .course-img { object-position: 44% 50%; }
.partner-card:nth-child(2) .course-img { object-position: 52% 52%; }
.partner-card:nth-child(3) .course-img { object-position: 50% 52%; }
.partner-card .course-info {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner-card .course-info > p { margin-bottom: 28px; }
.partner-card .btn-notify { margin-top: auto; }
.course-signup { background: var(--ink); border-radius: var(--radius-lg); padding: 60px; text-align: center; color: var(--cream); position: relative; overflow: hidden; }
.course-signup::before { content: '✦'; position: absolute; top: 30px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 20px; }
.course-signup h3 { font-size: 28px; color: var(--pearl); margin-bottom: 14px; }
.course-signup p { font-family: var(--sans); font-size: 14.5px; color: rgba(246,241,233,0.7); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.signup-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.email-input { flex: 1; padding: 15px 22px; border: 1px solid rgba(217,195,154,0.4); background: rgba(255,255,255,0.05); border-radius: 100px; font-family: var(--sans); font-size: 14px; color: var(--pearl); outline: none; }
.email-input::placeholder { color: rgba(246,241,233,0.4); }
.email-input:focus { border-color: var(--gold); }
.course-signup .btn-primary { background: var(--gold-deep); color: var(--pearl); }
.course-signup .btn-primary:hover { background: var(--gold); }
.signup-note { font-family: var(--sans); font-size: 12px; color: rgba(246,241,233,0.45); }
.form-status {
  min-height: 22px;
  margin: 0 auto 10px;
  color: var(--pistachio);
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
}
.form-status.error { color: #ffd8d8; }

/* ===== JOURNAL ===== */
.journal {
  background:
    linear-gradient(180deg, var(--pearl) 0%, rgba(232,245,233,0.92) 100%);
}
.journal-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}
.journal-header .section-tag { margin-left: 42px; }
.journal-header .section-tag::after { display: none; }
.journal-header h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.18;
}
.journal-header p {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
}
.journal-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 28px;
}
.journal-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(197,225,165,0.74);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 12px 32px rgba(24,49,24,0.06);
  transition: var(--transition);
}
.journal-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.journal-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: var(--transition);
  background: var(--cream-deep);
}
.journal-card:hover .journal-img { transform: scale(1.035); }
.featured-journal .journal-img { height: 288px; }
.journal-copy {
  padding: 28px 28px 32px;
}
.journal-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.journal-copy h3 {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.24;
  margin-bottom: 14px;
}
.featured-journal .journal-copy h3 { font-size: 29px; }
.journal-copy p {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.8;
}

/* ===== COMMUNITY ===== */
.community { background: var(--pearl); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.social-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,244,0.98)); border: 1px solid rgba(197,225,165,0.72); border-radius: var(--radius-lg);
  padding: 36px 30px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 10px 28px rgba(24,49,24,0.05);
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.social-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.social-head svg { color: var(--ink); }
.social-head h3 { font-size: 20px; color: var(--ink); }
.social-qr { width: 180px; height: 180px; object-fit: contain; border-radius: var(--radius); margin-bottom: 20px; border: 1px solid var(--line); background: #fff; }
.social-handle { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.social-sub { font-family: var(--sans); font-size: 12.5px; color: var(--gray); margin-bottom: 20px; }
.social-btn { margin-top: auto; background: var(--ink); color: var(--cream); padding: 11px 28px; border-radius: 100px; font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: var(--transition); }
.social-btn:hover { background: var(--gold-deep); }
.social-btn.disabled { background: var(--cream-deep); color: var(--gray); cursor: default; }
.social-btn.disabled:hover { background: var(--cream-deep); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(246,241,233,0.7); padding: 80px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(217,195,154,0.18); }
.footer-logo { height: 46px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22)); }
.footer-brand p { font-family: var(--sans); font-size: 14px; line-height: 1.8; margin-bottom: 14px; max-width: 300px; }
.footer-brand .footer-tagline { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 16px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-family: var(--sans); font-size: 13.5px; color: rgba(246,241,233,0.65); margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-link-button { display: block; margin-bottom: 12px; padding: 0; border: 0; border-bottom: 1px solid rgba(197,225,165,0.36); background: transparent; color: var(--pistachio); font-family: var(--sans); font-size: 13.5px; cursor: pointer; transition: var(--transition); }
.footer-link-button:hover { color: var(--gold-light); border-color: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-family: var(--sans); font-size: 12.5px; color: rgba(246,241,233,0.45); flex-wrap: wrap; gap: 10px; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; background: rgba(32,33,29,0.6); backdrop-filter: blur(6px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-inner { background: var(--pearl); border-radius: var(--radius-lg); padding: 50px 44px; max-width: 440px; text-align: center; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; font-size: 20px; color: var(--gray); cursor: pointer; }
.modal-icon { font-size: 40px; display: block; margin-bottom: 18px; }
.modal-inner h3 { font-size: 24px; color: var(--ink); margin-bottom: 12px; }
.modal-inner p { font-family: var(--sans); font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 26px; }

/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(12,28,15,0.72);
  backdrop-filter: blur(12px);
}
.product-modal.open { display: flex; }
.product-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90svh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.78fr);
  overflow: hidden;
  border: 1px solid rgba(197,225,165,0.68);
  border-radius: var(--radius-lg);
  background: var(--pearl);
  box-shadow: 0 34px 100px rgba(0,0,0,0.32);
}
.product-modal-close {
  z-index: 4;
  color: var(--ink);
}
.product-modal-gallery {
  min-height: 620px;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(197,225,165,0.55), transparent 32%),
    linear-gradient(150deg, var(--mint), var(--cream-deep));
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-modal-main {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(24,49,24,0.12);
  background: var(--white);
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.product-thumb {
  min-height: 72px;
  border: 1px solid rgba(46,125,50,0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.14;
  object-fit: cover;
}
.product-thumb.active,
.product-thumb:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}
.product-modal-copy {
  padding: 54px 48px 48px;
  overflow-y: auto;
}
.product-modal-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-modal-copy h3 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.product-modal-subtitle {
  color: var(--jade-deep);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-modal-price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}
.product-modal-desc {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.product-modal-grid > div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(232,245,233,0.56);
}
.product-modal-grid span,
.product-modal-section > span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-modal-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}
.product-modal-section {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.76);
}
.product-modal-section li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.65;
  padding: 7px 0;
}
.product-modal-section li::before {
  content: '✦';
  color: var(--gold-deep);
  font-size: 10px;
  line-height: 1.8;
}
.product-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-modal-secondary {
  border-color: rgba(46,125,50,0.42);
}

/* ===== ORDER & DELIVERY ===== */
.order-modal { position: fixed; inset: 0; z-index: 2300; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(7,25,12,0.78); backdrop-filter: blur(14px); }
.order-modal.open { display: flex; }
.order-panel { position: relative; width: min(1080px, 100%); max-height: min(90svh, 820px); display: grid; grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr); overflow: hidden; border: 1px solid rgba(197,225,165,0.42); border-radius: var(--radius-lg); background: var(--pearl); box-shadow: 0 38px 110px rgba(0,0,0,0.4); }
.order-close { position: absolute; z-index: 4; top: 20px; right: 22px; width: 38px; height: 38px; border: 1px solid rgba(46,125,50,0.18); border-radius: 50%; background: rgba(247,251,244,0.86); color: var(--ink); font-size: 14px; cursor: pointer; transition: var(--transition); }
.order-close:hover { transform: rotate(90deg); border-color: var(--forest); }
.order-brand-panel { min-height: 670px; display: flex; flex-direction: column; justify-content: space-between; padding: 48px 42px 42px; background: linear-gradient(165deg, #183a1d 0%, #0e2513 100%); color: var(--pearl); }
.order-logo { width: 132px; height: auto; margin-bottom: 60px; filter: brightness(0) invert(1); opacity: 0.92; }
.order-eyebrow, .order-kicker { display: block; margin-bottom: 14px; color: var(--sage); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.order-brand-panel h2 { max-width: 360px; margin-bottom: 22px; color: var(--pearl); font-size: 40px; line-height: 1.14; }
.order-brand-panel p { max-width: 360px; color: rgba(247,251,244,0.7); font-family: var(--sans); font-size: 14px; line-height: 1.85; }
.order-assurances { display: grid; gap: 14px; padding-top: 38px; border-top: 1px solid rgba(197,225,165,0.2); }
.order-assurances div { display: flex; align-items: center; gap: 14px; }
.order-assurances span { color: var(--sage); font-family: var(--serif); font-size: 12px; }
.order-assurances strong { color: rgba(247,251,244,0.82); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; }
.order-content { min-height: 670px; padding: 64px 62px 48px; overflow-y: auto; background: linear-gradient(180deg, #fbfdf9 0%, var(--mint) 100%); }
.order-content h3 { margin-bottom: 16px; color: var(--ink); font-size: 36px; line-height: 1.18; }
.order-intro { max-width: 560px; margin-bottom: 34px; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; line-height: 1.8; }
.order-form { display: grid; }
.order-form label { margin: 0 0 9px; color: var(--ink); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.order-input-wrap { display: grid; grid-template-columns: 44px 1fr; align-items: center; margin-bottom: 22px; border: 1px solid rgba(46,125,50,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.86); transition: var(--transition); }
.order-input-wrap:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(139,195,74,0.13); }
.order-input-wrap > span { color: var(--olive); font-family: var(--serif); font-size: 17px; text-align: center; }
.order-input-wrap input { width: 100%; padding: 16px 16px 16px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-family: var(--sans); font-size: 15px; }
.order-input-wrap input::placeholder { color: rgba(55,69,57,0.44); }
.order-form-status { min-height: 22px; margin: -8px 0 12px; color: var(--ink-soft); font-family: var(--sans); font-size: 12.5px; }
.order-form-status.error { color: #9b3f32; }
.order-submit { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border: 0; border-radius: 100px; background: var(--forest); color: var(--pearl); font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.order-submit:hover { background: var(--olive); transform: translateY(-1px); box-shadow: var(--shadow); }
.order-submit:disabled { opacity: 0.65; cursor: wait; }
.order-preview-note { margin: 16px 0 0; padding: 11px 14px; border-left: 2px solid var(--sage); background: rgba(197,225,165,0.2); color: var(--ink-soft); font-family: var(--sans); font-size: 11.5px; line-height: 1.6; }
.order-help { display: flex; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--sans); font-size: 12.5px; }
.order-help span { color: var(--gray); }
.order-help a { color: var(--forest); font-weight: 600; }
.order-back { display: flex; gap: 8px; margin-bottom: 32px; padding: 0; border: 0; background: transparent; color: var(--forest); font-family: var(--sans); font-size: 12px; font-weight: 600; cursor: pointer; }
.order-result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.order-result-head h3 { margin: 0; font-size: 38px; }
.order-status-pill { flex: 0 0 auto; padding: 8px 14px; border: 1px solid rgba(46,125,50,0.22); border-radius: 100px; background: rgba(197,225,165,0.28); color: var(--forest); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.order-summary { display: grid; grid-template-columns: 84px 1fr; align-items: center; gap: 18px; margin-bottom: 36px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,0.75); }
.order-summary img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius); }
.order-summary div { display: grid; gap: 5px; }
.order-summary span, .order-summary small { color: var(--gray); font-family: var(--sans); font-size: 11.5px; }
.order-summary strong { color: var(--ink); font-family: var(--serif); font-size: 17px; }
.delivery-progress { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 34px; }
.delivery-line { position: absolute; top: 16px; left: 10%; right: 10%; height: 2px; background: rgba(46,125,50,0.14); }
.delivery-line span { display: block; width: 67%; height: 100%; background: var(--forest); }
.delivery-step { position: relative; z-index: 1; display: grid; justify-items: center; gap: 7px; color: var(--gray); font-family: var(--sans); text-align: center; }
.delivery-step i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(46,125,50,0.18); border-radius: 50%; background: var(--pearl); color: var(--gray); font-size: 11px; font-style: normal; }
.delivery-step span { font-size: 11.5px; font-weight: 600; }
.delivery-step small { font-size: 10px; }
.delivery-step.complete i, .delivery-step.active i { border-color: var(--forest); background: var(--forest); color: var(--pearl); }
.delivery-step.active span { color: var(--forest); }
.tracking-details { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 12px; margin-bottom: 14px; }
.tracking-details div { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.68); }
.tracking-details span { display: block; margin-bottom: 7px; color: var(--gray); font-family: var(--sans); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.tracking-details strong { color: var(--ink); font-family: var(--sans); font-size: 12.5px; }
.tracking-update { margin-bottom: 24px; padding: 14px 16px; border-left: 2px solid var(--sage); background: rgba(197,225,165,0.18); color: var(--ink-soft); font-family: var(--sans); font-size: 12.5px; line-height: 1.65; }
.order-support-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--forest); font-family: var(--sans); font-size: 12.5px; font-weight: 600; }

/* ===== SCROLL REVEAL ===== */
[data-reveal] { opacity: 1; transform: translateY(0); }
.reveal-ready [data-reveal] { opacity: 1; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-ready [data-reveal].in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .navbar { padding: 12px 0; }
  .nav-container { border-radius: 28px; margin: 0 18px; padding: 9px 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-shop { display: none; }
  .nav-track { display: none; }
  .hero-video { object-position: 58% center; }
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(10,34,14,0.18) 0%, rgba(10,34,14,0.58) 48%, rgba(10,34,14,0.86) 100%),
      linear-gradient(90deg, rgba(10,34,14,0.34), rgba(10,34,14,0.08));
  }
  .hero-inner { grid-template-columns: 1fr; text-align: left; gap: 0; padding-top: 150px; padding-bottom: 86px; align-items: end; }
  .hero-desc { margin-left: 0; margin-right: 0; max-width: 620px; }
  .hero-cta, .hero-trust { justify-content: flex-start; }
  .story-grid, .gifting-grid, .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .matcher-shell, .result-layout { grid-template-columns: 1fr; gap: 34px; }
  .matcher-tag.section-tag { margin-left: 0; }
  .matcher-tag.section-tag::before { display: none; }
  .pattern-preview { display: none; }
  .result-insights { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; margin-top: -18px; }
  .shop-toolbar-note { text-align: left; max-width: none; }
  .product-card.featured { flex-direction: column; }
  .product-card.featured .product-img-wrap, .product-card.featured .product-info { width: 100%; }
  .product-card.featured .product-info { padding: 34px; }
  .product-footer { align-items: flex-start; flex-direction: column; }
  .product-actions { justify-content: flex-start; width: 100%; }
  .btn-detail, .btn-reserve { flex: 1; min-width: 160px; }
  .course-path { grid-template-columns: 1fr; }
  .journal-header { grid-template-columns: 1fr; gap: 24px; }
  .journal-header .section-tag { margin-left: 0; }
  .journal-header .section-tag::before { display: none; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: auto; }
  .product-modal-panel { grid-template-columns: 1fr; max-height: 92svh; overflow-y: auto; }
  .product-modal-gallery { min-height: auto; }
  .product-modal-main { aspect-ratio: 4/3; flex: initial; }
  .product-modal-copy { overflow: visible; padding: 38px 30px 34px; }
  .order-panel { grid-template-columns: 1fr; max-height: 92svh; overflow-y: auto; }
  .order-brand-panel { min-height: auto; padding: 34px 32px; }
  .order-logo { width: 108px; margin-bottom: 30px; }
  .order-brand-panel h2 { max-width: 620px; font-size: 32px; }
  .order-brand-panel p { max-width: 620px; }
  .order-assurances { grid-template-columns: repeat(3, 1fr); margin-top: 28px; padding-top: 24px; }
  .order-content { min-height: auto; overflow: visible; padding: 42px 34px 38px; }
  .rituals-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid, .social-grid { grid-template-columns: 1fr; }
  .partner-card .course-info { min-height: auto; }
  .partner-visual { height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 4px; max-height: 0; overflow: hidden;
    background: var(--pearl); transition: max-height 0.4s ease; padding: 0 32px;
  }
  .mobile-menu.open { max-height: 400px; padding: 16px 32px 24px; }
  .mobile-menu a { font-family: var(--sans); font-size: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); letter-spacing: 0.06em; }
}
@media (max-width: 560px) {
  .container, .nav-container { padding: 0 22px; }
  .nav-container { padding: 8px 14px; margin: 0 12px; }
  .nav-logo .logo-img { height: 34px; }
  .navbar.scrolled .logo-img { height: 34px; }
  .lang-toggle { padding: 7px 12px; }
  .hamburger span { width: 22px; }
  .hero { min-height: 100svh; }
  .hero-video { object-position: 61% center; }
  .hero-inner { min-height: 100svh; padding-top: 132px; padding-bottom: 70px; }
  .hero-badge { font-size: 10px; letter-spacing: 0.12em; padding: 8px 14px; margin-bottom: 22px; }
  .hero-title { font-size: clamp(44px, 15vw, 68px); margin-bottom: 22px; }
  .hero-desc { font-size: 15.5px; line-height: 1.75; margin-bottom: 30px; }
  .hero-cta { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost { width: 100%; padding: 15px 20px; }
  .hero-trust { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero-scroll { display: none; }
  .rituals-grid { grid-template-columns: 1fr; }
  .gift-includes { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .course-signup { padding: 40px 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .routine-list { grid-template-columns: 1fr; }
  .quiz-actions { grid-template-columns: 1fr; }
  .quiz-panel h3 { min-height: auto; }
  .filter-group { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .filter-pill { width: 100%; }
  .product-actions { display: grid; grid-template-columns: 1fr; }
  .product-modal { padding: 14px; }
  .product-modal-gallery { padding: 18px; gap: 12px; }
  .product-thumbs { grid-template-columns: repeat(3, 1fr); }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-actions { display: grid; grid-template-columns: 1fr; }
  .journal-img,
  .featured-journal .journal-img { height: 220px; }
  .course-img-wrap { height: 180px; }
  .partner-visual { height: 220px; }
  .partner-card .course-info { padding: 26px 24px 30px; }
  .btn-notify { width: 100%; }
  .mobile-menu.open { max-height: 480px; }
  .order-modal { padding: 10px; }
  .order-close { position: fixed; top: 24px; right: 24px; }
  .order-brand-panel { padding: 30px 24px; }
  .order-brand-panel h2 { font-size: 27px; }
  .order-assurances { grid-template-columns: 1fr; gap: 10px; }
  .order-content { padding: 34px 22px 28px; }
  .order-content h3, .order-result-head h3 { font-size: 29px; }
  .order-help, .order-result-head { align-items: flex-start; flex-direction: column; }
  .order-summary { grid-template-columns: 68px 1fr; }
  .order-summary img { width: 68px; height: 68px; }
  .delivery-progress { margin-left: -6px; margin-right: -6px; }
  .delivery-step span { font-size: 10px; }
  .tracking-details { grid-template-columns: 1fr; }
}
