:root {
  --c-ink: #261F1B;
  --c-ink-soft: #4A3F38;
  --c-ink-mute: #7A6F66;
  --c-ocean: #3D5A6C;
  --c-ocean-deep: #243B4A;
  --c-sand: #F1E8D6;
  --c-fern: #889D6E;
  --c-fern-deep: #69824E;
  --c-beige: #D9A574;
  --c-paper: #FFFFFF;
  --c-line: rgba(38, 31, 27, 0.10);
  --c-shadow: rgba(36, 59, 74, 0.14);

  --grad-hero: linear-gradient(135deg, #F4ECDB 0%, #E5C9A4 45%, #A2B3BF 100%);
  --grad-pill: linear-gradient(120deg, #3D5A6C 0%, #889D6E 100%);

  --f-display: 'Poppins', system-ui, sans-serif;
  --f-body: 'Open Sans', system-ui, sans-serif;

  --fs-xs: 0.72rem;
  --fs-sm: 0.82rem;
  --fs-md: 0.92rem;
  --fs-lg: 1rem;
  --fs-xl: 1.15rem;
  --fs-h6: 0.95rem;
  --fs-h5: 1.05rem;
  --fs-h4: 1.2rem;
  --fs-h3: 1.4rem;
  --fs-h2: 1.65rem;
  --fs-h1: 2rem;
  --fs-hero: 2.4rem;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-sm: 0 2px 8px var(--c-shadow);
  --sh-md: 0 6px 20px var(--c-shadow);
  --sh-lg: 0 18px 40px var(--c-shadow);

  --t-fast: 0.18s ease;
  --t-base: 0.28s ease;
  --t-slow: 0.5s ease;

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-ocean); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-fern-deep); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }
p { margin-bottom: 0.6rem; }

.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-sm);
  padding: 0.7rem 1.25rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  margin-top: var(--space-sm);
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-pill); color: var(--c-paper); box-shadow: var(--sh-sm); }
.btn-primary:hover { color: var(--c-beige); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { background: transparent; color: var(--c-ocean); border-color: var(--c-ocean); }
.btn-ghost:hover { background: var(--c-ocean); color: var(--c-beige); }
.btn-soft { background: var(--c-paper); color: var(--c-ink); border: 1px solid var(--c-line); }
.btn-soft:hover { color: var(--c-fern-deep); border-color: var(--c-fern); }

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  transform: translateY(0);
  transition: transform var(--t-base);
}
.topbar.is-hidden { transform: translateY(-110%); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
  padding: 0.55rem var(--space-md);
  max-width: var(--container); margin: 0 auto;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-ink);
  max-width: 60%;
}
.brand:hover { color: var(--c-ocean); }
.brand-mark {
  width: 1.6rem; height: 1.6rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-pill);
  position: relative;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.7);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 30%;
  background: var(--c-paper);
  border-radius: 50%;
}
.brand-name { font-size: var(--fs-md); font-weight: 600; letter-spacing: 0.01em; }
.brand-tag { font-size: 0.6rem; color: var(--c-ink-mute); display: block; line-height: 1; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-menu {
  display: flex; align-items: center; gap: var(--space-md);
}
.nav-menu .nav-list { display: flex; gap: var(--space-md); list-style: none; }
.nav-menu .nav-list a {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  font-weight: 500;
  position: relative; padding: 0.3rem 0;
}
.nav-menu .nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad-pill);
  transition: width var(--t-base); border-radius: 2px;
}
.nav-menu .nav-list a:hover { color: var(--c-ocean); }
.nav-menu .nav-list a:hover::after { width: 100%; }
.nav-cta { font-size: var(--fs-sm); padding: 0.45rem 0.9rem; margin-top: 0; }

.menu-toggle {
  display: none;
  width: 2.2rem; height: 2.2rem;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  cursor: pointer;
  align-items: center; justify-content: center;
  font-size: 1rem; color: var(--c-ink);
  position: relative;
  z-index: 101;
  transition: all var(--t-base);
}
.menu-toggle:hover { color: var(--c-ocean); border-color: var(--c-ocean); }

