:root {
  --ema-ink: #123139;
  --ema-ink-2: #234b52;
  --ema-muted: #667b80;
  --ema-teal: #16a086;
  --ema-teal-2: #44c599;
  --ema-teal-dark: #0b7565;
  --ema-cream: #fbf7f0;
  --ema-cream-2: #f5ece1;
  --ema-blush: #f4d9cf;
  --ema-white: #ffffff;
  --ema-line: rgba(18, 49, 57, 0.12);
  --ema-shadow-soft: 0 18px 60px rgba(18, 49, 57, 0.1);
  --ema-shadow-card: 0 30px 90px rgba(18, 49, 57, 0.16);
  --ema-shadow-dark: 0 30px 90px rgba(8, 43, 45, 0.26);
  --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 7% 8%, rgba(244, 217, 207, 0.65), transparent 30rem),
    radial-gradient(circle at 94% 4%, rgba(68, 197, 153, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffcf7 0%, var(--ema-cream) 42%, #f8fcfa 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: 850;
  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: 950;
  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: 950;
  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.065em;
  line-height: 0.94;
}

.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__image {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(18, 49, 57, 0.1), rgba(18, 49, 57, 0.2)),
    var(--hero-image, url("https://emaclinique.com/assets/img/hero_slider_3.jpg")) center/cover;
}

.ema-floating-note {
  position: absolute;
  right: -14px;
  top: 28px;
  width: min(210px, 52vw);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.95rem;
  box-shadow: 0 22px 50px rgba(18, 49, 57, 0.18);
  backdrop-filter: blur(16px);
}

.ema-floating-note strong,
.ema-floating-note span {
  display: block;
}

.ema-floating-note strong {
  color: var(--ema-ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.ema-floating-note span {
  margin-top: 0.25rem;
  color: var(--ema-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.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: 950;
  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-mini-panel {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 36px;
  width: min(260px, 48vw);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: rgba(18, 49, 57, 0.92);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.15rem;
  box-shadow: var(--ema-shadow-dark);
  backdrop-filter: blur(16px);
}

.ema-mini-panel h3 {
  margin: 0;
  color: var(--ema-white);
  font-size: 1.6rem;
}

.ema-mini-panel p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.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: 950;
  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: 950;
  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: 950;
}

.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: 950;
  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-image-stack {
  position: relative;
  min-height: 520px;
}

.ema-image-stack__main,
.ema-image-stack__small {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.78);
  background: var(--ema-cream-2);
  box-shadow: var(--ema-shadow-card);
}

.ema-image-stack__main {
  inset: 0 8% 12% 0;
  border-radius: 44px;
}

.ema-image-stack__small {
  right: 0;
  bottom: 0;
  width: 48%;
  min-height: 270px;
  border-radius: 34px;
}

.ema-image-stack__main img,
.ema-image-stack__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 950;
  text-align: center;
  text-decoration: none;
}

.ema-mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[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;
  }

  [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-mini-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .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;
  }

  .ema-image-stack {
    min-height: 430px;
  }
}

@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-floating-note {
    right: 12px;
    width: 190px;
  }

  .ema-image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .ema-image-stack__main,
  .ema-image-stack__small {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 240px;
  }

  .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-character-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--ema-radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.95), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 238, 0.96));
  box-shadow: var(--ema-shadow-card);
}

.ema-character-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ema-character-card--portrait {
  aspect-ratio: 4 / 5;
}

.ema-character-card--wide {
  aspect-ratio: 3 / 2;
}

.ema-character-card--contain {
  display: grid;
  place-items: end center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) 0;
}

.ema-character-card--contain img {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(18, 49, 57, 0.16));
}

.ema-character-orbit {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(86px, 11vw, 138px);
  height: clamp(86px, 11vw, 138px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(18, 49, 57, 0.16);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.ema-character-orbit img {
  width: 118%;
  height: 118%;
  object-fit: cover;
}

.ema-character-orbit--top {
  right: -24px;
  top: 8%;
}

.ema-character-orbit--bottom {
  left: -18px;
  bottom: 8%;
}

.ema-sticker-note {
  position: absolute;
  z-index: 5;
  max-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(18, 49, 57, 0.92);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  box-shadow: var(--ema-shadow-dark);
  backdrop-filter: blur(16px);
}

.ema-sticker-note strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.25;
}

.ema-sticker-note span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.ema-sticker-note--hero {
  left: -18px;
  bottom: 30px;
}

.ema-asset-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.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;
}

