:root {
  --ep-carbon: #0a0a0a;
  --ep-ivory: #f7f8f5;
  --ep-white: #ffffff;
  --ep-brass: #c4a86b;
  --ep-slate: #526169;
  --ep-forest: #23685a;
  --ep-ink: #171a18;
  --ep-line: rgba(23, 26, 24, 0.16);
  --ep-line-dark: rgba(255, 255, 255, 0.16);
  --ep-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ep-sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ep-shell: 1320px;
}

html {
  scroll-behavior: smooth;
}

body.ep-home {
  margin: 0;
  min-width: 320px;
  background: var(--ep-ivory);
  color: var(--ep-ink);
  font-family: var(--ep-sans);
  font-size: 16px;
  line-height: 1.65;
}

.ep-home *,
.ep-home *::before,
.ep-home *::after {
  box-sizing: border-box;
}

.ep-home h1,
.ep-home h2,
.ep-home h3,
.ep-home p {
  margin: 0;
}

.ep-home h1,
.ep-home h2,
.ep-home h3 {
  font-family: var(--ep-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.ep-home a {
  color: inherit;
}

.ep-shell {
  width: min(100% - 48px, var(--ep-shell));
  margin-inline: auto;
}

.ep-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 2px;
  background: var(--ep-white);
  color: var(--ep-carbon);
  font: 600 14px/1 var(--ep-sans);
  text-decoration: none;
}

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

.ep-home :focus-visible {
  outline: 2px solid var(--ep-brass);
  outline-offset: 4px;
}

.ep-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  color: var(--ep-white);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.ep-header.is-scrolled,
.ep-header.is-open {
  border-color: var(--ep-line-dark);
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(18px);
}

.ep-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ep-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-family: var(--ep-display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ep-brand__mark {
  width: 28px;
  height: 28px;
  overflow: visible;
  fill: none;
  stroke: var(--ep-brass);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.ep-brand__mark path:first-child {
  fill: rgba(196, 168, 107, 0.12);
}

.ep-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.ep-nav a,
.ep-header__signin {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.ep-nav a::after,
.ep-header__signin::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ep-brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.ep-nav a:hover,
.ep-header__signin:hover {
  color: var(--ep-white);
}

.ep-nav a:hover::after,
.ep-header__signin:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ep-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ep-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--ep-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ep-button--gold {
  border-color: var(--ep-brass);
  background: var(--ep-brass);
  color: var(--ep-carbon);
}

.ep-button--gold:hover {
  border-color: #d4bd85;
  background: #d4bd85;
}

.ep-button--outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--ep-white);
}

.ep-button--outline:hover {
  border-color: var(--ep-white);
  background: var(--ep-white);
  color: var(--ep-carbon);
}

.ep-header__cta {
  min-height: 42px;
  padding: 10px 17px;
}

.ep-menu {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--ep-white);
  font: 500 13px/1 var(--ep-sans);
}

.ep-menu svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.ep-mobile-nav {
  display: none;
  border-top: 1px solid var(--ep-line-dark);
  background: var(--ep-carbon);
}

.ep-mobile-nav.is-open {
  display: block;
}

.ep-mobile-nav nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-block: 18px 26px;
}

.ep-mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--ep-line-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
}

.ep-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ep-carbon);
  color: var(--ep-white);
}

.ep-hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.76), transparent);
  content: "";
  pointer-events: none;
}

.ep-hero__visual {
  position: absolute;
  inset: 0;
  background-color: #121411;
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.78) 37%, rgba(10, 10, 10, 0.12) 72%, rgba(10, 10, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.44)),
    url("./eden-2026-office-horizon.png"),
    url("../media/eden/hero-courtyard-1600w.webp");
  background-position: center, center, center, center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.015);
}

.ep-hero__grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.17;
  background-image: url("../media/texture/texture-linen-480w.webp");
  background-size: 500px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.ep-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 156px;
  padding-bottom: 44px;
}

.ep-hero__copy {
  max-width: 760px;
  padding-bottom: clamp(76px, 12vh, 142px);
}

