/* ElfCraft page styles — scoped to body[data-page="elfcraft"] */

/* ── Tokens ───────────────────────────────────────────────── */
body[data-page="elfcraft"] {
  --ec-bg-base:     #1A1520;
  --ec-bg-warm:     #211929;
  --ec-bg-panel:    #1E1827;
  --ec-bg-card:     #2A2135;
  --ec-bg-footer:   #14101A;
  --ec-border:      #3A3050;
  --ec-border-warm: #3A3445;
  --ec-cream:       #F7F3EB;
  --ec-lilac:       #C9B7E8;
  --ec-gold:        #E6B85C;
  --ec-lavender:    #7A5FAF;
}

/* ── Utility ──────────────────────────────────────────────── */
.ec-svg-defs { display: none; }
.is-hidden   { display: none !important; }

/* ── Base ─────────────────────────────────────────────────── */
body[data-page="elfcraft"] {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--ec-bg-base);
  color: var(--ec-cream);
  -webkit-font-smoothing: antialiased;
}

body[data-page="elfcraft"] *,
body[data-page="elfcraft"] *::before,
body[data-page="elfcraft"] *::after {
  box-sizing: border-box;
}

body[data-page="elfcraft"] a {
  color: inherit;
  text-decoration: none;
}

/* ── Layout ───────────────────────────────────────────────── */
.ec-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ec-section { padding: 96px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.ec-btn-primary {
  display: inline-block;
  background: var(--ec-lavender);
  color: var(--ec-cream);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
  text-decoration: none;
}

.ec-btn-primary:hover {
  background: var(--ec-lilac);
  box-shadow: 0 0 16px rgba(230,184,92,0.35);
  color: #1A1520;
}

.ec-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ec-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ec-cream);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--ec-lavender);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
  text-decoration: none;
}

.ec-btn-ghost:hover {
  border-color: var(--ec-lilac);
  color: var(--ec-lilac);
}

@media (max-width: 767px) {
  .ec-section { padding: 64px 0; }
}

/* ── Nav ──────────────────────────────────────────────────── */
.ec-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}

.ec-nav--solid {
  background: var(--ec-bg-base);
  border-bottom-color: #2A2430;
}

.ec-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.ec-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ec-nav__wordmark {
  font-size: 15px;
  font-weight: 500;
  color: var(--ec-cream);
}

.ec-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ec-nav__text-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ec-cream);
  text-decoration: none;
  transition: color 150ms ease;
}

.ec-nav__text-link:hover { color: var(--ec-lilac); }

/* Hamburger */
.ec-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ec-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ec-cream);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.ec-nav__hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ec-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ec-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.ec-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--ec-bg-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 280ms ease;
  z-index: 99;
}

.ec-nav__drawer.is-open { transform: translateX(0); }

.ec-nav__drawer-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--ec-cream);
  padding: 16px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--ec-border);
  transition: color 150ms ease;
}

.ec-nav__drawer-link:last-child { border-bottom: none; }
.ec-nav__drawer-link:hover { color: var(--ec-lilac); }

@media (max-width: 767px) {
  .ec-nav__links { display: none; }
  .ec-nav__hamburger { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.ec-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 80px 24px 48px;
  background:
    linear-gradient(to bottom, rgba(230,184,92,0.22) 0%, rgba(230,184,92,0) 32%),
    radial-gradient(ellipse 80% 70% at 50% 35%, rgba(230,184,92,0.28) 0%, rgba(230,184,92,0.08) 50%, transparent 100%),
    var(--ec-bg-base);
}

.ec-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
}

.ec-hero__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--ec-lilac);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.ec-hero-illustration-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec-hero-illustration {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
}

.ec-hero__headline {
  font-size: 56px;
  font-weight: 800;
  color: var(--ec-cream);
  margin: 0;
  line-height: 1.15;
}

.ec-hero__subhead {
  font-size: 22px;
  font-weight: 400;
  color: var(--ec-lilac);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

/* Scroll chevron */
.ec-hero__chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: ec-bounce 1.8s ease-in-out infinite;
  transition: opacity 300ms ease;
}

.ec-hero__chevron.is-hidden { opacity: 0; pointer-events: none; }

