.eh-document {
  scroll-padding-top: 0;
}

.eh-page {
  --eh-forest: #0b3b32;
  --eh-forest-deep: #062a24;
  --eh-forest-soft: #dfe9e0;
  --eh-ink: #17322c;
  --eh-muted: #63716d;
  --eh-paper: #f4efe5;
  --eh-surface: #fffdf7;
  --eh-sand: #e5d5bf;
  --eh-copper: #b87742;
  --eh-copper-dark: #8e5328;
  --eh-line: rgba(23, 50, 44, 0.16);
  --eh-shadow: 0 28px 70px rgba(6, 42, 36, 0.13);
  background: var(--eh-paper);
  color: var(--eh-ink);
}

.eh-page .site-header {
  background: rgba(250, 247, 239, 0.94);
  border-bottom-color: rgba(23, 50, 44, 0.12);
}

.eh-page .nav-cta,
.eh-page .button.primary {
  background: var(--eh-forest);
}

.eh-page .nav-cta:hover,
.eh-page .nav-cta:focus-visible {
  background: var(--eh-forest-deep);
}

.eh-page .site-footer {
  background: #efe8db;
  border-top-color: var(--eh-line);
}

.eh-page h1,
.eh-page h2,
.eh-page h3,
.eh-page p,
.eh-page figure,
.eh-page dl,
.eh-page dd {
  margin-top: 0;
}

.eh-page h1,
.eh-page h2,
.eh-page h3 {
  color: inherit;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  hyphens: none;
  letter-spacing: -0.035em;
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.eh-page h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.35rem, 5.4vw, 4.8rem);
}

.eh-page h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.eh-page p {
  color: var(--eh-muted);
}

.eh-shell {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
}

.eh-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  scroll-margin-top: 150px;
}

.eh-kicker {
  display: block;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.75rem;
  font-weight: 850;
  hyphens: none;
  letter-spacing: 0.18em;
  line-height: 1.3;
  overflow-wrap: normal;
  text-wrap: pretty;
  text-transform: uppercase;
  word-break: normal;
}

.eh-kicker--dark {
  color: var(--eh-copper-dark) !important;
}

.eh-copy {
  max-width: 650px;
}

.eh-copy > p:not(.eh-kicker),
.eh-section-heading > p,
.eh-lede {
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.eh-copy > p:not(.eh-kicker) {
  max-width: 62ch;
}

.eh-lede {
  color: var(--eh-ink) !important;
  font-weight: 650;
}

.eh-actions,
.eh-home-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eh-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.eh-button:hover,
.eh-button:focus-visible {
  transform: translateY(-2px);
}

.eh-button--primary {
  background: var(--eh-copper);
  color: #ffffff;
}

.eh-button--primary:hover,
.eh-button--primary:focus-visible {
  background: var(--eh-copper-dark);
}

.eh-button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.eh-button--ghost:hover,
.eh-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.eh-button--outline {
  border-color: rgba(11, 59, 50, 0.36);
  background: transparent;
  color: var(--eh-forest);
  cursor: pointer;
}

.eh-button--outline:hover,
.eh-button--outline:focus-visible {
  border-color: var(--eh-forest);
  background: var(--eh-forest-soft);
}

.eh-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
  color: var(--eh-forest);
  font-weight: 850;
  text-underline-offset: 0.3rem;
}

/* Hero */
@keyframes eh-text-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eh-hero__content[data-eh-text-reveal] > * {
  animation: eh-text-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eh-hero__content[data-eh-text-reveal] > :nth-child(1) { animation-delay: 80ms; }
.eh-hero__content[data-eh-text-reveal] > :nth-child(2) { animation-delay: 150ms; }
.eh-hero__content[data-eh-text-reveal] > :nth-child(3) { animation-delay: 220ms; }
.eh-hero__content[data-eh-text-reveal] > :nth-child(4) { animation-delay: 290ms; }
.eh-hero__content[data-eh-text-reveal] > :nth-child(5) { animation-delay: 360ms; }
.eh-hero__content[data-eh-text-reveal] > :nth-child(6) { animation-delay: 430ms; }

.reveal-ready [data-reveal][data-eh-text-reveal] {
  transform: none;
  transition: opacity 320ms ease;
}

.reveal-ready [data-reveal][data-eh-text-reveal] > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal][data-eh-text-reveal] > :nth-child(2) { transition-delay: 70ms; }
.reveal-ready [data-reveal][data-eh-text-reveal] > :nth-child(3) { transition-delay: 140ms; }
.reveal-ready [data-reveal][data-eh-text-reveal] > :nth-child(4) { transition-delay: 210ms; }
.reveal-ready [data-reveal][data-eh-text-reveal] > :nth-child(5) { transition-delay: 280ms; }