.ep-hero__identity {
  margin-bottom: 25px !important;
  color: var(--ep-brass);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ep-hero h1 {
  max-width: 9.5ch;
  color: var(--ep-white);
  font-size: clamp(64px, 8.2vw, 128px);
  line-height: 0.83;
  text-wrap: balance;
}

.ep-hero__lead {
  max-width: 58ch;
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.ep-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.ep-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ep-forest);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.ep-text-link:hover {
  border-color: var(--ep-brass);
  color: var(--ep-ink);
}

.ep-text-link--light {
  color: rgba(255, 255, 255, 0.88);
}

.ep-text-link--light:hover {
  color: var(--ep-brass);
}

.ep-hero__foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.ep-hero__foot p {
  color: var(--ep-white);
  font-weight: 600;
}

.ep-hero__foot a {
  color: var(--ep-brass);
  text-decoration: none;
}

.ep-section-mark {
  color: var(--ep-forest);
  font-size: 13px;
  font-weight: 600;
}

.ep-section-mark--gold {
  color: var(--ep-brass);
}

.ep-intro {
  padding: clamp(100px, 12vw, 180px) 0 clamp(110px, 14vw, 210px);
  background: var(--ep-ivory);
}

.ep-intro__heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 2.5fr;
  gap: 64px;
  align-items: start;
}

.ep-intro__heading h2,
.ep-products__head h2,
.ep-industries h2,
.ep-access__head h2 {
  max-width: 19ch;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 0.99;
}

.ep-intro__body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10vw;
  margin-top: clamp(60px, 8vw, 116px);
  margin-left: max(0px, calc((100% - 1080px) * 0.15));
  color: var(--ep-slate);
}

.ep-intro__body p {
  max-width: 54ch;
}

.ep-intro__body .ep-large-copy {
  color: var(--ep-ink);
  font-family: var(--ep-display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.18;
}

.ep-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(86px, 10vw, 148px) 0 0;
  padding: 0;
  border-top: 1px solid var(--ep-line);
  list-style: none;
}

.ep-flow li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  padding: 31px 36px 0 0;
}

.ep-flow li + li {
  padding-left: 36px;
  border-left: 1px solid var(--ep-line);
}

.ep-flow__number {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--ep-brass);
  border-radius: 50%;
  color: #725f33;
  font-size: 12px;
}

.ep-flow h3 {
  font-size: 29px;
  line-height: 1;
}

.ep-flow p {
  max-width: 30ch;
  margin-top: 12px !important;
  color: var(--ep-slate);
  font-size: 14px;
  line-height: 1.7;
}

.ep-agents {
  position: relative;
  overflow: hidden;
  padding: clamp(108px, 12vw, 180px) 0;
  background: var(--ep-carbon);
  color: var(--ep-white);
}

.ep-agents::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 1px;
  background: linear-gradient(transparent, rgba(196, 168, 107, 0.48), transparent);
  content: "";
}

.ep-agents__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.ep-agents__copy h2 {
  max-width: 11ch;
  margin-top: 22px !important;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.98;
}

.ep-agents__copy > p:not(.ep-section-mark) {
  max-width: 48ch;
  margin-top: 31px !important;
  color: rgba(255, 255, 255, 0.68);
}

.ep-agents__copy .ep-text-link {
  margin-top: 34px;
}

.ep-dialogue {
  position: relative;
  min-height: 510px;
}

.ep-dialogue__thread {
  position: absolute;
  top: 104px;
  right: 21%;
  bottom: 105px;
  left: 21%;
  border: 1px solid rgba(196, 168, 107, 0.46);
  border-top: 0;
  border-bottom: 0;
}

.ep-dialogue__thread::before,
.ep-dialogue__thread::after {
  position: absolute;
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ep-brass);
  content: "";
}

.ep-dialogue__thread::before {
  top: 0;
}

.ep-dialogue__thread::after {
  bottom: 0;
  left: -4px;
}

.ep-dialogue__line {
  position: absolute;
  z-index: 2;
  max-width: 480px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111210;
}

.ep-dialogue__line--eve {
  top: 0;
  right: 0;
}

.ep-dialogue__line--adam {
  bottom: 0;
  left: 0;
}

