/* Preview only: premium homepage concept for RealEsthetics */

.home-wow-preview {
  background: #050505;
}

.home-wow-preview main > .hero,
.home-wow-preview main > #presentation,
.home-wow-preview main > #presentation2,
.home-wow-preview main > #cta-section {
  display: none;
}

.home-wow-preview .wow-home {
  --wow-display-font: "Bodoni 72", "Bodoni MT", Didot, "Hoefler Text", "Times New Roman", serif;
  --wow-ivory: #f8f3ea;
  --wow-champagne: #d7b98f;
  --wow-rail-inset: max(var(--site-container-gutter, 1.5rem), calc((100vw - var(--site-container-width, 1400px)) / 2 + var(--site-container-gutter, 1.5rem)));
  background:
    linear-gradient(180deg, #050505 0%, #0c0c0c 44%, #070707 100%);
  color: #f7f4ef;
}

.wow-home .container {
  width: min(100%, var(--site-container-width, 1400px));
  max-width: var(--site-container-width, 1400px);
  padding-left: var(--site-container-gutter, 1.5rem);
  padding-right: var(--site-container-gutter, 1.5rem);
}

.wow-hero {
  position: relative;
  --wow-section-fade: clamp(150px, 22vh, 300px);
  --hero-display-duration: 5s;
  --hero-fade-duration: 0.85s;
  --hero-zoom-duration: calc(var(--hero-display-duration) + var(--hero-fade-duration));
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  background: #050505;
}

.wow-hero-media,
.wow-hero-slide,
.wow-hero-bg {
  position: absolute;
  inset: 0;
}

.wow-hero-media {
  bottom: clamp(-114px, -8vh, -57px);
  z-index: -2;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.72) 78%, rgba(0, 0, 0, 0) 100%);
}

.wow-hero-slide {
  opacity: 0;
  z-index: 0;
  transition: opacity var(--hero-fade-duration) ease-in-out;
  backface-visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}

.wow-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.wow-hero-slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

.wow-hero-bg {
  background-size: cover;
  background-position: var(--focus-x, 50%) var(--focus-y, 32%);
  filter: blur(26px) brightness(0.66) saturate(1.04);
  transform: scale(1.12);
}

.wow-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 32%);
  transform: translate3d(0, 0, 0) scale(var(--zoom-start, var(--zoom, 1.08)));
  transform-origin: var(--focus-x, 50%) var(--focus-y, 32%);
  filter: brightness(1.08) contrast(1.08) saturate(1.02);
  will-change: transform;
}

.wow-hero-slide.is-active img,
.wow-hero-slide.is-leaving img {
  animation: wowHeroMicroZoom var(--hero-zoom-duration) cubic-bezier(0.42, 0, 0.24, 1) forwards;
}

@keyframes wowHeroMicroZoom {
  from {
    transform: translate3d(0, 0, 0) scale(var(--zoom-start, var(--zoom, 1.08)));
  }

  to {
    transform: translate3d(0, 0, 0) scale(var(--zoom-end, 1.14));
  }
}

.wow-hero::before,
.wow-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wow-hero::before {
  z-index: -1;
  background:
    radial-gradient(circle at 58% 35%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.46) 33%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.66) 100%);
}

.wow-hero::after {
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 106%, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.16) 26%, rgba(5, 5, 5, 0.72) 62%, #050505 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 36%, rgba(5, 5, 5, 0.2) 58%, rgba(5, 5, 5, 0.82) 84%, #050505 100%);
}

.wow-hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 56px));
  margin-left: var(--wow-rail-inset);
  padding: clamp(36px, 7vh, 72px) 0;
}

.wow-hero-brand {
  display: block;
  width: min(300px, 58vw);
  height: auto;
  margin: 0 0 0.95rem;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.78));
}

.wow-eyebrow,
.wow-section-label {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(215, 185, 143, 0.94);
  font-family: var(--font-primary);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.wow-hero h1 {
  margin: 0;
  max-width: 860px;
  color: var(--wow-ivory);
  font-family: var(--wow-display-font);
  font-size: 4.45rem !important;
  font-weight: 400;
  line-height: 0.92;
  text-shadow: 0 5px 34px rgba(0, 0, 0, 0.88);
}

.wow-hero-lead {
  width: min(690px, 100%);
  margin: 1.08rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.62;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.88);
}

.wow-hero-quote {
  width: min(560px, 100%);
  margin: 0.82rem 0 0;
  color: rgba(248, 243, 234, 0.92);
  font-family: var(--wow-display-font);
  font-size: 1.55rem;
  line-height: 1.1;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.86);
}

.wow-hero-actions,
.wow-showcase-controls,
.wow-hero-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wow-hero-actions {
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.wow-next-cta svg,
.wow-section-next svg {
  flex: 0 0 auto;
}

.wow-proofline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin: clamp(2rem, 4vh, 3rem) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.wow-proofline div {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.34);
}

.wow-proofline dt {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wow-proofline dd {
  margin: 0;
  color: #fff;
  font-family: var(--wow-display-font);
  font-size: 1.3rem;
  line-height: 1;
}

.wow-hero-caption {
  position: absolute;
  right: var(--wow-rail-inset);
  bottom: clamp(28px, 6vh, 72px);
  z-index: 2;
  max-width: 340px;
  text-align: right;
}

.wow-hero-caption span {
  display: block;
  color: var(--wow-ivory);
  font-family: var(--wow-display-font);
  font-size: 2rem;
  line-height: 1.05;
}

.wow-hero-caption small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wow-hero-controls {
  position: absolute;
  right: var(--wow-rail-inset);
  top: clamp(24px, 6vh, 72px);
  z-index: 3;
}

.wow-icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wow-icon-btn:hover,
.wow-icon-btn:focus-visible {
  border-color: rgba(192, 160, 128, 0.9);
  background: rgba(192, 160, 128, 0.12);
  color: #fff;
}

.wow-section-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: clamp(1rem, 2.6vh, 1.8rem);
  min-height: 0;
  width: auto;
  align-self: flex-start;
  padding: 0.62rem 1.05rem;
  border: 1px solid var(--text-color);
  border-radius: 2px;
  background: transparent;
  color: var(--text-color);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: none;
  transition: all var(--transition-base);
}

.wow-section-next:hover,
.wow-section-next:focus-visible {
  border-color: var(--text-color) !important;
  background: var(--text-color) !important;
  color: var(--bg-color) !important;
  transform: none;
}

.wow-manifest,
.wow-showcase,
.wow-path {
  position: relative;
  background: #050505;
}

#wow-manifest,
#wow-gaze,
#wow-showcase,
#wow-outside,
#wow-path,
#avis-google {
  scroll-margin-top: var(--header-height);
}

.wow-manifest {
  overflow: hidden;
  border-top: 0;
}

.wow-manifest::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(140px, 20vh, 280px);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.96) 18%, rgba(5, 5, 5, 0.62) 52%, rgba(5, 5, 5, 0) 100%);
}

.wow-manifest.section,
.wow-gaze.section,
.wow-outside.section,
.wow-path.section {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(2rem, 4.5vh, 3.8rem) 0;
}

.wow-manifest .container,
.wow-gaze .container,
.wow-outside .container,
.wow-path .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.wow-manifest.section {
  padding-top: clamp(2rem, 4.5vh, 3.8rem);
  padding-bottom: clamp(2rem, 4.5vh, 3.8rem);
}