.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 100%; height: 100vh;
  background: var(--c-sand);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  display: flex; flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 2.2rem; height: 2.2rem;
  background: var(--c-paper); border: 1px solid var(--c-line);
  border-radius: var(--r-md); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--c-ink);
}
.mobile-menu-close:hover { color: var(--c-ocean); }
.mobile-menu .mobile-list {
  list-style: none; display: flex; flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.mobile-menu .mobile-list a {
  font-family: var(--f-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--c-ink);
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--c-line);
  display: block;
}
.mobile-menu .mobile-list a:hover { color: var(--c-ocean); }
.mobile-menu-footer {
  margin-top: auto;
  font-size: var(--fs-sm);
  color: var(--c-ink-mute);
}
body.menu-open .menu-toggle { display: none; }

main { padding-top: 3.4rem; }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--grad-hero), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(58,134,184,0.15), transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(107,155,107,0.18), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  width: 100%; align-items: center;
  padding: var(--space-2xl) 0;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(255,255,255,0.7);
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  color: var(--c-fern-deep);
  margin-bottom: var(--space-md);
}
.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-sm);
}
.hero h1 .accent { color: var(--c-ocean-deep); font-style: italic; font-weight: 500; }
.hero p.lead {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 32rem;
  margin-bottom: var(--space-md);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.breath-stage {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  max-width: 22rem; margin: 0 auto;
}
.breath-circle {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--c-beige) 40%, var(--c-ocean) 110%);
  box-shadow: var(--sh-lg);
  animation: breath 7s ease-in-out infinite;
}
.breath-ring {
  position: absolute; inset: -8%;
  border-radius: 50%;
  border: 2px solid rgba(58,134,184,0.25);
  animation: ripple 7s ease-in-out infinite;
}
.breath-ring.r2 { inset: -18%; border-color: rgba(107,155,107,0.25); animation-delay: 1s; }
.breath-ring.r3 { inset: -28%; border-color: rgba(233,216,196,0.6); animation-delay: 2s; }
.breath-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-paper);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  width: 70%;
}
.breath-leaf {
  position: absolute; width: 1.4rem; height: 1.4rem;
  color: var(--c-fern-deep);
  background: var(--c-paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
  animation: float 6s ease-in-out infinite;
}
.breath-leaf.l1 { top: 5%; left: 12%; }
.breath-leaf.l2 { bottom: 10%; right: 5%; animation-delay: 2s; }
.breath-leaf.l3 { top: 50%; right: -2%; animation-delay: 4s; }

@keyframes breath {
  0%, 100% { transform: scale(0.85); }
  50% { transform: scale(1); }
}
@keyframes ripple {
  0% { transform: scale(0.85); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

.section { padding: var(--space-2xl) 0; position: relative; }
.section.alt { background: var(--c-paper); }
.section.deep { background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-sand) 100%); }
.section-head {
  max-width: 38rem; margin: 0 auto var(--space-xl) auto;
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-fern-deep);
  margin-bottom: var(--space-xs);
}
.section h2 { font-size: var(--fs-h2); }
.section h2 em { color: var(--c-ocean-deep); font-style: normal; }
.section .lead { color: var(--c-ink-soft); font-size: var(--fs-md); }

.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-md);
}
.pillar {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.pillar-icon {
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--c-sand);
  color: var(--c-ocean-deep);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}
.pillar h3 { font-size: var(--fs-h5); margin-bottom: var(--space-2xs); }
.pillar p { font-size: var(--fs-sm); color: var(--c-ink-soft); }