@keyframes ec-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 767px) {
  .ec-hero__headline    { font-size: 36px; }
  .ec-hero__subhead     { font-size: 17px; }
  .ec-hero-illustration { max-width: 506px; }
  .ec-hero__cta         { width: 100%; text-align: center; }
}

/* ── What It Is ───────────────────────────────────────────── */
.ec-what-it-is__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ec-what-it-is__copy {
  font-size: 18px;
  font-weight: 400;
  color: var(--ec-cream);
  line-height: 1.7;
}

.ec-what-it-is__copy p { margin: 0; }

.ec-game-image-slot {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--ec-border-warm);
  border-radius: 12px;
  box-shadow: inset 0 0 24px rgba(201,183,232,0.06);
  overflow: hidden;
}

.ec-image-slot-object {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── How It Feels ─────────────────────────────────────────── */
.ec-how-it-feels {
  background: var(--ec-bg-warm);
  position: relative;
  overflow: hidden;
}

.ec-how-it-feels__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ec-how-it-feels__body {
  font-size: 20px;
  font-weight: 400;
  color: var(--ec-cream);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* Ambient motes */
.ec-mote {
  position: absolute;
  border-radius: 50%;
  background: rgba(230,184,92,0.15);
  pointer-events: none;
  will-change: transform, opacity;
  animation: ec-mote-a 14s ease-in-out infinite;
}

.ec-mote--b { animation-name: ec-mote-b; animation-duration: 18s; }
.ec-mote--c { animation-name: ec-mote-c; animation-duration: 12s; animation-delay: -5s; }

@keyframes ec-mote-a {
  0%, 100% { transform: translate(0, 0);       opacity: 0.6; }
  33%       { transform: translate(12px, -18px); opacity: 1;   }
  66%       { transform: translate(-8px, 10px);  opacity: 0.4; }
}
@keyframes ec-mote-b {
  0%, 100% { transform: translate(0, 0);        opacity: 0.4; }
  40%       { transform: translate(-14px, 12px); opacity: 0.9; }
  70%       { transform: translate(10px, -8px);  opacity: 0.6; }
}
@keyframes ec-mote-c {
  0%, 100% { transform: translate(0, 0);      opacity: 0.7; }
  50%       { transform: translate(8px, 16px); opacity: 0.3; }
}

@media (max-width: 767px) {
  .ec-what-it-is__grid { grid-template-columns: 1fr; }
}

/* ── Feature Moments ──────────────────────────────────────── */
.ec-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ec-feature-card {
  background: var(--ec-bg-card);
  border: 1px solid var(--ec-border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 200ms ease-out, border-color 200ms ease-out;
}

.ec-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122,95,175,0.6);
}

.ec-feature-card__icon { margin-bottom: 16px; }

.ec-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ec-cream);
  margin: 0 0 12px;
}

.ec-feature-card__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--ec-lilac);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1199px) {
  .ec-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .ec-features__grid { grid-template-columns: 1fr; }
}

/* ── Zone Divider ─────────────────────────────────────────── */
.ec-zone-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
}

.ec-zone-divider__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ec-zone-divider__line {
  width: 72px;
  height: 1px;
  background: var(--ec-border);
}

