:root {
  --color-bg: #f5f5f3;
  --color-surface: #ffffff;
  --color-accent: #e4a896;
  --color-deep: #232323;
  --color-muted: #5a5a5a;
  --color-mist: #eceae6;
  --color-cloud: #fbfaf8;
  --max-width: 1100px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 40px 70px -50px rgba(17, 17, 17, 0.65);
}

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

body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  display: grid;
  gap: clamp(3rem, 7vw, 5.5rem);
  padding: clamp(3rem, 6vw, 4rem) 0 clamp(5rem, 9vw, 6rem);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #ffffff;
  display: grid;
  align-items: center;
  padding: clamp(6rem, 12vw, 9rem) var(--gutter) var(--gutter);
  background: #0c0c0c;
  background-image: url("https://images.unsplash.com/photo-1503342452485-86b7f54527dd?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  --hero-parallax: 0px;
  backface-visibility: hidden;
}

@supports (min-height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.6) 45%,
    rgba(6, 6, 6, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: -10% 0 -10%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 130%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
  transform: translate3d(0, calc(var(--hero-parallax)), 0);
  will-change: transform;
  pointer-events: none;
  opacity: 0.9;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.nav {
  position: fixed;
  top: clamp(1rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - var(--gutter) * 1.2), var(--max-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.8rem;
  backdrop-filter: blur(18px);
  background-color: rgba(22, 22, 21, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px -45px rgba(0, 0, 0, 0.85);
  z-index: 10;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.hero-content {
  max-width: 620px;
  margin: 0 auto calc(var(--gutter) * 1.8);
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
}

.lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--color-accent);
  color: #2d1f1b;
  box-shadow: 0 16px 30px -16px rgba(228, 168, 150, 0.75);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn.text-link {
  background: none;
  color: var(--color-accent);
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn.small {
  padding: 0.6rem 1.2rem;
}

.btn.large {
  padding: 1rem 2.8rem;
  font-size: 1.05rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.7);
}

.scroll-cue {
  position: absolute;
  bottom: clamp(2rem, 6vw, 3.8rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.scroll-cue .line {
  display: inline-block;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid;
  gap: 3rem;
  scroll-margin-top: 140px;
}

.section.surface,
.section.mist {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section.mist {
  background: rgba(236, 234, 230, 0.92);
}

.section.surface::before,
.section.mist::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.02)
  );
  opacity: 0.4;
  mix-blend-mode: screen;
}

.section.surface > *,
.section.mist > * {
  position: relative;
  z-index: 1;
}

.section.mist .eyebrow {
  color: #c78f7d;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.text.narrow {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 2.2rem);
}

.price-carousel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-carousel::before,
.price-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(8px, 3vw, 20px);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.price-carousel::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(236, 234, 230, 0.9) 0%,
    rgba(236, 234, 230, 0.55) 40%,
    rgba(236, 234, 230, 0) 100%
  );
}

.price-carousel::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(236, 234, 230, 0.9) 0%,
    rgba(236, 234, 230, 0.55) 40%,
    rgba(236, 234, 230, 0) 100%
  );
}

.price-carousel.at-start::before,
.price-carousel.at-end::after {
  opacity: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.price-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding-bottom: 0.5rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 1.7rem 1.8rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  overflow: hidden;
}

.price-card h3 {
  margin-bottom: 0.4rem;
}

.price-card-banner {
  position: relative;
  border-radius: 0;
  margin: -1.7rem -1.8rem 1.2rem;
  overflow: hidden;
  aspect-ratio: 5 / 1;
  min-height: 0;
}

.price-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.7);
  display: block;
}

.price-card-banner span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.price-list span {
  flex: 1;
}

.price-list strong {
  font-size: 0.95rem;
  color: var(--color-deep);
}

.price-note {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--color-muted);
  display: grid;
  gap: 0.8rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-deep);
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-btn:not(:disabled):hover {
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--color-deep);
  transform: scale(1.2);
}

.two-col .media {
  position: relative;
}

.two-col .media::after {
  content: "";
  position: absolute;
  inset: 10% -10% -10% 10%;
  background: rgba(228, 168, 150, 0.18);
  border-radius: 18px;
  z-index: -1;
}

.two-col.inverted .media::after {
  inset: 10% 10% -10% -10%;
}

.two-col .media.solid::after {
  display: none;
}

.two-col .media.solid {
  background: var(--color-deep);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.service-list,
.team-list,
.highlight ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.8rem;
}

.service-list h3,
.team-list h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.gallery-lede {
  margin-bottom: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.gallery-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 3rem);
}

.gallery-column {
  display: grid;
  gap: 1.5rem;
}

.gallery-intro {
  display: grid;
  gap: 0.5rem;
}

.gallery-slider {
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #fff;
  box-shadow: 0 20px 50px -35px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  aspect-ratio: 1 / 1;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.gallery-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-deep);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-btn:not(:disabled):hover {
  transform: translateY(-1px);
}

.gallery-dots {
  display: flex;
  gap: 0.4rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.active {
  background: var(--color-deep);
  transform: scale(1.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: min(900px, 90vw);
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  display: grid;
  gap: 0;
}

.lightbox img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-caption {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: #f1f1f1;
  background: rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.trustpilot-panel {
  background: var(--color-deep);
  color: #fff;
  padding: clamp(2rem, 4vw, 2.6rem);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
}

.trustpilot-panel .lede-small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin: 0;
}

.reviews-static {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.4rem;
}

.review-card {
  display: grid;
  gap: 0.35rem;
}

.review-title {
  font-weight: 600;
  font-size: 1rem;
}

.review-text {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.review-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.reviews-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.reviews-note a {
  color: var(--color-accent);
}

.section.parallax {
  position: relative;
  max-width: none;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.section.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(35, 35, 35, 0.7),
      rgba(35, 35, 35, 0.4)
    ),
    url("https://images.unsplash.com/photo-1519415552909-87da78f9c278?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  transform: scale(1.05);
  z-index: -3;
}

.experience-bg {
  position: absolute;
  inset: -20% 0 -20%;
  overflow: hidden;
  z-index: -4;
  pointer-events: none;
}

.experience-bg-video {
  width: 100%;
  height: 140%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
  transform: scale(1.05);
}

.experience-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      140deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 55%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.8));
  opacity: 0.9;
}

.section.parallax .overlay {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 3.4rem);
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  background: rgba(12, 12, 12, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
}

.section.parallax .overlay * {
  position: relative;
  z-index: 1;
}

.section.parallax .overlay p {
  color: rgba(255, 255, 255, 0.88);
}

.highlight {
  background: var(--color-deep);
  color: #ffffff;
  border-radius: 28px;
  gap: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow);
}

.highlight .cta {
  display: grid;
  gap: 1.2rem;
}

.highlight .meta {
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  display: grid;
  gap: 1rem;
}

.footer {
  max-width: var(--max-width);
  margin: 4rem auto 2rem;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .nav {
    width: calc(100% - var(--gutter));
    padding: 0.9rem 1.2rem;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .two-col .media::after,
  .two-col.inverted .media::after {
    inset: 6% 4% -6% 4%;
  }

  .price-slide {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .gallery-slide {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .gallery-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero {
    padding-bottom: 6rem;
  }

  .scroll-cue {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero {
    --hero-parallax: 0px;
  }

  .hero-video {
    transform: none !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .section.parallax::before {
    background-attachment: scroll;
  }
}
.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.experience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
  transform: scale(1.05);
  will-change: transform;
  z-index: 0;
}
.price-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.05) 80%
  );
}
.gallery-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.2rem;
}
