:root {
  --cream: #f8f4ee;
  --ivory: #fffdf8;
  --sand: #eae1d7;
  --sage: #c9d0c0;
  --olive: #3f4a35;
  --terracotta: #b46c4d;
  --rose: #e7cec3;
  --gold: #c88a2c;
  --taupe: #83786c;
  --charcoal: #2f332a;
  --line: rgba(63, 74, 53, .15);
  --shadow: 0 16px 42px rgba(47, 51, 42, .13);
  --serif: "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--olive);
  background: #dde3dc;
  font-family: var(--sans);
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; min-height: 100%; background: linear-gradient(135deg, #e8eee7, #d8ded7); }
body { min-height: 100svh; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.app-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: auto;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.topbar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(68px + env(safe-area-inset-top));
  margin: auto;
  padding: env(safe-area-inset-top) 16px 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
  border-bottom: 1px solid rgba(63,74,53,.06);
  background: rgba(248,244,238,.92);
  backdrop-filter: blur(14px);
}

.brand-button { min-width: 0; justify-self: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.brand-button img { display: block; width: min(148px, 100%); height: auto; mix-blend-mode: multiply; }
.icon-button { width: 40px; height: 40px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,253,248,.76); cursor: pointer; transition: transform .18s ease, background .18s ease; }
.icon-button:active { transform: scale(.94); }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.back-button.is-hidden { visibility: hidden; pointer-events: none; }
.topbar-actions { grid-column: 3; display: flex; justify-content: flex-end; align-items: center; gap: 3px; }
.language-switch { display: grid; grid-template-columns: repeat(3, 1fr); padding: 2px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,253,248,.8); }
.language-switch button { min-width: 25px; height: 30px; padding: 0 4px; border: 0; border-radius: 999px; color: var(--taupe); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .03em; cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: white; background: var(--terracotta); }
.nav-label { font-size: inherit !important; line-height: inherit !important; }
.sound-button { position: relative; }
.sound-button.is-active { color: var(--terracotta); background: rgba(231,206,195,.42); }
.sound-button.is-active::after { content: ""; position: absolute; right: 5px; top: 5px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(200,138,44,.12); }
.sound-button.is-active .sound-slash { display: none; }

.screen {
  min-height: 100svh;
  padding: calc(86px + env(safe-area-inset-top)) 18px calc(92px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  animation: screen-in .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes screen-in { from { opacity: .2; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bottom-nav {
  position: fixed;
  z-index: 35;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(14px);
}
.bottom-nav button { min-height: 54px; padding: 4px 2px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 0; border-radius: 13px; color: var(--taupe); background: transparent; font-size: 12px; cursor: pointer; }
.bottom-nav button span { font-size: 19px; line-height: 1; }
.bottom-nav button.is-active { color: var(--terracotta); background: rgba(231,206,195,.28); }

.overline { display: block; margin-bottom: 9px; color: var(--gold); font-size: 12px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; width: max-content; margin-bottom: 12px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--olive); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; background: rgba(255,253,248,.65); }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,138,44,.12); }
.sample-chip { display: inline-flex; align-items: center; min-height: 24px; padding: 4px 7px; border: 1px solid rgba(180,108,77,.22); border-radius: 7px; color: var(--terracotta); background: rgba(231,206,195,.26); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sample-line { margin: 14px 0; padding: 10px 12px; border-radius: 12px; color: var(--taupe); background: rgba(234,225,215,.65); font-size: 13px; line-height: 1.45; }

.page-head { margin-bottom: 20px; }
.page-head h1, .hero-copy h1, .statement h1 { margin-bottom: 9px; font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.page-head h1 em, .hero-copy h1 em { color: var(--terracotta); font-weight: 500; }
.page-head p, .hero-copy p { margin-bottom: 0; color: var(--taupe); font-size: 16px; line-height: 1.55; }
.page-head.compact h1 { font-size: 33px; }

.hero { position: relative; min-height: 330px; margin: -18px -18px 22px; padding: 31px 22px 24px; overflow: hidden; display: flex; align-items: flex-end; border-radius: 0 0 32px 32px; background: var(--sand); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47,51,42,.02) 15%, rgba(47,51,42,.75) 100%); }
.hero-copy { position: relative; z-index: 1; color: white; }
.hero-copy h1 { max-width: 340px; color: white; }
.hero-copy p { color: rgba(255,255,255,.88); }
.hero .eyebrow { color: var(--charcoal); background: rgba(255,253,248,.88); }

.prompt-card { padding: 20px; border: 1px solid var(--line); border-radius: 26px 26px 26px 8px; background: var(--ivory); box-shadow: 0 10px 28px rgba(47,51,42,.07); }
.prompt-card h2 { margin-bottom: 8px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.05; }
.prompt-card p { color: var(--taupe); font-size: 15px; line-height: 1.55; }
.prompt-card .button { margin-top: 12px; }

.button { width: 100%; min-height: 52px; padding: 14px 18px; border: 0; border-radius: 16px; font-weight: 720; cursor: pointer; transition: transform .16s ease, opacity .16s ease, background .16s ease; }
.button:active { transform: scale(.985); }
.button:disabled { opacity: .4; cursor: default; }
.button-primary { color: white; background: var(--terracotta); box-shadow: 0 9px 22px rgba(180,108,77,.2); }
.button-secondary { color: var(--olive); background: var(--sage); }
.button-outline { color: var(--olive); border: 1px solid var(--line); background: var(--ivory); }
.button-quiet { color: var(--taupe); background: transparent; }
.button-small { width: auto; min-height: 38px; padding: 9px 13px; border-radius: 12px; font-size: 11px; }
.button-row { display: grid; gap: 8px; margin-top: 18px; }
.inline-link { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--terracotta); background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }

.section { margin-top: 26px; }
.section-title { margin-bottom: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.section-title h2 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: -.02em; }
.section-title p { margin: 3px 0 0; color: var(--taupe); font-size: 14px; }
.section-title button { flex: 0 0 auto; }

.scroll-row { display: grid; grid-auto-flow: column; grid-auto-columns: 76%; gap: 11px; margin-inline: -18px; padding-inline: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * { scroll-snap-align: start; }
.nearby-badge { width: fit-content; margin: -2px 0 12px; padding: 7px 10px; display: flex; align-items: center; gap: 6px; border-radius: 999px; color: var(--olive); background: rgba(201,208,192,.48); font-size: 12px; }
.nearby-badge small { padding-left: 6px; border-left: 1px solid rgba(63,74,53,.18); color: var(--taupe); }
.location-context { margin: 16px 0 18px; padding: 13px 14px; display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 11px; align-items: center; border: 1px solid rgba(63,74,53,.13); border-radius: 17px; background: rgba(201,208,192,.38); }
.location-context-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--ivory); font-size: 20px; }
.location-context strong, .location-context small { display: block; }
.location-context strong { margin-bottom: 3px; font-size: 14px; }
.location-context small { color: var(--taupe); font-size: 12px; line-height: 1.35; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stack { display: grid; gap: 10px; }
.chip-row { display: flex; gap: 7px; margin-inline: -18px; padding: 1px 18px 5px; overflow-x: auto; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; min-height: 38px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--olive); background: var(--ivory); font-size: 13px; font-weight: 650; cursor: pointer; }
.chip.is-active { color: white; border-color: var(--terracotta); background: var(--terracotta); }