.ep-dialogue__line span {
  color: var(--ep-brass);
  font-size: 12px;
  font-weight: 600;
}

.ep-dialogue__line p {
  margin-top: 18px !important;
  font-family: var(--ep-display);
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.2;
}

.ep-products {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--ep-white);
}

.ep-products__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 2.5fr;
  gap: 64px;
  margin-bottom: clamp(80px, 10vw, 144px);
}

.ep-product {
  position: relative;
  display: grid;
  min-height: 320px;
  grid-template-columns: 0.9fr 1.25fr 0.35fr;
  gap: 56px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--ep-line);
}

.ep-product:last-of-type {
  border-bottom: 1px solid var(--ep-line);
}

.ep-product__name {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ep-product__name span {
  font-family: var(--ep-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.ep-product__name small {
  color: var(--ep-slate);
  font-size: 12px;
}

.ep-product__copy h3 {
  max-width: 18ch;
  font-size: clamp(31px, 3.2vw, 48px);
  line-height: 1.07;
}

.ep-product__copy p {
  max-width: 57ch;
  margin-top: 20px !important;
  color: var(--ep-slate);
}

.ep-product__copy .ep-text-link {
  margin-top: 25px;
}

.ep-product__index {
  color: rgba(196, 168, 107, 0.22);
  font-family: var(--ep-display);
  font-size: clamp(92px, 10vw, 156px);
  line-height: 1;
  text-align: right;
}

.ep-products__all {
  display: block;
  width: fit-content;
  margin: 42px 0 0 auto;
  color: var(--ep-forest);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ep-boundary {
  padding: clamp(86px, 10vw, 142px) 0;
  background: var(--ep-forest);
  color: var(--ep-white);
}

.ep-boundary__grid {
  display: grid;
  grid-template-columns: 0.75fr 2fr;
  gap: 9vw;
}

.ep-boundary__rule {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.ep-boundary h2 {
  max-width: 13ch;
  font-size: clamp(54px, 7vw, 98px);
  line-height: 0.92;
}

.ep-boundary div > p {
  max-width: 59ch;
  margin-top: 32px !important;
  color: rgba(255, 255, 255, 0.74);
}

.ep-industries {
  padding: clamp(108px, 13vw, 188px) 0 0;
  background: var(--ep-ivory);
}

.ep-industries__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr;
  gap: 10vw;
  align-items: end;
}

.ep-industries h2 {
  margin-top: 20px !important;
}

.ep-industries__grid > div:last-child p {
  max-width: 42ch;
  color: var(--ep-slate);
}

.ep-industries__grid .ep-text-link {
  margin-top: 25px;
}

.ep-industries__rail {
  display: flex;
  gap: 0;
  margin-top: clamp(82px, 10vw, 140px);
  overflow-x: auto;
  border-top: 1px solid var(--ep-line);
  border-bottom: 1px solid var(--ep-line);
  scrollbar-width: thin;
}

.ep-industries__rail span {
  min-width: 220px;
  padding: 25px 34px;
  border-right: 1px solid var(--ep-line);
  color: var(--ep-slate);
  font-family: var(--ep-display);
  font-size: 28px;
  text-align: center;
}

.ep-access {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--ep-ivory);
}

.ep-access__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 2.5fr;
  gap: 64px;
}

.ep-access__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 125px);
  border-top: 1px solid var(--ep-line);
  border-bottom: 1px solid var(--ep-line);
}

.ep-access__links a {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 35px 38px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.ep-access__links a + a {
  border-left: 1px solid var(--ep-line);
}

.ep-access__links a > span {
  color: var(--ep-forest);
  font-size: 13px;
  font-weight: 600;
}

.ep-access__links strong {
  margin-top: auto;
  padding-top: 70px;
  font-family: var(--ep-display);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.ep-access__links small {
  margin-top: 17px;
  color: var(--ep-slate);
  font-size: 12px;
}

.ep-access__links a:hover {
  background: var(--ep-carbon);
  color: var(--ep-white);
}

.ep-access__links a:hover > span,
.ep-access__links a:hover small {
  color: var(--ep-brass);
}

.ep-closing {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 14vw, 210px) 0;
  background: var(--ep-carbon);
  color: var(--ep-white);
}

.ep-closing__light {
  position: absolute;
  top: -40%;
  right: -5%;
  width: min(70vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 168, 107, 0.24), rgba(196, 168, 107, 0.05) 38%, transparent 68%);
  pointer-events: none;
}