.timeline {
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px dashed var(--c-line);
  display: flex; flex-direction: column; gap: var(--space-md);
}
.tl-item {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  position: relative;
  border: 1px solid var(--c-line);
}
.tl-item::before {
  content: ""; position: absolute; left: -1.85rem; top: 1.2rem;
  width: 0.85rem; height: 0.85rem; border-radius: 50%;
  background: var(--grad-pill);
  box-shadow: 0 0 0 4px var(--c-sand);
}
.tl-time {
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-ocean-deep);
  text-transform: uppercase;
}
.tl-item h4 { font-size: var(--fs-h5); margin: var(--space-2xs) 0; }
.tl-item p { font-size: var(--fs-sm); color: var(--c-ink-soft); margin: 0; }

.split-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.split-card {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-line);
}
.split-card.feat {
  background: var(--grad-pill);
  color: var(--c-paper);
}
.split-card.feat h3, .split-card.feat .badge { color: var(--c-paper); }
.split-card.feat p { color: rgba(255,255,255,0.92); }
.split-card .badge {
  display: inline-block;
  font-size: var(--fs-xs); letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  color: var(--c-fern-deep);
}
.split-card h3 { font-size: var(--fs-h5); margin-bottom: var(--space-2xs); }
.split-card p { font-size: var(--fs-sm); margin: 0; }
.split-card ul { list-style: none; margin-top: var(--space-sm); display: flex; flex-direction: column; gap: 0.4rem; }
.split-card li { font-size: var(--fs-sm); display: flex; gap: 0.4rem; align-items: flex-start; }
.split-card li::before { content: "\2022"; color: currentColor; }

.tea-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg); align-items: center;
}
.tea-art {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.tea-art img { width: 100%; height: 100%; object-fit: cover; }
.tea-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45,45,45,0.25) 100%);
}
.tea-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.tea-stat {
  background: var(--c-sand);
  border-radius: var(--r-md);
  padding: var(--space-sm);
}
.tea-stat .num {
  font-family: var(--f-display);
  font-size: var(--fs-h3);
  color: var(--c-ocean-deep);
  display: block;
  font-weight: 600;
}
.tea-stat .lbl { font-size: var(--fs-xs); color: var(--c-ink-mute); text-transform: uppercase; letter-spacing: 0.15em; }

.swatch-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: var(--space-md);
}
.swatch {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.swatch::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
}
.swatch.s1::before { background: var(--c-ocean); }
.swatch.s2::before { background: var(--c-fern); }
.swatch.s3::before { background: var(--c-beige); }
.swatch.s4::before { background: var(--c-ocean-deep); }
.swatch h4 { font-size: var(--fs-h6); margin-bottom: var(--space-2xs); padding-left: 0.4rem; }
.swatch p { font-size: var(--fs-sm); color: var(--c-ink-soft); padding-left: 0.4rem; margin: 0; }

.quote-band {
  background: var(--c-ocean-deep);
  color: var(--c-paper);
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-band::before {
  content: "\201C";
  position: absolute; left: 1rem; top: 0;
  font-family: var(--f-display);
  font-size: 8rem; line-height: 1;
  color: rgba(255,255,255,0.08);
}
.quote-band q { font-family: var(--f-display); font-size: 1.2rem; font-style: italic; color: var(--c-paper); }
.quote-band cite { display: block; font-style: normal; font-size: var(--fs-sm); margin-top: var(--space-sm); color: var(--c-beige); letter-spacing: 0.15em; text-transform: uppercase; }

.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--space-sm) var(--space-md);
  transition: box-shadow var(--t-base);
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-md);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.2rem; color: var(--c-ocean);
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-top: var(--space-xs); font-size: var(--fs-sm); color: var(--c-ink-soft); margin: 0; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 8rem;
  gap: var(--space-sm);
}
.mosaic-cell {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--space-sm);
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: var(--fs-sm);
  transition: transform var(--t-base);
}
.mosaic-cell:hover { transform: scale(1.02); }
.mosaic-cell.span-2 { grid-column: span 2; }
.mosaic-cell.tall { grid-row: span 2; }
.mosaic-cell.tone-a { background: var(--c-beige); border-color: transparent; }
.mosaic-cell.tone-b { background: var(--c-ocean); color: var(--c-paper); border-color: transparent; }
.mosaic-cell.tone-c { background: var(--c-fern); color: var(--c-paper); border-color: transparent; }
.mosaic-cell .ic { font-size: 1.3rem; margin-bottom: 0.4rem; }
.mosaic-cell h4 { font-size: var(--fs-h6); color: inherit; }
.mosaic-cell p { font-size: var(--fs-xs); color: inherit; opacity: 0.9; margin: 0; }

