body.is-home {
  overflow-x: clip;
  background: #0b1218;
}

body.is-home .background-orb {
  display: none;
}

body.is-home .utility-bar {
  display: none;
}

.ee-home-premium {
  position: relative;
  color: #f6efe5;
  background: #0b1218;
}

.ee-home-premium .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.ee-home-premium .meta-list {
  color: rgba(246, 239, 229, 0.74);
}

.ee-home-premium .card-actions a {
  color: rgba(246, 239, 229, 0.86);
}

.ee-home-premium .card-actions a:hover {
  color: #ffffff;
}

.ee-home-hero-copy > *,
.ee-home-hero-feature {
  will-change: transform, opacity;
}

.has-js .ee-home-hero-copy > *,
.has-js .ee-home-hero-feature {
  opacity: 1;
  transform: none;
  filter: blur(0px);
}

.has-js body:not(.is-ready) .ee-home-hero-copy > *,
.has-js body:not(.is-ready) .ee-home-hero-feature {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  filter: blur(4px);
}

body.is-ready .ee-home-hero-copy > *,
body.is-ready .ee-home-hero-feature {
  opacity: 1;
  transform: none;
  filter: blur(0px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready .ee-home-hero-copy > *:nth-child(1) {
  transition-delay: 0.3s;
}

body.is-ready .ee-home-hero-copy > *:nth-child(2) {
  transition-delay: 0.46s;
}

body.is-ready .ee-home-hero-copy > *:nth-child(3) {
  transition-delay: 0.62s;
}

body.is-ready .ee-home-hero-copy > *:nth-child(4) {
  transition-delay: 0.78s;
}

body.is-ready .ee-home-hero-copy > *:nth-child(5) {
  transition-delay: 0.94s;
}

body.is-ready .ee-home-hero-feature {
  transition-delay: 0.65s;
}

.ee-home-kicker,
.ee-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #f79b56;
  font-family: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ee-home-kicker::before,
.ee-home-eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.ee-home-hero .ee-home-eyebrow::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready .ee-home-hero .ee-home-eyebrow::before {
  transform: scaleX(1);
  transition-delay: 0.2s;
}

.ee-home-kicker-subtle {
  color: rgba(255, 246, 233, 0.72);
}

.ee-home-section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 6.8rem) 0;
}

.ee-home-section-intro {
  width: min(42rem, 100%);
  margin-bottom: 2rem;
}

.ee-home-section-intro h2 {
  margin: 0 0 0.85rem;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
}

.ee-home-section-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
}

.ee-home-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--chrome-offset) + 3.2rem) 0 2.7rem;
  overflow: clip;
  background: #091017;
}

.ee-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.38);
  box-shadow:
    inset 0 -12rem 9rem rgba(7, 10, 14, 0.84),
    inset 0 8rem 5rem rgba(7, 10, 14, 0.18);
  z-index: 0;
}

.ee-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(247, 155, 86, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 220, 180, 0.06), transparent);
  animation: ee-home-hero-vignette 8s ease-in-out infinite alternate;
  opacity: 0.7;
}

.ee-home-hero-video,
.ee-home-hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ee-home-hero-video {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.8) contrast(0.92) brightness(0.74);
  animation: ee-home-hero-drift 36s ease-in-out infinite alternate;
  transform-origin: 55% 45%;
  opacity: 0;
  will-change: transform, opacity, filter;
}

body.is-ready .ee-home-hero-video {
  opacity: 1;
  filter: saturate(0.8) contrast(0.92) brightness(0.74);
  transition:
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-js .ee-home-hero-video {
  filter: saturate(0.5) contrast(0.8) brightness(0.3) blur(12px);
}

.ee-home-hero-backdrop {
  background:
    linear-gradient(180deg, rgba(4, 7, 10, 0.12), rgba(4, 7, 10, 0.18)),
    var(--hero-poster) center center / cover no-repeat;
  opacity: 0;
}

.ee-home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.82fr);
  gap: 1.7rem;
  align-items: end;
}

.ee-home-hero-copy {
  max-width: 43rem;
}