.ep-closing__inner {
  position: relative;
}

.ep-closing h2 {
  max-width: 13ch;
  margin-top: 25px !important;
  font-size: clamp(56px, 7.5vw, 108px);
  line-height: 0.91;
}

.ep-closing__inner > p:not(.ep-section-mark) {
  max-width: 58ch;
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.68);
}

.ep-footer {
  padding: 78px 0 28px;
  border-top: 1px solid var(--ep-line-dark);
  background: var(--ep-carbon);
  color: var(--ep-white);
}

.ep-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.7fr);
  gap: 60px;
  padding-bottom: 68px;
}

.ep-brand--footer {
  color: var(--ep-white);
}

.ep-footer__top > div > p {
  max-width: 35ch;
  margin-top: 19px !important;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.ep-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ep-footer nav p {
  margin-bottom: 7px;
  color: var(--ep-brass);
  font-size: 12px;
  font-weight: 600;
}

.ep-footer nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-decoration: none;
}

.ep-footer nav a:hover {
  color: var(--ep-white);
}

.ep-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid var(--ep-line-dark);
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.ep-footer__base span:last-child {
  display: flex;
  gap: 18px;
}

.ep-footer__base a {
  color: inherit;
  text-decoration: none;
}

.ep-home .adam-chip {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: min(92vw, 390px);
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--ep-sans);
}

.ep-home .adam-chip__launch {
  padding: 12px 17px;
  border: 1px solid var(--ep-brass);
  border-radius: 2px;
  background: var(--ep-brass);
  color: var(--ep-carbon);
  font: 600 13px/1.2 var(--ep-sans);
  cursor: pointer;
}

.ep-home .adam-chip__panel {
  display: none;
  width: min(92vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(196, 168, 107, 0.38);
  border-radius: 2px;
  background: #111210;
  color: var(--ep-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.ep-home .adam-chip.is-open .adam-chip__panel {
  display: flex;
  max-height: min(70vh, 540px);
  flex-direction: column;
}

.ep-home .adam-chip.is-open .adam-chip__launch {
  display: none;
}

.ep-home .adam-chip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ep-line-dark);
}

.ep-home .adam-chip__head b {
  font: 500 21px/1 var(--ep-display);
}

.ep-home .adam-chip__head span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.ep-home .adam-chip__close {
  padding: 5px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  cursor: pointer;
}

.ep-home .adam-chip__log {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
}

.ep-home .adam-chip__msg {
  max-width: 92%;
  padding: 9px 11px;
  border-radius: 2px;
}

.ep-home .adam-chip__msg--adam {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
}

.ep-home .adam-chip__msg--you {
  align-self: flex-end;
  background: rgba(196, 168, 107, 0.18);
}

.ep-home .adam-chip__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--ep-line-dark);
}

.ep-home .adam-chip__form input {
  min-width: 0;
  flex: 1;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: #090a09;
  color: var(--ep-white);
  font: 13px var(--ep-sans);
}

.ep-home .adam-chip__form button {
  padding: 10px 13px;
  border: 0;
  border-radius: 2px;
  background: var(--ep-brass);
  color: var(--ep-carbon);
  font: 600 12px var(--ep-sans);
  cursor: pointer;
}

@media (max-width: 1120px) {
  .ep-nav {
    display: none;
  }

  .ep-menu {
    display: inline-flex;
  }

  .ep-dialogue__line {
    max-width: 400px;
  }
}

