:root {
  --ema-ink: #123139;
  --ema-ink-2: #234b52;
  --ema-muted: #5a6e73; /* ≥5:1 on white/cream/bone (AA for small text) */
  --ema-teal: #16a086;
  --ema-teal-2: #44c599;
  --ema-teal-dark: #0b7565;
  --ema-cream: #fbf7f0;
  --ema-cream-2: #f5ece1;
  --ema-bone: #fffaf3; /* warm near-white surface */
  --ema-blush: #f4d9cf;
  /* Signature warm accent (teal × coral duo). Coral is decorative / large-display /
     accent only — NEVER body or small text on light (fails WCAG AA). Functional
     text stays ink or teal-dark. Coral chip + ink text passes AA. */
  --ema-coral: #ff8a6b;
  --ema-coral-2: #f4663f; /* deeper coral for emphasis / hover */
  --ema-coral-text: #c34a29; /* AA-safe coral for small text on light surfaces */
  --ema-coral-soft: #ffe1d4; /* soft coral tint for surfaces */
  --ema-white: #ffffff;
  --ema-line: rgba(18, 49, 57, 0.12);
  /* two-layer shadows: crisp contact + soft ambient (ink-teal tinted) */
  --ema-shadow-soft: 0 1px 2px rgba(18, 49, 57, 0.05), 0 18px 50px -12px rgba(18, 49, 57, 0.12);
  --ema-shadow-card: 0 2px 6px rgba(18, 49, 57, 0.06), 0 30px 80px -20px rgba(18, 49, 57, 0.18);
  --ema-shadow-dark: 0 2px 8px rgba(8, 43, 45, 0.2), 0 30px 80px -20px rgba(8, 43, 45, 0.32);
  --ema-radius-md: 26px;
  --ema-radius-lg: 40px;
  --ema-radius-xl: 56px;
  --ema-max: 1180px;
  --ema-header: 82px;
  --ema-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ema-font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ema-premium-site {
  margin: 0;
  min-width: 320px;
  color: var(--ema-ink-2);
  background:
    radial-gradient(circle at 6% 7%, rgba(244, 217, 207, 0.4), transparent 30rem),
    radial-gradient(circle at 96% 2%, rgba(68, 197, 153, 0.07), transparent 30rem),
    linear-gradient(180deg, #fffcf7 0%, var(--ema-cream) 45%, #fdf8f2 100%);
  font-family: var(--ema-font-body);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ema-premium-site img,
body.ema-premium-site svg {
  display: block;
  max-width: 100%;
}

body.ema-premium-site a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

body.ema-premium-site a:hover {
  color: var(--ema-teal-dark);
}

body.ema-premium-site :focus-visible {
  outline: 3px solid rgba(22, 160, 134, 0.55);
  outline-offset: 4px;
}

.ema-skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 9999;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ema-ink);
  color: var(--ema-white) !important;
  padding: 0.8rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.ema-skip-link:focus {
  transform: translateY(0);
}

.ema-container {
  width: min(calc(100% - 40px), var(--ema-max));
  margin-inline: auto;
}

.ema-topbar {
  background: var(--ema-ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.ema-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ema-topbar__inner a {
  color: var(--ema-white);
  font-weight: 700;
  text-decoration: none;
}

.ema-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.88);
  border-bottom: 1px solid rgba(18, 49, 57, 0.08);
  backdrop-filter: blur(18px);
}

.ema-header__inner {
  min-height: var(--ema-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.ema-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ema-ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.ema-brand:hover {
  color: var(--ema-ink);
  text-decoration: none;
}

.ema-brand img {
  width: min(210px, 48vw);
  height: auto;
}

.ema-nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ema-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ema-nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.2rem);
  margin: 0;
  padding: 0;
}

.ema-nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(18, 49, 57, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.ema-nav__links a:hover,
.ema-nav__links a[aria-current="page"] {
  color: var(--ema-teal-dark);
}

.ema-nav-toggle {
  display: none;
  border: 1px solid var(--ema-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ema-ink);
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ema-button {
  --button-bg: var(--ema-ink);
  --button-fg: var(--ema-white);
  --button-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-fg) !important;
  padding: 0.82rem 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 49, 57, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ema-button:hover {
  color: var(--button-fg) !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 49, 57, 0.2);
}

.ema-button--primary {
  --button-bg: linear-gradient(135deg, var(--ema-teal-dark), var(--ema-teal-2));
}

.ema-button--secondary {
  --button-bg: rgba(255, 255, 255, 0.78);
  --button-fg: var(--ema-ink);
  --button-border: rgba(18, 49, 57, 0.14);
  box-shadow: none;
}

.ema-button--ghost {
  --button-bg: transparent;
  --button-fg: var(--ema-ink);
  --button-border: rgba(18, 49, 57, 0.18);
  box-shadow: none;
}

.ema-button--light {
  --button-bg: var(--ema-white);
  --button-fg: var(--ema-ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
}

.ema-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 0 1.1rem;
  border: 1px solid rgba(22, 160, 134, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ema-teal-dark);
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.ema-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--ema-teal-2);
  box-shadow: 0 0 0 5px rgba(68, 197, 153, 0.16);
}

.ema-title {
  margin: 0;
  color: var(--ema-ink);
  font-family: var(--ema-font-display);
  font-size: clamp(2.35rem, 6vw, 6.85rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ema-title--page {
  max-width: 12ch;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
}

.ema-title--section {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.ema-lede {
  margin: 1.35rem 0 0;
  max-width: 64ch;
  color: rgba(35, 75, 82, 0.86);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.75;
}

.ema-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.2rem, 8vw, 7.4rem) 0 2.7rem;
}

.ema-hero::before,
.ema-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: -1;
  pointer-events: none;
}

.ema-hero::before {
  width: 54rem;
  height: 54rem;
  right: -24rem;
  top: -20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 197, 153, 0.35), transparent 68%);
  filter: blur(6px);
}

