/* =====================================================================
 * Everlasting Memory — Marketing Site
 * Multi-page prototype: Home, About, Pricing, Features, Support, Sign Up
 * ===================================================================== */

/* colors_and_type.css and fonts loaded via <link> in index.html */

/* ─── Skip navigation ─── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--em-gold);
  color: var(--em-ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 var(--em-radius-md) var(--em-radius-md);
  text-decoration: none;
  transition: top 0.1s;
}
.skip-nav:focus { top: 0; }

/* ─── Screen-reader utility ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  color: var(--em-ink);
  font-family: var(--em-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em { font-style: normal; }

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--em-ease), transform 0.75s var(--em-ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ─────────── Buttons ─────────── */
.btn {
  font-family: var(--em-font-body);
  font-size: 15px; font-weight: 500;
  border: 0; cursor: pointer;
  padding: 12px 22px;
  border-radius: var(--em-radius-md);
  transition: all var(--em-dur) var(--em-ease);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.005em; text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.99); transition-duration: 100ms; }
.btn--lg { font-size: 16px; padding: 15px 30px; }
.btn--sm { font-size: 13px; padding: 8px 14px; }

.btn--gold { background: var(--em-gold); color: var(--em-ink); font-weight: 600; }
.btn--gold:hover { background: var(--em-gold-bright); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.btn--outline-gold { background: transparent; color: var(--em-gold); border: 1px solid var(--em-gold); padding: 13px 27px; }
.btn--outline-gold.btn--lg { padding: 14px 29px; }
.btn--outline-gold:hover { background: rgba(201,162,76,0.10); }

.btn--ink { background: var(--em-ink); color: var(--em-ivory); }
.btn--ink:hover { background: var(--em-charcoal); }

.btn--outline-ink { background: transparent; color: var(--em-ink); border: 1px solid rgba(14,11,8,0.2); padding: 13px 27px; }
.btn--outline-ink:hover { border-color: var(--em-ink); }

.btn--ghost-light { background: transparent; color: var(--em-ivory); }
.btn--ghost-light:hover { background: rgba(246,241,231,0.06); }

.btn--ghost { background: transparent; color: var(--em-antique-gold); font-weight: 600; }
.btn--ghost:hover { background: rgba(201,162,76,0.10); }

.btn:focus-visible { outline: 2px solid var(--em-gold); outline-offset: 3px; }
.btn--gold:focus-visible { outline-color: var(--em-ink); }

@keyframes em-underline-wipe {
  0%   { background-size: 100% 1px; background-position: right bottom; }
  50%  { background-size: 0%   1px; background-position: right bottom; }
  51%  { background-size: 0%   1px; background-position: left  bottom; }
  100% { background-size: 100% 1px; background-position: left  bottom; }
}
.btn--inline {
  display: inline;
  color: var(--em-antique-gold);
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 2px;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
}
.btn--inline:hover { animation: em-underline-wipe 0.5s var(--em-ease) forwards; }

/* ─────────── Header ─────────── */
.header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 24px;
  padding: 16px 40px;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(201,162,76,0.18);
  color: var(--em-ivory);
}
.header__brand { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.header__mark { display: flex; align-items: center; justify-content: center; }
.header__mark img { width: auto; height: 44px; display: block; }
.header__word { display: flex; flex-direction: column; gap: 4px; }
.header__word-name {
  font-family: var(--em-font-display);
  font-weight: 500; font-size: 19px; line-height: 1;
  letter-spacing: -0.005em; color: var(--em-ivory);
}
.header__word-tag {
  font-family: var(--em-font-display);
  font-weight: 600; font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--em-gold);
}
.header__nav { display: flex; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.header__nav a {
  color: var(--em-mist); font-size: 14px; font-weight: 500;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: all 200ms ease; cursor: pointer;
}
.header__nav a:hover { color: var(--em-ivory); border-bottom-color: var(--em-gold); }
.header__nav a:focus-visible { outline: 2px solid var(--em-gold); outline-offset: 4px; border-radius: 2px; }
.header__nav a.is-active { color: var(--em-ivory); border-bottom-color: var(--em-gold); }
.header__actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }

/* ─────────── Footer ─────────── */
.footer { background: var(--em-ink); color: var(--em-ivory); padding: 64px 40px 32px; }
.footer__rule { height: 1px; background: var(--em-gold); opacity: 0.4; max-width: 1120px; margin: 0 auto 48px; }
.footer__inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 48px; }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__brand img { width: auto; height: 48px; }
.footer__name { font-family: var(--em-font-display); font-weight: 500; font-size: 20px; color: var(--em-ivory); line-height: 1; }
.footer__tag { font-family: var(--em-font-display); font-weight: 600; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--em-gold); margin-top: 6px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols .em-eyebrow { color: var(--em-gold); margin-bottom: 14px; display: block; }
.footer__cols a { display: block; color: var(--em-mist); font-size: 14px; padding: 4px 0; transition: color 200ms ease; cursor: pointer; }
.footer__cols a:hover { color: var(--em-gold); }
.footer__placeholder { display: block; color: var(--em-ash); font-size: 14px; padding: 4px 0; cursor: default; }
.footer__small { max-width: 1120px; margin: 64px auto 0; font-size: 12px; color: var(--em-mist); border-top: 1px solid rgba(246,241,231,0.06); padding-top: 24px; }