.ee-home-hero-copy h1 {
  max-width: 11ch;
  margin: 0 0 1rem;
  color: #fff7ed;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.85rem, 6.4vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-wrap: balance;
  text-shadow: 0 0 80px rgba(247, 155, 86, 0.15), 0 4px 32px rgba(0, 0, 0, 0.3);
}

.ee-home-hero-lead {
  max-width: 32rem;
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 1.9vw, 1.52rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 247, 236, 0.88);
}

.ee-home-hero-note {
  max-width: 29rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(255, 247, 236, 0.7);
}

.ee-home-hero-actions {
  margin-top: 1.55rem;
}

.ee-home-hero-actions .button-primary {
  position: relative;
  animation: ee-home-hero-btn-glow 4s ease-in-out 2s infinite;
}

.ee-home-hero-actions .button-primary:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 36px rgba(247, 127, 60, 0.35),
    0 14px 32px rgba(247, 127, 60, 0.2);
  animation: none;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

.ee-home-hero-actions .button-secondary:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, border-color 0.28s ease;
}

.ee-home-hero-whatsapp {
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ed;
  transition: transform 0.28s ease, border-color 0.6s ease;
}

.ee-home-hero-whatsapp:hover {
  transform: scale(1.03);
  border-color: rgba(37, 211, 102, 0.32);
}

.ee-home-hero-feature {
  position: relative;
  min-height: 31rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  background:
    var(--card-image) var(--card-position, center center) / cover no-repeat,
    #121922;
  box-shadow:
    inset 0 -12rem 8rem rgba(6, 9, 12, 0.86),
    inset 0 8rem 5rem rgba(6, 9, 12, 0.24),
    0 28px 64px rgba(4, 9, 14, 0.34);
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.ee-home-hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  border-radius: inherit;
  opacity: 0;
}

body.is-ready .ee-home-hero-feature::before {
  opacity: 1;
  animation: ee-home-hero-card-sheen 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.4s 1 forwards;
}

.ee-home-hero-feature:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    inset 0 -12rem 8rem rgba(6, 9, 12, 0.82),
    inset 0 8rem 5rem rgba(6, 9, 12, 0.2),
    0 36px 80px rgba(4, 9, 14, 0.4),
    0 0 0 1px rgba(247, 155, 86, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.ee-home-hero-feature .ee-home-hero-feature-copy,
.ee-home-hero-feature .ee-home-hero-feature-list {
  position: relative;
  z-index: 3;
}

.ee-home-hero-feature-copy {
  max-width: 22rem;
}

.ee-home-hero-feature-copy .pill {
  margin-bottom: 1rem;
}

.ee-home-hero-feature-copy h2 {
  margin: 0 0 0.65rem;
  color: #fff7ed;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.ee-home-hero-feature-copy p {
  margin: 0 0 1rem;
  color: rgba(255, 247, 236, 0.74);
  line-height: 1.62;
}

.ee-home-hero-feature-list {
  display: grid;
  gap: 0.7rem;
}

.ee-home-feature-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 247, 236, 0.84);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.28s ease;
}

.ee-home-feature-link:hover {
  transform: translateX(4px);
  color: #fff7ed;
}

.ee-home-feature-link strong {
  font-weight: 600;
}

.ee-home-feature-link span {
  color: rgba(255, 247, 236, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.28s ease;
}

.ee-home-feature-link:hover span {
  color: rgba(247, 155, 86, 0.9);
}

.ee-home-route-overview {
  background: #0c131a;
}

.ee-home-route-overview .ee-home-section-intro p,
.ee-home-route-overview .ee-home-package-chip span {
  color: rgba(255, 247, 236, 0.68);
}

.ee-home-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ee-home-route-card {
  min-height: 18rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  color: #fff7ed;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.06), rgba(8, 10, 14, 0.86)),
    var(--card-image) var(--card-position, center center) / cover no-repeat,
    linear-gradient(160deg, rgba(30, 39, 49, 0.98), rgba(13, 18, 24, 0.98));
  box-shadow: 0 22px 50px rgba(3, 8, 12, 0.22);
  display: grid;
  align-content: end;
  gap: 0.75rem;
}

.ee-home-route-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 0.96;
}