@media (max-width: 820px) {
  .ep-shell {
    width: min(100% - 38px, var(--ep-shell));
  }

  .ep-header__inner {
    min-height: 74px;
  }

  .ep-header__signin,
  .ep-header__cta {
    display: none;
  }

  .ep-hero__inner {
    padding-top: 128px;
    padding-bottom: 30px;
  }

  .ep-hero__copy {
    padding-bottom: 74px;
  }

  .ep-hero h1 {
    font-size: clamp(58px, 15vw, 92px);
  }

  .ep-hero__visual {
    background-image:
      linear-gradient(180deg, rgba(10, 10, 10, 0.38) 0%, rgba(10, 10, 10, 0.44) 35%, rgba(10, 10, 10, 0.96) 79%, rgba(10, 10, 10, 1) 100%),
      url("./eden-2026-office-horizon.png"),
      url("../media/eden/hero-courtyard-960w.webp");
    background-position: center, 63% center, 63% center;
  }

  .ep-hero__foot {
    grid-template-columns: 1fr auto;
  }

  .ep-hero__foot span {
    display: none;
  }

  .ep-intro__heading,
  .ep-products__head,
  .ep-access__head,
  .ep-industries__grid,
  .ep-boundary__grid,
  .ep-agents__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ep-intro__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 0;
  }

  .ep-flow {
    grid-template-columns: 1fr;
  }

  .ep-flow li,
  .ep-flow li + li {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--ep-line);
  }

  .ep-agents::before {
    display: none;
  }

  .ep-dialogue {
    min-height: 480px;
  }

  .ep-product {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 34px;
  }

  .ep-product__index {
    display: none;
  }

  .ep-access__links {
    grid-template-columns: 1fr;
  }

  .ep-access__links a {
    min-height: 235px;
    padding-inline: 0;
  }

  .ep-access__links a + a {
    border-top: 1px solid var(--ep-line);
    border-left: 0;
  }

  .ep-footer__top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .ep-footer__top nav:last-child {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .ep-shell {
    width: min(100% - 32px, var(--ep-shell));
  }

  .ep-brand {
    font-size: 21px;
  }

  .ep-mobile-nav nav {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 74px);
    overflow-y: auto;
  }

  .ep-hero {
    min-height: 780px;
  }

  .ep-hero__inner {
    min-height: 780px;
  }

  .ep-hero h1 {
    max-width: 7.5ch;
    font-size: clamp(54px, 17vw, 76px);
  }

  .ep-hero__lead {
    margin-top: 25px !important;
    font-size: 15px;
  }

  .ep-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .ep-actions .ep-button {
    width: 100%;
  }

  .ep-hero__foot {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ep-hero__foot a {
    width: fit-content;
  }

  .ep-intro__heading h2,
  .ep-products__head h2,
  .ep-industries h2,
  .ep-access__head h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .ep-flow {
    margin-top: 64px;
  }

  .ep-agents__copy h2 {
    font-size: 52px;
  }

  .ep-dialogue {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 30px;
  }

  .ep-dialogue__line {
    position: relative;
    inset: auto;
    padding: 25px;
  }

  .ep-dialogue__thread {
    top: 50px;
    bottom: 50px;
    left: 50%;
    width: 1px;
  }

  .ep-dialogue__line p {
    font-size: 27px;
  }

  .ep-product {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0;
  }

  .ep-product__name span {
    font-size: 48px;
  }

  .ep-product__copy h3 {
    font-size: 34px;
  }

  .ep-boundary h2 {
    font-size: 58px;
  }

  .ep-industries__rail span {
    min-width: 170px;
    font-size: 24px;
  }

  .ep-access__links a {
    min-height: 210px;
  }

  .ep-closing h2 {
    font-size: 59px;
  }

  .ep-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 24px;
  }

  .ep-footer__top > div {
    grid-column: 1 / -1;
  }

  .ep-footer__top nav:last-child {
    grid-column: auto;
  }

  .ep-footer__base {
    align-items: flex-start;
    flex-direction: column;
  }

  .ep-home .adam-chip {
    right: 12px;
    bottom: 12px;
  }
}

:where(#office, #main > section) {
  scroll-margin-top: 96px;
}

@media (max-width: 820px) {
  :where(#office, #main > section) {
    scroll-margin-top: 84px;
  }
}

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

  .ep-header,
  .ep-button,
  .ep-nav a::after,
  .ep-header__signin::after,
  .ep-access__links a {
    transition: none;
  }
}