.cta-band {
  background: var(--grad-pill);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  color: var(--c-paper);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-md);
  align-items: center;
}
.cta-band h2 { color: var(--c-paper); font-size: var(--fs-h2); margin-bottom: var(--space-2xs); }
.cta-band p { color: rgba(255,255,255,0.92); font-size: var(--fs-md); margin: 0; }
.cta-band .btn { background: var(--c-paper); color: var(--c-ocean-deep); }
.cta-band .btn:hover { color: var(--c-fern-deep); }

.footer {
  background: #1E2A30;
  color: #C7CDB9;
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-lg);
}
.footer h5 {
  color: var(--c-paper);
  font-size: var(--fs-h6);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}
.footer p, .footer li, .footer a {
  font-size: var(--fs-sm);
  color: #C7CDB9;
}
.footer a:hover { color: var(--c-beige); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer .brand { color: var(--c-paper); margin-bottom: var(--space-xs); }
.footer .brand-tag { color: #9CA48E; }
.footer-meta {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-sm);
  font-size: var(--fs-xs); color: #9CA48E;
}

.contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: stretch;
}
.contact-card {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.contact-info {
  background: var(--grad-pill);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  color: var(--c-paper);
  display: flex; flex-direction: column; gap: var(--space-md);
}
.contact-info h3 { color: var(--c-paper); font-size: var(--fs-h4); }
.contact-info .ci-item { display: flex; gap: var(--space-sm); align-items: flex-start; font-size: var(--fs-sm); }
.contact-info .ci-item i { font-size: 1rem; margin-top: 0.1rem; color: var(--c-beige); }
.contact-info p { color: rgba(255,255,255,0.92); margin: 0; font-size: var(--fs-sm); }
.contact-info .small { font-size: var(--fs-xs); color: rgba(255,255,255,0.75); }

.field { margin-bottom: var(--space-sm); }
.field label {
  display: block;
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: 0.3rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-sand);
  font-family: var(--f-body);
  font-size: var(--fs-md);
  color: var(--c-ink);
  transition: border var(--t-base), background var(--t-base);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--c-ocean); background: var(--c-paper);
}
.field textarea { resize: vertical; min-height: 7rem; }
.field .err { display: block; font-size: var(--fs-xs); color: #B36A47; margin-top: 0.25rem; min-height: 1rem; }
.field input.invalid, .field textarea.invalid { border-color: #B36A47; }
.field-check {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: var(--fs-xs); color: var(--c-ink-soft);
  margin: var(--space-sm) 0;
}
.field-check input { width: 1rem; height: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.field-check a { color: var(--c-ocean); text-decoration: underline; }

.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; }

.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 80;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  box-shadow: var(--sh-lg);
  max-width: 30rem;
  margin-left: auto;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: var(--fs-h6); margin-bottom: 0.3rem; }
.cookie-banner p { font-size: var(--fs-xs); color: var(--c-ink-soft); margin-bottom: var(--space-xs); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.cookie-actions .btn { font-size: var(--fs-xs); padding: 0.45rem 0.8rem; margin-top: 0.4rem; }
.cookie-settings {
  display: none;
  border-top: 1px dashed var(--c-line);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}
.cookie-settings.open { display: block; }
.toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; font-size: var(--fs-xs);
}
.toggle-row .lbl { color: var(--c-ink-soft); }
.toggle {
  position: relative; width: 2.2rem; height: 1.2rem;
  background: var(--c-line); border-radius: var(--r-pill);
  cursor: pointer; transition: background var(--t-base);
}
.toggle::after {
  content: ""; position: absolute; left: 0.15rem; top: 0.15rem;
  width: 0.9rem; height: 0.9rem; border-radius: 50%;
  background: var(--c-paper); transition: transform var(--t-base);
}
.toggle.on { background: var(--c-ocean); }
.toggle.on::after { transform: translateX(1rem); }
.toggle.locked { background: var(--c-fern); cursor: not-allowed; opacity: 0.7; }

.exception-modal {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(45,45,45,0.6);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-md);
}
.exception-modal.open { display: flex; }
.exception-modal .em-card {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  max-width: 28rem;
  width: 100%;
  position: relative;
}
.exception-modal h3 { font-size: var(--fs-h4); margin-bottom: var(--space-xs); }
.exception-modal p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.exception-modal .em-close {
  position: absolute; top: 0.5rem; right: 0.5rem;
  width: 1.8rem; height: 1.8rem;
  background: var(--c-sand);
  border: none; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
}
.exception-modal .em-close:hover { color: var(--c-ocean); }