.reveal-ready [data-reveal][data-eh-text-reveal].is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.eh-hero {
  position: relative;
  min-height: min(800px, calc(100svh - 74px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.eh-hero__media,
.eh-hero__media img,
.eh-final__media,
.eh-final__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.eh-hero__media,
.eh-final__media {
  z-index: -3;
}

.eh-hero__media img,
.eh-final__media img {
  object-fit: cover;
  object-position: center;
}

.eh-hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 27, 24, 0.93) 0%, rgba(5, 27, 24, 0.75) 46%, rgba(5, 27, 24, 0.1) 78%),
    linear-gradient(0deg, rgba(5, 27, 24, 0.9) 0%, rgba(5, 27, 24, 0) 58%);
}

.eh-hero__content {
  padding-top: 7rem;
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.eh-hero h1 {
  max-width: 860px;
  margin-bottom: 1.15rem;
  color: #ffffff;
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.eh-hero__lede {
  max-width: 710px;
  margin-bottom: 1.65rem;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.eh-hero__facts {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2.2rem, 5vw, 4rem) 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.eh-hero__facts div {
  padding: 1rem 1.1rem 1rem 0;
}

.eh-hero__facts div + div {
  padding-left: 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.eh-hero__facts dt {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eh-hero__facts dd {
  color: #ffffff;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
}

.eh-render-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.75rem;
  line-height: 1.45;
}

/* Sticky page journey */
.eh-journey {
  position: sticky;
  z-index: 35;
  top: 74px;
  border-bottom: 1px solid var(--eh-line);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(18px);
}

.eh-journey .eh-shell {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-block: 0.65rem;
  scrollbar-width: none;
}

.eh-journey .eh-shell::-webkit-scrollbar {
  display: none;
}

.eh-journey a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-bottom: 2px solid transparent;
  color: var(--eh-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.eh-journey a:hover,
.eh-journey a:focus-visible,
.eh-journey a.is-active {
  border-bottom-color: var(--eh-copper);
  color: var(--eh-forest);
}

/* Editorial introduction */
.eh-intro {
  background: var(--eh-surface);
}

.eh-intro__grid,
.eh-masterplan__grid,
.eh-shoppes__grid,
.eh-video__grid,
.eh-faq__grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.eh-intro__grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.eh-editorial-image,
.eh-plan-card,
.eh-shoppes figure {
  margin-bottom: 0;
}

.eh-media-button {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: zoom-in;
}

.eh-media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.eh-media-button > span {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  background: rgba(6, 42, 36, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.eh-media-button:hover img,
.eh-media-button:focus-visible img {
  transform: scale(1.025);
}

.eh-editorial-image .eh-media-button {
  aspect-ratio: 4 / 3;
}

.eh-editorial-image figcaption,
.eh-plan-card figcaption,
.eh-shoppes figcaption {
  margin-top: 0.7rem;
  color: var(--eh-muted);
  font-size: 0.78rem;
}

/* Proof band */
.eh-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--eh-forest-deep);
  color: #ffffff;
}

.eh-proof::after {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  right: -20rem;
  bottom: -29rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.018), 0 0 0 12rem rgba(255, 255, 255, 0.014);
}

.eh-proof__heading {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 3rem;
}

.eh-proof h2 {
  color: #ffffff;
}

.eh-proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.eh-proof article {
  min-height: 270px;
  padding: 2rem 1.5rem 2rem 0;
}

.eh-proof article + article {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.eh-proof article strong {
  display: block;
  margin-bottom: 2.7rem;
  color: #e4b47d;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.eh-proof article h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.eh-proof article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Section headings */
.eh-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.eh-section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.eh-section-heading > p {
  margin-bottom: 0.35rem;
}

/* Location */
.eh-location {
  background: #eee5d8;
}

.eh-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
}

.eh-map {
  min-height: 540px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--eh-line);
  background: var(--eh-surface);
  box-shadow: var(--eh-shadow);
}

.eh-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.eh-map a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: var(--eh-forest);
  font-weight: 850;
}

.eh-distance-list {
  border: 1px solid var(--eh-line);
  background: var(--eh-surface);
}

.eh-distance-list div {
  min-height: 105px;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.eh-distance-list div + div {
  border-top: 1px solid var(--eh-line);
}

.eh-distance-list span {
  color: var(--eh-copper-dark);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.eh-distance-list p {
  margin-bottom: 0;
  color: var(--eh-ink);
  font-weight: 750;
}

/* Masterplan */
.eh-masterplan {
  background: var(--eh-surface);
}

.eh-masterplan__grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}

.eh-masterplan__grid .eh-copy {
  max-width: none;
}

.eh-masterplan__grid h2 {
  max-width: 100%;
  font-size: clamp(3.25rem, 3.9vw, 3.6rem);
  line-height: 1.02;
}

.eh-plan-card {
  padding: 1rem;
  border: 1px solid var(--eh-line);
  background: #ffffff;
  box-shadow: var(--eh-shadow);
}

.eh-plan-card .eh-media-button {
  aspect-ratio: 1 / 1;
  background: #eef1e8;
}

.eh-plan-card .eh-media-button img {
  object-fit: contain;
}

.eh-check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.eh-check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--eh-ink);
  font-weight: 700;
}

.eh-check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--eh-copper);
}