.ema-hero::after {
  width: 42rem;
  height: 42rem;
  left: -23rem;
  bottom: -23rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 217, 207, 0.8), transparent 68%);
}

.ema-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ema-hero__copy {
  position: relative;
  z-index: 2;
}

.ema-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ema-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 690px;
  margin-top: 2.35rem;
}

.ema-proof {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  box-shadow: 0 12px 35px rgba(18, 49, 57, 0.06);
}

.ema-proof strong {
  display: block;
  color: var(--ema-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.ema-proof span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ema-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ema-hero-visual {
  position: relative;
  min-height: 590px;
}

.ema-hero-visual__glow {
  position: absolute;
  inset: 7% 0 auto 4%;
  height: 70%;
  border-radius: 45% 55% 40% 60%;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(135deg, rgba(22, 160, 134, 0.16), rgba(244, 217, 207, 0.68));
  filter: blur(0.5px);
  transform: rotate(-6deg);
}

.ema-hero-card {
  --hero-y: 0px;
  --hero-rotate: -1.5deg;
  --hero-scale: 1;
  position: relative;
  z-index: 2;
  max-width: 475px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--ema-radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 244, 0.94)),
    var(--ema-white);
  box-shadow: var(--ema-shadow-card);
  overflow: hidden;
  transform: translate3d(0, var(--hero-y), 0) rotate(var(--hero-rotate)) scale(var(--hero-scale));
  transform-origin: center;
  transition: transform 120ms linear;
}

.ema-hero-card__body {
  padding: clamp(1.25rem, 3vw, 1.85rem);
}

.ema-card-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--ema-teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ema-hero-card h2,
.ema-mini-panel h3,
.ema-card h3,
.ema-resource-panel h3,
.ema-footer h2,
.ema-page-panel h2,
.ema-faq summary {
  color: var(--ema-ink);
  font-family: var(--ema-font-display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ema-hero-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.ema-hero-card p {
  margin: 0.8rem 0 0;
  color: rgba(35, 75, 82, 0.82);
}

.ema-card-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.ema-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ema-ink-2);
  font-weight: 750;
  line-height: 1.45;
}

.ema-card-list li::before {
  content: "";
  flex: 0 0 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--ema-teal-2);
  box-shadow: 0 0 0 5px rgba(68, 197, 153, 0.13);
}

.ema-trust {
  position: relative;
  z-index: 4;
  padding: 0 0 clamp(3.8rem, 7vw, 6.5rem);
}

.ema-trust__panel {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--ema-shadow-soft);
  padding: 1rem;
  backdrop-filter: blur(18px);
}

.ema-trust__label {
  margin: 0 0 0.9rem;
  color: var(--ema-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.ema-trust__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.ema-trust__grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ema-trust-badge {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(18, 49, 57, 0.09);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 247, 240, 0.82));
  padding: 0.9rem;
  text-align: center;
}

