:root {
  --ink: #050505;
  --panel: #10100f;
  --panel-soft: #161615;
  --gold: #f4d73d;
  --gold-dark: #b89412;
  --green: #59b344;
  --text: #f6f2e8;
  --muted: rgba(246, 242, 232, 0.66);
  --line: rgba(246, 242, 232, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 42px);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.header-action {
  opacity: 0.9;
}

.nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  border: 1px solid rgba(244, 215, 61, 0.72);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
  filter: grayscale(1) contrast(1.08);
}

.hero-shade {
  background:
    radial-gradient(circle at 24% 42%, rgba(244, 215, 61, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.1) 56%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 80px auto 0;
  color: #fff;
}

.hero-content {
  max-width: 640px;
}

.hero-logo {
  width: min(500px, 82vw);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.7));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.reviews-heading h2,
.booking-copy h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.45rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  max-width: 430px;
  justify-self: end;
  border: 1px solid rgba(244, 215, 61, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(10, 10, 9, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
}

.hero-card ul {
  display: grid;
  gap: 0;
  margin: 26px 0 18px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hero-card li span {
  color: var(--muted);
}

.hero-card li strong {
  color: var(--gold);
  white-space: nowrap;
}

.cash-note {
  margin: 0;
  color: rgba(246, 242, 232, 0.72);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #070707;
  box-shadow: 0 14px 34px rgba(244, 215, 61, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 70px);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading h2,
.reviews-heading h2,
.booking-copy h2 {
  font-size: clamp(2.25rem, 5.6vw, 5rem);
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.services {
  background: var(--panel);
}

.service-group {
  max-width: 1180px;
  margin: 0 auto 42px;
  border-top: 1px solid var(--line);
}

.service-group.premium {
  border-color: rgba(244, 215, 61, 0.36);
}

.premium-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.premium-wrap .service-group {
  margin: 0;
}

.premium-image {
  position: sticky;
  top: 92px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 61, 0.24);
  border-radius: 8px;
  background: var(--panel-soft);
}

.premium-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
}

.service-group-title {
  margin: 22px 0 2px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.service-item p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.service-meta span {
  border: 1px solid rgba(244, 215, 61, 0.34);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold);
  font-weight: 850;
  white-space: nowrap;
}

.service-meta strong {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1;
  white-space: nowrap;
}

.price-note {
  max-width: 1180px;
  margin: -12px auto 0;
  color: rgba(246, 242, 232, 0.72);
  font-size: 0.95rem;
}

.reviews-strip {
  overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0;
  background: #070707;
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-heading {
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: 0 clamp(18px, 6vw, 70px);
}

.reviews-heading h2 {
  max-width: 780px;
}

.reviews-marquee {
  width: 100%;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: review-scroll 130s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(360px, 82vw);
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel-soft);
}

.review-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card p {
  margin: 18px 0;
  color: rgba(246, 242, 232, 0.86);
}

.review-card strong {
  color: #fff;
  font-size: 0.98rem;
}

.review-empty {
  max-width: 720px;
  margin: 0 clamp(18px, 6vw, 70px);
  border: 1px solid rgba(244, 215, 61, 0.28);
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  background: var(--panel-soft);
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 70px);
  background: var(--ink);
  color: #fff;
}

.booking-copy {
  align-self: center;
}

.booking-copy p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-frame {
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-frame iframe {
  width: 100%;
  height: 690px;
  border: 0;
  background: #fff;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 42px clamp(18px, 6vw, 70px);
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.address-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid rgba(244, 215, 61, 0.3);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--text);
  font-weight: 850;
  transition: transform 160ms ease, border 160ms ease, background 160ms ease;
}

.address-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 215, 61, 0.78);
  background: rgba(244, 215, 61, 0.08);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(244, 215, 61, 0.3);
  border-radius: 999px;
  color: var(--gold);
  transition: transform 160ms ease, border 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 215, 61, 0.78);
  background: rgba(244, 215, 61, 0.08);
}

.social-link svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 70px);
  background: var(--ink);
  color: var(--muted);
}

@media (max-width: 840px) {
  .site-header {
    justify-content: space-between;
  }

  .nav {
    gap: 16px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.42) 86%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
  }

  .hero-layout,
  .section-heading,
  .premium-wrap,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-items: start;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero-card {
    justify-self: start;
    max-width: 100%;
  }

  .premium-image {
    position: static;
  }

  .premium-image img {
    aspect-ratio: 16 / 10;
  }

  .booking-frame,
  .booking-frame iframe {
    min-height: 620px;
    height: 620px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .nav a:nth-child(2),
  .nav a:nth-child(4) {
    display: none;
  }

  .header-action {
    padding: 9px 14px;
  }

  .hero-content {
    margin-top: 64px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-meta {
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
  }
}
