/**
 * El Helw Architects — public homepage (layout & theme)
 * Motion: see eh-public-motion.css (loaded after this file on homepage)
 */
.eh-public-home {
  --eh-navy: #0a1f44;
  --eh-navy-soft: #132a52;
  --eh-gray: #f5f5f5;
  --eh-white: #ffffff;
  --eh-gold: #c9a96e;
  --eh-gold-soft: rgba(201, 169, 110, 0.35);
  --eh-text: #1a1a1a;
  --eh-text-muted: #5c6370;
  font-family: "Outfit", "Cairo", system-ui, sans-serif;
}

.eh-public-home .eh-font-display,
.eh-luxury-showroom .eh-font-display {
  font-family: "Playfair Display", "Times New Roman", serif;
}

.eh-public-home .eh-section,
.eh-luxury-showroom .eh-section {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .eh-public-home .eh-section,
  .eh-luxury-showroom .eh-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.eh-public-home .eh-container,
.eh-luxury-showroom .eh-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline layout (step motion in eh-public-motion.css) */
.eh-timeline-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.eh-timeline-step {
  flex: 0 0 auto;
  min-width: 7.5rem;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .eh-timeline-track:not(.eh-process-grid) {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    overflow: visible;
    gap: 0.5rem;
  }
  .eh-timeline-track:not(.eh-process-grid) .eh-timeline-step {
    min-width: 0;
  }
}

/* Gold hairline */
.eh-gold-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--eh-gold), transparent);
}

/* ——— Luxury showroom homepage (dark + gold) ——— */
body.eh-public-home,
body.eh-public-about,
body.eh-public-contact,
body.eh-public-process,
body.eh-public-services,
body.eh-public-projects,
body.eh-public-project-detail {
  background-color: #050505;
  color: #f5f5f5;
}

.eh-luxury-showroom {
  --eh-showroom-bg: #050505;
  --eh-showroom-surface: #0c0c0c;
  --eh-showroom-elevated: #111111;
  --eh-showroom-text: #f5f5f5;
  --eh-showroom-muted: rgba(245, 245, 245, 0.72);
  --eh-showroom-gold: #c9a96e;
  --eh-showroom-gold-soft: rgba(201, 169, 110, 0.22);
  --eh-showroom-line: rgba(201, 169, 110, 0.22);
  /* Do not rely on Tailwind arbitrary utilities for base text (CDN / order issues) */
  color: var(--eh-showroom-text);
  background-color: var(--eh-showroom-bg);
  min-height: 100%;
}

.eh-showroom-text-muted {
  color: var(--eh-showroom-muted);
}

.eh-showroom-kicker {
  color: var(--eh-showroom-gold);
}

.eh-cinematic-hero__scrim {
  background: linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 48%);
}

.eh-hero-slides {
  background: #000;
}

.eh-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

.eh-hero-slide--active {
  opacity: 1;
  z-index: 1;
}

.eh-hero-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 0.45s ease,
    opacity 0.45s ease,
    transform 0.45s ease;
}

.eh-hero-dot:hover,
.eh-hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  outline: none;
}

.eh-hero-dot:focus-visible {
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.55);
}

.eh-hero-dot--active {
  background: var(--eh-showroom-gold);
  transform: scaleX(1.15);
}

.eh-showroom-strip {
  background: var(--eh-showroom-surface);
}

.eh-showroom-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .eh-showroom-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.eh-showroom-section--soft {
  background: linear-gradient(180deg, var(--eh-showroom-elevated) 0%, var(--eh-showroom-bg) 100%);
}

.eh-editorial-frame {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.eh-showroom-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--eh-showroom-gold), transparent);
}

.eh-btn-showroom {
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.eh-btn-showroom--solid {
  background: var(--eh-showroom-gold);
  color: #0a0a0a;
  border: 1px solid var(--eh-showroom-gold);
  box-shadow: 0 12px 40px var(--eh-showroom-gold-soft);
}

.eh-btn-showroom--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.35);
}