.disclaimer-band {
  background: var(--c-beige);
  border-left: 4px solid var(--c-fern);
  padding: var(--space-md);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
}
.disclaimer-band strong { color: var(--c-ink); }

.legal-hero {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: linear-gradient(180deg, #ECD8B6 0%, var(--c-sand) 100%);
  text-align: center;
}
.legal-hero h1 { font-size: var(--fs-h1); margin-bottom: var(--space-2xs); }
.legal-hero p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.legal {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid var(--c-line);
  margin: var(--space-lg) 0;
}
.legal h2 { font-size: var(--fs-h3); margin: var(--space-md) 0 var(--space-xs); padding-bottom: 0.3rem; border-bottom: 2px solid var(--c-line); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: var(--fs-h5); margin: var(--space-md) 0 var(--space-2xs); color: var(--c-ocean-deep); }
.legal p, .legal li { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.legal ul, .legal ol { padding-left: 1.2rem; margin: var(--space-xs) 0 var(--space-sm); }
.legal li { margin-bottom: 0.3rem; }
.legal .updated {
  font-size: var(--fs-xs);
  color: var(--c-ink-mute);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.table-wrap { overflow-x: auto; margin: var(--space-sm) 0; border: 1px solid var(--c-line); border-radius: var(--r-md); }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 30rem; }
.table-wrap th, .table-wrap td { padding: 0.6rem 0.75rem; text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--c-line); }
.table-wrap th { background: var(--c-sand); font-family: var(--f-display); font-weight: 500; }
.table-wrap tr:last-child td { border-bottom: none; }
.home-button {
  display: inline-block; margin-top: var(--space-md);
  font-size: var(--fs-sm); color: var(--c-ocean);
  font-family: var(--f-display);
}
.home-button:hover { color: var(--c-fern-deep); }

.center-page {
  min-height: calc(100vh - 16rem);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
}
.center-page .center-content { max-width: 32rem; }
.center-page h1 { font-size: var(--fs-h1); margin-bottom: var(--space-xs); }
.center-page .ic-big {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-pill);
  color: var(--c-paper);
  font-size: 1.6rem;
  margin: 0 auto var(--space-md);
  box-shadow: var(--sh-md);
}
.center-page p { font-size: var(--fs-md); color: var(--c-ink-soft); }

