:root {
  --brand: #e4003b;
  --brand-dark: #bd0032;
  --ink: #161616;
  --muted: #6b6b6b;
  --surface: #ffffff;
  --surface-soft: #f6f6f7;
  --line: #e9e9ec;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(17, 17, 17, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 150px;
  height: auto;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.header-cta {
  padding: 11px 18px;
  color: var(--brand);
  border: 1px solid rgba(228,0,59,.22);
}

.header-cta:hover {
  background: #fff2f6;
}

.hero {
  min-height: 460px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(228,0,59,.18), transparent 28%),
    linear-gradient(135deg, #121212 0%, #292929 55%, #171717 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 90px solid rgba(255,255,255,.035);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 82px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255,255,255,.78);
}

.hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.hero p {
  max-width: 720px;
  margin: 24px 0 30px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
}

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

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(228,0,59,.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.destinations {
  padding: 86px 0 96px;
  background: var(--surface-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  overflow: hidden;
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: var(--shadow);
}

.card a {
  display: block;
  position: relative;
  text-decoration: none;
}

.card img {
  width: 100%;
  aspect-ratio: 600 / 350;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.76) 0%, rgba(0,0,0,.10) 58%, transparent 78%);
  opacity: 0;
  transition: opacity .25s ease;
}

.card-label {
  font-size: 1.03rem;
  font-weight: 800;
}

.card-link {
  margin-top: 7px;
  font-size: .86rem;
  font-weight: 600;
}

.card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.card:hover .card-overlay,
.card:focus-within .card-overlay {
  opacity: 1;
}

.cta-section {
  padding: 0 0 88px;
  background: var(--surface-soft);
}

.cta-box {
  min-height: 230px;
  padding: 46px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: linear-gradient(135deg, var(--brand) 0%, #ad002e 100%);
  color: #fff;
  box-shadow: 0 22px 55px rgba(174,0,46,.20);
}

.cta-box h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.btn-light {
  flex: 0 0 auto;
  background: #fff;
  color: var(--brand);
}

footer {
  padding: 34px 0;
  background: #111;
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 130px;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  margin: 0;
  font-size: .88rem;
}

/* Tablet */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

/* Mobile */
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 126px;
  }

  .header-cta {
    font-size: .78rem;
    padding: 9px 13px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding-block: 64px;
  }

  .destinations {
    padding: 62px 0 72px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-overlay {
    opacity: 1;
    padding: 18px;
  }

  .cta-section {
    padding-bottom: 64px;
  }

  .cta-box {
    padding: 32px 24px;
    border-radius: 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