/* ─────────── Layout primitives ─────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 40px; }

.section { padding: 96px 0; }
.section--lg { padding: 128px 0; }
.section--ink { background: var(--em-ink); color: var(--em-ivory); }
.section--paper { background: var(--em-paper); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.section__head .em-eyebrow { color: var(--em-antique-gold); }
.section--ink .section__head .em-eyebrow { color: var(--em-gold); }

.gold-rule { width: 48px; height: 1px; background: var(--em-antique-gold); opacity: 0.6; margin: 0; border: 0; }
.section--ink .gold-rule { background: var(--em-gold); opacity: 0.7; }

/* ─────────── Hero (Home) ─────────── */
.hero {
  position: relative;
  padding: 120px 40px 140px;
  background: var(--em-ink);
  color: var(--em-ivory);
  text-align: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.80);
  pointer-events: none;
}
.hero__candle {
  position: absolute;
  top: 0; left: 0;
  width: 900px; height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,76,0.18) 0%, rgba(201,162,76,0.06) 35%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  will-change: transform;
}
.hero.is-lit .hero__candle { opacity: 1; }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(201,162,76,0.10), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 50%, #000 100%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 880px; margin: 0 auto; }
@keyframes emFlicker {
  0%, 100% { transform: scale(1, 1); }
  50%      { transform: scale(1.04, 1.06); }
}
.hero__eyebrow { color: var(--em-gold); margin-bottom: 24px; }
.hero__title {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 88px; line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 32px; color: var(--em-ivory);
  text-wrap: balance;
}
.hero__title em { font-style: normal; font-weight: 400; color: var(--em-gold); }
.hero__lede {
  font-family: var(--em-font-body); font-size: 19px; line-height: 1.6;
  color: var(--em-mist); max-width: 600px; margin: 0 auto 40px;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.hero__quietline { font-size: 13px; color: var(--em-ash); letter-spacing: 0.01em; }

/* ─────────── About / Story (Home) ─────────── */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-block__copy { padding-top: 8px; }
.about-block__copy h2 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 56px; line-height: 1.08; letter-spacing: -0.02em;
  margin: 16px 0 24px; color: var(--em-ink);
  text-wrap: balance;
}
.about-block__copy h2 em { font-style: normal; font-weight: 400; color: var(--em-antique-gold); }
.about-block__copy p { font-size: 18px; line-height: 1.7; color: var(--em-charcoal); margin: 0 0 18px; max-width: 480px; }
.about-block__pillars { display: flex; flex-direction: column; gap: 28px; }
.pillar {
  border-top: 1px solid var(--em-rule);
  padding: 28px 0 0; position: relative;
}
.pillar::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 32px; height: 1px; background: var(--em-antique-gold);
}
.pillar__num {
  font-family: var(--em-font-display); font-style: italic; font-weight: 500;
  font-size: 14px; color: var(--em-antique-gold);
  letter-spacing: 0.06em;
}
.pillar h3 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 26px; line-height: 1.25; letter-spacing: -0.005em;
  margin: 8px 0 8px; color: var(--em-ink);
}
.pillar p { font-size: 15px; line-height: 1.6; color: var(--em-charcoal); margin: 0; }

/* ─────────── Why it matters / scenarios (Home) ─────────── */
.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.scenario {
  background: var(--em-soft-black);
  border: 1px solid rgba(201,162,76,0.18);
  border-radius: var(--em-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--em-dur) var(--em-ease);
}
.scenario:hover { transform: translateY(-3px); border-color: rgba(201,162,76,0.35); }
.scenario__rule { width: 32px; height: 1px; background: var(--em-gold); opacity: 0.7; margin-bottom: 20px; }
.scenario h3 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 14px; color: var(--em-ivory);
  text-wrap: balance;
}
.scenario h3 em { font-style: normal; color: var(--em-gold); font-weight: 400; }
.scenario p { font-size: 15px; line-height: 1.65; color: var(--em-mist); margin: 0; }