.guide-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-md);
}
.guide-card {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-base);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.guide-card .gc-num {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-ocean);
  display: block;
  margin-bottom: var(--space-2xs);
}
.guide-card h3 { font-size: var(--fs-h5); margin-bottom: var(--space-2xs); }
.guide-card p { font-size: var(--fs-sm); color: var(--c-ink-soft); margin: 0; }

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}
.step {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid var(--c-line);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: -0.7rem; right: 1rem;
  background: var(--grad-pill);
  color: var(--c-paper);
  font-family: var(--f-display);
  font-size: var(--fs-xs);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-pill);
}
.step h4 { font-size: var(--fs-h6); margin-bottom: var(--space-2xs); }
.step p { font-size: var(--fs-sm); color: var(--c-ink-soft); margin: 0; }

.habit-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.habit-day {
  background: var(--c-paper);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.4rem;
  text-align: center;
  border: 1px solid var(--c-line);
  font-size: var(--fs-xs);
}
.habit-day.active { background: var(--c-fern); color: var(--c-paper); border-color: transparent; }
.habit-day.rest { background: var(--c-beige); }
.habit-day .d { font-family: var(--f-display); font-weight: 600; font-size: var(--fs-md); display: block; }

.rhythm {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md);
}
.rhythm-card {
  background: var(--c-paper); border-radius: var(--r-lg); padding: var(--space-md);
  border: 1px solid var(--c-line);
}
.rhythm-card h4 { font-size: var(--fs-h6); margin-bottom: var(--space-xs); display: flex; align-items: center; gap: 0.4rem; }
.rhythm-card h4 i { color: var(--c-ocean); }
.rhythm-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.rhythm-card li {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  padding-left: 1rem;
  position: relative;
}
.rhythm-card li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: var(--c-fern);
}

.intro-band {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg); align-items: center;
}
.intro-band img { border-radius: var(--r-xl); object-fit: cover; aspect-ratio: 4/5; width: 100%; }
.intro-band h2 { margin-bottom: var(--space-xs); }
.intro-band p { font-size: var(--fs-md); color: var(--c-ink-soft); }
.intro-band .meta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-md); }
.intro-band .meta-tag {
  font-size: var(--fs-xs);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  background: var(--c-sand);
  color: var(--c-ink-soft);
}

.photo-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}
.photo-duo-card {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-sm);
  background: var(--c-paper);
}
.photo-duo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  :root {
    --fs-hero: 1.9rem;
    --fs-h1: 1.7rem;
    --fs-h2: 1.45rem;
    --space-2xl: 3.2rem;
  }
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-md); padding: var(--space-xl) 0 var(--space-2xl); }
  .breath-stage { max-width: 17rem; }
  .tea-grid, .intro-band, .contact-grid, .cta-band, .rhythm { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .nav-menu .nav-list { display: none; }
  .nav-menu { gap: 0.4rem; }
  .menu-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .split-cards { grid-template-columns: 1fr; }
  .photo-duo { grid-template-columns: 1fr; }
  .habit-grid { grid-template-columns: 1fr; gap: var(--space-xs); }
  .habit-day {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    padding: 0.55rem 0.75rem;
    text-align: left;
  }
  .habit-day .d { display: inline-block; min-width: 2.75rem; margin: 0; font-size: var(--fs-sm); }
}

@media (max-width: 600px) {
  :root {
    --fs-hero: 1.65rem;
    --fs-h1: 1.45rem;
    --fs-h2: 1.3rem;
    --fs-h3: 1.15rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
  }
  body { font-size: var(--fs-sm); }
  .topbar-inner { padding: 0.5rem 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .hero { min-height: 80vh; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .legal { padding: var(--space-md); }
  .quote-band { padding: var(--space-xl) var(--space-sm); }
  .quote-band q { font-size: 1.05rem; }
  .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; padding: var(--space-sm); }
  .habit-day { padding: 0.5rem 0.65rem; }
}

@media (max-width: 380px) {
  :root { --fs-hero: 1.45rem; }
  .brand-name { font-size: var(--fs-sm); }
  .brand-tag { display: none; }
  .breath-stage { max-width: 14rem; }
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .mosaic-cell.span-2, .mosaic-cell.tall { grid-column: auto; grid-row: auto; }
}