.ema-trust-badge strong {
  color: var(--ema-ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.ema-trust-badge span {
  margin-top: 0.3rem;
  color: var(--ema-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ema-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.ema-section--soft {
  background: rgba(255, 255, 255, 0.42);
}

.ema-section--cream {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 236, 225, 0.72));
}

.ema-section--dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(68, 197, 153, 0.18), transparent 28rem),
    linear-gradient(135deg, #102d34, #092222);
  color: rgba(255, 255, 255, 0.78);
}

.ema-section--dark .ema-title,
.ema-section--dark .ema-title--section,
.ema-section--dark .ema-kicker,
.ema-section--dark h2,
.ema-section--dark h3 {
  color: var(--ema-white);
}

.ema-section--dark .ema-kicker {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.ema-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.ema-section-head--center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.ema-section-head--center .ema-kicker {
  margin-inline: auto;
}

.ema-section-copy {
  margin: 0;
  color: rgba(35, 75, 82, 0.78);
  font-size: 1.04rem;
  line-height: 1.78;
}

.ema-section--dark .ema-section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.ema-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ema-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ema-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ema-card {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: var(--ema-radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(18, 49, 57, 0.08);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ema-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ema-teal), var(--ema-blush));
  opacity: 0;
  transition: opacity 220ms ease;
}

.ema-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 160, 134, 0.25);
  box-shadow: 0 28px 70px rgba(18, 49, 57, 0.13);
}

.ema-card:hover::before {
  opacity: 1;
}

.ema-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(22, 160, 134, 0.1);
  color: var(--ema-teal-dark);
  font-weight: 900;
}

.ema-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.ema-card p {
  margin: 0.75rem 0 0;
  color: rgba(35, 75, 82, 0.78);
}

.ema-card a:not(.ema-button) {
  color: var(--ema-teal-dark);
  font-weight: 900;
}

.ema-card--feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.ema-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: var(--ema-teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.ema-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.ema-editorial-card {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: var(--ema-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--ema-shadow-soft);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.ema-editorial-card p:last-child {
  margin-bottom: 0;
}

.ema-timeline {
  display: grid;
  gap: 1rem;
}

.ema-timeline-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.ema-timeline-item__marker {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ema-teal-2);
  font-family: var(--ema-font-display);
  font-size: 1.7rem;
  font-weight: 650;
}

.ema-timeline-item__body {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  padding: 1.25rem;
}

.ema-timeline-item__body h3 {
  margin: 0;
  font-size: 1.55rem;
}

.ema-timeline-item__body p {
  margin: 0.45rem 0 0;
}

.ema-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.ema-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(68, 197, 153, 0.2), transparent 28rem),
    radial-gradient(circle at 6% 0%, rgba(244, 217, 207, 0.68), transparent 32rem);
}

.ema-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.ema-page-panel {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: var(--ema-radius-lg);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--ema-shadow-soft);
}

.ema-page-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.ema-page-panel p {
  margin: 0.8rem 0 0;
}

.ema-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ema-resource-panel {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: var(--ema-radius-md);
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: 0 18px 50px rgba(18, 49, 57, 0.08);
}

.ema-resource-panel h3 {
  margin: 0;
  font-size: 1.75rem;
}

.ema-resource-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.ema-resource-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(18, 49, 57, 0.09);
  border-radius: 18px;
  background: rgba(251, 247, 240, 0.72);
  padding: 0.85rem 0.95rem;
  color: var(--ema-ink);
  font-weight: 900;
  text-decoration: none;
}

.ema-resource-list a::after {
  content: "↗";
  color: var(--ema-teal-dark);
}

.ema-resource-list a:hover {
  border-color: rgba(22, 160, 134, 0.28);
  color: var(--ema-teal-dark);
}