.ee-home-route-card p {
  margin: 0;
  color: rgba(255, 247, 236, 0.74);
}

.ee-home-package-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.ee-home-package-chip {
  display: grid;
  gap: 0.38rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff7ed;
}

.ee-home-package-chip strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.ee-home-package-chip span {
  font-size: 0.86rem;
  line-height: 1.52;
}

.ee-home-guidance {
  color: #18130e;
  background: #f1eadf;
}

.ee-home-guidance .ee-home-kicker,
.ee-home-guidance .ee-home-eyebrow {
  color: #a76233;
}

.ee-home-guidance .ee-home-kicker-subtle {
  color: rgba(24, 19, 14, 0.56);
}

.ee-home-guidance .ee-home-section-intro p,
.ee-home-story-card p,
.ee-home-story-card li,
.ee-home-value-card p {
  color: rgba(24, 19, 14, 0.74);
}

.ee-home-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.25rem;
  align-items: start;
}

.ee-home-story-card {
  padding: 2rem;
  border: 1px solid rgba(24, 19, 14, 0.08);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.5)),
    rgba(248, 244, 236, 0.92);
  box-shadow: 0 24px 54px rgba(45, 33, 22, 0.1);
}

.ee-home-story-card h2,
.ee-home-story-card h3,
.ee-home-value-card h3 {
  margin: 0 0 0.8rem;
  color: #17120d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.ee-home-story-card h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.ee-home-story-card h3 {
  margin-top: 1.2rem;
  font-size: 1.8rem;
}

.ee-home-story-intro {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.ee-home-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.ee-home-trust-stack {
  display: grid;
  gap: 1rem;
}

.ee-home-metrics-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #121821 0%, #0c1117 100%);
  color: #fff7ed;
  box-shadow: 0 22px 48px rgba(5, 10, 16, 0.18);
}

.ee-home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ee-home-metrics-grid article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
}

.ee-home-metrics-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 0.94;
}

.ee-home-metrics-grid span {
  color: rgba(255, 247, 236, 0.68);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.ee-home-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ee-home-value-card {
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid rgba(24, 19, 14, 0.08);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(45, 33, 22, 0.08);
}

.ee-home-value-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(167, 98, 51, 0.72);
  font-family: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", monospace;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}

.ee-home-adventures {
  background: #0f171e;
}

.ee-home-adventures-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 1rem;
}

.ee-home-adventure-feature,
.ee-home-adventure-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #151d26 0%, #0d1218 100%);
  box-shadow: 0 24px 56px rgba(3, 8, 12, 0.22);
}

.ee-home-adventure-feature {
  display: grid;
  min-height: 33rem;
  grid-template-rows: minmax(17rem, 1fr) auto;
}

.ee-home-adventure-media {
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0), rgba(6, 9, 12, 0.14)),
    var(--card-image) var(--card-position, center center) / cover no-repeat;
}

.ee-home-adventure-copy,
.ee-home-adventure-card {
  padding: 1.45rem;
}

.ee-home-adventure-copy h3,
.ee-home-adventure-card h3,
.ee-home-reading-lead h3,
.ee-home-beyond-card h3,
.ee-home-call-panel h2,
.ee-home-leadership-column h2 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}

.ee-home-adventure-copy h3,
.ee-home-call-panel h2,
.ee-home-leadership-column h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.7rem);
}

.ee-home-adventure-card h3,
.ee-home-reading-lead h3,
.ee-home-beyond-card h3 {
  font-size: 1.85rem;
}

.ee-home-adventure-copy p,
.ee-home-adventure-card p,
.ee-home-reading-lead p,
.ee-home-reading-brief p,
.ee-home-leadership-column p,
.ee-home-leader-card p,
.ee-home-beyond-card p,
.ee-home-call-panel p {
  margin: 0 0 1rem;
  line-height: 1.68;
}

.ee-home-adventure-copy p,
.ee-home-adventure-card p,
.ee-home-reading-lead p,
.ee-home-call-panel p {
  color: rgba(255, 247, 236, 0.72);
}

.ee-home-adventure-stack,
.ee-home-reading-stack {
  display: grid;
  gap: 1rem;
}

.ee-home-adventure-card {
  min-height: 0;
}