/* ─────────── Trust band (Home) ─────────── */
.trust {
  background: var(--em-paper);
  border-top: 1px solid var(--em-rule);
  border-bottom: 1px solid var(--em-rule);
}
.trust__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.trust__head h2 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 40px; line-height: 1.15; letter-spacing: -0.015em;
  margin: 16px 0 0; color: var(--em-ink); text-wrap: balance;
}
.trust__items { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 40px; }
.trust__item {
  display: flex; gap: 14px; align-items: flex-start;
}
.trust__check {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid var(--em-antique-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--em-antique-gold);
}
.trust__item h4 {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 18px; margin: 0 0 4px; color: var(--em-ink);
}
.trust__item p { font-size: 14px; line-height: 1.55; color: var(--em-charcoal); margin: 0; }

/* ─────────── Pricing teaser / Pricing page ─────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--em-paper);
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all var(--em-dur) var(--em-ease);
  position: relative;
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--em-shadow-lift); }
.plan--featured {
  background: var(--em-ink);
  color: var(--em-ivory);
  border-color: rgba(201,162,76,0.35);
}
.plan--featured .plan__name { color: var(--em-gold); }
.plan--featured .plan__price { color: var(--em-ivory); }
.plan--featured .plan__per { color: var(--em-mist); }
.plan--featured .plan__desc { color: var(--em-mist); }
.plan--featured .plan__feat { color: var(--em-mist); border-color: rgba(201,162,76,0.18); }
.plan--featured .plan__feat svg { color: var(--em-gold); }
.plan__badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--em-gold); color: var(--em-ink);
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--em-radius-sm);
}
.plan__name {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--em-antique-gold);
}
.plan__price-row { display: flex; align-items: baseline; gap: 8px; }
.plan__price {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
  color: var(--em-ink);
}
.plan__per { font-size: 14px; color: var(--em-ash); }
.plan__desc { font-size: 14px; line-height: 1.55; color: var(--em-charcoal); margin: 0; }
.plan__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; flex: 1; }
.plan__feat {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--em-rule);
  font-size: 14px; line-height: 1.5; color: var(--em-charcoal);
}
.plan__feat:first-child { border-top: 1px solid var(--em-antique-gold); border-color: rgba(142,107,38,0.4); }
.plan__feat svg { flex-shrink: 0; color: var(--em-antique-gold); margin-top: 2px; }
.plan__cta { margin-top: 8px; }

/* ─────────── Page hero (smaller, for non-home pages) ─────────── */
.page-hero {
  background: var(--em-ink); color: var(--em-ivory);
  padding: 96px 40px 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 30%, rgba(201,162,76,0.08), transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero__eyebrow { color: var(--em-gold); margin-bottom: 18px; }
.page-hero__title {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 64px; line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--em-ivory); text-wrap: balance;
}
.page-hero__title em { font-style: normal; color: var(--em-gold); font-weight: 400; }
.page-hero__lede {
  font-size: 18px; line-height: 1.6; color: var(--em-mist);
  max-width: 580px; margin: 0 auto;
}

/* ─────────── About page ─────────── */
.about-intro { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; }
.about-intro__label {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--em-antique-gold);
  padding-top: 14px;
  border-top: 1px solid var(--em-antique-gold);
}
.about-intro__copy h2 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 44px; line-height: 1.15; letter-spacing: -0.015em;
  margin: 0 0 28px; color: var(--em-ink); text-wrap: balance;
}
.about-intro__copy h2 em { font-style: normal; color: var(--em-antique-gold); font-weight: 400; }
.about-intro__copy p { font-size: 18px; line-height: 1.7; color: var(--em-charcoal); margin: 0 0 18px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value {
  border-top: 1px solid var(--em-rule);
  padding: 32px 0 0;
}
.value__num {
  font-family: var(--em-font-display); font-style: italic;
  font-size: 14px; color: var(--em-antique-gold); margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.value h3 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 24px; line-height: 1.25; margin: 0 0 12px; color: var(--em-ink);
  text-wrap: balance;
}
.value p { font-size: 15px; line-height: 1.65; color: var(--em-charcoal); margin: 0; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.member {
  background: var(--em-paper);
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-md);
  padding: 28px;
}
.member__photo {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--em-radius-sm);
  background: linear-gradient(135deg, #d6c89c, #8e6b26);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--em-ivory);
  font-family: var(--em-font-display); font-weight: 500; font-size: 48px;
  letter-spacing: -0.01em;
  position: relative; overflow: hidden;
}
.member__photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 60%);
}
.member__name {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.2; margin: 0 0 4px; color: var(--em-ink);
}
.member__role {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--em-antique-gold); margin-bottom: 14px;
}
.member__bio { font-size: 14px; line-height: 1.6; color: var(--em-charcoal); margin: 0; }

.pullquote {
  text-align: center; max-width: 800px; margin: 0 auto;
  padding: 64px 40px;
}
.pullquote__rule { width: 48px; height: 1px; background: var(--em-gold); opacity: 0.7; margin: 0 auto 32px; }
.pullquote q {
  display: block; quotes: none;
  font-family: var(--em-font-display); font-style: italic;
  font-size: 36px; line-height: 1.3; letter-spacing: -0.005em;
  color: var(--em-ivory);
  text-wrap: balance;
}
.pullquote q::before, .pullquote q::after { content: ""; }
.pullquote__attr {
  margin-top: 28px;
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--em-gold);
}