.ema-hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .ema-character-orbit,
  .ema-sticker-note {
    position: relative;
    inset: auto;
    margin-top: 1rem;
  }

  .ema-character-orbit {
    display: none;
  }

  .ema-sticker-note {
    max-width: 100%;
  }

  .ema-asset-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ema-asset-strip {
    grid-template-columns: 1fr;
  }
}

/* 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: 4rem;
}

.ema-homepage .ema-hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(1.4rem, 3.8vw, 2.8rem);
}

.ema-homepage .ema-hero__grid > .ema-hero-visual {
  transform: translateX(clamp(-56px, -4vw, -18px));
}

.ema-homepage .ema-title {
  max-width: 8.8ch;
}

.ema-homepage .ema-hero__copy {
  padding-top: 1rem;
}

.ema-homepage .ema-proof-row {
  max-width: 640px;
}

.ema-hero-visual--collage {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
}

.ema-hero-collage {
  --hero-y: 0px;
  --hero-rotate: -0.8deg;
  --hero-scale: 1;
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  min-height: 610px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 247, 241, 0.92));
  box-shadow: var(--ema-shadow-card);
  backdrop-filter: blur(18px);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(0, var(--hero-y), 0) rotate(var(--hero-rotate)) scale(var(--hero-scale));
  transform-origin: center;
}

.ema-hero-collage::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 186, 157, 0.4), transparent 70%);
  z-index: 0;
}

.ema-hero-collage__stage {
  position: absolute;
  inset: 78px 92px 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(247, 236, 225, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.ema-hero-collage__halo {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.92;
}

.ema-hero-collage__halo--one {
  left: 42px;
  top: 88px;
  width: 210px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 196, 202, 0.78), rgba(255, 225, 230, 0.35));
}

.ema-hero-collage__halo--two {
  right: 34px;
  top: 112px;
  width: 236px;
  height: 168px;
  background: linear-gradient(135deg, rgba(166, 221, 216, 0.76), rgba(220, 245, 241, 0.34));
}

.ema-hero-collage__note {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(18, 49, 57, 0.12);
  padding: 0.8rem 1.2rem;
  text-align: center;
}

.ema-hero-collage__note strong {
  color: var(--ema-ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.ema-hero-collage__note span {
  color: rgba(35, 75, 82, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.ema-hero-collage__main {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 4;
  width: min(56%, 360px);
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
}

.ema-hero-collage__main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(18, 49, 57, 0.18));
}

.ema-hero-collage__card {
  position: absolute;
  z-index: 5;
  width: 206px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(18, 49, 57, 0.14);
  backdrop-filter: blur(16px);
  padding: 14px 14px 12px;
}

.ema-hero-collage__card--left {
  left: 26px;
  top: 118px;
  background: rgba(255, 240, 243, 0.92);
}

.ema-hero-collage__card--right {
  right: 26px;
  top: 108px;
  background: rgba(235, 249, 247, 0.92);
}

.ema-hero-collage__card--bottom {
  left: 54px;
  right: auto;
  bottom: 96px;
  width: 214px;
  background: rgba(255, 242, 235, 0.94);
}

.ema-hero-collage__eyebrow {
  margin: 0;
  color: var(--ema-teal-dark);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.ema-hero-collage__copy {
  margin: 0.45rem 0 0;
  color: var(--ema-ink);
  font-family: var(--ema-font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.ema-hero-collage__card img {
  width: 100%;
  height: 132px;
  margin-top: 0.8rem;
  object-fit: contain;
  object-position: center;
}

.ema-hero-collage__card--right img {
  height: 144px;
}

.ema-hero-collage__card--bottom img {
  height: 136px;
}

.ema-hero-collage__orbit {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(18, 49, 57, 0.14);
  backdrop-filter: blur(16px);
}

.ema-hero-collage__orbit--support {
  right: 78px;
  top: 54px;
  width: 108px;
  height: 108px;
}

.ema-hero-collage__orbit--heart {
  left: auto;
  right: 54px;
  bottom: 88px;
  width: 120px;
  height: 120px;
}

.ema-hero-collage__orbit img {
  width: 84%;
  height: auto;
  object-fit: contain;
}

.ema-hero-visual--panels {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
}

.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-panel-composition {
  --hero-y: 0px;
  --hero-rotate: -1deg;
  --hero-scale: 1;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--ema-shadow-card);
  backdrop-filter: blur(18px);
  transform: translate3d(0, var(--hero-y), 0) rotate(var(--hero-rotate)) scale(var(--hero-scale));
  transform-origin: center;
}

.ema-panel-stage {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 0;
  border-radius: 30px;
  overflow: hidden;
}

.ema-panel-stage--one {
  background: linear-gradient(180deg, #ffcfd1 0%, #ffb9b9 100%);
}

.ema-panel-stage--two {
  background: linear-gradient(180deg, #a7ddd8 0%, #7dc8c1 100%);
}

.ema-panel-stage--three {
  background: linear-gradient(180deg, #ffb79f 0%, #ff9a7c 100%);
}

.ema-panel-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.ema-panel-stage__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ema-panel-stage__number {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--ema-font-display);
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.ema-panel-stage__label {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ema-panel-stage__art {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ema-panel-stage__art img {
  width: min(122%, 410px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(18, 49, 57, 0.18));
}

.ema-panel-stage--two .ema-panel-stage__art img {
  width: min(128%, 430px);
}

.ema-panel-stage--three .ema-panel-stage__art img {
  width: min(116%, 390px);
}

.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-asset-strip {
  display: none;
}

.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 {
    grid-template-columns: 1fr;
  }

  .ema-homepage .ema-hero__grid > .ema-hero-visual {
    transform: none;
  }

  .ema-hero-collage {
    transform: none !important;
  }

  .ema-panel-composition {
    transform: none !important;
  }
}

@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-hero-collage {
    min-height: 560px;
  }

  .ema-hero-collage__stage {
    inset: 76px 60px 28px;
  }

  .ema-hero-collage__note {
    min-width: 220px;
    padding: 0.72rem 1rem;
  }

  .ema-hero-collage__card {
    width: 186px;
    padding: 12px 12px 10px;
  }

  .ema-hero-collage__card--left {
    left: 14px;
    top: 110px;
  }

  .ema-hero-collage__card--right {
    right: 16px;
    top: 148px;
  }

  .ema-hero-collage__card--bottom {
    left: 20px;
    right: auto;
    bottom: 72px;
    width: 178px;
  }

  .ema-hero-collage__main {
    width: min(60%, 320px);
    bottom: 20px;
  }

  .ema-hero-collage__orbit--support {
    right: 34px;
    top: 62px;
    width: 92px;
    height: 92px;
  }

  .ema-hero-collage__orbit--heart {
    right: 24px;
    left: auto;
    bottom: 92px;
    width: 104px;
    height: 104px;
  }

  .ema-hero-visual--panels {
    min-height: auto;
  }

  .ema-panel-composition {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .ema-panel-stage {
    min-height: 290px;
  }

  .ema-panel-stage__number {
    font-size: 3.2rem;
  }

  .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-hero-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
  }

  .ema-hero-collage::after,
  .ema-hero-collage__stage,
  .ema-hero-collage__halo {
    display: none;
  }

  .ema-hero-collage__note,
  .ema-hero-collage__main,
  .ema-hero-collage__card,
  .ema-hero-collage__orbit {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    height: auto;
  }

  .ema-hero-collage__note {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 0;
    text-align: left;
  }

  .ema-hero-collage__main {
    grid-column: 1 / -1;
    width: min(100%, 300px);
    min-height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .ema-hero-collage__main img {
    width: min(100%, 280px);
  }

  .ema-hero-collage__card img {
    height: 120px;
  }

  .ema-hero-collage__orbit {
    min-height: 118px;
    padding: 12px;
  }

  .ema-panel-stage__art img {
    width: min(100%, 300px);
  }

  .ema-feature-scene {
    min-height: 300px;
    padding: 18px 18px 0;
  }

  .ema-page-hero__grid .ema-feature-scene {
    min-height: 320px;
  }
}