/* Home explorer */
.eh-homes {
  background: var(--eh-paper);
}

.eh-home-tabs {
  border: 1px solid var(--eh-line);
  background: var(--eh-surface);
  box-shadow: var(--eh-shadow);
}

.eh-tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--eh-line);
}

.eh-tablist button {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 0;
  background: transparent;
  color: var(--eh-muted);
  font-weight: 850;
  cursor: pointer;
}

.eh-tablist button + button {
  border-left: 1px solid var(--eh-line);
}

.eh-tablist button span {
  color: var(--eh-copper-dark);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.35rem;
}

.eh-tablist button[aria-selected="true"] {
  background: var(--eh-forest);
  color: #ffffff;
}

.eh-tablist button[aria-selected="true"] span {
  color: #e5b982;
}

.eh-home-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 620px;
}

.eh-home-panel[hidden] {
  display: none;
}

.eh-home-panel__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.eh-home-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eh-home-panel__visual > span {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.4rem 0.55rem;
  background: rgba(6, 42, 36, 0.8);
  color: #ffffff;
  font-size: 0.72rem;
}

.eh-home-panel__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.eh-home-panel__body h3 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}

.eh-home-panel__body > p:not(.eh-kicker) {
  line-height: 1.72;
}

.eh-home-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--eh-line);
  border-left: 1px solid var(--eh-line);
}

.eh-home-facts div {
  min-height: 91px;
  padding: 0.9rem 1rem;
  border-right: 1px solid var(--eh-line);
  border-bottom: 1px solid var(--eh-line);
}

.eh-home-facts dt {
  margin-bottom: 0.15rem;
  color: var(--eh-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eh-home-facts dd {
  color: var(--eh-ink);
  font-weight: 850;
}

.eh-home-panel__actions {
  margin-top: 1rem;
}

/* Facilities gallery */
.eh-facilities {
  background: var(--eh-surface);
}

.eh-gallery-status {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  color: var(--eh-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eh-gallery-status span:first-child {
  color: var(--eh-copper-dark);
}

.eh-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.eh-gallery__item {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--eh-line);
  background: #ffffff;
}

.eh-gallery__item--feature {
  grid-column: span 8;
  grid-row: span 2;
}

.eh-gallery__item .eh-media-button {
  aspect-ratio: 4 / 3;
}

.eh-gallery__item--feature .eh-media-button {
  aspect-ratio: 16 / 10;
}

.eh-gallery__item figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
}

.eh-gallery__item figcaption strong {
  color: var(--eh-ink);
  font-size: 0.9rem;
}

.eh-gallery__item figcaption small {
  color: var(--eh-muted);
  font-size: 0.7rem;
}

.eh-facility-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--eh-line);
}

.eh-facility-list p {
  margin-bottom: 0;
  color: var(--eh-copper-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eh-facility-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eh-facility-list li {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--eh-line);
  color: var(--eh-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Shoppes */
.eh-shoppes {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--eh-forest);
  color: #ffffff;
}

.eh-shoppes__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.eh-shoppes figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.eh-shoppes h2 {
  color: #ffffff;
}

.eh-shoppes p {
  color: rgba(255, 255, 255, 0.72);
}

.eh-shoppes figcaption {
  color: rgba(255, 255, 255, 0.58);
}

/* Video */
.eh-video {
  background: #ece1d2;
}

.eh-video__grid {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  max-width: 1050px;
}

.eh-video__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 690px;
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid var(--eh-surface);
  box-shadow: var(--eh-shadow);
}

.eh-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.eh-faq {
  background: var(--eh-surface);
}

.eh-faq__grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.eh-accordions {
  border-top: 1px solid var(--eh-line);
}

.eh-accordions details {
  border-bottom: 1px solid var(--eh-line);
}

.eh-accordions summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--eh-ink);
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.eh-accordions summary::-webkit-details-marker {
  display: none;
}