.ee-home-intelligence {
  color: #19140f;
  background: #f4ede4;
}

.ee-home-intelligence .ee-home-kicker {
  color: #a76233;
}

.ee-home-intelligence .ee-home-section-intro p,
.ee-home-reading-brief p {
  color: rgba(25, 20, 15, 0.72);
}

.ee-home-intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.ee-home-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1rem;
}

.ee-home-reading-lead {
  min-height: 24rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.75rem;
  color: #fff7ed;
  background:
    var(--card-image) var(--card-position, center center) / cover no-repeat,
    #171e27;
  box-shadow:
    inset 0 -10rem 7rem rgba(6, 9, 12, 0.84),
    inset 0 7rem 4rem rgba(6, 9, 12, 0.18),
    0 24px 56px rgba(8, 13, 18, 0.18);
  display: grid;
  align-content: end;
}

.ee-home-reading-brief {
  min-height: 11.5rem;
  padding: 1.3rem;
  border: 1px solid rgba(24, 19, 14, 0.08);
  border-radius: 1.35rem;
  color: #18130e;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.58)),
    rgba(248, 244, 236, 0.94);
  box-shadow: 0 18px 42px rgba(45, 33, 22, 0.08);
}

.ee-home-reading-brief strong {
  display: block;
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  line-height: 0.96;
}

.ee-home-leadership-column {
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  color: #fff7ed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #111821 0%, #0b0f14 100%);
  box-shadow: 0 24px 56px rgba(6, 11, 16, 0.18);
}

.ee-home-leadership-column p {
  color: rgba(255, 247, 236, 0.72);
}

.ee-home-leadership-grid {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 1.3rem;
}

.ee-home-leader-card {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  color: #fff7ed;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.2), rgba(8, 10, 14, 0.86)),
    var(--card-image) var(--card-position, center center) / cover no-repeat,
    linear-gradient(160deg, #1a212a 0%, #10151b 100%);
  box-shadow: 0 16px 34px rgba(4, 8, 12, 0.14);
}

.ee-home-leader-card strong {
  display: block;
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 0.96;
}

.ee-home-beyond {
  position: relative;
  color: #19140f;
  background: #ede3d6;
  border-top: 1px solid rgba(40, 29, 19, 0.08);
  border-bottom: 1px solid rgba(40, 29, 19, 0.08);
}

.ee-home-beyond-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.39fr) minmax(0, 0.61fr);
  gap: 1.2rem;
  align-items: start;
}

.ee-home-beyond-intro {
  position: sticky;
  top: calc(var(--chrome-offset) + 1.4rem);
  width: auto;
  margin-bottom: 0;
  padding: clamp(1.45rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  color: #fff7ed;
  background: #121922;
  box-shadow: 0 28px 64px rgba(28, 19, 13, 0.16);
  display: grid;
  gap: 1.35rem;
}

.ee-home-beyond-intro h2 {
  max-width: 10ch;
  color: #fff7ed;
}

.ee-home-beyond-intro p {
  max-width: none;
  color: rgba(255, 247, 236, 0.72);
}

.ee-home-beyond-intro .ee-home-kicker {
  color: #f79b56;
}

.ee-home-beyond-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ee-home-beyond-intro-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ed;
}

.ee-home-beyond-index {
  display: grid;
  gap: 0.62rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ee-home-beyond-index span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 247, 236, 0.8);
  font-size: 0.94rem;
  line-height: 1.45;
}

.ee-home-beyond-index span::before {
  content: "";
  flex: none;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #c88c53;
  box-shadow: 0 0 0 0.32rem rgba(200, 140, 83, 0.12);
}

.ee-home-beyond-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-areas:
    "primary season"
    "primary faq"
    "foundation foundation";
  gap: 1.1rem;
}

.ee-home-beyond-card {
  position: relative;
  min-height: 16rem;
  padding: 11rem 1.4rem 1.4rem;
  border: 1px solid rgba(34, 25, 17, 0.08);
  border-radius: 1.8rem;
  color: #19140f;
  background: rgba(251, 247, 240, 0.98);
  box-shadow: 0 22px 50px rgba(61, 43, 29, 0.08);
  display: grid;
  align-content: end;
  gap: 0.62rem;
}