.wow-section-heading {
  width: 100%;
  min-width: 0;
  max-width: 790px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.wow-section-heading h2 {
  margin: 0;
  color: #f7f4ef;
  font-family: var(--wow-display-font);
  font-size: 4rem !important;
  font-weight: 400;
  line-height: 1.02;
}

.wow-manifest .wow-section-heading {
  max-width: min(900px, 100%);
  margin-bottom: clamp(1rem, 2.2vh, 1.6rem);
}

.wow-manifest-quote {
  position: relative;
  display: block;
  width: min(900px, 100%);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.12em 0 0.2em;
  letter-spacing: 0;
}

.home-wow-preview .wow-section-heading h2.wow-manifest-quote {
  font-size: var(--manifest-quote-fit, clamp(2.5rem, 5vw, 4.5rem)) !important;
  line-height: 1 !important;
}

.wow-manifest-quote span {
  display: block;
  white-space: nowrap;
}

.wow-manifest-quote::before,
.wow-manifest-quote::after {
  position: absolute;
  color: rgba(215, 185, 143, 0.32);
  font-family: var(--wow-display-font);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.wow-manifest-quote::before {
  content: "\201C";
  top: -0.28em;
  left: -0.38em;
}

.wow-manifest-quote::after {
  content: "\201D";
  right: -0.08em;
  bottom: -0.48em;
}

.wow-section-intro {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.78;
}

.wow-manifest-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  border: 0;
  background: transparent;
}

.wow-manifest-grid article {
  min-width: 0;
  min-height: 0;
  padding: 0 clamp(1.3rem, 2.8vw, 2.4rem);
  background: transparent;
}

.wow-manifest-grid article:first-child {
  padding-left: 0;
}

.wow-manifest-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.wow-manifest-grid article > span {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(192, 160, 128, 0.82);
  font-family: var(--wow-display-font);
  font-size: 1.2rem;
}

.wow-manifest-grid h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-family: var(--wow-display-font);
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: normal;
  text-wrap: balance;
}

.wow-manifest-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.5;
  hyphens: none;
  overflow-wrap: normal;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
}

.wow-showcase-footer p,
.wow-path-grid span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.wow-manifest-grid p + p {
  margin-top: 0.7rem;
}

.wow-gaze {
  overflow: hidden;
  background:
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.wow-gaze.section {
  padding-top: clamp(2rem, 4.5vh, 3.8rem);
  padding-bottom: clamp(2rem, 4.5vh, 3.8rem);
}

.wow-gaze-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.wow-gaze .wow-section-heading {
  max-width: 600px;
  margin-bottom: 0;
}

.home-wow-preview .wow-gaze .wow-section-heading h2 {
  max-width: 560px;
  font-size: clamp(2.25rem, 3.65vw, 4.25rem) !important;
  line-height: 0.98;
  letter-spacing: normal;
}

.wow-gaze .wow-section-intro {
  max-width: 500px;
  margin-top: 0.95rem;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.55;
}

.wow-gaze-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
  align-items: start;
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  min-height: 0;
  background: transparent;
}

.wow-gaze-images figure {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  background: #050505;
}

.wow-gaze-images img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--gaze-x, 36%) var(--gaze-y, 50%);
  filter: brightness(0.92) contrast(1.07);
  transform: none;
  transform-origin: var(--gaze-x, 36%) var(--gaze-y, 50%);
}

.wow-gaze-images figcaption {
  position: static;
  width: auto;
  max-width: 100%;
  margin-top: 0.55rem;
  padding: 0.45rem 0 0;
  color: rgba(215, 185, 143, 0.9);
  background: transparent;
  border-top: 1px solid rgba(215, 185, 143, 0.22);
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  font-family: var(--wow-display-font);
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  line-height: 1.18;
  text-shadow: none;
}

.wow-showcase {
  --showcase-display-duration: 5s;
  --showcase-fade-duration: 0.9s;
  --showcase-zoom-duration: calc(var(--showcase-display-duration) + var(--showcase-fade-duration));
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.wow-showcase::before,
.wow-showcase::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: clamp(150px, 22vh, 310px);
  pointer-events: none;
}

.wow-showcase::before {
  top: 0;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.98) 12%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0) 100%);
}

.wow-showcase::after {
  bottom: 0;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.98) 12%, rgba(5, 5, 5, 0.72) 44%, rgba(5, 5, 5, 0) 100%);
}

.wow-showcase.section {
  padding: 0;
}

.wow-showcase .container {
  width: 100%;
}

.wow-showcase-header {
  position: absolute;
  left: var(--wow-rail-inset);
  right: var(--wow-rail-inset);
  top: clamp(82px, 12vh, 128px);
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.wow-showcase-stage {
  position: relative;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  min-height: 0;
  overflow: hidden;
  background: #050505;
  border: 0;
}

.wow-showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 46%, rgba(5, 5, 5, 0.22) 70%, rgba(5, 5, 5, 0.72) 91%, #050505 100%),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.86) 5%, rgba(5, 5, 5, 0.42) 14%, rgba(5, 5, 5, 0.06) 27%, rgba(5, 5, 5, 0) 50%, rgba(5, 5, 5, 0.08) 73%, rgba(5, 5, 5, 0.44) 86%, rgba(5, 5, 5, 0.86) 95%, #050505 100%),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.88) 5%, rgba(5, 5, 5, 0.46) 15%, rgba(5, 5, 5, 0.08) 28%, rgba(5, 5, 5, 0) 50%, rgba(5, 5, 5, 0.12) 72%, rgba(5, 5, 5, 0.58) 88%, #050505 100%);
}

.wow-showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity var(--showcase-fade-duration) ease-in-out;
  backface-visibility: hidden;
  will-change: opacity;
}

.wow-showcase-slide.is-active {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.wow-showcase-slide.is-leaving {
  opacity: 0;
  z-index: 4;
}

.wow-showcase-bg {
  position: absolute;
  inset: -7%;
  z-index: 0;
  background-color: #050505;
  background-size: cover;
  background-position: var(--focus-x, 50%) var(--focus-y, 36%);
  filter: blur(30px) brightness(0.48) contrast(1.12) saturate(0.9);
  opacity: 0.78;
  transform: scale(1.1);
  pointer-events: none;
}

.wow-showcase-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at var(--focus-x, 50%) var(--focus-y, 34%), rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.22) 72%, #050505 100%),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.82) 4%, rgba(5, 5, 5, 0.36) 12%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 72%, rgba(5, 5, 5, 0.38) 88%, rgba(5, 5, 5, 0.84) 96%, #050505 100%),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.86) 4%, rgba(5, 5, 5, 0.38) 13%, rgba(0, 0, 0, 0) 27%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.22) 78%, rgba(5, 5, 5, 0.7) 91%, #050505 100%);
  pointer-events: none;
}

.wow-showcase-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 36%);
  transform: translate3d(var(--showcase-shift-x, 0px), var(--showcase-shift-y, 0px), 0) scale(var(--zoom-start, var(--zoom, 1.08)));
  transform-origin: var(--focus-x, 50%) var(--focus-y, 36%);
  filter: brightness(0.96) contrast(1.06) saturate(1.02);
  -webkit-mask-image: radial-gradient(ellipse at var(--focus-x, 50%) var(--focus-y, 36%), #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at var(--focus-x, 50%) var(--focus-y, 36%), #000 0%, #000 76%, rgba(0, 0, 0, 0.78) 88%, rgba(0, 0, 0, 0) 100%);
  will-change: transform;
}

.wow-showcase-slide.is-active img,
.wow-showcase-slide.is-leaving img {
  animation: wowShowcaseMicroZoom var(--showcase-zoom-duration) ease-in-out forwards;
}

@keyframes wowShowcaseMicroZoom {
  from {
    transform: translate3d(var(--showcase-shift-x, 0px), var(--showcase-shift-y, 0px), 0) scale(var(--zoom-start, var(--zoom, 1.08)));
  }

  to {
    transform: translate3d(var(--showcase-shift-x, 0px), var(--showcase-shift-y, 0px), 0) scale(var(--zoom-end, 1.14));
  }
}

.wow-showcase-slide figcaption,
.wow-path-cartel {
  position: absolute;
  left: auto;
  right: var(--wow-rail-inset);
  bottom: clamp(130px, 16vh, 170px);
  z-index: 2;
  max-width: min(360px, calc(100% - 48px));
  padding: 0.62rem 0.78rem 0.68rem;
  border-right: 1px solid rgba(215, 185, 143, 0.44);
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  text-align: right;
}

.wow-path-cartel {
  z-index: 4;
  bottom: clamp(76px, 9vh, 112px);
}

.wow-showcase-slide strong,
.wow-path-cartel strong {
  display: block;
  color: #fff;
  font-family: var(--wow-display-font);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.86);
}

.wow-showcase-slide span,
.wow-path-cartel span {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}

.wow-showcase-slide figcaption {
  z-index: 7;
}

.wow-showcase-footer {
  position: absolute;
  left: var(--wow-rail-inset);
  right: var(--wow-rail-inset);
  bottom: 92px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0;
}

.wow-showcase-footer p {
  max-width: 740px;
  margin: 0;
}