.ec-zone-divider__gem {
  width: 7px;
  height: 7px;
  background: var(--ec-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ec-zone-divider__label {
  font-size: 14px;
  font-weight: 300;
  color: rgba(201,183,232,0.45);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ── Workshop ─────────────────────────────────────────────── */
.ec-workshop__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--ec-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.ec-workshop-now { margin-bottom: 64px; }

/* Summary stats */
.ec-summary-stats {
  display: flex;
  background: var(--ec-bg-panel);
  border: 1px dashed var(--ec-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ec-summary-stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px dashed var(--ec-border);
}

.ec-summary-stat:last-child { border-right: none; }

.ec-summary-stat__number {
  font-size: 28px;
  font-weight: 800;
  color: var(--ec-cream);
  line-height: 1;
  margin-bottom: 4px;
}

.ec-summary-stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ec-lilac);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* Status bar */
.ec-status-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ec-lilac);
  overflow-x: auto;
  padding: 12px 16px;
  background: var(--ec-bg-panel);
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  margin-bottom: 20px;
  white-space: nowrap;
}

.ec-status-bar strong { color: var(--ec-cream); font-weight: 600; }
.ec-status-bar__sep   { opacity: 0.4; flex-shrink: 0; }
.ec-status-bar__item  { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }

.ec-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ec-status-dot--warm      { background: #E6B85C; }
.ec-status-dot--blazing   { background: #E88A2C; }
.ec-status-dot--banked    { background: #7A99BF; }
.ec-status-dot--cold      { background: #C0BDC8; }
.ec-status-dot--smoldering { background: #D4753A; }

/* Stage note */
.ec-stage-note {
  font-size: 15px;
  color: rgba(201,183,232,0.7);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 767px) {
  .ec-zone-divider__line { width: 80px; }
  .ec-summary-stats      { flex-wrap: wrap; }
  .ec-summary-stat {
    min-width: 50%;
    border-bottom: 1px dashed var(--ec-border);
  }
  .ec-summary-stat:nth-child(even)    { border-right: none; }
  .ec-summary-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Workshop: What's Being Built ────────────────────────── */
.ec-workshop-build { margin-bottom: 64px; }

.ec-workshop-build__panels {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

/* Metrics panel */
.ec-metrics-panel {
  background: var(--ec-bg-panel);
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  overflow: hidden;
}

.ec-metrics-panel__header {
  font-size: 11px;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--ec-gold);
  padding: 12px 16px;
  border-bottom: 1px solid var(--ec-border);
}

.ec-metrics-panel__list { margin: 0; padding: 0; }

.ec-metrics-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(58,48,80,0.5);
  font-size: 14px;
}

.ec-metrics-panel__row:last-child { border-bottom: none; }

.ec-metrics-panel__row dt { color: rgba(201,183,232,0.6); font-weight: 400; }
.ec-metrics-panel__row dd { color: var(--ec-cream); font-weight: 600; margin: 0; text-align: right; }

/* Build card */
.ec-build-card {
  background: var(--ec-bg-panel);
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 20px 24px;
}

.ec-build-card__header {
  font-size: 11px;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--ec-gold);
  margin-bottom: 16px;
}

.ec-progress-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ec-progress-row:last-of-type { margin-bottom: 0; }

.ec-progress-label {
  font-size: 13px;
  color: var(--ec-lilac);
  font-weight: 500;
  white-space: nowrap;
}

.ec-progress-track {
  height: 6px;
  background: rgba(58,48,80,0.6);
  border-radius: 3px;
  overflow: hidden;
}

.ec-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--ec-lavender);
}

.ec-progress-fill--done { background: var(--ec-gold); }

.ec-progress-pct {
  font-size: 12px;
  color: rgba(201,183,232,0.6);
  text-align: right;
  font-weight: 600;
}

.ec-build-card__next {
  font-size: 13px;
  color: rgba(201,183,232,0.5);
  margin: 16px 0 0;
  font-style: italic;
  border-top: 1px solid rgba(58,48,80,0.4);
  padding-top: 12px;
}

@media (max-width: 767px) {
  .ec-workshop-build__panels { grid-template-columns: 1fr; }
}

/* ── Changelog ────────────────────────────────────────────────── */
.ec-changelog-entry {
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  background: var(--ec-bg-panel);
}

.ec-changelog-entry:last-child { margin-bottom: 0; }

.ec-changelog-entry__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ec-changelog-entry__version {
  font-size: 13px;
  font-weight: 800;
  color: var(--ec-gold);
  font-variant: small-caps;
  letter-spacing: 0.06em;
}

.ec-changelog-entry__commit {
  font-size: 12px;
  color: rgba(201,183,232,0.4);
  font-family: monospace;
}

.ec-changelog-entry__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--ec-lavender);
  background: rgba(122,95,175,0.15);
  border: 1px solid rgba(122,95,175,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ec-changelog-entry__headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--ec-cream);
  margin: 0 0 16px;
}

.ec-changelog-entry__image-slot {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.ec-changelog-entry__changes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-changelog-entry__changes li {
  font-size: 14px;
  color: rgba(201,183,232,0.7);
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}

.ec-changelog-entry__changes li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--ec-gold);
}

/* ── Handbook Callout ─────────────────────────────────────── */
.ec-callout-handbook {
  background: var(--ec-bg-panel);
  border-left: 3px solid var(--ec-gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  max-width: 640px;
}

.ec-callout-handbook__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ec-callout-handbook__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ec-gold);
}