/* ─────────── Features page ─────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 64px 0; border-top: 1px solid var(--em-rule); }
.feature-row:first-of-type { border-top: 0; padding-top: 16px; }
.feature-row--reverse .feature-row__visual { order: -1; }
.feature-row__copy h3 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 40px; line-height: 1.12; letter-spacing: -0.015em;
  margin: 16px 0 18px; color: var(--em-ink); text-wrap: balance;
}
.feature-row__copy h3 em { font-style: normal; color: var(--em-antique-gold); font-weight: 400; }
.feature-row__copy p { font-size: 17px; line-height: 1.65; color: var(--em-charcoal); margin: 0 0 16px; }
.feature-row__list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.feature-row__list li { font-size: 14px; color: var(--em-charcoal); padding-left: 20px; position: relative; line-height: 1.5; }
.feature-row__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: var(--em-antique-gold);
}

.feature-row__visual {
  background: var(--em-paper);
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-lg);
  aspect-ratio: 4 / 3;
  padding: 32px;
  display: flex;
  box-shadow: var(--em-shadow-soft);
  position: relative;
  overflow: hidden;
}

/* visuals: schedule */
.viz-schedule { width: 100%; display: flex; flex-direction: column; gap: 12px; align-self: center; }
.viz-schedule__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-md);
}
.viz-schedule__row--featured { border-top: 1px solid var(--em-antique-gold); border-bottom: 1px solid var(--em-antique-gold); }
.viz-schedule__date {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--em-antique-gold);
  min-width: 76px;
}
.viz-schedule__title {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 16px; color: var(--em-ink); flex: 1;
}
.viz-schedule__icon { color: var(--em-antique-gold); }

/* visuals: vault */
.viz-vault { width: 100%; align-self: center; display: flex; flex-direction: column; gap: 16px; }
.viz-vault__lock {
  display: flex; gap: 14px; align-items: center; padding: 18px 20px;
  background: var(--em-ink); color: var(--em-ivory);
  border-radius: var(--em-radius-md);
  border: 1px solid rgba(201,162,76,0.25);
}
.viz-vault__lock-mark { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--em-gold); display: flex; align-items: center; justify-content: center; color: var(--em-gold); }
.viz-vault__lock-text { font-family: var(--em-font-body); font-size: 13px; color: var(--em-mist); flex: 1; }
.viz-vault__lock-text strong { color: var(--em-ivory); font-weight: 500; }
.viz-vault__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.viz-vault__chip {
  font-family: var(--em-font-body); font-size: 12px; color: var(--em-charcoal);
  background: #fff; border: 1px solid var(--em-rule);
  padding: 6px 12px; border-radius: var(--em-radius-pill);
  display: inline-flex; gap: 6px; align-items: center;
}
.viz-vault__chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--em-antique-gold); }
.viz-vault__list { display: flex; flex-direction: column; gap: 8px; }
.viz-vault__item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-md);
  font-size: 13px; color: var(--em-charcoal);
}
.viz-vault__item-name { font-family: var(--em-font-display); font-size: 16px; color: var(--em-ink); flex: 1; }
.viz-vault__item-meta { font-size: 11px; color: var(--em-ash); letter-spacing: 0.08em; text-transform: uppercase; }

/* visuals: record */
.viz-record { width: 100%; align-self: center; text-align: center; padding: 12px; }
.viz-record__btn {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--em-gold); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--em-ink);
  position: relative;
}
.viz-record__btn::after {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%; border: 1px solid var(--em-gold); opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
.viz-record__time { font-family: var(--em-font-body); font-size: 28px; font-weight: 300; color: var(--em-ink); margin-bottom: 16px; font-feature-settings: "tnum" 1; letter-spacing: 0.04em; }
.viz-record__time .live { color: var(--em-antique-gold); }
.viz-record__meter { display: flex; align-items: center; justify-content: center; gap: 3px; height: 32px; }
.viz-record__bar { width: 3px; background: var(--em-antique-gold); border-radius: 1px; opacity: 0.7; }

/* visuals: delivery */
.viz-deliver { width: 100%; align-self: center; display: flex; flex-direction: column; gap: 10px; }
.viz-deliver__step {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-md);
  font-size: 14px;
}
.viz-deliver__step--done { background: var(--em-paper); }
.viz-deliver__step-num {
  font-family: var(--em-font-display); font-style: italic;
  font-size: 12px; color: var(--em-antique-gold);
  width: 24px; flex-shrink: 0;
}
.viz-deliver__step-text { color: var(--em-charcoal); flex: 1; }
.viz-deliver__step-text strong { font-family: var(--em-font-display); font-weight: 500; font-size: 16px; color: var(--em-ink); display: block; margin-bottom: 2px; font-style: normal; }
.viz-deliver__step-state { font-family: var(--em-font-display); font-weight: 600; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--em-antique-gold); }