.wow-showcase-footer .btn {
  position: relative;
  z-index: 13;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.wow-showcase-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wow-section-next-inline {
  position: relative;
  z-index: 13;
  margin-top: 0;
  padding: var(--space-md) var(--space-xl);
}

.wow-outside {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #070707 0%, #101010 54%, #080808 100%);
}

.wow-outside::before,
.wow-outside::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(120px, 18vh, 240px);
  pointer-events: none;
}

.wow-outside::before {
  top: 0;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.92) 16%, rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0) 100%);
}

.wow-outside::after {
  bottom: 0;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.9) 16%, rgba(5, 5, 5, 0.46) 58%, rgba(5, 5, 5, 0) 100%);
}

.wow-outside.section {
  padding-top: clamp(2rem, 4.5vh, 3.6rem);
  padding-bottom: clamp(2rem, 4.5vh, 3.6rem);
}

.wow-outside .wow-section-heading {
  max-width: min(1180px, 100%);
  margin-bottom: clamp(0.9rem, 1.9vh, 1.4rem);
}

.home-wow-preview .wow-outside .wow-section-heading h2 {
  max-width: min(1180px, 100%);
  font-size: clamp(1.95rem, 3.2vw, 3.85rem) !important;
  line-height: 1.02;
  letter-spacing: normal;
}

.wow-outside-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.7vh, 1.25rem);
  padding-bottom: 0;
  background: transparent;
  border: 0;
}

.wow-outside-grid figure {
  position: relative;
  height: clamp(145px, 19vh, 220px);
  min-height: 0;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wow-outside-grid figure:first-child,
.wow-outside-grid figure:nth-child(5) {
  grid-column: auto;
}

.wow-outside-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.wow-outside-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.36) 62%, rgba(0, 0, 0, 0.88) 100%);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.wow-outside-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: var(--outside-x, 50%) var(--outside-y, 38%);
  filter: brightness(0.96) contrast(1.06) saturate(1.02);
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.wow-outside-grid figure:hover img,
.wow-outside-grid figure:focus-within img {
  filter: brightness(1.02) contrast(1.08) saturate(1.04);
  transform: scale(1.035);
}

.wow-outside-grid figure:hover .wow-outside-link::after,
.wow-outside-grid figure:focus-within .wow-outside-link::after {
  opacity: 0.9;
}

.wow-outside-link:focus-visible {
  outline: 2px solid rgba(215, 185, 143, 0.9);
  outline-offset: 4px;
}

.wow-outside-grid figcaption {
  position: absolute;
  left: clamp(0.9rem, 1.8vw, 1.45rem);
  right: clamp(0.9rem, 1.8vw, 1.45rem);
  bottom: clamp(0.85rem, 1.6vw, 1.35rem);
  z-index: 2;
  max-width: 520px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
  transition: transform 0.45s ease;
}

.wow-outside-grid figure:hover figcaption,
.wow-outside-grid figure:focus-within figcaption {
  transform: translateY(-3px);
}

.wow-outside-grid strong {
  display: block;
  font-family: var(--wow-display-font);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.wow-outside-grid span {
  display: block;
  max-width: 520px;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-primary);
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.wow-path {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --path-display-duration: 5s;
  --path-fade-duration: 0.95s;
  --path-zoom-duration: calc(var(--path-display-duration) + var(--path-fade-duration));
  border-top: 0;
  background: #050505;
}

.wow-path.section {
  display: grid;
  align-items: center;
  padding-top: clamp(2rem, 4.5vh, 3.6rem);
  padding-bottom: clamp(2rem, 4.5vh, 3.6rem);
}

.wow-path::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 58% 42%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 32%, rgba(0, 0, 0, 0.5) 72%, #050505 100%),
    radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.9) 6%, rgba(0, 0, 0, 0.48) 18%, rgba(0, 0, 0, 0.32) 50%, rgba(0, 0, 0, 0.5) 82%, rgba(5, 5, 5, 0.92) 95%, #050505 100%),
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.98) 5%, rgba(5, 5, 5, 0.78) 14%, rgba(0, 0, 0, 0.34) 30%, rgba(0, 0, 0, 0.34) 62%, rgba(5, 5, 5, 0.78) 88%, #050505 100%);
  pointer-events: none;
}

.wow-path::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.96) 8%, rgba(5, 5, 5, 0.72) 18%, rgba(5, 5, 5, 0) 34%, rgba(5, 5, 5, 0) 66%, rgba(5, 5, 5, 0.72) 84%, #050505 100%),
    radial-gradient(ellipse at 50% 50%, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 34%, rgba(5, 5, 5, 0.34) 68%, #050505 100%);
}

.wow-outside .container,
.wow-path .container {
  position: relative;
  z-index: 2;
  width: min(100%, var(--site-container-width, 1400px));
  max-width: var(--site-container-width, 1400px);
}

.wow-path .container {
  align-items: stretch;
}

.wow-path .wow-section-heading {
  width: 100%;
  max-width: var(--site-container-width, 1400px);
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.home-wow-preview .wow-path .wow-section-heading h2 {
  max-width: 1000px;
  font-size: clamp(2.25rem, 4.2vw, 4.8rem) !important;
  line-height: 0.98;
}

.wow-path-slideshow,
.wow-path-slide,
.wow-path-slide img {
  position: absolute;
  inset: 0;
}

.wow-path-slideshow {
  z-index: 0;
  pointer-events: none;
}

.wow-path-slide {
  margin: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity var(--path-fade-duration) ease-in-out;
  backface-visibility: hidden;
  will-change: opacity;
}

.wow-path-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.wow-path-slide.is-leaving {
  opacity: 0;
  z-index: 2;
}

.wow-path-slide img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 42%);
  transform: translate3d(0, 0, 0) scale(var(--path-zoom-start, 1.12));
  transform-origin: var(--focus-x, 50%) var(--focus-y, 42%);
  filter: grayscale(1) brightness(0.76) contrast(1.16) saturate(0.12);
  will-change: transform;
}

.wow-path-slide.is-active img,
.wow-path-slide.is-leaving img {
  animation: wowPathMicroZoom var(--path-zoom-duration) ease-in-out forwards;
}

@keyframes wowPathMicroZoom {
  from {
    transform: translate3d(0, 0, 0) scale(var(--path-zoom-start, 1.12));
  }

  to {
    transform: translate3d(0, 0, 0) scale(var(--path-zoom-end, 1.16));
  }
}

.wow-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
  width: 100%;
  max-width: var(--site-container-width, 1400px);
  background: transparent;
  border: 0;
  align-items: stretch;
}

.wow-path-grid a {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 106px;
  padding: clamp(1.05rem, 2vw, 1.65rem);
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wow-path-grid a.wow-path-card-primary {
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 46%, rgba(0, 0, 0, 0.5)),
    rgba(0, 0, 0, 0.58);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.28);
}

.wow-path-grid a.wow-path-card-secondary {
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.45);
}

.wow-path-arrow {
  position: absolute;
  right: clamp(1rem, 2vw, 1.6rem);
  top: 50%;
  color: currentColor;
  width: 19px;
  height: 19px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.25s ease;
}

.wow-path-grid a.wow-path-card-primary .wow-path-arrow {
  right: clamp(1.05rem, 2vw, 1.7rem);
  color: #fff;
  width: 22px;
  height: 22px;
  opacity: 0.96;
}

.wow-path-grid a:hover,
.wow-path-grid a:active {
  color: #050505;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.08),
    0 28px 62px rgba(0, 0, 0, 0.36);
  transform: translateY(-3px);
}

.wow-path-grid a:hover .wow-path-arrow,
.wow-path-grid a:focus-visible .wow-path-arrow,
.wow-path-grid a:active .wow-path-arrow {
  transform: translate3d(4px, -50%, 0);
}

.wow-path-grid a.wow-path-card-primary:hover .wow-path-arrow,
.wow-path-grid a.wow-path-card-primary:focus-visible .wow-path-arrow,
.wow-path-grid a.wow-path-card-primary:active .wow-path-arrow {
  color: #050505;
}

.wow-path-grid a:focus-visible {
  color: #050505;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 1);
  outline: 2px solid rgba(215, 185, 143, 0.96);
  outline-offset: 4px;
}

.wow-path-grid a:active {
  transform: translateY(-1px);
}