.eh-btn-showroom--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.eh-btn-showroom--ghost:hover {
  border-color: var(--eh-showroom-gold);
  color: var(--eh-showroom-gold);
  transform: translateY(-2px);
}

.eh-btn-showroom--outline {
  background: transparent;
  color: var(--eh-showroom-gold);
  border: 1px solid var(--eh-showroom-line);
}

.eh-btn-showroom--outline:hover {
  border-color: var(--eh-showroom-gold);
  background: rgba(201, 169, 110, 0.08);
}

/* <a> CTAs: Tailwind preflight uses `a { color: inherit }` after this file — keep readable contrast */
.eh-luxury-showroom a.eh-btn-showroom {
  box-sizing: border-box;
}

.eh-luxury-showroom a.eh-btn-showroom--solid {
  color: #0a0a0a;
  background-color: var(--eh-showroom-gold);
}

.eh-luxury-showroom a.eh-btn-showroom--solid:hover {
  color: #0a0a0a;
}

.eh-luxury-showroom a.eh-btn-showroom--ghost {
  color: rgba(255, 255, 255, 0.95);
  background-color: transparent;
}

.eh-luxury-showroom a.eh-btn-showroom--ghost:hover {
  color: var(--eh-showroom-gold);
}

.eh-luxury-showroom a.eh-btn-showroom--outline {
  color: var(--eh-showroom-gold);
  background-color: transparent;
}

.eh-luxury-showroom a.eh-btn-showroom--outline:hover {
  color: var(--eh-showroom-gold);
}

/* Zigzag service rows: top-align columns (avoids uneven “holes” under tall images) */
.eh-services-zigzag > article {
  align-items: start;
}

/* Service visual cards */
.eh-service-visual__gold {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.35) 0%,
    rgba(201, 169, 110, 0.08) 50%,
    transparent 100%
  );
}

.eh-service-visual__img {
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.eh-service-visual:hover .eh-service-visual__img,
.eh-service-visual:focus-within .eh-service-visual__img {
  transform: scale(1.09);
}

/* Project grid */
.eh-project-card__img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.eh-project-card:hover .eh-project-card__img,
.eh-project-card:focus-visible .eh-project-card__img {
  transform: scale(1.06);
}

.eh-project-card:focus-visible {
  outline: 2px solid var(--eh-showroom-gold);
  outline-offset: 2px;
}

/* Process grid (6 columns desktop) */
.eh-process-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .eh-process-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

.eh-process-grid.eh-timeline-track::before {
  top: 38%;
}

@media (max-width: 1023px) {
  .eh-process-grid {
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(10rem, 1fr));
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .eh-process-card {
    scroll-snap-align: start;
  }
}

.eh-luxury-showroom .eh-gold-line {
  background: linear-gradient(90deg, var(--eh-showroom-gold), transparent);
}

.eh-luxury-showroom .eh-timeline-track::before {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.45), rgba(255, 255, 255, 0.06));
}

[dir="rtl"] .eh-luxury-showroom .eh-editorial-frame {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

/* ——— Cinematic home: hero depth + rail + timeline + parallax + lightbox ——— */
#eh-hero {
  perspective: 1400px;
}

#eh-hero-parallax {
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

/* Scroll progress (gold hairline) */
.eh-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100000;
  pointer-events: none;
  background: rgba(201, 169, 110, 0.08);
}

.eh-scroll-progress__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.35), var(--eh-showroom-gold));
  transition: transform 0.12s ease-out;
}

[dir="rtl"] .eh-scroll-progress__fill {
  transform-origin: right center;
}

/* Custom cursor */
.eh-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  border: 1px solid rgba(201, 169, 110, 0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transition:
    width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    opacity 0.25s ease;
}

.eh-cursor--lg {
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.06);
}

.eh-cursor-active,
.eh-cursor-active a,
.eh-cursor-active button {
  cursor: none !important;
}