.ec-callout-handbook__body {
  font-size: 14px;
  color: rgba(201,183,232,0.7);
  line-height: 1.6;
  margin: 0 0 14px;
}

.ec-callout-handbook__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ec-gold);
  transition: opacity 150ms ease;
}

.ec-callout-handbook__link:hover { opacity: 0.7; }

/* ── Build Philosophy ─────────────────────────────────────── */
.ec-philosophy {
  font-size: 26px;
  font-weight: 300;
  color: var(--ec-cream);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  border: none;
  padding: 0;
}

.ec-philosophy p { margin: 0; }

.ec-philosophy-link-wrap {
  text-align: center;
  margin-top: 24px;
}

.ec-philosophy-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--ec-gold);
  transition: opacity 150ms ease;
}

.ec-philosophy-link:hover { opacity: 0.7; }

/* ── The Studio ───────────────────────────────────────────── */
.ec-studio__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

.ec-studio__portrait-slot {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--ec-bg-card);
  flex-shrink: 0;
}

.ec-studio__heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--ec-lavender);
  margin: 0 0 16px;
}

.ec-studio__copy p {
  font-size: 16px;
  color: var(--ec-cream);
  line-height: 1.7;
  margin: 0 0 20px;
}

.ec-studio__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ec-gold);
  transition: opacity 150ms ease;
}

.ec-studio__link:hover { opacity: 0.7; }

@media (max-width: 767px) {
  .ec-studio__grid { grid-template-columns: 1fr; }
  .ec-studio__portrait-slot { margin: 0 auto; }
  .ec-philosophy { font-size: 20px; }
}

/* ── CTA ──────────────────────────────────────────────────── */
.ec-cta { background: var(--ec-bg-warm); }

.ec-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.ec-cta__heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--ec-cream);
  margin: 0 0 12px;
}

.ec-cta__subhead {
  font-size: 17px;
  color: var(--ec-lilac);
  line-height: 1.6;
  margin: 0 0 32px;
}

.ec-subscribe-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.ec-subscribe-form__input {
  flex: 1;
  background: var(--ec-bg-card);
  border: 1.5px solid var(--ec-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--ec-cream);
  outline: none;
  transition: border-color 180ms ease;
}

.ec-subscribe-form__input::placeholder { color: rgba(201,183,232,0.35); }
.ec-subscribe-form__input:focus        { border-color: var(--ec-lavender); }
.ec-subscribe-form__input.has-error    { border-color: var(--ec-gold); }

.ec-subscribe-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(201,183,232,0.65);
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  margin-bottom: 10px;
}

.ec-subscribe-form__consent input[type="checkbox"] {
  margin: 2px 0 0;
  accent-color: var(--ec-lavender);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ec-subscribe-form__error {
  font-size: 13px;
  color: #E68C5C;
  text-align: left;
  margin-top: 6px;
  line-height: 1.5;
}

.ec-subscribe-success {
  font-size: 16px;
  color: var(--ec-lilac);
  line-height: 1.6;
  text-align: center;
  padding: 16px 0;
}

.ec-cta__privacy {
  font-size: 12px;
  color: rgba(201,183,232,0.5);
  margin: 16px 0 0;
}

.ec-cta__privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767px) {
  .ec-subscribe-form__row            { flex-direction: column; }
  .ec-subscribe-form__row .ec-btn-primary { width: 100%; }
  .ec-cta__heading                   { font-size: 28px; }
}

/* ── Footer ───────────────────────────────────────────────── */
.ec-footer { background: var(--ec-bg-footer); padding: 40px 0; }

.ec-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.ec-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-footer__studio {
  font-size: 14px;
  font-weight: 600;
  color: rgba(201,183,232,0.7);
}

.ec-footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.ec-footer__links a {
  font-size: 14px;
  color: rgba(201,183,232,0.5);
  transition: color 150ms ease;
}

.ec-footer__links a:hover { color: var(--ec-lilac); }

.ec-footer__copy {
  font-size: 13px;
  color: rgba(201,183,232,0.35);
  text-align: right;
  margin: 0;
}

@media (max-width: 767px) {
  .ec-footer__inner          { grid-template-columns: 1fr; text-align: center; }
  .ec-footer__brand          { justify-content: center; }
  .ec-footer__copy           { text-align: center; }
}