/* ─────────── Support page ─────────── */
.support-grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.support-side {
  position: sticky; top: 120px;
  border-top: 1px solid var(--em-antique-gold);
  padding-top: 24px;
}
.support-side__label {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--em-antique-gold); margin-bottom: 16px;
}
.support-side__cats { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.support-side__cat {
  text-align: left; background: transparent; border: 0;
  padding: 10px 12px; border-radius: var(--em-radius-sm);
  font-family: var(--em-font-body); font-size: 14px; color: var(--em-charcoal);
  cursor: pointer; transition: all 200ms ease;
}
.support-side__cat:hover { background: var(--em-paper); color: var(--em-ink); }
.support-side__cat.is-active { background: var(--em-paper); color: var(--em-ink); font-weight: 500; }
.support-side__contact {
  background: var(--em-paper); border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-md); padding: 20px;
}
.support-side__contact h4 { font-family: var(--em-font-display); font-weight: 500; font-size: 18px; margin: 0 0 8px; color: var(--em-ink); }
.support-side__contact p { font-size: 13px; line-height: 1.55; color: var(--em-charcoal); margin: 0 0 14px; }

.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--em-rule);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--em-rule); }
.faq-item__q {
  width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 22px; line-height: 1.3; color: var(--em-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 0;
}
.faq-item__q:hover { color: var(--em-antique-gold); }
.faq-item__plus {
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--em-antique-gold); transition: transform var(--em-dur) var(--em-ease);
}
.faq-item.is-open .faq-item__plus { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--em-dur) var(--em-ease), padding var(--em-dur) var(--em-ease);
}
.faq-item.is-open .faq-item__a { max-height: 400px; padding-top: 16px; }
.faq-item__a p { font-size: 16px; line-height: 1.65; color: var(--em-charcoal); margin: 0; max-width: 640px; }

/* ─────────── Sign Up page ─────────── */
.signup-page {
  background: var(--em-paper);
  min-height: calc(100vh - 88px);
  padding: 64px 40px 96px;
}
.signup-card {
  max-width: 520px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-lg);
  padding: 48px 48px 40px;
  box-shadow: var(--em-shadow-soft);
}
.signup-card__head { text-align: center; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.signup-card__flame { width: 56px; height: 56px; }
.signup-card__title {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 8px 0 0; color: var(--em-ink); text-wrap: balance;
}
.signup-card__title em { font-style: normal; color: var(--em-antique-gold); font-weight: 400; }
.signup-card__sub { font-size: 15px; line-height: 1.5; color: var(--em-charcoal); max-width: 360px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field__label {
  font-family: var(--em-font-body); font-weight: 500;
  font-size: 13px; color: var(--em-ink);
  letter-spacing: 0.01em;
}
.field__input {
  font-family: var(--em-font-body); font-size: 15px;
  padding: 12px 14px; background: #fff;
  border: 1px solid var(--em-rule-strong);
  border-radius: var(--em-radius-sm);
  color: var(--em-ink); transition: all 200ms ease;
}
.field__input:focus {
  outline: none; border-color: var(--em-antique-gold);
  box-shadow: 0 0 0 3px rgba(201,162,76,0.15);
}
.field__hint { font-size: 12px; color: var(--em-charcoal); }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin: 8px 0 24px; }
.checkbox-row input { margin-top: 3px; accent-color: var(--em-antique-gold); }
.checkbox-row input:focus-visible { outline: 2px solid var(--em-antique-gold); outline-offset: 2px; }
.checkbox-row label { font-size: 13px; line-height: 1.5; color: var(--em-charcoal); }
.checkbox-row label a { color: var(--em-antique-gold); border-bottom: 1px solid currentColor; }

.signup-card__divider {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; color: var(--em-ash);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 24px 0 20px;
  font-family: var(--em-font-display); font-weight: 600;
}
.signup-card__divider::before, .signup-card__divider::after {
  content: ""; flex: 1; height: 1px; background: var(--em-rule);
}
.oauth { display: flex; flex-direction: column; gap: 10px; }
.oauth__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--em-rule-strong);
  border-radius: var(--em-radius-md);
  font-family: var(--em-font-body); font-size: 14px; font-weight: 500;
  color: var(--em-ink); cursor: pointer; transition: all 200ms ease;
}
.oauth__btn:hover { border-color: var(--em-ink); }

.signup-foot { text-align: center; margin-top: 20px; font-size: 14px; color: var(--em-charcoal); }
.signup-foot a { color: var(--em-antique-gold); border-bottom: 1px solid currentColor; cursor: pointer; }