.path-card { min-height: 114px; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); cursor: pointer; }
.path-card:nth-child(3n+1) { background: rgba(201,208,192,.58); }
.path-card:nth-child(3n+2) { background: rgba(231,206,195,.45); }
.path-card .symbol { font-family: var(--serif); font-size: 24px; }
.path-card .symbol svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.path-card-copy { display: grid; gap: 8px; }
.path-card strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.08; }
.path-card small { display: block; color: var(--taupe); font-size: 12px; line-height: 1.35; }
.path-selection { margin: 4px 0 18px; padding: 15px; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 13px; align-items: center; border-radius: 18px; background: rgba(231,206,195,.42); }
.path-selection-symbol { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--terracotta); background: var(--ivory); font-family: var(--serif); font-size: 25px; }
.path-selection-symbol svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.path-selection p { margin: 5px 0 0; color: var(--taupe); font-size: 14px; line-height: 1.45; }

.media-card { overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 21px; background: var(--ivory); box-shadow: 0 7px 20px rgba(47,51,42,.06); color: inherit; cursor: pointer; text-align: left; }
.media-card img { width: 100%; height: 132px; display: block; object-fit: cover; }
.product-card img { height: 154px; padding: 8px; object-fit: contain; background: #fff; }
.media-card-body { display: block; padding: 15px 16px 17px; }
.media-card h3 { margin: 7px 0 6px; font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.05; }
.media-card p { margin-bottom: 8px; color: var(--taupe); font-size: 13px; line-height: 1.45; }
.meta { display: flex; flex-wrap: wrap; gap: 5px 9px; color: var(--taupe); font-size: 12px; }
.price { margin-top: 9px; color: var(--olive); font-size: 14px; font-weight: 780; }

.list-card { padding: 12px; display: grid; grid-template-columns: 76px 1fr auto; gap: 11px; align-items: center; border: 1px solid var(--line); border-radius: 18px; color: inherit; background: var(--ivory); cursor: pointer; text-align: left; }
.list-card img { width: 76px; height: 74px; object-fit: cover; border-radius: 13px; }
.list-card h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1.08; }
.list-card p { margin: 0 0 6px; color: var(--taupe); font-size: 13px; line-height: 1.4; }
.list-card .arrow { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); }

.person-card { padding: 14px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 18px; color: inherit; background: var(--ivory); cursor: pointer; text-align: left; }
.avatar { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); font-family: var(--serif); font-size: 17px; }
.avatar.photo-avatar { overflow: hidden; background: var(--sand); }
.avatar.photo-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; }
.person-card h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.person-card p { margin: 0; color: var(--taupe); font-size: 13px; line-height: 1.4; }

.feature-card { padding: 16px; border: 1px solid var(--line); border-radius: 20px; color: inherit; background: var(--ivory); text-align: left; }
.feature-card.soft { background: rgba(201,208,192,.48); }
.feature-card.rose { background: rgba(231,206,195,.48); }
.feature-card h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.feature-card p { margin: 0; color: var(--taupe); font-size: 14px; line-height: 1.5; }
.feature-card .button { margin-top: 13px; }

.home-access-grid { display: grid; gap: 11px; }
.home-paths-grid > :nth-child(n+5), .home-facilitators-grid > :nth-child(n+3) { display: none; }
.home-access-card { width: 100%; min-height: 132px; padding: 16px; position: relative; overflow: hidden; display: grid; grid-template-columns: 48px minmax(0, 1fr); align-items: start; gap: 14px; border: 1px solid rgba(63,74,53,.14); border-radius: 22px; color: var(--olive); text-align: left; cursor: pointer; box-shadow: 0 8px 22px rgba(47,51,42,.07); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.home-access-card::after { content: ""; width: 112px; height: 112px; position: absolute; right: -38px; top: -43px; border: 1px solid rgba(63,74,53,.11); border-radius: 50%; pointer-events: none; }
.home-access-card.community-access { background: linear-gradient(135deg, rgba(201,208,192,.72), rgba(255,253,248,.94)); }
.home-access-card.store-access { background: linear-gradient(135deg, rgba(231,206,195,.65), rgba(255,253,248,.94)); }
.home-access-card:active { transform: scale(.985); }
.home-access-card:focus-visible { outline: 3px solid rgba(181,91,61,.28); outline-offset: 2px; border-color: var(--terracotta); }
.home-access-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(63,74,53,.15); border-radius: 16px 16px 16px 5px; background: rgba(255,253,248,.72); font-family: var(--serif); font-size: 23px; }
.home-access-copy { min-width: 0; display: grid; justify-items: start; }
.home-access-copy .overline { margin-bottom: 4px; }
.home-access-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.08; }
.home-access-copy small { margin-top: 5px; color: var(--taupe); font-size: 13px; line-height: 1.42; }
.home-access-link { margin-top: 11px; display: inline-flex; align-items: center; gap: 7px; color: var(--terracotta); font-size: 13px; font-weight: 780; }
.home-access-link > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--terracotta); line-height: 1; }