.wow-path-grid strong {
  display: block;
  max-width: calc(100% - 2rem);
  margin-bottom: 0.42rem;
  color: currentColor;
  font-family: var(--wow-display-font);
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 400;
  line-height: 1.15;
}

.wow-path-badge {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--wow-champagne);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.wow-path-grid a:hover .wow-path-badge,
.wow-path-grid a:focus-visible .wow-path-badge,
.wow-path-grid a:active .wow-path-badge {
  color: #050505;
}

.wow-path-grid span {
  display: block;
  max-width: min(500px, calc(100% - 1.8rem));
  color: currentColor;
  font-family: var(--font-primary);
  font-size: clamp(0.82rem, 0.95vw, 0.98rem);
  line-height: 1.42;
  opacity: 0.78;
}

.wow-path .wow-section-next {
  max-width: 100%;
  letter-spacing: 0.11em;
  white-space: normal;
}

@media (min-width: 1500px) {
  .home-wow-preview .wow-hero h1 {
    font-size: 5.25rem !important;
  }
}

.home-wow-preview .google-reviews-section,
.home-wow-preview .faq-section {
  background: #070707;
}

@media (max-width: 1200px) {
  .wow-outside-grid,
  .wow-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wow-outside-grid figure:first-child,
  .wow-outside-grid figure:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .wow-hero {
    align-items: end;
  }

  .wow-hero-content {
    width: min(680px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 7rem;
  }

  .wow-hero-slide img {
    object-position: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 34%));
    transform: translate3d(0, 0, 0) scale(var(--mobile-zoom-start, var(--zoom-start, 1.08)));
    transform-origin: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 34%));
    opacity: 1;
  }

  .wow-hero-slide.is-active img,
  .wow-hero-slide.is-leaving img {
    animation-name: wowHeroMobileMicroZoom;
  }

  @keyframes wowHeroMobileMicroZoom {
    from {
      transform: translate3d(0, 0, 0) scale(var(--mobile-zoom-start, var(--zoom-start, 1.08)));
    }

    to {
      transform: translate3d(0, 0, 0) scale(var(--mobile-zoom-end, var(--zoom-end, 1.14)));
    }
  }

  .wow-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.16) 32%, rgba(0, 0, 0, 0.94) 100%);
  }

  .wow-hero-caption {
    display: none;
  }

  .wow-manifest-grid {
    grid-template-columns: 1fr;
  }

  .wow-manifest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.6rem;
  }

  .wow-manifest-grid article {
    padding: 0 1.4rem 0 0;
  }

  .wow-manifest-grid article:nth-child(2) {
    padding-left: 1.4rem;
  }

  .wow-manifest-grid article:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .wow-gaze-images {
    min-height: 0;
  }

  .wow-gaze-images figure,
  .wow-gaze-images img {
    min-height: 0;
  }

  .wow-showcase-header,
  .wow-showcase-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .wow-showcase-actions {
    justify-content: flex-start;
  }

  .wow-showcase-header {
    top: 86px;
  }

  .wow-showcase-slide {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .wow-showcase-slide figcaption {
    padding-bottom: 0;
  }

  .home-wow-preview .wow-hero h1 {
    font-size: 4.7rem !important;
    line-height: 0.92;
  }

  .home-wow-preview .wow-section-heading h2 {
    font-size: 3.1rem !important;
  }

  .wow-showcase-slide strong {
    font-size: 3.1rem;
  }

  .wow-path.section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }
}

@media (max-width: 900px) {
  .wow-outside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .wow-outside-grid figure {
    height: clamp(135px, 18vh, 190px);
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .wow-gaze-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .wow-gaze .wow-section-heading,
  .home-wow-preview .wow-gaze .wow-section-heading h2,
  .wow-gaze .wow-section-intro {
    max-width: 100%;
  }

  .wow-gaze-images {
    align-self: stretch;
  }
}

@media (max-width: 760px) {
  .wow-outside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .wow-outside-grid figure {
    height: clamp(118px, 16vh, 155px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .wow-path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wow-home .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wow-manifest.section,
  .wow-gaze.section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1.55rem 0;
  }

  .wow-hero {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  .wow-hero-content {
    padding-top: 7.25rem;
    padding-bottom: 5.5rem;
  }

  .wow-hero-brand {
    width: min(245px, 72vw);
    margin-bottom: 0.85rem;
  }

  .wow-eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.64rem;
    line-height: 1.6;
  }

  .home-wow-preview .wow-hero h1 {
    font-size: 3.05rem !important;
    line-height: 0.96;
  }

  .wow-hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .wow-hero-quote {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }

  .home-wow-preview .wow-section-heading h2 {
    font-size: 2.7rem !important;
    line-height: 0.98;
  }

  .home-wow-preview .wow-section-heading h2.wow-manifest-quote {
    font-size: var(--manifest-quote-fit, clamp(1.6rem, 7.8vw, 2.35rem)) !important;
    line-height: 0.98 !important;
  }

  .wow-manifest .wow-section-heading,
  .wow-gaze .wow-section-heading {
    margin-bottom: 1.15rem;
  }

  .wow-gaze .wow-section-heading {
    margin-bottom: 0;
  }

  .home-wow-preview .wow-gaze .wow-section-heading h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem) !important;
    line-height: 0.98;
  }

  .wow-manifest-quote {
    padding: 0.08em 0 0.16em;
  }

  .wow-manifest-quote::before,
  .wow-manifest-quote::after {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .wow-manifest-quote::before {
    top: -0.26em;
    left: -0.34em;
  }

  .wow-manifest-quote::after {
    right: -0.04em;
    bottom: -0.42em;
  }

  .wow-manifest-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .wow-manifest-grid article {
    min-height: 0;
    padding: 0;
    border-left: 0;
    scroll-snap-align: none;
  }

  .wow-manifest-grid article:nth-child(2),
  .wow-manifest-grid article:nth-child(3) {
    grid-column: auto;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .wow-manifest-grid article + article {
    margin-top: 0.85rem;
  }

  .wow-manifest-grid article > span {
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
  }

  .wow-manifest-grid h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.22rem, 6vw, 1.48rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .wow-manifest-grid p {
    font-size: 0.83rem;
    line-height: 1.42;
    hyphens: auto;
    overflow-wrap: break-word;
    text-align: left;
  }

  .wow-manifest-grid p + p {
    margin-top: 0.55rem;
  }

  .wow-showcase-slide::after {
    background:
      radial-gradient(ellipse at var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 34%)), rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.22) 70%, #050505 100%),
      linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.82) 5%, rgba(5, 5, 5, 0.32) 14%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(5, 5, 5, 0.34) 86%, rgba(5, 5, 5, 0.84) 95%, #050505 100%),
      linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.92) 6%, rgba(5, 5, 5, 0.48) 17%, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0) 60%, rgba(5, 5, 5, 0.36) 78%, rgba(5, 5, 5, 0.82) 92%, #050505 100%);
  }

  .wow-outside::before,
  .wow-outside::after {
    height: clamp(92px, 18vh, 150px);
  }

  .wow-path::after {
    background:
      linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.98) 8%, rgba(5, 5, 5, 0.72) 20%, rgba(5, 5, 5, 0) 38%, rgba(5, 5, 5, 0) 62%, rgba(5, 5, 5, 0.72) 82%, #050505 100%),
      radial-gradient(ellipse at 50% 50%, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 38%, rgba(5, 5, 5, 0.32) 70%, #050505 100%);
  }

  .wow-gaze-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .wow-gaze .wow-section-label {
    margin-bottom: 0.5rem;
  }

  .wow-gaze .wow-section-intro {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .wow-gaze-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wow-gaze-images,
  .wow-gaze-images figure,
  .wow-gaze-images img {
    min-height: 0;
  }

  .wow-gaze-images figcaption {
    margin-top: 0.55rem;
    padding: 0.48rem 0 0;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .wow-outside-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    padding-bottom: 0;
  }

  .wow-outside-grid figure {
    height: clamp(118px, 16vh, 150px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .wow-outside-grid img {
    min-height: 0;
  }

  .wow-outside-grid strong {
    font-size: clamp(1.02rem, 5.4vw, 1.34rem);
    line-height: 1.04;
  }

  .wow-outside-grid span {
    margin-top: 0.25rem;
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .wow-outside-grid figcaption {
    left: 0.62rem;
    right: 0.62rem;
    bottom: 0.6rem;
  }

  .wow-path-grid strong {
    font-size: 2rem;
  }

  .wow-hero-controls {
    right: 18px;
    top: 18px;
  }

  .wow-section-next {
    width: auto;
    min-height: 0;
    margin-top: 0.85rem;
    padding: 0.56rem 0.9rem;
    font-size: 0.66rem;
    line-height: 1;
  }

  .wow-showcase-stage {
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: 0;
  }

  .wow-showcase-header {
    left: 20px;
    right: 20px;
    top: 76px;
  }

  .wow-showcase .wow-section-heading {
    max-width: 310px;
    margin-bottom: 0;
    padding-right: 92px;
  }

  .wow-showcase-controls {
    position: absolute;
    right: 0;
    top: 0;
  }

  .wow-showcase .wow-section-intro {
    display: none;
  }

  .wow-showcase-slide {
    padding: 0;
  }

  .wow-showcase-slide img {
    max-height: none;
    object-position: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 36%));
    transform: translate3d(var(--showcase-mobile-shift-x, var(--showcase-shift-x, 0px)), var(--showcase-mobile-shift-y, var(--showcase-shift-y, 0px)), 0) scale(var(--mobile-zoom-start, var(--zoom-start, 1.08)));
    transform-origin: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 36%));
  }

  .wow-showcase-slide.is-active img,
  .wow-showcase-slide.is-leaving img {
    animation-name: wowShowcaseMobileMicroZoom;
  }

  @keyframes wowShowcaseMobileMicroZoom {
    from {
      transform: translate3d(var(--showcase-mobile-shift-x, var(--showcase-shift-x, 0px)), var(--showcase-mobile-shift-y, var(--showcase-shift-y, 0px)), 0) scale(var(--mobile-zoom-start, var(--zoom-start, 1.08)));
    }

    to {
      transform: translate3d(var(--showcase-mobile-shift-x, var(--showcase-shift-x, 0px)), var(--showcase-mobile-shift-y, var(--showcase-shift-y, 0px)), 0) scale(var(--mobile-zoom-end, var(--zoom-end, 1.14)));
    }
  }

  .wow-showcase-slide figcaption {
    left: auto;
    right: 20px;
    bottom: 172px;
    max-width: min(270px, calc(100% - 40px));
    padding: 0.5rem 0.62rem 0.54rem;
  }

  .wow-showcase-slide strong {
    font-size: 1.45rem;
    line-height: 1.02;
  }

  .wow-showcase-slide span {
    margin-top: 0.32rem;
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .wow-showcase-footer {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 56px;
    gap: 0.9rem;
  }

  .wow-showcase-footer p {
    display: none;
  }

  .wow-showcase-footer .btn {
    width: auto;
    justify-content: center;
  }

  .wow-section-next-inline {
    width: auto;
    justify-content: center;
  }

  .wow-showcase-actions {
    width: 100%;
  }

  .wow-path.section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 1.6rem 0;
  }

  .wow-path .wow-section-heading {
    margin-bottom: 1.1rem;
  }

  .home-wow-preview .wow-path .wow-section-heading h2 {
    font-size: clamp(2.1rem, 9vw, 3rem) !important;
    line-height: 0.96;
  }

  .wow-path-grid a {
    min-height: 82px;
    padding: 0.86rem 1rem;
  }

  .wow-path-grid a.wow-path-card-primary {
    min-height: 96px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.075),
      0 16px 36px rgba(0, 0, 0, 0.24);
  }

  .wow-path-arrow {
    right: 0.8rem;
    width: 17px;
    height: 17px;
  }

  .wow-path-grid a.wow-path-card-primary .wow-path-arrow {
    right: 0.86rem;
    width: 18px;
    height: 18px;
  }

  .wow-path-grid strong {
    max-width: calc(100% - 1.25rem);
    margin-bottom: 0.44rem;
    font-size: clamp(0.92rem, 3.5vw, 1.08rem);
    line-height: 1.05;
  }

  .wow-path-badge {
    margin-bottom: 0.38rem;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .wow-path-grid span {
    max-width: calc(100% - 1.2rem);
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .wow-path .wow-section-next {
    padding-right: 0.74rem;
    padding-left: 0.74rem;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.15;
  }

  .wow-path-slide img {
    object-position: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 42%));
    transform-origin: var(--mobile-focus-x, var(--focus-x, 50%)) var(--mobile-focus-y, var(--focus-y, 42%));
  }

  .wow-path-cartel {
    display: none;
  }
}