.signup-success {
  max-width: 520px; margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
}
.signup-success__flame { width: 80px; height: 80px; margin: 0 auto 24px; animation: emFlicker 3.5s ease-in-out infinite; transform-origin: 50% 70%; }
.signup-success h2 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 44px; line-height: 1.15; letter-spacing: -0.015em;
  margin: 0 0 16px; color: var(--em-ink); text-wrap: balance;
}
.signup-success h2 em { font-style: normal; color: var(--em-antique-gold); font-weight: 400; }
.signup-success p { font-size: 17px; line-height: 1.65; color: var(--em-charcoal); margin: 0 auto 32px; max-width: 420px; }

/* ─────────── CTA band ─────────── */
.cta-band { padding: 96px 40px; background: var(--em-ink); color: var(--em-ivory); position: relative; overflow: hidden; text-align: center; }
.cta-band__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(201,162,76,0.12), transparent 70%); pointer-events: none; }
.cta-band__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-band h2 {
  font-family: var(--em-font-display); font-weight: 500;
  font-size: 56px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--em-ivory); text-wrap: balance;
}
.cta-band h2 em { font-style: normal; color: var(--em-gold); font-weight: 400; }
.cta-band p { font-size: 18px; color: var(--em-mist); margin: 0 0 36px; line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band__quietline { font-size: 13px; color: var(--em-ash); margin-top: 20px; }

/* ─────────── Pricing comparison ─────────── */
.compare {
  background: #fff;
  border: 1px solid var(--em-rule);
  border-radius: var(--em-radius-lg);
  overflow: hidden;
}
.compare__row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--em-rule);
}
.compare__row:last-child { border-bottom: 0; }
.compare__row--head { background: var(--em-paper); }
.compare__cell { padding: 16px 20px; font-size: 14px; color: var(--em-charcoal); display: flex; align-items: center; }
.compare__cell--feature { color: var(--em-ink); font-weight: 500; }
.compare__cell--head {
  font-family: var(--em-font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--em-antique-gold);
}
.compare__cell-check { color: var(--em-antique-gold); }
.compare__cell-dash { color: #767062; }

/* ─────────── Subnav ─────────── */
.subnav {
  display: flex; gap: 8px; justify-content: center;
  padding: 16px 40px;
  background: var(--em-paper);
  border-bottom: 1px solid var(--em-rule);
}
.subnav button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--em-font-body); font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--em-radius-pill);
  color: var(--em-charcoal); transition: all 200ms ease;
  letter-spacing: 0.01em;
}
.subnav button:hover { color: var(--em-ink); }
.subnav button.is-active { background: var(--em-ink); color: var(--em-ivory); }

/* ─────────── Misc ─────────── */
.kicker { display: inline-flex; align-items: center; gap: 10px; }
.kicker__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--em-gold); }

.fade-in { animation: fadeIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────── Candle Wall ─────────── */
.cw-section {
  background: var(--em-ink);
  color: var(--em-ivory);
  padding: 96px 0 80px;
}
.cw-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding: 0 40px;
}
.cw-head h2 {
  font-family: var(--em-font-display);
  font-weight: 500;
  font-size: 42px;
  color: var(--em-ivory);
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
}
.cw-head p { color: var(--em-mist); font-size: 15px; line-height: 1.6; }

.cw-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  row-gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 40px 0;
  overflow: visible;
}

.cw-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.cw-item.has-msg { cursor: pointer; }
.cw-item.is-hov  { z-index: 30; transition-duration: 0.16s; }

/* ── Candle ── */
.cw-candle { display: flex; flex-direction: column; align-items: center; }