.detail-hero { position: relative; height: 275px; margin: -18px -18px 20px; overflow: hidden; border-radius: 0 0 30px 30px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-hero { background: #fff; }
.product-detail-hero img { padding: 12px 12px 68px; object-fit: contain; }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(47,51,42,.76)); }
.detail-hero-copy { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 20px; color: white; }
.detail-hero-copy h1 { margin: 8px 0 6px; font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1; }
.detail-hero-copy p { margin: 0; color: rgba(255,255,255,.88); font-size: 13px; }
.info-grid { margin: 16px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.info-cell { padding: 12px; border-radius: 15px; background: var(--ivory); border: 1px solid var(--line); }
.info-cell small, .info-cell strong { display: block; }
.info-cell small { margin-bottom: 4px; color: var(--taupe); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.info-cell strong { font-size: 13px; }
.prose-card { margin-top: 10px; padding: 17px; border: 1px solid var(--line); border-radius: 20px; background: var(--ivory); }
.prose-card h2 { margin-bottom: 8px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.prose-card p, .prose-card li { color: var(--taupe); font-size: 15px; line-height: 1.6; }
.prose-card ul { margin: 0; padding-left: 18px; }
.prose-card li + li { margin-top: 4px; }

.choice-list { display: grid; gap: 9px; }
.choice { width: 100%; min-height: 62px; padding: 11px 13px; display: grid; grid-template-columns: 36px 1fr 18px; align-items: center; gap: 10px; text-align: left; border: 1px solid var(--line); border-radius: 17px; background: var(--ivory); cursor: pointer; }
.choice .choice-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--sand); font-family: var(--serif); font-size: 18px; }
.choice .choice-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.choice strong, .choice small { display: block; }
.choice strong { font-size: 15px; }
.choice small { margin-top: 3px; color: var(--taupe); font-size: 12px; }
.choice i { width: 17px; height: 17px; border: 1.5px solid #b5b8af; border-radius: 50%; }
.choice.is-selected { border-color: var(--terracotta); background: rgba(231,206,195,.24); }
.choice.is-selected i { border-color: var(--terracotta); background: var(--terracotta); box-shadow: inset 0 0 0 4px var(--ivory); }

.form { display: grid; gap: 13px; }
.field { display: grid; gap: 6px; }
.field > span, .fieldset legend { color: var(--olive); font-size: 14px; font-weight: 750; letter-spacing: .02em; }
.field em { color: var(--taupe); font-style: normal; font-weight: 500; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 14px; outline: none; color: var(--charcoal); background: var(--ivory); font-size: 16px; }
.field textarea { min-height: 92px; resize: vertical; line-height: 1.45; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(180,108,77,.1); }
.fieldset { margin: 0; padding: 0; border: 0; }
.fieldset legend { margin-bottom: 8px; }
.segmented { padding: 4px; display: grid; grid-template-columns: repeat(var(--columns, 2), 1fr); border-radius: 14px; background: var(--sand); }
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { min-height: 42px; padding: 8px; display: grid; place-items: center; border-radius: 11px; color: var(--taupe); font-size: 13px; font-weight: 680; text-align: center; }
.segmented input:checked + span { color: var(--olive); background: var(--ivory); box-shadow: 0 3px 9px rgba(47,51,42,.1); }
.checkline { display: flex; align-items: flex-start; gap: 8px; color: var(--taupe); font-size: 13px; line-height: 1.45; }
.checkline input { margin-top: 2px; accent-color: var(--terracotta); }

.progress { margin-bottom: 18px; }
.progress-meta { margin-bottom: 8px; display: flex; justify-content: space-between; color: var(--taupe); font-size: 12px; }
.progress-track { height: 4px; overflow: hidden; border-radius: 5px; background: var(--sand); }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--terracotta); }