/* <dialog showModal()> renders in the top layer above #eh-cursor; restore the OS cursor there */
.eh-cursor-active dialog,
.eh-cursor-active dialog *,
.eh-cursor-active dialog::backdrop {
  cursor: auto !important;
}

@media (hover: none), (pointer: coarse) {
  .eh-cursor {
    display: none !important;
  }

  .eh-cursor-active,
  .eh-cursor-active a,
  .eh-cursor-active button {
    cursor: auto !important;
  }
}

.eh-hero-depth--mid {
  background: radial-gradient(
    ellipse 85% 60% at 45% 38%,
    rgba(201, 169, 110, 0.09) 0%,
    transparent 58%
  );
}

.eh-hero-depth--sweep {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(201, 169, 110, 0.05) 48%,
    transparent 52%
  );
  background-size: 200% 100%;
  animation: ehHeroSweep 18s ease-in-out infinite;
}

@keyframes ehHeroSweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.eh-hero-depth--fg {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 46%),
    radial-gradient(ellipse 100% 70% at 85% 15%, rgba(0, 0, 0, 0.42) 0%, transparent 52%);
}

/* Horizontal project rail */
.eh-showcase-rail {
  padding-left: 0;
  padding-right: 0;
}

.eh-showcase-rail .eh-container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .eh-showcase-rail .eh-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.eh-showcase-rail__pin {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.eh-showcase-rail__track {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-inline: 1rem;
  will-change: transform;
}

.eh-showcase-slide {
  flex: 0 0 min(88vw, 1100px);
  max-width: min(88vw, 1100px);
}

.eh-showcase-slide__img {
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  will-change: transform;
}

.eh-showcase-slide__open:hover .eh-showcase-slide__img,
.eh-showcase-slide__open:focus-visible .eh-showcase-slide__img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

/* Process — vertical timeline */
.eh-process-timeline {
  position: relative;
  padding-left: 2.75rem;
}

[dir="rtl"] .eh-process-timeline {
  padding-left: 0;
  padding-right: 2.75rem;
}

.eh-process-timeline__line {
  position: absolute;
  left: 0.85rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(201, 169, 110, 0.22);
  pointer-events: none;
}

[dir="rtl"] .eh-process-timeline__line {
  left: auto;
  right: 0.85rem;
}

.eh-process-timeline__line-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(0);
  background: linear-gradient(
    180deg,
    var(--eh-showroom-gold) 0%,
    rgba(201, 169, 110, 0.28) 100%
  );
}

.eh-process-timeline__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eh-process-timeline__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.eh-process-timeline__marker {
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.eh-process-timeline__num {
  display: inline-flex;
  min-width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--eh-showroom-gold);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--eh-showroom-bg);
}

/* Why — fixed-style parallax block */
.eh-parallax-why__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.eh-parallax-why__bg-img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.eh-parallax-why__veil {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.eh-parallax-why__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.2) 100%);
  animation: ehWhyGradient 22s ease-in-out infinite;
}

@keyframes ehWhyGradient {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.92;
    transform: translate3d(-1.5%, 0, 0) scale(1.02);
  }
}

/* Final CTA — Ken Burns */
.eh-final-cta__img {
  animation: ehFinalCtaKen 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ehFinalCtaKen {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.07) translate3d(-1.2%, 0.6%, 0);
  }
}

/* Service tilt shell */
.eh-service-tilt {
  perspective: 1100px;
}

.eh-service-tilt__inner {
  transform-style: preserve-3d;
  transition:
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  border-radius: 0.125rem;
}

.eh-service-tilt:hover .eh-service-tilt__inner,
.eh-service-tilt:focus-within .eh-service-tilt__inner {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 110, 0.35);
}