.ee-home-beyond-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10.25rem;
  background:
    linear-gradient(180deg, rgba(9, 12, 16, 0.08), rgba(9, 12, 16, 0.18) 52%, rgba(9, 12, 16, 0.74) 100%),
    var(--card-image) var(--card-position, center center) / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ee-home-beyond-card-1 {
  grid-area: primary;
  min-height: 34rem;
  padding-top: 18rem;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff7ed;
  background: #121922;
  box-shadow: 0 28px 64px rgba(7, 12, 18, 0.22);
}

.ee-home-beyond-card-1::after {
  height: 18.4rem;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.02), rgba(7, 10, 14, 0.18) 46%, rgba(7, 10, 14, 0.9) 100%),
    var(--card-image) var(--card-position, center center) / cover no-repeat;
}

.ee-home-beyond-card-2 {
  grid-area: season;
}

.ee-home-beyond-card-3 {
  grid-area: faq;
}

.ee-home-foundation-card {
  grid-area: foundation;
  min-height: 18rem;
  padding: 1.65rem clamp(12rem, 28vw, 18rem) 1.65rem 1.65rem;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff7ed;
  background: #141b23;
  box-shadow: 0 24px 56px rgba(8, 12, 17, 0.22);
  align-content: center;
}

.ee-home-foundation-card::after {
  inset: 0 0 0 auto;
  width: min(46%, 22rem);
  height: auto;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.92) 0%, rgba(9, 12, 16, 0.22) 42%, rgba(9, 12, 16, 0) 100%),
    var(--card-image) var(--card-position, center center) / cover no-repeat;
}

.ee-home-beyond-card .ee-home-kicker,
.ee-home-beyond-card .ee-home-kicker-subtle {
  margin-bottom: 0.2rem;
  color: rgba(126, 83, 45, 0.78);
}

.ee-home-beyond-card-1 .ee-home-kicker,
.ee-home-beyond-card-1 .ee-home-kicker-subtle,
.ee-home-foundation-card .ee-home-kicker {
  color: rgba(255, 247, 236, 0.7);
}

.ee-home-beyond-card h3 {
  color: inherit;
}

.ee-home-beyond-card-1 h3 {
  font-size: clamp(2.35rem, 2.9vw, 3.15rem);
}

.ee-home-beyond-card p {
  color: rgba(25, 20, 15, 0.74);
}

.ee-home-beyond-card-1 p,
.ee-home-foundation-card p {
  color: rgba(255, 247, 236, 0.76);
}

.ee-home-foundation-card p {
  max-width: 34ch;
}

.ee-home-beyond-card .ee-inline-link {
  color: #8a552f;
}

.ee-home-beyond-card-1 .ee-inline-link,
.ee-home-foundation-card .ee-inline-link {
  color: #f0a15d;
}

.ee-home-conversion {
  background: #0e151d;
}

.ee-home-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1rem;
}

.ee-home-call-panel {
  min-height: 100%;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  color: #fff7ed;
  background:
    var(--card-image) var(--card-position, center center) / cover no-repeat,
    #1a2028;
  box-shadow:
    inset 0 -12rem 8rem rgba(6, 9, 12, 0.86),
    inset 0 8rem 5rem rgba(6, 9, 12, 0.2),
    0 26px 58px rgba(4, 9, 14, 0.2);
  display: grid;
  align-content: end;
}

.ee-home-call-actions {
  margin-top: 1.35rem;
}

.ee-home-newsletter-shell {
  min-width: 0;
}

.ee-home-newsletter-shell .ee-newsletter-panel {
  height: 100%;
  padding: 1.9rem;
  border-radius: 2rem;
  box-shadow: 0 26px 58px rgba(18, 15, 12, 0.18);
}

.ee-home-newsletter-shell .ee-newsletter-panel-copy h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.ee-home-newsletter-shell .ee-newsletter-panel-copy p {
  max-width: 32rem;
}

