:root {
  --bg-dark: #0a0a0d;
  --bg-hero: #0c0b12;
  --bg-purple: #6b5bd6;
  --bg-map: #141414;
  --bg-amber: #f5a45a;
  --text-light: #f6f6f6;
  --text-dark: #111111;
  --text-muted: #e6e6e6;
  --accent: #ffe2b5;
  --cta: #ffffff;
  --cta-text: #1a1a1a;
  --radius-lg: 28px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0 0 12px 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 16px 0;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  background: radial-gradient(1200px 600px at 70% -10%, rgba(255, 122, 0, 0.35), transparent),
    linear-gradient(180deg, rgba(8, 7, 10, 0.95), rgba(10, 8, 15, 0.7)),
    var(--bg-hero);
  padding: 0;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero__top {
  display: flex;
  justify-content: center;
  padding: 8px 0 20px;
  font-size: 18px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.hero__top img {
  width: min(180px, 45vw);
  height: auto;
  display: block;
}

.hero__media {
  margin: 0;
  width: 100vw;
  max-width: none;
  min-height: 75vh;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero__media img:nth-child(1) {
  animation-delay: 0s;
}

.hero__media img:nth-child(2) {
  animation-delay: 6s;
}

.hero__media img:nth-child(3) {
  animation-delay: 12s;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}

.hero__logo {
  width: min(180px, 45vw);
  height: auto;
  margin-top: 6px;
}

.hero__copy {
  margin: auto 0;
  width: min(640px, 90vw);
  display: grid;
  gap: 12px;
  place-items: center;
}

.hero__copy h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.hero__copy p {
  font-size: 16px;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  background: var(--cta);
  color: var(--cta-text);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.5);
}

.section {
  padding: 78px 20px;
}

.section--purple {
  background: var(--bg-purple);
  text-align: center;
}

.section--purple h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section__media {
  margin: 36px auto 44px;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  overflow: hidden;
}

.section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 30px 0 38px;
}

.feature {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.feature span {
  font-size: 24px;
}

.booking {
  margin: 40px auto 0;
  width: min(860px, 100%);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.booking h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

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

.field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
}

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-light);
  padding: 10px 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.booking__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  min-height: 420px;
}

.split__left {
  background: var(--bg-map);
  display: grid;
  place-items: center;
  padding: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__right {
  background: var(--bg-amber);
  color: var(--text-dark);
  padding: 48px 40px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.split__right h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.info-list {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.info-list span {
  font-weight: 700;
}

.footer {
  background: var(--bg-dark);
  padding: 70px 20px 90px;
  text-align: center;
}

.footer__logo {
  width: 100%;
  max-width: none;
  margin: 0 auto 12px;
}

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

.footer__details {
  margin-top: 18px;
  font-size: 14px;
  color: #cfcfcf;
}

@media (max-width: 720px) {
  .hero {
    padding: 0;
  }

  .section {
    padding: 66px 14px;
  }

  .section__media {
    margin: 28px 0 36px;
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .split__right {
    padding: 40px 24px;
  }

  .booking {
    padding: 22px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 22px 0 30px;
  }

  .booking__actions .btn {
    flex: 1 1 100%;
  }

  .split {
    min-height: auto;
  }

  .hero__media {
    min-height: 70vh;
  }

  .hero__overlay {
    padding: 18px 16px;
  }

  .hero__logo {
    width: min(150px, 50vw);
    margin-top: 4px;
  }

  .hero__copy {
    width: min(520px, 90vw);
  }
}

@media (min-width: 1980px) {
  body {
    font-size: 18px;
  }

  .hero__copy h1 {
    font-size: clamp(44px, 3vw, 64px);
  }

  .hero__copy p {
    font-size: 20px;
  }

  .section--purple h2 {
    font-size: clamp(42px, 3vw, 60px);
  }

  .section--purple p {
    font-size: 18px;
  }

  .section__media {
    width: min(1180px, 100%);
  }

  .split__right {
    padding: 64px 72px;
  }

  .split__right h2 {
    font-size: clamp(40px, 2.6vw, 56px);
  }

  .split__right p {
    font-size: 18px;
  }

  .info-list {
    font-size: 18px;
    gap: 10px;
  }

  .footer__details {
    font-size: 16px;
  }
}

@keyframes heroFade {
  0%,
  25% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}