.eh-service-icon {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.eh-service-tilt:hover .eh-service-icon,
.eh-service-tilt:focus-within .eh-service-icon {
  transform: rotate(90deg) scale(1.05);
}

/* Luxury buttons — gold sweep */
.eh-btn-luxury {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.eh-btn-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-120%) skewX(-12deg);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.eh-btn-showroom--solid.eh-btn-luxury::after {
  mix-blend-mode: soft-light;
}

.eh-btn-luxury:hover::after,
.eh-btn-luxury:focus-visible::after {
  opacity: 1;
  transform: translateX(120%) skewX(-12deg);
}

.eh-btn-luxury > * {
  position: relative;
  z-index: 2;
}

.eh-inline-glow {
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.35),
    0 18px 55px rgba(201, 169, 110, 0.28);
}

.eh-inline-glow:hover,
.eh-inline-glow:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.5),
    0 24px 70px rgba(201, 169, 110, 0.38);
}

/* Image micro-interaction */
.eh-img-luxury {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.eh-editorial-frame:hover .eh-img-luxury {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Lightbox */
.eh-portfolio-lightbox {
  border: none;
  padding: 0;
  max-width: min(96vw, 1200px);
  width: 100%;
  background: transparent;
  color: #fff;
}

.eh-portfolio-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eh-portfolio-lightbox__panel {
  position: relative;
  border-radius: 0.125rem;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: #0a0a0a;
}

.eh-portfolio-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 900px);
  object-fit: contain;
  background: #000;
}

.eh-portfolio-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.eh-portfolio-lightbox__close:hover,
.eh-portfolio-lightbox__close:focus-visible {
  background: rgba(201, 169, 110, 0.25);
  border-color: rgba(201, 169, 110, 0.55);
  outline: none;
}

[dir="rtl"] .eh-portfolio-lightbox__close {
  right: auto;
  left: 0.75rem;
}

.eh-portfolio-lightbox__meta {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.eh-portfolio-lightbox__title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  color: #fff;
}

.eh-portfolio-lightbox__loc {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eh-showroom-gold);
}

/* Cinematic shell: navbar + footer polish */
.eh-cinematic-home .eh-shell__header--transparent {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.eh-cinematic-home .eh-shell__header--scrolled {
  background-color: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(201, 169, 110, 0.12) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.eh-cinematic-home .eh-shell__footer {
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  background: linear-gradient(180deg, #050505 0%, #020202 100%);
}

@media (prefers-reduced-motion: reduce) {
  .eh-hero-depth--sweep,
  .eh-parallax-why__gradient,
  .eh-final-cta__img {
    animation: none !important;
  }

  .eh-showcase-slide__img {
    transform: none !important;
  }

  .eh-process-timeline__line-fill {
    transform: scaleY(1) !important;
  }

  .eh-showcase-rail__pin {
    min-height: 0;
  }

  .eh-showcase-rail__track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
  }
}

/* ——— Portfolio list (bento) ——— */
.eh-portfolio-bento {
  align-items: stretch;
}

.eh-portfolio-bento__feature {
  min-height: 0;
}

@media (min-width: 768px) {
  .eh-portfolio-bento__feature {
    min-height: 32rem;
  }
}

/* ——— Project detail: panorama strip + lightbox + chapter pills ——— */
.eh-pd-panorama__track {
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--eh-showroom-gold) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.eh-pd-panorama__track::-webkit-scrollbar {
  height: 6px;
}

.eh-pd-panorama__track::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.45);
  border-radius: 3px;
}

.eh-pd-chapter-pill.is-active {
  border-color: var(--eh-showroom-gold) !important;
  color: var(--eh-showroom-gold) !important;
  background: rgba(201, 169, 110, 0.12);
}

.eh-pd-lightbox {
  color: var(--eh-showroom-text, #f5f5f5);
}

.eh-pd-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
}

.eh-skip-to-story {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eh-skip-to-story:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  right: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 0.75rem;
  overflow: visible;
  clip: auto;
  z-index: 100;
  border-radius: 2px;
  background: var(--eh-showroom-gold, #c9a96e);
  color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  outline: 2px solid rgba(201, 169, 110, 0.5);
  outline-offset: 2px;
}

[dir="rtl"] .eh-skip-to-story:focus {
  left: auto;
  right: 0.75rem;
}

.eh-luxury-showroom .eh-video-iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