/* ── Hero scroll-driven parallax (desktop) ── */
.ee-home-hero-grid {
  transition: transform 0.06s linear, opacity 0.06s linear;
  transform:
    translateY(calc(var(--hero-scroll-px, 0) * 0.12))
    scale(calc(1 - var(--hero-scroll-ratio, 0) * 0.025));
  opacity: calc(1 - var(--hero-scroll-ratio, 0) * 0.55);
}

.ee-home-hero-video {
  transform: scale(calc(1.02 + var(--hero-scroll-ratio, 0) * 0.06));
}

.ee-home-hero-feature {
  transform: translateY(calc(var(--hero-scroll-px, 0) * 0.04));
}

/* ── Luxe card spotlight ── */
[data-luxe-card].is-energized::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    580px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(255, 235, 210, 0.08),
    transparent 60%
  );
  opacity: var(--spotlight-opacity, 0);
  transition: opacity 0.4s ease;
}

/* ── Keyframes ── */

@keyframes ee-home-hero-drift {
  0% {
    transform: scale(1.02) rotate(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) rotate(0.4deg) translate3d(-0.6%, -1%, 0);
  }
}

@keyframes ee-home-hero-vignette {
  0% { opacity: 0.5; }
  100% { opacity: 0.85; }
}

@keyframes ee-home-hero-btn-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(247, 127, 60, 0), 0 10px 24px rgba(247, 127, 60, 0.14);
  }
  50% {
    box-shadow: 0 0 32px rgba(247, 127, 60, 0.28), 0 10px 32px rgba(247, 127, 60, 0.2);
  }
}