.ema-callout {
  border-radius: var(--ema-radius-lg);
  background:
    radial-gradient(circle at 88% 0%, rgba(68, 197, 153, 0.24), transparent 24rem),
    linear-gradient(135deg, #123139, #0c2528);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(1.6rem, 5vw, 4rem);
  box-shadow: var(--ema-shadow-dark);
}

.ema-callout h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ema-white);
  font-family: var(--ema-font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ema-callout p {
  max-width: 68ch;
  margin: 1rem 0 0;
}

.ema-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ema-faq {
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.25rem;
}

.ema-faq summary {
  cursor: pointer;
  font-size: 1.35rem;
}

.ema-faq p {
  margin: 0.85rem 0 0;
}

.ema-footer {
  background: #0e2b31;
  color: rgba(255, 255, 255, 0.74);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}

.ema-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.ema-footer img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.ema-footer h2,
.ema-footer h3 {
  margin: 0 0 1rem;
  color: var(--ema-white);
}

.ema-footer h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ema-footer p {
  max-width: 58ch;
}

.ema-footer ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ema-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.ema-footer__bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.ema-mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  display: none;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(18, 49, 57, 0.92);
  box-shadow: 0 20px 60px rgba(18, 49, 57, 0.25);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ema-mobile-cta a {
  min-width: 128px;
  padding: 0.9rem 1rem;
  color: var(--ema-white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.ema-mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Scoped under .js so content stays visible if JavaScript never runs
   (the no-js→js swap happens in ema-premium.js). */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .ema-nav-toggle {
    display: inline-flex;
  }

  .ema-nav {
    position: fixed;
    inset: calc(var(--ema-header) + 42px) 16px auto;
    display: none;
    border: 1px solid var(--ema-line);
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--ema-shadow-card);
    padding: 1rem;
  }

  .ema-nav.is-open {
    display: block;
  }

  .ema-nav__links {
    display: grid;
    gap: 0.3rem;
  }

  .ema-nav__links a {
    min-height: 48px;
  }
}

@media (max-width: 991px) {
  :root {
    --ema-header: 72px;
  }

  .ema-topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .ema-header__inner {
    min-height: var(--ema-header);
  }

  .ema-nav-wrap > .ema-button {
    display: none;
  }

  .ema-hero {
    padding-top: 3.4rem;
  }

  .ema-hero__grid,
  .ema-page-hero__grid,
  .ema-section-head,
  .ema-split,
  .ema-footer__grid {
    grid-template-columns: 1fr;
  }

  .ema-hero-visual {
    min-height: auto;
  }

  .ema-hero-card {
    max-width: 100%;
    margin: 0;
    transform: none !important;
  }

  .ema-trust__grid,
  .ema-card-grid,
  .ema-card-grid--four,
  .ema-card-grid--two,
  .ema-resource-grid,
  .ema-faq-grid,
  .ema-proof-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.ema-premium-site {
    font-size: 15px;
  }

  .ema-container {
    width: min(calc(100% - 28px), var(--ema-max));
  }

  .ema-topbar {
    display: none;
  }

  .ema-nav {
    inset: calc(var(--ema-header) + 10px) 12px auto;
  }

  .ema-brand img {
    width: 170px;
  }

  .ema-title {
    letter-spacing: -0.055em;
  }

  .ema-actions,
  .ema-actions .ema-button {
    width: 100%;
  }

  .ema-proof-row,
  .ema-trust__grid,
  .ema-card-grid,
  .ema-card-grid--four,
  .ema-card-grid--two,
  .ema-resource-grid,
  .ema-faq-grid {
    grid-template-columns: 1fr;
  }

  .ema-trust {
    padding-bottom: 3rem;
  }

  .ema-hero-card,
  .ema-callout,
  .ema-page-panel,
  .ema-editorial-card {
    border-radius: 30px;
  }

  .ema-timeline-item {
    grid-template-columns: 1fr;
  }

  .ema-timeline-item__marker {
    width: 72px;
    height: 58px;
  }

  .ema-mobile-cta {
    display: flex;
  }

  .ema-footer {
    padding-bottom: 5.8rem;
  }
}
/* Character-led premium layer inspired by editorial children/family sites */
.ema-character-shell {
  position: relative;
  isolation: isolate;
}

.ema-asset-tile {
  overflow: hidden;
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(18, 49, 57, 0.08);
}

.ema-asset-tile img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

/* Homepage cleanup pass: floating banner + integrated 3-panel hero */
.ema-premium-site--floating .ema-topbar {
  display: none;
}

.ema-premium-site--floating .ema-header {
  position: relative;
  top: auto;
  border-bottom: none;
  background: transparent;
  backdrop-filter: none;
  padding-top: 20px;
}

.ema-premium-site--floating .ema-header__inner {
  position: relative;
  isolation: isolate;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(18, 49, 57, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(18, 49, 57, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ema-premium-site--floating .ema-header__inner::before,
.ema-premium-site--floating .ema-header__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  width: 190px;
  height: 120px;
  border-radius: 999px;
  opacity: 0.92;
}

.ema-premium-site--floating .ema-header__inner::before {
  right: 210px;
  background: linear-gradient(135deg, rgba(255, 164, 167, 0.9), rgba(255, 182, 169, 0.55));
}

.ema-premium-site--floating .ema-header__inner::after {
  right: 26px;
  background: linear-gradient(135deg, rgba(138, 208, 199, 0.86), rgba(255, 186, 157, 0.7));
}

.ema-premium-site--floating .ema-brand img {
  width: min(188px, 40vw);
}

.ema-premium-site--floating .ema-nav__links a {
  color: rgba(18, 49, 57, 0.78);
  font-weight: 800;
}

.ema-homepage .ema-hero {
  padding-top: 1.4rem;
  padding-bottom: 2.65rem;
}

.ema-homepage .ema-hero__grid {
  position: relative;
  display: block;
  min-height: clamp(640px, 70vw, 760px);
}

.ema-homepage .ema-hero__grid > .ema-hero-visual {
  width: min(100%, 780px);
  margin: 0 auto;
  transform: none;
}

.ema-homepage .ema-title {
  max-width: 7.8ch;
}

.ema-homepage .ema-hero__copy {
  position: relative;
  z-index: 5;
  max-width: 30.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ema-homepage .ema-proof-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  max-width: 27rem;
  margin-top: 1.25rem;
}

.ema-homepage .ema-hero__copy::before {
  content: "";
  position: absolute;
  inset: -12px -16px -18px -14px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.62) 38%, rgba(255, 252, 247, 0.22) 64%, transparent 100%);
  filter: blur(12px);
  opacity: 0.82;
  pointer-events: none;
}

.ema-homepage .ema-proof {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ema-homepage .ema-proof::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 0.44rem;
  height: 0.44rem;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--ema-teal-2);
  box-shadow: 0 0 0 5px rgba(68, 197, 153, 0.12);
}