@media (max-width: 390px) {
  .wow-manifest.section {
    padding-top: 0.82rem;
    padding-bottom: 0.82rem;
  }

  .wow-manifest .wow-section-heading {
    margin-bottom: 0.72rem;
  }

  .home-wow-preview .wow-section-heading h2.wow-manifest-quote {
    font-size: var(--manifest-quote-fit, clamp(1.55rem, 7.8vw, 1.95rem)) !important;
    line-height: 0.96 !important;
  }

  .wow-manifest-quote::before,
  .wow-manifest-quote::after {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .wow-manifest-grid article:nth-child(2),
  .wow-manifest-grid article:nth-child(3) {
    padding-top: 0.56rem;
  }

  .wow-manifest-grid article + article {
    margin-top: 0.56rem;
  }

  .wow-manifest-grid article > span {
    margin-bottom: 0.34rem;
    font-size: 0.82rem;
  }

  .wow-manifest-grid h3 {
    margin-bottom: 0.34rem;
    font-size: clamp(1rem, 5vw, 1.16rem);
    line-height: 1.04;
  }

  .wow-manifest-grid p {
    font-size: 0.72rem;
    line-height: 1.24;
  }

  .wow-manifest-grid p + p {
    margin-top: 0.34rem;
  }
}

@media (max-width: 360px) {
  .home-wow-preview .wow-hero h1 {
    font-size: 2.45rem !important;
  }

  .wow-showcase-slide strong {
    font-size: 1.18rem;
    line-height: 1.02;
  }

  .wow-path-grid strong {
    font-size: 1.28rem;
  }
}

@media (max-width: 640px) {
  .home-wow-preview .wow-hero,
  .home-wow-preview .wow-manifest.section,
  .home-wow-preview .wow-gaze.section,
  .home-wow-preview .wow-outside.section,
  .home-wow-preview .wow-path.section {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .home-wow-preview .wow-showcase-stage {
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
  }

  .home-wow-preview .wow-outside.section {
    align-items: stretch;
    padding-top: clamp(1rem, 2.2svh, 1.35rem);
    padding-bottom: clamp(1.05rem, 2.4svh, 1.45rem);
  }

  .home-wow-preview .wow-outside .container {
    min-height: calc(100svh - var(--header-height) - clamp(2.05rem, 4.6svh, 2.8rem));
    justify-content: center;
  }

  .home-wow-preview .wow-outside .wow-section-heading {
    margin-bottom: clamp(0.8rem, 1.8svh, 1rem);
  }

  .home-wow-preview .wow-outside .wow-section-label {
    margin-bottom: 0.55rem;
  }

  .home-wow-preview .wow-outside .wow-section-heading h2 {
    font-size: clamp(2.04rem, 8.4vw, 2.58rem) !important;
    line-height: 1;
  }

  .home-wow-preview .wow-outside-grid {
    gap: clamp(0.62rem, 1.7svh, 0.85rem);
  }

  .home-wow-preview .wow-outside-grid figure {
    height: clamp(170px, 25.5svh, 235px);
  }

  .home-wow-preview .wow-outside .wow-section-next {
    margin-top: clamp(0.78rem, 1.8svh, 1rem);
  }
}

@media (max-width: 390px) {
  .home-wow-preview .wow-outside-grid figure {
    height: clamp(155px, 23svh, 205px);
  }
}

[data-theme="light"] body.home-wow-preview {
  background: #f6f5f1;
}

[data-theme="light"] .home-wow-preview .wow-home {
  --wow-ivory: #16120f;
  --wow-champagne: #7b5a37;
  background:
    linear-gradient(180deg, #f6f5f1 0%, #e8eceb 48%, #f7f1e8 100%);
  color: #16120f;
}

[data-theme="light"] .home-wow-preview .wow-hero,
[data-theme="light"] .home-wow-preview .wow-manifest,
[data-theme="light"] .home-wow-preview .wow-gaze,
[data-theme="light"] .home-wow-preview .wow-outside,
[data-theme="light"] .home-wow-preview .wow-path {
  background: #f6f5f1;
}

[data-theme="light"] .home-wow-preview .wow-manifest,
[data-theme="light"] .home-wow-preview .wow-outside {
  background:
    linear-gradient(180deg, #f6f5f1 0%, #e8eceb 52%, #f7f1e8 100%);
}

[data-theme="light"] .home-wow-preview .wow-gaze {
  background:
    linear-gradient(180deg, #f7f1e8 0%, #eef1ef 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero-media {
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.42) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.42) 90%, rgba(0, 0, 0, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero-bg {
  filter: blur(24px) brightness(1.42) contrast(0.76) saturate(0.38);
  opacity: 0.42;
}

[data-theme="light"] .home-wow-preview .wow-hero-slide img {
  filter: grayscale(0.18) brightness(1.18) contrast(0.86) saturate(0.58);
  opacity: 0.58;
}

[data-theme="light"] .home-wow-preview .wow-hero::before {
  background:
    linear-gradient(90deg, rgba(246, 245, 241, 0.98) 0%, rgba(246, 245, 241, 0.92) 34%, rgba(246, 245, 241, 0.48) 66%, rgba(246, 245, 241, 0.88) 100%),
    linear-gradient(180deg, rgba(246, 245, 241, 0.22) 0%, rgba(246, 245, 241, 0.72) 72%, #f6f5f1 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(246, 245, 241, 0) 0%, rgba(246, 245, 241, 0.34) 40%, #f6f5f1 100%),
    linear-gradient(180deg, rgba(246, 245, 241, 0) 42%, rgba(246, 245, 241, 0.74) 84%, #f6f5f1 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero-brand {
  filter: invert(1) contrast(1.05) drop-shadow(0 14px 26px rgba(255, 255, 255, 0.58));
}

[data-theme="light"] .home-wow-preview .wow-eyebrow,
[data-theme="light"] .home-wow-preview .wow-section-label,
[data-theme="light"] .home-wow-preview .wow-path-badge {
  color: #7b5a37;
  text-shadow: none;
}

[data-theme="light"] .home-wow-preview .wow-hero h1,
[data-theme="light"] .home-wow-preview .wow-hero-lead,
[data-theme="light"] .home-wow-preview .wow-hero-quote,
[data-theme="light"] .home-wow-preview .wow-section-heading h2,
[data-theme="light"] .home-wow-preview .wow-manifest-grid h3,
[data-theme="light"] .home-wow-preview .wow-path-grid strong {
  color: #16120f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .home-wow-preview .wow-hero-lead,
[data-theme="light"] .home-wow-preview .wow-section-intro,
[data-theme="light"] .home-wow-preview .wow-manifest-grid p,
[data-theme="light"] .home-wow-preview .wow-showcase-footer p,
[data-theme="light"] .home-wow-preview .wow-path-grid span {
  color: rgba(22, 18, 15, 0.74);
}

[data-theme="light"] .home-wow-preview .btn-outline {
  border-color: rgba(22, 18, 15, 0.72);
  background: rgba(255, 255, 255, 0.42);
  color: #16120f;
  box-shadow: 0 12px 30px rgba(22, 18, 15, 0.08);
}

@media (hover: hover) {
  [data-theme="light"] .home-wow-preview .btn-outline:hover {
    border-color: #16120f !important;
    background: #16120f !important;
    color: #fff !important;
  }
}

[data-theme="light"] .home-wow-preview .wow-icon-btn {
  border-color: rgba(22, 18, 15, 0.48);
  background: rgba(255, 255, 255, 0.48);
  color: #16120f;
  box-shadow: 0 14px 34px rgba(22, 18, 15, 0.09);
}

[data-theme="light"] .home-wow-preview .wow-icon-btn:hover,
[data-theme="light"] .home-wow-preview .wow-icon-btn:focus-visible {
  border-color: #16120f;
  background: #16120f;
  color: #fff;
}

[data-theme="light"] .home-wow-preview .wow-hero-caption {
  color: #16120f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .home-wow-preview .wow-hero-caption span,
[data-theme="light"] .home-wow-preview .wow-hero-caption small {
  color: #16120f;
}

[data-theme="light"] .home-wow-preview .wow-manifest::before,
[data-theme="light"] .home-wow-preview .wow-outside::before {
  background: linear-gradient(180deg, #f6f5f1 0%, rgba(246, 245, 241, 0.82) 45%, rgba(246, 245, 241, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-outside::after {
  background: linear-gradient(0deg, #f7f1e8 0%, rgba(247, 241, 232, 0.84) 42%, rgba(247, 241, 232, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-manifest-quote::before,
[data-theme="light"] .home-wow-preview .wow-manifest-quote::after {
  color: rgba(123, 90, 55, 0.22);
}

[data-theme="light"] .home-wow-preview .wow-manifest-grid article + article {
  border-left-color: rgba(22, 18, 15, 0.14);
}

[data-theme="light"] .home-wow-preview .wow-manifest-grid article > span {
  color: rgba(123, 90, 55, 0.88);
}

[data-theme="light"] .home-wow-preview .wow-gaze-images figure,
[data-theme="light"] .home-wow-preview .wow-outside-grid figure {
  background: #fff;
  border-color: rgba(22, 18, 15, 0.16);
  box-shadow: 0 22px 54px rgba(22, 18, 15, 0.12);
}

[data-theme="light"] .home-wow-preview .wow-gaze-images img {
  filter: grayscale(0.12) brightness(1.04) contrast(0.96);
}

[data-theme="light"] .home-wow-preview .wow-gaze-images figcaption {
  color: #7b5a37;
  border-top-color: rgba(123, 90, 55, 0.28);
}

[data-theme="light"] .home-wow-preview .wow-outside-link::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 26%, rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.82) 100%);
}

[data-theme="light"] .home-wow-preview .wow-outside-grid figcaption,
[data-theme="light"] .home-wow-preview .wow-outside-grid strong {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

[data-theme="light"] .home-wow-preview .wow-outside-grid span {
  color: rgba(255, 255, 255, 0.84);
}

[data-theme="light"] .home-wow-preview .wow-showcase {
  background: #f6f5f1;
}

[data-theme="light"] .home-wow-preview .wow-showcase::before {
  background: linear-gradient(180deg, #f6f5f1 0%, rgba(246, 245, 241, 0.9) 18%, rgba(246, 245, 241, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase::after {
  background: linear-gradient(0deg, #f6f5f1 0%, rgba(246, 245, 241, 0.88) 18%, rgba(246, 245, 241, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-stage {
  background: #f6f5f1;
}

[data-theme="light"] .home-wow-preview .wow-showcase-stage::after {
  background:
    radial-gradient(ellipse at 50% 52%, rgba(246, 245, 241, 0) 0%, rgba(246, 245, 241, 0.18) 45%, rgba(246, 245, 241, 0.72) 82%, #f6f5f1 100%),
    linear-gradient(90deg, #f6f5f1 0%, rgba(246, 245, 241, 0.72) 12%, rgba(246, 245, 241, 0.08) 34%, rgba(246, 245, 241, 0.08) 66%, rgba(246, 245, 241, 0.72) 88%, #f6f5f1 100%),
    linear-gradient(180deg, #f6f5f1 0%, rgba(246, 245, 241, 0.56) 16%, rgba(246, 245, 241, 0.06) 40%, rgba(246, 245, 241, 0.64) 88%, #f6f5f1 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-bg {
  filter: blur(24px) brightness(1.28) contrast(0.82) saturate(0.45);
  opacity: 0.28;
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide img,
[data-theme="light"] .home-wow-preview .wow-path-slide img {
  filter: grayscale(0.2) brightness(1.05) contrast(0.9) saturate(0.5);
  opacity: 0.56;
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide figcaption {
  color: #16120f;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(22, 18, 15, 0.16);
  box-shadow: 0 22px 54px rgba(22, 18, 15, 0.14);
  text-shadow: none;
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide figcaption strong,
[data-theme="light"] .home-wow-preview .wow-showcase-slide figcaption span {
  color: #16120f;
}

[data-theme="light"] .home-wow-preview .wow-showcase-footer .btn {
  border-color: rgba(22, 18, 15, 0.72);
  background: rgba(255, 255, 255, 0.62);
  color: #16120f;
  text-shadow: none;
}

[data-theme="light"] .home-wow-preview .wow-path::before {
  background:
    radial-gradient(ellipse at 58% 42%, rgba(246, 245, 241, 0) 0%, rgba(246, 245, 241, 0.2) 42%, rgba(246, 245, 241, 0.82) 82%, #f6f5f1 100%),
    linear-gradient(90deg, #f6f5f1 0%, rgba(246, 245, 241, 0.86) 14%, rgba(246, 245, 241, 0.34) 52%, rgba(246, 245, 241, 0.86) 88%, #f6f5f1 100%),
    linear-gradient(180deg, #f6f5f1 0%, rgba(246, 245, 241, 0.66) 22%, rgba(246, 245, 241, 0.32) 58%, rgba(246, 245, 241, 0.86) 92%, #f6f5f1 100%);
}

[data-theme="light"] .home-wow-preview .wow-path::after {
  background:
    linear-gradient(180deg, #f6f5f1 0%, rgba(246, 245, 241, 0.76) 18%, rgba(246, 245, 241, 0) 42%, rgba(246, 245, 241, 0) 62%, rgba(246, 245, 241, 0.78) 86%, #f6f5f1 100%);
}

[data-theme="light"] .home-wow-preview .wow-path-grid a,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-secondary {
  color: #16120f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 236, 235, 0.62)),
    rgba(255, 255, 255, 0.68);
  border-color: rgba(22, 18, 15, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 20px 48px rgba(22, 18, 15, 0.12);
}

[data-theme="light"] .home-wow-preview .wow-path-grid a:hover,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active {
  color: #fff;
  background: #16120f;
  border-color: #16120f;
}

[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary .wow-path-arrow,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary:hover .wow-path-arrow,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary:focus-visible .wow-path-arrow,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary:active .wow-path-arrow {
  color: currentColor;
}

[data-theme="light"] .home-wow-preview .wow-path-grid a:hover .wow-path-badge,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible .wow-path-badge,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active .wow-path-badge {
  color: #d7b98f;
}

[data-theme="light"] .home-wow-preview .wow-path-cartel {
  color: #16120f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.76);
}

[data-theme="light"] .home-wow-preview .google-reviews-section,
[data-theme="light"] .home-wow-preview .faq-section {
  background: #f6f5f1;
}

@media (max-width: 640px) {
  [data-theme="light"] .home-wow-preview .wow-hero::before {
    background:
      linear-gradient(180deg, rgba(246, 245, 241, 0.22) 0%, rgba(246, 245, 241, 0.62) 35%, rgba(246, 245, 241, 0.98) 100%),
      linear-gradient(90deg, rgba(246, 245, 241, 0.96), rgba(246, 245, 241, 0.56));
  }

  [data-theme="light"] .home-wow-preview .wow-hero-slide img {
    opacity: 0.5;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-header,
  [data-theme="light"] .home-wow-preview .wow-showcase-footer {
    color: #16120f;
    text-shadow: none;
  }
}

/* Final light-mode polish: keep the cinematic layout while restoring image presence. */
[data-theme="light"] body.home-wow-preview {
  background: #f3f1ec;
}

[data-theme="light"] .home-wow-preview .wow-home {
  --wow-ivory: #171412;
  --wow-champagne: #8a623a;
  background:
    linear-gradient(180deg, #f3f1ec 0%, #e9eeec 28%, #f6f2ea 58%, #e7eeeb 82%, #f3f1ec 100%);
  color: #171412;
}

[data-theme="light"] .home-wow-preview .wow-hero,
[data-theme="light"] .home-wow-preview .wow-manifest,
[data-theme="light"] .home-wow-preview .wow-gaze,
[data-theme="light"] .home-wow-preview .wow-showcase,
[data-theme="light"] .home-wow-preview .wow-outside,
[data-theme="light"] .home-wow-preview .wow-path {
  background: #f3f1ec;
}

[data-theme="light"] .home-wow-preview .wow-manifest {
  background: linear-gradient(180deg, #f3f1ec 0%, #e9eeec 100%);
}

[data-theme="light"] .home-wow-preview .wow-gaze {
  background: linear-gradient(180deg, #e9eeec 0%, #f6f2ea 100%);
}

[data-theme="light"] .home-wow-preview .wow-outside {
  background: linear-gradient(180deg, #f6f2ea 0%, #edf1ef 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase,
[data-theme="light"] .home-wow-preview .wow-showcase-stage,
[data-theme="light"] .home-wow-preview .wow-path {
  background: #f3f1ec;
}

[data-theme="light"] .home-wow-preview .wow-showcase .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

[data-theme="light"] .home-wow-preview .wow-showcase-stage {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

[data-theme="light"] .home-wow-preview .wow-hero-media {
  opacity: 1;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.68) 94%, rgba(0, 0, 0, 0.2) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.68) 94%, rgba(0, 0, 0, 0.2) 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero-bg {
  filter: blur(22px) brightness(1.08) contrast(1.02) saturate(0.82);
  opacity: 0.62;
}

[data-theme="light"] .home-wow-preview .wow-hero-slide img {
  filter: grayscale(0.04) brightness(1.02) contrast(1.06) saturate(0.9);
  opacity: 0.82;
}

[data-theme="light"] .home-wow-preview .wow-hero::before {
  background:
    linear-gradient(90deg, rgba(243, 241, 236, 0.88) 0%, rgba(243, 241, 236, 0.68) 34%, rgba(243, 241, 236, 0.18) 68%, rgba(243, 241, 236, 0.64) 100%),
    linear-gradient(180deg, rgba(243, 241, 236, 0.12) 0%, rgba(243, 241, 236, 0.28) 66%, #f3f1ec 100%);
}

[data-theme="light"] .home-wow-preview .wow-hero::after {
  background:
    radial-gradient(ellipse at 52% 104%, rgba(243, 241, 236, 0) 0%, rgba(243, 241, 236, 0.16) 42%, #f3f1ec 100%),
    linear-gradient(180deg, rgba(243, 241, 236, 0) 52%, rgba(243, 241, 236, 0.42) 88%, #f3f1ec 100%);
}

[data-theme="light"] .home-wow-preview .wow-manifest::before,
[data-theme="light"] .home-wow-preview .wow-outside::before,
[data-theme="light"] .home-wow-preview .wow-outside::after,
[data-theme="light"] .home-wow-preview .wow-showcase::before,
[data-theme="light"] .home-wow-preview .wow-showcase::after {
  height: clamp(74px, 12vh, 150px);
}

[data-theme="light"] .home-wow-preview .wow-manifest::before {
  background: linear-gradient(180deg, #f3f1ec 0%, rgba(243, 241, 236, 0.72) 48%, rgba(243, 241, 236, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-outside::before {
  background: linear-gradient(180deg, #f6f2ea 0%, rgba(246, 242, 234, 0.64) 48%, rgba(246, 242, 234, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-outside::after {
  background: linear-gradient(0deg, #edf1ef 0%, rgba(237, 241, 239, 0.62) 46%, rgba(237, 241, 239, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase::before {
  background: linear-gradient(180deg, #edf1ef 0%, rgba(237, 241, 239, 0.5) 46%, rgba(237, 241, 239, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase::after {
  background: linear-gradient(0deg, #f3f1ec 0%, rgba(243, 241, 236, 0.46) 44%, rgba(243, 241, 236, 0) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-stage::after {
  background:
    linear-gradient(90deg, rgba(243, 241, 236, 0.92) 0%, rgba(243, 241, 236, 0.22) 11%, rgba(243, 241, 236, 0) 32%, rgba(243, 241, 236, 0) 68%, rgba(243, 241, 236, 0.34) 88%, rgba(243, 241, 236, 0.96) 100%),
    radial-gradient(ellipse at 50% 52%, rgba(243, 241, 236, 0) 0%, rgba(243, 241, 236, 0.04) 48%, rgba(243, 241, 236, 0.32) 86%, rgba(243, 241, 236, 0.78) 100%),
    linear-gradient(90deg, rgba(243, 241, 236, 0.76) 0%, rgba(243, 241, 236, 0.26) 12%, rgba(243, 241, 236, 0.02) 34%, rgba(243, 241, 236, 0.02) 66%, rgba(243, 241, 236, 0.26) 88%, rgba(243, 241, 236, 0.76) 100%),
    linear-gradient(180deg, rgba(243, 241, 236, 0.68) 0%, rgba(243, 241, 236, 0.22) 18%, rgba(243, 241, 236, 0) 42%, rgba(243, 241, 236, 0.26) 88%, rgba(243, 241, 236, 0.76) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide::after {
  background:
    radial-gradient(ellipse at var(--focus-x, 50%) var(--focus-y, 34%), rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 58%, rgba(23, 20, 18, 0.12) 86%, rgba(243, 241, 236, 0.62) 100%),
    linear-gradient(180deg, rgba(243, 241, 236, 0.38) 0%, rgba(243, 241, 236, 0.02) 28%, rgba(243, 241, 236, 0) 68%, rgba(243, 241, 236, 0.42) 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-bg {
  filter: blur(24px) brightness(1.02) contrast(1.02) saturate(0.7);
  opacity: 0.5;
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide img,
[data-theme="light"] .home-wow-preview .wow-path-slide img {
  filter: grayscale(0.04) brightness(0.98) contrast(1.08) saturate(0.86);
  opacity: 0.88;
}

[data-theme="light"] .home-wow-preview .wow-showcase-slide img {
  left: -4vw;
  right: -4vw;
  width: calc(100% + 8vw);
  min-width: calc(100% + 8vw);
}

[data-theme="light"] .home-wow-preview .wow-path::before {
  background:
    radial-gradient(ellipse at 58% 42%, rgba(243, 241, 236, 0) 0%, rgba(243, 241, 236, 0.08) 46%, rgba(243, 241, 236, 0.52) 86%, #f3f1ec 100%),
    linear-gradient(90deg, rgba(243, 241, 236, 0.72) 0%, rgba(243, 241, 236, 0.36) 14%, rgba(243, 241, 236, 0.1) 52%, rgba(243, 241, 236, 0.38) 88%, rgba(243, 241, 236, 0.74) 100%),
    linear-gradient(180deg, rgba(243, 241, 236, 0.72) 0%, rgba(243, 241, 236, 0.28) 22%, rgba(243, 241, 236, 0.12) 58%, rgba(243, 241, 236, 0.52) 92%, #f3f1ec 100%);
}

[data-theme="light"] .home-wow-preview .wow-path::after {
  background:
    linear-gradient(180deg, #f3f1ec 0%, rgba(243, 241, 236, 0.44) 18%, rgba(243, 241, 236, 0) 42%, rgba(243, 241, 236, 0) 64%, rgba(243, 241, 236, 0.48) 88%, #f3f1ec 100%);
}

[data-theme="light"] .home-wow-preview .wow-showcase-header .wow-section-heading {
  max-width: min(560px, 100%);
  padding: clamp(0.72rem, 1.6vw, 1rem) clamp(0.82rem, 2vw, 1.2rem);
  background: rgba(250, 248, 244, 0.84);
  border-left: 1px solid rgba(23, 20, 18, 0.2);
  box-shadow: 0 18px 48px rgba(23, 20, 18, 0.14);
  backdrop-filter: blur(12px);
}

[data-theme="light"] .home-wow-preview #wow-showcase-title,
[data-theme="light"] .home-wow-preview .wow-showcase .wow-section-intro {
  color: #171412 !important;
  text-shadow: none !important;
}

.home-wow-preview #wow-showcase-title span {
  display: block;
}

[data-theme="light"] .home-wow-preview .wow-showcase .wow-section-intro {
  color: rgba(23, 20, 18, 0.86) !important;
}

[data-theme="light"] .home-wow-preview .wow-showcase-footer p {
  display: block;
  width: fit-content;
  max-width: min(640px, 100%);
  padding: 0.68rem 0.86rem;
  color: #171412 !important;
  background: rgba(250, 248, 244, 0.86);
  border-left: 1px solid rgba(23, 20, 18, 0.2);
  box-shadow: 0 14px 34px rgba(23, 20, 18, 0.13);
  text-shadow: none !important;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .home-wow-preview .btn-outline,
[data-theme="light"] .home-wow-preview .wow-section-next,
[data-theme="light"] .home-wow-preview .wow-next-cta,
[data-theme="light"] .home-wow-preview .wow-showcase-footer .btn {
  min-height: 44px;
  padding: 0.78rem 1.16rem;
  border: 1px solid rgba(23, 20, 18, 0.72) !important;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.68) !important;
  color: #171412 !important;
  box-shadow: 0 14px 32px rgba(23, 20, 18, 0.12);
  text-shadow: none !important;
  backdrop-filter: blur(10px);
}

@media (hover: hover) {
  [data-theme="light"] .home-wow-preview .btn-outline:hover,
  [data-theme="light"] .home-wow-preview .btn-outline:focus-visible,
  [data-theme="light"] .home-wow-preview .wow-section-next:hover,
  [data-theme="light"] .home-wow-preview .wow-section-next:focus-visible,
  [data-theme="light"] .home-wow-preview .wow-next-cta:hover,
  [data-theme="light"] .home-wow-preview .wow-next-cta:focus-visible,
  [data-theme="light"] .home-wow-preview .wow-showcase-footer .btn:hover,
  [data-theme="light"] .home-wow-preview .wow-showcase-footer .btn:focus-visible {
    border-color: #171412 !important;
    background: #171412 !important;
    color: #fff !important;
    box-shadow: 0 16px 36px rgba(23, 20, 18, 0.18);
  }
}

[data-theme="light"] .home-wow-preview .wow-path-grid a,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-primary,
[data-theme="light"] .home-wow-preview .wow-path-grid a.wow-path-card-secondary {
  color: #171412;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 241, 239, 0.76)),
    rgba(255, 255, 255, 0.74);
  border-color: rgba(23, 20, 18, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 20px 48px rgba(23, 20, 18, 0.14);
}

[data-theme="light"] .home-wow-preview .wow-path-grid a:hover,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active {
  color: #fff;
  background: #171412;
  border-color: #171412;
}

[data-theme="light"] .home-wow-preview .wow-path-grid a:hover strong,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible strong,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active strong,
[data-theme="light"] .home-wow-preview .wow-path-grid a:hover span,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible span,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active span,
[data-theme="light"] .home-wow-preview .wow-path-grid a:hover .wow-path-arrow,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible .wow-path-arrow,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active .wow-path-arrow {
  color: #fff !important;
  text-shadow: none;
}

[data-theme="light"] .home-wow-preview .wow-path-grid a:hover .wow-path-badge,
[data-theme="light"] .home-wow-preview .wow-path-grid a:focus-visible .wow-path-badge,
[data-theme="light"] .home-wow-preview .wow-path-grid a:active .wow-path-badge {
  color: #d7b98f !important;
}

@media (max-width: 640px) {
  [data-theme="light"] .home-wow-preview .wow-hero-slide img {
    opacity: 0.76;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-slide img,
  [data-theme="light"] .home-wow-preview .wow-path-slide img {
    opacity: 0.86;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-stage {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-slide img {
    left: -7vw;
    right: -7vw;
    width: calc(100% + 14vw);
    min-width: calc(100% + 14vw);
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-header .wow-section-heading {
    padding: 0.68rem 0.78rem;
    padding-right: 5.5rem;
    background: rgba(250, 248, 244, 0.88);
  }

  [data-theme="light"] .home-wow-preview .wow-showcase .wow-section-intro {
    display: block;
    max-width: 100%;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-slide figcaption {
    bottom: clamp(214px, 27vh, 252px);
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-footer {
    bottom: 38px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.62rem;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-footer p {
    max-width: 100%;
    padding: 0.58rem 0.72rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-actions {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  [data-theme="light"] .home-wow-preview .wow-showcase-footer .btn {
    min-height: 40px;
    padding: 0.62rem 0.74rem;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wow-hero-slide,
  .wow-hero-slide.is-active img,
  .wow-hero-slide.is-leaving img,
  .wow-showcase-slide,
  .wow-showcase-slide.is-active img,
  .wow-showcase-slide.is-leaving img,
  .wow-path-slide,
  .wow-path-slide.is-active img,
  .wow-path-slide.is-leaving img,
  .wow-icon-btn,
  .wow-hero-slide img,
  .wow-showcase-slide img,
  .wow-path-slide img,
  .wow-section-next,
  .wow-path-grid a {
    transition: none;
    animation: none;
  }
}