.guide-bubble { margin-bottom: 18px; padding: 16px; display: flex; gap: 11px; border-radius: 20px 20px 20px 7px; background: rgba(201,208,192,.52); }
.guide-mark { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px 12px 12px 4px; color: white; background: var(--gold); font-family: var(--serif); font-size: 19px; font-style: italic; }
.guide-bubble strong { display: block; margin-bottom: 5px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.guide-bubble p { margin: 0; color: var(--olive); font-family: var(--serif); font-size: 18px; line-height: 1.3; }

.practice { min-height: calc(100svh - 190px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.practice-orb { width: 190px; height: 190px; margin: 18px auto 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,208,192,.58); animation: breathe 8s ease-in-out infinite; }
.practice-orb::before { content: ""; grid-area: 1/1; width: 142px; height: 142px; border-radius: 50%; background: rgba(231,206,195,.67); }
.practice-orb span { grid-area: 1/1; z-index: 1; font-family: var(--serif); font-size: 37px; }
.practice h1 { margin-bottom: 5px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.practice p { color: var(--taupe); font-size: 14px; }
.practice .button-row { width: 100%; }
@keyframes breathe { 0%,100% { transform: scale(.88); } 50% { transform: scale(1.04); } }

.statement { min-height: calc(100svh - 210px); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.statement-symbol { width: 74px; height: 74px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 26px 26px 26px 8px; color: white; background: var(--gold); font-family: var(--serif); font-size: 34px; }
.statement blockquote { margin: 20px auto; max-width: 310px; color: var(--terracotta); font-family: var(--serif); font-size: 21px; font-style: italic; line-height: 1.35; }
.statement p { color: var(--taupe); font-size: 16px; line-height: 1.55; }

.calendar-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 13px 0 20px; }
.day { padding: 9px 3px; display: grid; gap: 4px; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--ivory); font-size: 12px; }
.day strong { font-size: 16px; }
.day.is-active { color: white; border-color: var(--terracotta); background: var(--terracotta); }

.profile-hero { margin-bottom: 19px; padding: 20px; text-align: center; border-radius: 25px; background: linear-gradient(145deg, var(--rose), var(--sand)); }
.profile-hero .avatar { width: 90px; height: 90px; margin: 0 auto 12px; font-size: 29px; box-shadow: 0 8px 20px rgba(47,51,42,.16); }
.profile-hero h1 { margin: 7px 0 4px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.profile-hero p { margin: 0; color: var(--taupe); font-size: 14px; }

.summary-card { padding: 15px; display: grid; grid-template-columns: 72px 1fr; gap: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--ivory); }
.summary-card img { width: 72px; height: 72px; object-fit: cover; border-radius: 13px; }
.summary-card h3 { margin: 3px 0 5px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.summary-card p { margin: 0; color: var(--taupe); font-size: 13px; line-height: 1.4; }
.total-row { margin-top: 15px; padding: 14px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 780; }

.plan-card { padding: 19px; border: 1px solid var(--line); border-radius: 23px; background: var(--ivory); }
.plan-card.featured { border-color: var(--gold); background: linear-gradient(145deg, #fffaf0, var(--ivory)); box-shadow: 0 10px 26px rgba(200,138,44,.12); }
.plan-card h2 { margin: 8px 0 3px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.plan-card .plan-price { margin-bottom: 12px; font-size: 19px; font-weight: 780; }
.plan-card ul { margin: 0 0 15px; padding-left: 18px; color: var(--taupe); font-size: 14px; line-height: 1.65; }

.company-hero { margin: -18px -18px 20px; padding: 155px 22px 24px; position: relative; overflow: hidden; border-radius: 0 0 32px 32px; color: white; }
.company-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.company-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47,51,42,.08), rgba(47,51,42,.78)); }
.company-hero > *:not(img) { position: relative; z-index: 1; }
.company-hero h1 { margin-bottom: 8px; font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1; }
.company-hero p { margin-bottom: 0; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.5; }
.home-company-hero { margin-top: 38px; padding-top: 120px; }

.overlay { position: fixed; z-index: 70; inset: 0; background: rgba(47,51,42,.42); backdrop-filter: blur(3px); }
.drawer { position: fixed; z-index: 71; top: 0; right: 0; bottom: 0; width: min(91%, 400px); padding: calc(22px + env(safe-area-inset-top)) 18px calc(22px + env(safe-area-inset-bottom)); overflow-y: auto; background: var(--ivory); box-shadow: -18px 0 50px rgba(47,51,42,.18); transform: translateX(105%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.drawer.is-open { transform: none; }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.drawer-head h2 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.drawer-head .icon-button { font-size: 25px; background: var(--cream); }
.drawer-intro { margin: 10px 0 18px; color: var(--taupe); font-size: 14px; line-height: 1.5; }
.map-group { margin-top: 18px; }
.map-group h3 { margin: 0 0 8px; color: var(--gold); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.map-grid button { min-height: 46px; padding: 8px 9px; text-align: left; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); font-size: 13px; cursor: pointer; }
.map-grid button.is-current { color: white; border-color: var(--terracotta); background: var(--terracotta); }
.drawer-note { margin-top: 22px; padding: 13px; border-radius: 15px; background: var(--sand); }
.drawer-note strong, .drawer-note span { display: block; }
.drawer-note strong { margin-bottom: 4px; font-size: 13px; }
.drawer-note span { color: var(--taupe); font-size: 12px; line-height: 1.4; }

.modal { position: fixed; z-index: 72; left: 50%; bottom: 0; width: 100%; max-width: 430px; max-height: 88svh; padding: 16px 19px calc(22px + env(safe-area-inset-bottom)); overflow-y: auto; border-radius: 28px 28px 0 0; background: var(--ivory); box-shadow: var(--shadow); transform: translate(-50%, 105%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.modal.is-open { transform: translate(-50%, 0); }
.modal-close { margin-left: auto; font-size: 25px; background: var(--cream); }
.modal h2 { margin: 2px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.modal p { color: var(--taupe); font-size: 15px; line-height: 1.5; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: calc(77px + env(safe-area-inset-bottom)); width: calc(100% - 36px); max-width: 390px; padding: 13px 15px; border-radius: 14px; color: white; background: var(--olive); box-shadow: var(--shadow); font-size: 13px; text-align: center; transform: translate(-50%, 150px); transition: transform .28s ease; }
.toast.is-visible { transform: translate(-50%, 0); }

.collection-empty { grid-column: 1 / -1; min-height: 142px; padding: 26px 18px; display: grid; align-content: center; justify-items: center; gap: 5px; border: 1px dashed rgba(63,74,53,.24); border-radius: 20px; text-align: center; background: rgba(255,253,248,.72); }
.collection-empty > span { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 3px; border-radius: 50%; color: var(--terracotta); background: var(--rose); font-size: 21px; }
.collection-empty strong { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.collection-empty small { color: var(--taupe); font-size: 13px; line-height: 1.4; }

.sound-invite { position: fixed; z-index: 60; left: 50%; bottom: calc(79px + env(safe-area-inset-bottom)); width: calc(100% - 24px); max-width: 406px; min-height: 70px; padding: 10px 8px 10px 12px; display: grid; grid-template-columns: 38px minmax(0,1fr) auto 30px; align-items: center; gap: 9px; border: 1px solid rgba(63,74,53,.12); border-radius: 20px; color: var(--olive); background: rgba(255,253,248,.97); box-shadow: 0 15px 38px rgba(47,51,42,.18); backdrop-filter: blur(16px); transform: translateX(-50%); animation: invite-in .45s cubic-bezier(.2,.8,.2,1); }
.sound-invite-copy strong, .sound-invite-copy small { display: block; }
.sound-invite-copy strong { margin-bottom: 3px; font-family: var(--serif); font-size: 16px; font-weight: 600; }
.sound-invite-copy small { color: var(--taupe); font-size: 12px; line-height: 1.25; }
.sound-activate { min-height: 38px; padding: 8px 12px; border: 0; border-radius: 12px; color: white; background: var(--terracotta); font-size: 14px; font-weight: 750; cursor: pointer; }
.sound-dismiss { width: 30px; height: 38px; padding: 0; border: 0; color: var(--taupe); background: transparent; font-size: 22px; cursor: pointer; }
.sound-orb { width: 38px; height: 38px; padding: 9px; display: flex; align-items: center; justify-content: center; gap: 2px; border-radius: 13px 13px 13px 5px; background: rgba(201,208,192,.62); }
.sound-orb i { width: 2px; height: 12px; border-radius: 3px; background: var(--olive); animation: sound-wave 1.4s ease-in-out infinite; }
.sound-orb i:nth-child(2) { height: 19px; animation-delay: -.4s; }
.sound-orb i:nth-child(3) { height: 9px; animation-delay: -.8s; }
@keyframes sound-wave { 0%,100% { transform: scaleY(.55); opacity: .55; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes invite-in { from { opacity: 0; transform: translate(-50%, 16px); } to { opacity: 1; transform: translate(-50%, 0); } }

.coming { min-height: calc(100svh - 180px); display: flex; flex-direction: column; justify-content: space-between; }
.coming-visual { height: 235px; overflow: hidden; border-radius: 30px 30px 30px 8px; }
.coming-visual img { width: 100%; height: 100%; object-fit: cover; }
.coming h1 { margin: 20px 0 9px; font-family: var(--serif); font-size: 42px; font-weight: 500; line-height: .98; }
.coming h1 em { color: var(--terracotta); font-weight: 500; }
.center-note { text-align: center; color: var(--taupe); font-size: 13px; }

.manifesto-entry { position: relative; padding: 24px 22px; overflow: hidden; border: 1px solid rgba(63,74,53,.13); border-radius: 30px 30px 30px 9px; background: linear-gradient(145deg, rgba(201,208,192,.48), rgba(255,253,248,.92)); }
.manifesto-entry-mark { position: absolute; right: 18px; top: 13px; color: rgba(180,108,77,.35); font-family: var(--serif); font-size: 46px; line-height: 1; }
.manifesto-entry h2 { max-width: 285px; margin: 0 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.04; }
.manifesto-entry p { margin: 0; color: var(--taupe); font-size: 15px; line-height: 1.55; }
.join-project-link { text-decoration: underline; text-decoration-color: rgba(180,108,77,.45); text-underline-offset: 4px; }
.survey-home-link { width: 100%; margin-top: 16px; padding: 16px 18px; display: grid; gap: 4px; border: 1px solid rgba(158,91,64,.28); border-radius: 20px 20px 20px 7px; color: var(--olive); background: rgba(238,218,202,.34); text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.survey-home-link:hover { transform: translateY(-2px); border-color: rgba(158,91,64,.52); box-shadow: 0 12px 28px rgba(47,51,42,.08); }
.survey-home-link span { color: var(--terracotta); font-size: 11px; font-weight: 800; letter-spacing: .09em; }
.survey-home-link strong { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.survey-home-link small { color: var(--taupe); font-size: 13px; line-height: 1.45; }
.mobile-blog-link { width: 100%; margin-top: 18px; padding: 15px 0 2px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; border-top: 1px solid rgba(63,74,53,.15); color: var(--terracotta); background: transparent; text-align: left; font-size: 14px; font-weight: 750; cursor: pointer; }
.mobile-blog-link span { color: var(--taupe); font-size: 12px; font-weight: 650; }

.desktop-footer { display: none; }

.blog-feature { width: 100%; padding: 0; overflow: hidden; display: grid; border: 1px solid var(--line); border-radius: 28px 28px 28px 9px; color: inherit; background: var(--ivory); box-shadow: 0 12px 34px rgba(47,51,42,.08); text-align: left; cursor: pointer; }
.blog-feature > img { width: 100%; height: 228px; display: block; object-fit: cover; }
.blog-feature-copy { padding: 22px 20px 24px; }
.blog-feature h2 { margin: 0 0 11px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.blog-feature p { margin: 0; color: var(--taupe); font-size: 15px; line-height: 1.55; }
.blog-meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px 16px; color: var(--taupe); font-size: 12px; font-weight: 650; }
.blog-read-link { display: inline-block; margin-top: 20px; color: var(--terracotta); font-size: 14px; font-weight: 780; }

.blog-article-page { padding-bottom: 20px; }
.blog-article-head { margin-bottom: 24px; }
.blog-article-head h1 { margin: 0 0 14px; font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
.blog-article-head > p { margin: 0; color: var(--taupe); font-size: 16px; line-height: 1.55; }
.original-language { padding: 4px 8px; border-radius: 999px; color: var(--olive); background: rgba(201,208,192,.48); }
.blog-article-hero { height: 250px; margin: 0 -18px 28px; overflow: hidden; border-radius: 0 0 30px 30px; }
.blog-article-hero img { width: 100%; height: 100%; display: block; object-fit: cover; }
.blog-prose { max-width: 720px; margin: 0 auto; color: #41463c; font-family: var(--serif); font-size: 18px; line-height: 1.72; }
.blog-prose p { margin: 0 0 22px; }
.blog-prose .blog-lead { color: var(--olive); font-size: 20px; line-height: 1.6; }
.blog-prose h2 { margin: 46px 0 16px; color: var(--olive); font-size: 29px; font-weight: 500; line-height: 1.12; letter-spacing: -.02em; }
.blog-prose blockquote { margin: 32px 0; padding: 5px 0 5px 20px; border-left: 3px solid var(--terracotta); color: var(--olive); font-size: 21px; font-style: italic; line-height: 1.5; }
.blog-prose ul { margin: 0 0 24px; padding-left: 24px; }
.blog-prose li { margin-bottom: 10px; }
.blog-emphasis { margin: 34px 0 !important; color: var(--terracotta); font-size: 24px; font-weight: 600; text-align: center; }
.blog-closing { margin-top: 36px !important; color: var(--olive); font-size: 23px; font-style: italic; text-align: center; }
.blog-article-actions { max-width: 720px; margin: 42px auto 0; }

.manifesto-page { padding-bottom: 12px; }
.manifesto-opening { margin: 20px 0 30px; padding: 24px 20px; border-radius: 30px 30px 30px 8px; background: var(--olive); color: white; }
.manifesto-opening > span { display: block; margin-bottom: 12px; color: var(--gold); font-family: var(--serif); font-size: 42px; line-height: .6; }
.manifesto-opening p { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.28; }
.manifesto-thread { position: relative; display: grid; gap: 0; margin: 0 2px 28px; }
.manifesto-thread::before { content: ""; position: absolute; top: 14px; bottom: 14px; left: 17px; width: 1px; background: rgba(180,108,77,.35); }
.manifesto-thread article { position: relative; display: grid; grid-template-columns: 36px 1fr; gap: 15px; padding: 0 0 26px; }
.manifesto-thread article:last-child { padding-bottom: 0; }
.manifesto-thread article > span { position: relative; z-index: 1; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(180,108,77,.28); border-radius: 50%; color: var(--terracotta); background: var(--cream); font-size: 11px; font-weight: 800; }
.manifesto-thread h2 { margin: 2px 0 7px; font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1.08; }
.manifesto-thread p { margin: 0; color: var(--taupe); font-size: 15px; line-height: 1.55; }
.manifesto-collective { margin: 28px 0; padding: 22px 20px; border: 0; border-left: 4px solid var(--terracotta); border-radius: 0 22px 22px 0; background: var(--rose); }
.manifesto-collective strong, .manifesto-collective span { display: block; }
.manifesto-collective strong { margin-bottom: 5px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.manifesto-collective span { color: var(--taupe); font-size: 16px; line-height: 1.45; }
.manifesto-lines { margin: 30px 0; padding: 5px 0; text-align: center; }
.manifesto-lines p { margin: 0; padding: 12px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.manifesto-lines p:last-child { border-bottom: 0; }
.manifesto-closing { margin: 28px 0; text-align: center; }
.manifesto-closing p { margin-bottom: 12px; color: var(--olive); font-family: var(--serif); font-size: 21px; line-height: 1.35; }
.manifesto-closing strong { color: var(--terracotta); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }

.collective-note { padding: 20px; display: grid; grid-template-columns: 36px 1fr; gap: 13px; border-radius: 24px 24px 24px 8px; background: rgba(201,208,192,.5); }
.collective-note > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); font-size: 20px; }
.collective-note p { margin: 0; color: var(--olive); font-size: 15px; line-height: 1.55; }
.participation-list { border-top: 1px solid var(--line); }
.participation-list > div { padding: 14px 2px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.participation-list > div > span { color: var(--terracotta); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.participation-list p, .participation-list strong, .participation-list small { display: block; margin: 0; }
.participation-list strong { margin-bottom: 3px; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.participation-list small { color: var(--taupe); font-size: 14px; line-height: 1.4; }
.contact-actions { display: grid; gap: 8px; }
.button-whatsapp { color: white; background: var(--olive); }
.button-whatsapp span { margin-right: 5px; color: var(--gold); }
.direct-contact { margin-top: 20px; padding: 15px 17px; display: grid; gap: 5px; border: 1px solid var(--line); border-radius: 17px; background: var(--ivory); }
.direct-contact span { margin-bottom: 2px; color: var(--taupe); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.direct-contact a { width: max-content; max-width: 100%; color: var(--olive); font-size: 15px; font-weight: 700; overflow-wrap: anywhere; }
.contact-note { margin-bottom: 5px; }

.survey-entry { margin-top: 28px; }
.survey-time { padding: 7px 11px; border-radius: 999px; color: var(--olive); background: rgba(201,208,192,.48); font-size: 12px; font-weight: 800; white-space: nowrap; }
.survey-role-grid { display: grid; gap: 11px; }
.survey-role-card { width: 100%; min-height: 108px; padding: 16px; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 22px 22px 22px 8px; color: var(--ink); background: rgba(255,255,255,.78); text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.survey-role-card:hover { transform: translateY(-2px); border-color: rgba(158,91,64,.42); box-shadow: 0 13px 30px rgba(47,51,42,.08); }
.survey-role-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--olive); font-family: var(--serif); font-size: 23px; }
.survey-role-card strong, .survey-role-card small { display: block; }
.survey-role-card strong { margin-bottom: 5px; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.survey-role-card small { color: var(--taupe); font-size: 13px; line-height: 1.45; }
.survey-role-arrow { color: var(--terracotta); font-size: 20px; }
.survey-privacy { margin: 18px 0 8px; padding: 15px; display: grid; grid-template-columns: 34px 1fr; gap: 11px; border-radius: 18px; background: rgba(238,218,202,.38); }
.survey-privacy > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--terracotta); background: rgba(255,255,255,.7); }
.survey-privacy strong, .survey-privacy small { display: block; }
.survey-privacy strong { margin-bottom: 3px; font-size: 14px; }
.survey-privacy small { color: var(--taupe); font-size: 12px; line-height: 1.45; }
.survey-shell { width: 100%; max-width: 760px; margin: 0 auto; padding: 18px 0 30px; }
.survey-shell > .overline { display: block; margin-top: 26px; }
.survey-shell > h1 { margin: 8px 0 10px; font-family: var(--serif); color: var(--olive); font-size: clamp(30px,8vw,42px); font-weight: 500; line-height: 1.04; }
.survey-hint { margin-bottom: 24px; color: var(--taupe); font-size: 15px; line-height: 1.55; }
.survey-options { display: grid; gap: 10px; }
.survey-option { width: 100%; min-height: 58px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 18px 18px 18px 7px; color: var(--ink); background: rgba(255,255,255,.8); font: inherit; font-weight: 650; text-align: left; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.survey-option:hover { transform: translateY(-1px); border-color: rgba(158,91,64,.42); }
.survey-option.is-selected { border-color: var(--terracotta); color: var(--olive); background: rgba(238,218,202,.55); }
.survey-option-mark { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; color: var(--terracotta); background: rgba(255,255,255,.7); }
.survey-scale { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
.survey-scale .survey-option { min-height: 58px; justify-content: center; padding: 10px; border-radius: 17px; }
.survey-scale .survey-option strong { font-size: 20px; }
.survey-scale-labels { margin-top: 7px; display: flex; justify-content: space-between; color: var(--taupe); font-size: 12px; }
.survey-nav { margin-top: 28px; display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: 10px; }
.survey-nav .button { margin: 0; }
.survey-nav .button:disabled { opacity: .45; cursor: not-allowed; }
.survey-final { max-width: 820px; }
.survey-audio-card { padding: 17px; display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 22px 22px 22px 8px; background: rgba(201,208,192,.25); }
.survey-audio-card > div:first-child { display: flex; align-items: center; gap: 11px; }
.survey-audio-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--terracotta); }
.survey-audio-card strong, .survey-audio-card small { display: block; }
.survey-audio-card small { margin-top: 2px; color: var(--taupe); font-size: 12px; }
.survey-audio-card audio { width: 100%; }
.survey-audio-card.is-recording { border-color: rgba(158,91,64,.55); background: rgba(238,218,202,.48); }
.survey-audio-card.is-recording .survey-audio-icon { animation: surveyPulse 1.1s ease-in-out infinite; }
.survey-record-wave { height: 34px; display: flex !important; justify-content: center; align-items: center !important; gap: 5px !important; }
.survey-record-wave i { width: 4px; height: 12px; border-radius: 4px; background: var(--terracotta); animation: surveyWave .9s ease-in-out infinite alternate; }
.survey-record-wave i:nth-child(2), .survey-record-wave i:nth-child(4) { animation-delay: -.35s; }
.survey-record-wave i:nth-child(3) { animation-delay: -.65s; }
.survey-contact { margin: 4px 0 0; padding: 17px; border: 1px solid var(--line); border-radius: 20px; }
.survey-contact legend { padding: 0 7px; font-size: 14px; font-weight: 750; }
.survey-contact legend em { color: var(--taupe); font-weight: 500; }
.survey-contact-grid { display: grid; gap: 12px; }
.survey-consent { align-items: flex-start; line-height: 1.45; }
.survey-submit-error { padding: 13px 15px; border-radius: 14px; color: #7b2f28; background: #f8e2df; font-size: 14px; line-height: 1.45; }
.survey-thanks blockquote { max-width: 530px; }
@keyframes surveyPulse { 50% { transform: scale(.9); opacity: .7; } }
@keyframes surveyWave { to { height: 30px; } }

@media (min-width: 540px) {
  body { padding: 24px 0; }
  .app-shell { max-width: 430px; min-height: calc(100svh - 48px); border-radius: 32px; box-shadow: 0 26px 70px rgba(47,51,42,.18); }
  .topbar, .bottom-nav { max-width: 430px; }
  .topbar { top: 24px; border-radius: 32px 32px 0 0; }
  .bottom-nav { bottom: 24px; border-radius: 0 0 32px 32px; }
  .screen { min-height: calc(100svh - 48px); }
  .modal { bottom: 24px; border-radius: 28px; }
  .sound-invite { bottom: 103px; }
}

/* Tablet: preserve the mobile journey while using the available canvas. */
@media (min-width: 700px) and (max-width: 1023px) {
  .app-shell { max-width: 760px; }
  .topbar, .bottom-nav { max-width: 760px; }
  .screen { padding-inline: 32px; }
  .hero, .company-hero, .detail-hero { margin-inline: -32px; }
  .grid-two { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #experienceList, #facilitatorList { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #productList { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .scroll-row { grid-auto-flow: initial; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-inline: 0; padding-inline: 0; overflow: visible; }
  .home-access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .button-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Desktop: the same product becomes a full website instead of an enlarged phone. */
@media (min-width: 1024px) {
  html, body { background: var(--cream); }
  body { padding: 0; }
  .app-shell { width: 100%; max-width: none; min-height: 100svh; overflow: visible; border-radius: 0; box-shadow: none; }
  .mobile-blog-link { display: none; }

  .desktop-footer { display: block; border-top: 1px solid var(--line); background: #e6e0d6; }
  .desktop-footer-inner { width: min(100%, 1280px); margin: 0 auto; padding: 44px 32px 38px; display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 25px 54px; align-items: center; }
  .footer-brand { padding: 0; border: 0; background: transparent; cursor: pointer; }
  .footer-brand img { width: 190px; display: block; mix-blend-mode: multiply; }
  .footer-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 9px 25px; }
  .footer-nav button { padding: 7px 0; border: 0; border-bottom: 1px solid transparent; color: var(--olive); background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }
  .footer-nav button:hover { border-bottom-color: var(--terracotta); color: var(--terracotta); }
  .desktop-footer-inner > p { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(63,74,53,.14); color: var(--taupe); font-size: 13px; }

  #screen[data-screen-route="blog"], #screen[data-screen-route="blog-article"] { max-width: 1160px; }
  .blog-feature { grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); align-items: stretch; transition: transform .2s ease, box-shadow .2s ease; }
  .blog-feature:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(47,51,42,.12); }
  .blog-feature > img { height: 100%; min-height: 430px; }
  .blog-feature-copy { padding: 46px 42px; display: flex; flex-direction: column; justify-content: center; }
  .blog-feature h2 { font-size: 42px; }
  .blog-feature p { font-size: 16px; }
  .blog-article-head { max-width: 900px; margin: 0 auto 30px; text-align: center; }
  .blog-article-head h1 { font-size: 60px; }
  .blog-article-head > p { max-width: 700px; margin-inline: auto; font-size: 18px; }
  .blog-article-head .blog-meta { justify-content: center; }
  .blog-article-hero { height: 540px; margin: 0 0 52px; border-radius: 34px 34px 34px 10px; }
  .blog-prose { font-size: 19px; }
  .blog-prose .blog-lead { font-size: 22px; }
  .blog-prose h2 { font-size: 35px; }

  .topbar {
    top: 0;
    width: 100%;
    max-width: none;
    height: 82px;
    padding: 0 max(32px, calc((100vw - 1280px) / 2));
    grid-template-columns: 42px 210px minmax(360px, 1fr) auto;
    gap: 14px;
    border-radius: 0;
    border-bottom-color: var(--line);
    background: rgba(248,244,238,.95);
  }
  .brand-button { grid-column: 2; justify-self: start; }
  .brand-button img { width: 184px; }
  .topbar-actions { grid-column: 4; gap: 7px; }
  .language-switch button { min-width: 31px; height: 32px; }
  .menu-button { margin-left: 3px; }

  .bottom-nav {
    z-index: 41;
    top: 0;
    bottom: auto;
    left: 50%;
    right: auto;
    width: auto;
    height: 82px;
    max-width: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    transform: translateX(-50%);
  }
  .bottom-nav button {
    min-height: 40px;
    padding: 9px 14px;
    flex-direction: row;
    gap: 7px;
    border-radius: 999px;
    font-size: 14px;
  }
  .bottom-nav button > span:first-child { font-size: 16px; }
  .bottom-nav button.is-active { background: rgba(231,206,195,.34); }

  .screen {
    width: min(100%, 1344px);
    min-height: 100svh;
    margin: 0 auto;
    padding: 122px 32px 72px;
    overflow: visible;
  }
  .page-head { max-width: 760px; margin-bottom: 30px; }
  .page-head h1, .hero-copy h1, .statement h1 { font-size: clamp(44px, 4.2vw, 66px); }
  .page-head.compact h1 { font-size: 46px; }
  .page-head p, .hero-copy p { font-size: 17px; }
  .section { margin-top: 42px; }
  .section-title { margin-bottom: 18px; }
  .section-title h2 { font-size: 32px; }
  .section-title p { font-size: 15px; }
  .button { width: auto; min-width: 170px; }
  .button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }

  .grid-two { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .stack { gap: 14px; }
  .scroll-row {
    grid-auto-flow: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
  .chip-row { margin-inline: 0; padding: 2px 0 7px; flex-wrap: wrap; overflow: visible; }
  .chip { min-height: 42px; padding-inline: 16px; font-size: 14px; }
  .nearby-badge { margin-bottom: 18px; }

  .media-card { border-radius: 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .media-card:hover, .person-card:hover, .path-card:hover, .home-access-card:hover { transform: translateY(-3px); border-color: rgba(180,108,77,.35); box-shadow: 0 15px 34px rgba(47,51,42,.11); }
  .media-card img { height: 220px; }
  .product-card img { height: 230px; padding: 16px; }
  .media-card-body { padding: 19px 20px 21px; }
  .media-card h3 { font-size: 24px; }
  .media-card p, .person-card p { font-size: 14px; }
  .path-card { min-height: 158px; padding: 22px; }
  .path-card strong { font-size: 23px; }
  .path-card small { font-size: 14px; }
  .person-card { min-height: 112px; padding: 18px; grid-template-columns: 68px 1fr auto; }
  .avatar { width: 68px; height: 68px; }
  .person-card h3 { font-size: 22px; }
  .feature-card { padding: 22px; }
  .feature-card h3 { font-size: 23px; }

  #screen[data-screen-route="home"] { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 24px; }
  #screen[data-screen-route="home"] > .hero { grid-column: 1 / 9; min-height: 540px; margin: 0; border-radius: 34px 34px 34px 10px; }
  #screen[data-screen-route="home"] > .prompt-card { grid-column: 9 / 13; align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 34px; border-radius: 34px 34px 10px 34px; }
  #screen[data-screen-route="home"] > .prompt-card h2 { font-size: 38px; }
  #screen[data-screen-route="home"] > .section { grid-column: 1 / -1; }
  #screen[data-screen-route="home"] > .sample-line { grid-column: 1 / -1; width: 100%; }
  #screen[data-screen-route="home"] .home-paths-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #screen[data-screen-route="home"] .home-paths-grid > :nth-child(n+5) { display: flex; }
  #screen[data-screen-route="home"] .home-facilitators-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  #screen[data-screen-route="home"] .home-facilitators-grid > :nth-child(n+3) { display: grid; }
  #screen[data-screen-route="home"] > .home-access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #screen[data-screen-route="home"] > .manifesto-entry { min-height: 300px; padding: 46px; display: flex; flex-direction: column; justify-content: center; }
  #screen[data-screen-route="home"] > .manifesto-entry h2 { max-width: 720px; font-size: 46px; }
  #screen[data-screen-route="home"] > .manifesto-entry p { max-width: 860px; font-size: 16px; }
  #screen[data-screen-route="home"] > .home-company-hero { min-height: 430px; margin: 42px 0 0; padding: 70px 46px 42px; border-radius: 34px 34px 10px 34px; }
  #screen[data-screen-route="home"] > .home-company-hero h1 { max-width: 720px; font-size: 52px; }
  #screen[data-screen-route="home"] > .home-company-hero p { max-width: 660px; font-size: 17px; }
  .home-access-card { min-height: 190px; padding: 24px; grid-template-columns: 54px minmax(0,1fr); }
  .home-access-icon { width: 54px; height: 54px; }
  #screen[data-screen-route="join-project"] { max-width: 1100px; }
  .survey-role-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
  .survey-role-card { min-height: 126px; padding: 20px; }
  .survey-shell { padding-top: 42px; }
  .survey-shell > h1 { font-size: 48px; }
  .survey-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .survey-option { min-height: 68px; padding: 16px 18px; }
  .survey-contact-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }

  #experienceList, #facilitatorList { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  #experienceList .list-card { height: 100%; grid-template-columns: 112px 1fr auto; }
  #experienceList .list-card img { width: 112px; height: 108px; }
  #facilitatorList .person-card { height: 100%; }
  #productList { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

  #screen[data-screen-route="product-detail"] {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    gap: 0 34px;
    align-content: start;
  }
  #screen[data-screen-route="product-detail"] > .detail-hero {
    grid-column: 1;
    grid-row: 1 / span 8;
    position: sticky;
    top: 106px;
    height: min(680px, calc(100svh - 138px));
    margin: 0;
    border-radius: 34px 34px 34px 10px;
  }
  #screen[data-screen-route="product-detail"] > :not(.detail-hero) { grid-column: 2; }
  #screen[data-screen-route="product-detail"] > .section { grid-column: 1 / -1; margin-top: 56px; }
  .experience-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    gap: 34px;
    align-items: start;
  }
  .experience-detail-media {
    position: sticky;
    top: 106px;
    align-self: start;
  }
  .experience-detail-media .detail-hero {
    height: min(680px, calc(100svh - 138px));
    margin: 0;
    border-radius: 34px 34px 34px 10px;
  }
  .experience-detail-content { min-width: 0; }
  .detail-hero-copy { left: 32px; right: 32px; bottom: 30px; }
  .detail-hero-copy h1 { font-size: 46px; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .info-cell { padding: 17px; }
  .prose-card { padding: 24px; }

  #screen[data-screen-route="paths"] > .grid-two { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #screen[data-screen-route="plans"] > .stack { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  #screen[data-screen-route="plans"] .plan-card { display: flex; flex-direction: column; padding: 28px; }
  #screen[data-screen-route="plans"] .plan-card .button { margin-top: auto; }
  #screen[data-screen-route="library"] > .stack, #screen[data-screen-route="saved"] > .stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #screen[data-screen-route="my-space"] > .grid-two, #screen[data-screen-route="business"] .grid-two { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  #screen[data-screen-route="community"] > .hero, #screen[data-screen-route="business"] > .company-hero { min-height: 470px !important; margin-inline: 0; border-radius: 34px 34px 34px 10px; }

  #screen[data-screen-route="guide"], #screen[data-screen-route="guide-result"], #screen[data-screen-route="start-mode"],
  #screen[data-screen-route="check-in"], #screen[data-screen-route="next-steps"], #screen[data-screen-route="reservation"],
  #screen[data-screen-route="checkout"], #screen[data-screen-route="business-brief"], #screen[data-screen-route="apply-facilitator"],
  #screen[data-screen-route="apply-space"], #screen[data-screen-route="join-project"] { max-width: 820px; }
  #screen[data-screen-route="consultation"], #screen[data-screen-route="facilitator-profile"] { max-width: 920px; }
  #screen[data-screen-route="practice"], #screen[data-screen-route="save-path"], #screen[data-screen-route="first-close"], #screen[data-screen-route="confirmation"] { max-width: 760px; }
  .choice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .choice { min-height: 78px; padding: 15px; }
  .form { gap: 17px; }
  .field input, .field textarea, .field select { min-height: 54px; }
  .statement { min-height: calc(100svh - 200px); }
  .statement blockquote { max-width: 560px; font-size: 27px; }
  .practice { min-height: calc(100svh - 160px); }
  .practice-orb { width: 260px; height: 260px; }
  .practice-orb::before { width: 194px; height: 194px; }
  .practice .button-row { width: auto; }

  .manifesto-page { max-width: 1020px; margin: 0 auto; }
  .manifesto-opening { padding: 42px; }
  .manifesto-opening p { font-size: 34px; }
  .manifesto-thread { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 38px; }
  .manifesto-thread::before { display: none; }
  .manifesto-thread article { grid-template-columns: 44px 1fr; padding: 0; }
  .manifesto-lines { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }
  .manifesto-lines p:nth-last-child(-n+2) { border-bottom: 0; }
  .participation-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-actions .button { width: 100%; }

  .drawer { width: min(440px, 36vw); padding: 32px; }
  .modal { top: 50%; bottom: auto; width: min(560px, calc(100% - 48px)); max-width: none; max-height: calc(100svh - 80px); padding: 25px 28px 30px; border-radius: 28px; transform: translate(-50%, calc(-50% + 35px)) scale(.97); opacity: 0; }
  .modal.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  .toast { bottom: 30px; }
  .sound-invite { left: auto; right: 28px; bottom: 28px; width: min(406px, calc(100% - 56px)); transform: none; }
  @keyframes invite-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .topbar { padding-inline: 24px; grid-template-columns: 42px 180px minmax(320px, 1fr) auto; }
  .brand-button img { width: 165px; }
  .bottom-nav button { padding-inline: 10px; }
  .bottom-nav button > span:first-child { display: none; }
  #screen[data-screen-route="home"] > .hero { grid-column: 1 / 8; }
  #screen[data-screen-route="home"] > .prompt-card { grid-column: 8 / 13; }
}

@media (max-height: 700px) {
  .hero { min-height: 270px; }
  .page-head h1, .hero-copy h1, .statement h1 { font-size: 33px; }
  .practice-orb { width: 155px; height: 155px; margin-block: 10px 16px; }
  .practice-orb::before { width: 116px; height: 116px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