@keyframes ee-home-hero-card-sheen {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

/* ── Reduced-motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .ee-home-hero-video,
  .ee-home-hero::after,
  .ee-home-hero-feature::before,
  .ee-home-hero-actions .button-primary {
    animation: none !important;
  }

  .has-js .ee-home-hero-video {
    filter: saturate(0.8) contrast(0.92) brightness(0.74);
  }

  body.is-ready .ee-home-hero-video {
    opacity: 1;
    transition: none;
  }

  .has-js body:not(.is-ready) .ee-home-hero-copy > *,
  .has-js body:not(.is-ready) .ee-home-hero-feature {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.is-ready .ee-home-hero-copy > *,
  body.is-ready .ee-home-hero-feature {
    transition: none;
  }

  .ee-home-hero .ee-home-eyebrow::before {
    transform: scaleX(1);
    transition: none;
  }

  .ee-home-hero-grid {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .ee-home-hero-feature {
    transform: none !important;
  }

  .ee-home-hero-feature:hover {
    transform: none;
  }

  .ee-home-hero-actions .button-primary:hover,
  .ee-home-hero-actions .button-secondary:hover,
  .ee-home-hero-whatsapp:hover {
    transform: none;
  }

  .ee-home-feature-link:hover {
    transform: none;
  }

  [data-luxe-card].is-energized::after {
    display: none;
  }
}

@media (max-width: 1240px) {
  .ee-home-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ee-home-package-row,
  .ee-home-metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ee-home-values-grid,
  .ee-home-beyond-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ee-home-beyond-cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  }
}

@media (max-width: 1100px) {
  .ee-home-hero {
    padding-top: calc(var(--chrome-offset) + 2.6rem);
  }

  /* Disable scroll parallax on tablet/mobile */
  .ee-home-hero-grid {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .ee-home-hero-feature {
    transform: none !important;
  }

  .ee-home-hero-grid,
  .ee-home-guidance-grid,
  .ee-home-adventures-layout,
  .ee-home-intelligence-grid,
  .ee-home-beyond-grid,
  .ee-home-conversion-grid,
  .ee-home-reading-grid {
    grid-template-columns: 1fr;
  }

  .ee-home-hero-feature,
  .ee-home-call-panel,
  .ee-home-newsletter-shell .ee-newsletter-panel {
    min-height: 0;
  }

  .ee-home-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ee-home-beyond-intro {
    position: relative;
    top: auto;
  }

  .ee-home-beyond-cards {
    grid-template-areas:
      "primary primary"
      "season faq"
      "foundation foundation";
  }

  .ee-home-beyond-card-1 {
    min-height: 28rem;
    padding-top: 14.5rem;
  }

  .ee-home-beyond-card-1::after {
    height: 14.8rem;
  }

  .ee-home-foundation-card {
    padding-right: clamp(11rem, 38vw, 16rem);
  }
}

@media (max-width: 760px) {
  .ee-home-section {
    padding: 3.5rem 0;
  }

  .ee-home-hero {
    min-height: auto;
    padding-top: calc(var(--chrome-offset) + 1.3rem);
    padding-bottom: 1.65rem;
  }

  .ee-home-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.65rem, 13.6vw, 4.05rem);
    line-height: 0.88;
  }

  .ee-home-route-grid,
  .ee-home-package-row,
  .ee-home-values-grid,
  .ee-home-leadership-grid,
  .ee-home-beyond-cards {
    grid-template-columns: 1fr;
  }

  .ee-home-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .ee-home-hero-grid {
    gap: 1.1rem;
  }

  .ee-home-hero-lead {
    max-width: none;
    font-size: 1.04rem;
    line-height: 1.45;
  }

  .ee-home-hero-note {
    max-width: none;
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .ee-home-hero-actions,
  .ee-home-call-actions,
  .ee-home-story-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ee-home-hero-actions {
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .ee-home-hero-actions .button,
  .ee-home-call-actions .button {
    width: 100%;
    justify-content: center;
  }

  .ee-home-beyond-intro {
    padding: 1.25rem;
    border-radius: 1.45rem;
    gap: 1.1rem;
  }

  .ee-home-beyond-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ee-home-beyond-intro-actions .button {
    width: 100%;
    justify-content: center;
  }

  .ee-home-hero-feature,
  .ee-home-story-card,
  .ee-home-reading-lead,
  .ee-home-leadership-column,
  .ee-home-call-panel,
  .ee-home-newsletter-shell .ee-newsletter-panel {
    padding: 1.2rem;
    border-radius: 1.4rem;
  }

  .ee-home-route-card,
  .ee-home-adventure-card,
  .ee-home-beyond-card,
  .ee-home-package-chip {
    border-radius: 1.25rem;
  }

  .ee-home-adventure-feature {
    grid-template-rows: minmax(14rem, 16rem) auto;
  }

  .ee-home-beyond-cards {
    grid-template-areas:
      "primary"
      "season"
      "faq"
      "foundation";
  }

  .ee-home-beyond-card,
  .ee-home-beyond-card-1,
  .ee-home-foundation-card {
    min-height: 0;
    padding: 10.6rem 1.2rem 1.2rem;
  }

  .ee-home-beyond-card::after {
    height: 9rem;
  }

  .ee-home-beyond-card-1::after {
    height: 10.8rem;
  }

  .ee-home-beyond-card-1 h3 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }

  .ee-home-foundation-card {
    align-content: end;
  }

  .ee-home-foundation-card::after {
    inset: 0 0 auto 0;
    width: auto;
    height: 9rem;
    background:
      linear-gradient(180deg, rgba(9, 12, 16, 0.08), rgba(9, 12, 16, 0.18) 52%, rgba(9, 12, 16, 0.78) 100%),
      var(--card-image) var(--card-position, center center) / cover no-repeat;
  }

  .ee-home-adventure-copy h3,
  .ee-home-call-panel h2,
  .ee-home-leadership-column h2,
  .ee-home-section-intro h2,
  .ee-home-story-card h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .ee-home-adventure-card h3,
  .ee-home-reading-lead h3,
  .ee-home-beyond-card h3,
  .ee-home-story-card h3,
  .ee-home-reading-brief strong,
  .ee-home-leader-card strong {
    font-size: 1.72rem;
  }

  .ee-home-hero-feature-copy h2 {
    font-size: clamp(1.95rem, 9.4vw, 2.55rem);
  }

  .ee-home-hero-feature-list {
    display: none;
  }
}

@media (max-width: 420px) {
  body.is-home .background-orb {
    display: none;
  }

  .ee-home-metrics-grid {
    grid-template-columns: 1fr;
  }

  .ee-home-hero-copy h1 {
    font-size: clamp(2.38rem, 13vw, 3.55rem);
  }

  .ee-home-eyebrow,
  .ee-home-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }
}