.cw-flame-wrap {
  position: relative;
  width: 24px;
  height: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cw-glow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,168,30,0.55) 0%, transparent 70%);
  animation: cwGlow 2.5s ease-in-out infinite;
}
.cw-flame {
  width: 9px; height: 18px;
  background: linear-gradient(to top, #ff4a00 0%, #ff9200 30%, #ffca30 65%, #fff8a0 100%);
  border-radius: 50% 50% 35% 35% / 60% 60% 38% 38%;
  box-shadow: 0 0 5px 2px rgba(255,140,20,0.4);
  animation: cwFlicker 2.5s ease-in-out infinite;
  position: relative; z-index: 1;
}
.cw-wick {
  width: 2px; height: 6px;
  background: #241708;
  border-radius: 0 0 1px 1px;
}
.cw-body { width: 14px; height: 46px; border-radius: 1px 1px 0 0; }
.cw-body--0 { background: linear-gradient(to right, #c4ad78, #e4d09c, #f4e8bc, #f8f0cc, #ecdcb4, #d4c086, #c0a870); }
.cw-body--1 { background: linear-gradient(to right, #bcac8a, #d8caa6, #ecddc0, #f2e6cc, #e2d0ac, #cabb8a, #b8a47a); }
.cw-body--2 { background: linear-gradient(to right, #cebf92, #e0d2ae, #f0e8ca, #f6f0d8, #ece2c4, #d8c898, #c4b482); }
.cw-base {
  width: 19px; height: 4px;
  background: linear-gradient(to right, #998860, #bfaa7c, #998860);
  border-radius: 0 0 3px 3px;
}

@keyframes cwFlicker {
  0%,100% { transform: scaleY(1) translateX(0); }
  20%     { transform: scaleY(0.87) translateX(-1.5px) rotate(-2deg); }
  40%     { transform: scaleY(1.07) translateX(1px) rotate(1.5deg); }
  65%     { transform: scaleY(0.93) translateX(-0.5px); }
  80%     { transform: scaleY(1.03) translateX(1px) rotate(1deg); }
}
@keyframes cwGlow {
  0%,100% { opacity: 0.8; transform: scale(1); }
  40%     { opacity: 0.45; transform: scale(0.78); }
  65%     { opacity: 0.65; transform: scale(0.88); }
}

/* ── Speech bubble ── */
.cw-bubble {
  position: absolute;
  bottom: calc(100% + 16px);
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(0,0,0,0.06);
  z-index: 100;
  animation: cwBubblePop 0.22s cubic-bezier(0.34,1.56,0.64,1) both;
}
.cw-bubble--center { left: 50%; margin-left: -110px; }
.cw-bubble--left   { left: -6px; }
.cw-bubble--right  { right: -6px; }

.cw-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  border: 8px solid transparent;
  border-top-color: #fff;
}
.cw-bubble--center::after { left: 50%; margin-left: -8px; }
.cw-bubble--left::after   { left: 14px; }
.cw-bubble--right::after  { right: 14px; }

.cw-bubble__to {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--em-antique-gold);
  margin-bottom: 8px;
}
.cw-bubble__text {
  font-family: var(--em-font-display);
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.55;
  color: #1e1710;
  margin: 0 0 9px;
}
.cw-bubble__from { font-size: 11px; color: #9a8f80; font-weight: 500; }

@keyframes cwBubblePop {
  from { opacity: 0; transform: scale(0.85) translateY(4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─────────── Split photo ─────────── */
.split-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}
.split-photo__media {
  position: relative;
  overflow: hidden;
}
.split-photo__img {
  position: absolute;
  inset: -30%;
}
.split-photo__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-photo__scrim {
  position: absolute; inset: 0;
  background: rgba(14, 11, 8, 0.22);
}
.split-photo__copy {
  background: var(--em-ink);
  color: var(--em-ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.split-photo__copy .em-eyebrow { color: var(--em-gold); margin-bottom: 24px; }
.split-photo__quote {
  font-family: var(--em-font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: var(--em-ivory);
  border-left: 2px solid var(--em-gold);
  padding-left: 24px;
  margin: 0 0 28px;
}
.split-photo__copy p {
  color: var(--em-mist);
  font-size: 16px;
  line-height: 1.75;
  max-width: 420px;
}

/* ─────────── Photo band ─────────── */
.photo-band {
  position: relative;
  height: 62vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-band__bg {
  position: absolute;
  inset: -30%;
}
.photo-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-band__overlay {
  position: absolute; inset: 0;
  background: rgba(14, 11, 8, 0.70);
}
.photo-band__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-band__quote {
  font-family: var(--em-font-display);
  font-size: 38px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  color: var(--em-ivory);
  letter-spacing: -0.015em;
  margin: 0;
}
.photo-band__attr {
  font-size: 13px;
  color: var(--em-gold);
  letter-spacing: 0.04em;
  margin: 0;
}

/* =====================================================================
 * RESPONSIVE
 * Breakpoints: tablet ≤ 1024px · mobile ≤ 768px · small ≤ 480px
 * ===================================================================== */

/* ── Burger (hidden on desktop) ── */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--em-ivory);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.header.nav-open .header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.nav-open .header__burger span:nth-child(2) { opacity: 0; }
.header.nav-open .header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@keyframes mobileNavIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Hidden on desktop, shown inside mobile nav */
.header__nav-signin { display: none; }

/* ─────────── Tablet ≤ 1024px ─────────── */
@media (max-width: 1024px) {
  .container, .container--narrow { padding: 0 24px; }

  /* Header */
  .header { padding: 14px 24px; }
  .header__nav { gap: 20px; }
  .header__nav a { font-size: 13px; }

  /* Hero */
  .hero { padding: 88px 24px 96px; }
  .hero__title { font-size: 64px; }

  /* Sections */
  .section { padding: 72px 0; }
  .section--lg { padding: 96px 0; }

  /* About */
  .about-block { grid-template-columns: 1fr; gap: 48px; }

  /* Split photo */
  .split-photo { grid-template-columns: 1fr; min-height: auto; }
  .split-photo__media { height: 48vw; min-height: 260px; position: relative; }
  .split-photo__copy { padding: 56px 48px; }

  /* Scenarios */
  .scenarios { grid-template-columns: 1fr; gap: 0; }

  /* Trust */
  .trust__grid { grid-template-columns: 1fr; gap: 40px; }
  .trust__items { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Candle wall */
  .cw-grid { grid-template-columns: repeat(10, 1fr); }

  /* Photo band */
  .photo-band { height: 50vh; }
  .photo-band__quote { font-size: 28px; }

  /* Page hero */
  .page-hero { padding: 72px 24px 80px; }
  .page-hero__title { font-size: 48px; }

  /* CTA band */
  .cta-band { padding: 72px 24px; }
  .cta-band h2 { font-size: 42px; }

  /* Features page */
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feature-row--reverse .feature-row__visual { order: 0; }

  /* About page */
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .values { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; }

  /* Support page */
  .support-grid { grid-template-columns: 1fr; gap: 40px; }
  .support-side { position: static; top: auto; }
}

/* ─────────── Mobile ≤ 768px ─────────── */
@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 20px; }

  /* Header — burger */
  .header { padding: 12px 20px; gap: 12px; }
  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    transform: none;
    z-index: 20;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 100px 40px 60px;
    background: var(--em-ink);
  }
  .header.nav-open .header__nav { display: flex; height: 100vh; animation: mobileNavIn 0.3s var(--em-ease) both; }
  .header__nav a {
    font-size: 28px;
    font-family: var(--em-font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0;
    border-bottom: none;
    color: var(--em-ivory);
    text-align: center;
  }
  .header__nav a.is-active { color: var(--em-gold); }
  .header__nav a:hover { color: var(--em-gold); border-bottom: none; }
  .header__nav-signin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(201,162,76,0.2);
    width: 100%;
  }
  .header__nav-signin button {
    font-size: 16px;
    padding: 14px 40px;
  }
  .header__actions { display: none; }
  .header__burger { display: flex; z-index: 25; position: relative; }

  /* Hero */
  .hero { padding: 64px 20px 72px; }
  .hero__title { font-size: 42px; letter-spacing: -0.02em; }
  .hero__lede { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .section__head { margin-bottom: 40px; }

  /* About */
  .about-block { gap: 32px; }
  .about-block__copy h2 { font-size: 32px; }
  .about-block__pillars { gap: 24px; }

  /* Split photo */
  .split-photo__media { height: 56vw; min-height: 220px; }
  .split-photo__copy { padding: 40px 24px; }
  .split-photo__quote { font-size: 20px; }
  .split-photo__copy p { font-size: 15px; }

  /* Trust */
  .trust__items { grid-template-columns: 1fr; }

  /* Photo band */
  .photo-band { height: auto; padding: 56px 24px; align-items: center; }
  .photo-band__quote { font-size: 22px; }

  /* Candle wall */
  .cw-section { display: none; }
  .cw-grid { grid-template-columns: repeat(6, 1fr); padding: 24px 20px 0; row-gap: 14px; }
  .cw-head h2 { font-size: 30px; }

  /* Pricing */
  .plan { padding: 28px 24px 24px; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer__inner { gap: 28px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Page hero */
  .page-hero { padding: 52px 20px 60px; }
  .page-hero__title { font-size: 34px; }
  .page-hero__lede { font-size: 15px; }

  /* CTA band */
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band p { font-size: 15px; }

  /* Signup */
  .signup-page { padding: 32px 20px 64px; }
  .signup-card { padding: 32px 24px 28px; }

  /* Features */
  .feature-row__copy h3 { font-size: 24px; }
  .feature-row__visual { border-radius: 12px; }
  .pullquote { padding: 48px 24px; }
  .pullquote q { font-size: 24px; }

  /* About page */
  .values { grid-template-columns: 1fr; }

  /* Support page */
  .support-side__cats { display: flex; flex-wrap: wrap; gap: 8px; }

  /* Pricing compare table */
  .compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare__row { min-width: 560px; font-size: 13px; }

  /* Type scale */
  .em-h1 { font-size: 30px; }

  /* Scenarios */
  .scenario { padding: 32px 20px; margin-bottom: 12px; }
}

/* ─────────── Small mobile ≤ 480px ─────────── */
@media (max-width: 480px) {
  .hero__title { font-size: 34px; }

  .cw-grid { grid-template-columns: repeat(4, 1fr); }



  .team { grid-template-columns: 1fr; }

  .about-intro__copy h2 { font-size: 26px; }

  .photo-band__quote { font-size: 19px; }

  .page-hero__title { font-size: 28px; }

}

/* ─────────── Reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fade-in { animation: none; }
  .cw-flame, .cw-glow { animation: none; }
  .viz-record__btn::after { animation: none; }
  .signup-success__flame { animation: none; }
  .hero__candle { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