.ema-homepage .ema-proof strong {
  grid-column: 2;
  font-size: 0.9rem;
}

.ema-homepage .ema-proof span {
  grid-column: 2;
  margin-top: 0.05rem;
  font-size: 0.75rem;
  line-height: 1.38;
}

@media (min-width: 1181px) {
  .ema-homepage .ema-hero__copy {
    position: absolute;
    left: 0;
    top: clamp(26px, 7vw, 88px);
  }
}

.ema-homepage .ema-hero-visual__glow {
  inset: auto 2% 8% auto;
  width: 82%;
  height: 86%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.88), transparent 20%),
    radial-gradient(circle at 80% 14%, rgba(138, 208, 199, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 223, 211, 0.84), rgba(255, 255, 255, 0.4));
  filter: blur(2px);
  transform: none;
}

.ema-feature-scene {
  overflow: hidden;
  border: 1px solid rgba(18, 49, 57, 0.1);
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.9), transparent 18rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(246, 238, 228, 0.98));
  box-shadow: var(--ema-shadow-soft);
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 24px 0;
}

.ema-feature-scene img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(18, 49, 57, 0.16));
}

.ema-page-hero__grid .ema-feature-scene {
  min-height: 520px;
}

.ema-homepage .ema-section--cream .ema-editorial-card,
.ema-homepage .ema-section#apropos .ema-editorial-card {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .ema-premium-site--floating .ema-header__inner {
    border-radius: 34px;
  }

  .ema-homepage .ema-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ema-homepage .ema-hero__grid > .ema-hero-visual {
    transform: none;
  }

  .ema-homepage .ema-hero__copy {
    max-width: none;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .ema-homepage .ema-hero__copy::before {
    display: none;
  }

  .ema-homepage .ema-proof-row {
    display: grid;
    gap: 0.8rem;
    max-width: 640px;
    margin-top: 2.35rem;
  }

  .ema-homepage .ema-proof {
    min-height: 100%;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 35px rgba(18, 49, 57, 0.06);
    backdrop-filter: none;
  }

  .ema-homepage .ema-proof strong {
    font-size: 1rem;
  }

  .ema-homepage .ema-proof span {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

@media (max-width: 991px) {
  .ema-premium-site--floating .ema-header {
    padding-top: 12px;
  }

  .ema-premium-site--floating .ema-header__inner::before,
  .ema-premium-site--floating .ema-header__inner::after {
    width: 140px;
    height: 90px;
    top: -16px;
  }

  .ema-feature-scene {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .ema-premium-site--floating .ema-header__inner {
    padding: 12px 14px;
    border-radius: 26px;
  }

  .ema-homepage .ema-hero {
    padding-top: 1rem;
  }

  .ema-feature-scene {
    min-height: 300px;
    padding: 18px 18px 0;
  }

  .ema-page-hero__grid .ema-feature-scene {
    min-height: 320px;
  }
}