.eh-accordions summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--eh-copper-dark);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.eh-accordions details[open] summary::after {
  content: "−";
}

.eh-accordions details p {
  max-width: 690px;
  padding: 0 2.5rem 1.4rem 0;
  line-height: 1.72;
}

/* Final CTA */
.eh-final {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.eh-final__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 27, 24, 0.94) 0%, rgba(5, 27, 24, 0.79) 50%, rgba(5, 27, 24, 0.24) 100%);
}

.eh-final__content {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eh-final h2 {
  max-width: 850px;
  color: #ffffff;
}

.eh-final__content > p:not(.eh-kicker, .eh-render-note) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.eh-final .eh-actions {
  margin: 1.8rem 0 2.5rem;
}

/* Mobile conversion bar */
.eh-mobile-bar {
  display: none;
}

/* Accessible lightbox */
.eh-lightbox {
  width: min(1180px, calc(100% - 1.5rem));
  max-width: none;
  max-height: calc(100dvh - 1.5rem);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #071d19;
  color: #ffffff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.eh-lightbox::backdrop {
  background: rgba(1, 12, 10, 0.88);
  backdrop-filter: blur(8px);
}

.eh-lightbox__bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem 0.7rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.eh-lightbox__bar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.eh-lightbox__bar button {
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.eh-lightbox__stage {
  position: relative;
  min-height: min(74dvh, 760px);
  display: grid;
  place-items: center;
  padding: 1rem 4.5rem;
}

.eh-lightbox__stage img {
  width: auto;
  max-width: 100%;
  max-height: min(70dvh, 720px);
  object-fit: contain;
}

.eh-lightbox__nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 2rem;
  cursor: pointer;
}

.eh-lightbox__nav--prev {
  left: 0.9rem;
}

.eh-lightbox__nav--next {
  right: 0.9rem;
}

/* Responsive */
@media (max-width: 959px) {
  .eh-intro__grid,
  .eh-masterplan__grid,
  .eh-shoppes__grid,
  .eh-faq__grid {
    grid-template-columns: 1fr;
  }

  .eh-intro__grid .eh-copy,
  .eh-masterplan__grid .eh-copy,
  .eh-shoppes__grid .eh-copy,
  .eh-faq__grid .eh-copy {
    max-width: 760px;
  }

  .eh-section-heading {
    grid-template-columns: 1fr;
  }

  .eh-section-heading > p {
    max-width: 720px;
  }

  .eh-proof__grid {
    grid-template-columns: 1fr 1fr;
  }

  .eh-proof article:nth-child(3) {
    border-left: 0;
  }

  .eh-proof article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .eh-home-panel {
    grid-template-columns: 1fr;
  }

  .eh-home-panel__visual {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 719px) {
  .eh-page {
    padding-bottom: 84px;
  }

  .eh-page h2 {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .eh-masterplan__grid h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 10.5vw, 3.15rem);
  }

  .eh-shell {
    width: min(100% - 1.25rem, 1220px);
  }

  .eh-section {
    padding: 5.2rem 0;
    scroll-margin-top: 126px;
  }

  .eh-hero {
    min-height: max(760px, calc(100svh - 74px));
  }

  .eh-hero__media img {
    object-position: center;
  }

  .eh-hero__veil {
    background:
      linear-gradient(0deg, rgba(5, 27, 24, 0.97) 0%, rgba(5, 27, 24, 0.8) 47%, rgba(5, 27, 24, 0.18) 100%),
      linear-gradient(90deg, rgba(5, 27, 24, 0.42), rgba(5, 27, 24, 0));
  }

  .eh-hero__content {
    padding-top: 8rem;
    padding-bottom: 1.5rem;
  }

  .eh-hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.8rem);
  }

  .eh-hero__lede {
    font-size: 1rem;
    line-height: 1.58;
  }

  .eh-actions,
  .eh-home-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .eh-button {
    width: 100%;
  }

  .eh-hero__facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }

  .eh-hero__facts div {
    padding: 0.8rem 0.75rem 0.8rem 0;
  }

  .eh-hero__facts div + div {
    padding-left: 0.75rem;
  }

  .eh-hero__facts div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .eh-hero__facts div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .eh-journey {
    top: 74px;
  }

  .eh-proof__grid {
    grid-template-columns: 1fr;
  }

  .eh-proof article {
    min-height: 0;
    padding: 1.4rem 0;
  }

  .eh-proof article + article,
  .eh-proof article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .eh-proof article strong {
    margin-bottom: 1.1rem;
  }

  .eh-location__grid {
    grid-template-columns: 1fr;
  }

  .eh-map {
    min-height: 420px;
  }

  .eh-map iframe {
    min-height: 360px;
  }

  .eh-distance-list div {
    min-height: 82px;
  }

  .eh-plan-card {
    padding: 0.65rem;
  }

  .eh-tablist {
    grid-template-columns: 1fr;
  }

  .eh-tablist button {
    min-height: 60px;
    justify-content: flex-start;
  }

  .eh-tablist button + button {
    border-top: 1px solid var(--eh-line);
    border-left: 0;
  }

  .eh-home-panel__visual {
    aspect-ratio: 4 / 3;
  }

  .eh-home-panel__body {
    padding: 1.6rem 1rem 1.3rem;
  }

  .eh-home-panel__body h3 {
    font-size: 2.85rem;
  }

  .eh-home-facts {
    grid-template-columns: 1fr 1fr;
  }

  .eh-home-facts div {
    min-height: 84px;
    padding: 0.75rem;
  }

  .eh-gallery-status {
    display: flex;
  }

  .eh-gallery {
    width: calc(100% + 0.625rem);
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0 0.625rem 1rem 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .eh-gallery::-webkit-scrollbar {
    display: none;
  }

  .eh-gallery__item,
  .eh-gallery__item--feature {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .eh-gallery__item .eh-media-button,
  .eh-gallery__item--feature .eh-media-button {
    aspect-ratio: 4 / 3;
  }

  .eh-facility-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .eh-video__grid {
    grid-template-columns: 1fr;
  }

  .eh-video__frame {
    width: min(86vw, 360px);
    max-height: none;
  }

  .eh-final {
    min-height: 720px;
  }

  .eh-final__veil {
    background: linear-gradient(0deg, rgba(5, 27, 24, 0.97) 0%, rgba(5, 27, 24, 0.75) 64%, rgba(5, 27, 24, 0.22) 100%);
  }

  .eh-mobile-bar {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0.55rem;
    padding: 0.55rem;
    border-top: 1px solid rgba(23, 50, 44, 0.16);
    background: rgba(255, 253, 247, 0.97);
    box-shadow: 0 -12px 32px rgba(6, 42, 36, 0.14);
    transform: translateY(110%);
    transition: transform 240ms ease;
  }

  .eh-mobile-bar.is-visible {
    transform: translateY(0);
  }

  .eh-mobile-bar a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    border: 1px solid var(--eh-forest);
    border-radius: 3px;
    color: var(--eh-forest);
    font-size: 0.84rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
  }

  .eh-mobile-bar a:last-child {
    background: var(--eh-forest);
    color: #ffffff;
  }

  .eh-lightbox {
    width: calc(100% - 0.75rem);
    max-height: calc(100dvh - 0.75rem);
  }

  .eh-lightbox__bar p {
    max-width: 70%;
    font-size: 0.8rem;
  }

  .eh-lightbox__stage {
    min-height: 75dvh;
    padding: 0.75rem 2.9rem;
  }

  .eh-lightbox__nav {
    width: 36px;
    height: 48px;
  }

  .eh-lightbox__nav--prev {
    left: 0.35rem;
  }

  .eh-lightbox__nav--next {
    right: 0.35rem;
  }

  .eh-lightbox--plan .eh-lightbox__stage {
    display: block;
    overflow: auto;
    padding: 3rem 1rem;
  }

  .eh-lightbox--plan .eh-lightbox__stage img {
    width: 700px;
    min-width: 700px;
    max-width: none;
    max-height: none;
  }

  .eh-page .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 720px) {
  .eh-gallery-status {
    display: none;
  }
}

@media (min-width: 1440px) {
  .eh-shell {
    width: min(1280px, calc(100% - 5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .eh-page *,
  .eh-page *::before,
  .eh-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .eh-hero__content[data-eh-text-reveal] > *,
  .reveal-ready [data-reveal][data-eh-text-reveal] > * {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
}
