:root {
  color-scheme: light dark;
  --black: #050505;
  --graphite: #111214;
  --graphite-soft: #1b1d20;
  --white: #f7f7f3;
  --muted: #bebfba;
  --ink: #111214;
  --ink-soft: #4a4d52;
  --paper: #fbfaf7;
  --paper-soft: #f1f0eb;
  --red: #c71320;
  --red-soft: #ff3946;
  --green: #25d366;
  --green-dark: #128c4a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(115deg, rgba(199, 19, 32, 0.13), transparent 34%),
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0d0d0f 100%);
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 48px 0 28px;
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.brand {
  margin: 0 0 18px;
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  font-weight: 800;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 10.5vw, 4.95rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: #e6e6df;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.accent-line {
  width: min(210px, 44vw);
  height: 3px;
  margin: 34px 0 28px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.highlight {
  max-width: 610px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.12rem, 2.4vw, 1.7rem);
  font-weight: 850;
  line-height: 1.18;
}

.support {
  max-width: 540px;
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.whatsapp-button {
  width: fit-content;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.24);
  font-size: 0.96rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.31);
  filter: saturate(1.05);
  outline: none;
}

.whatsapp-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18), 0 22px 52px rgba(37, 211, 102, 0.31);
}

.whatsapp-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.fineprint {
  max-width: 520px;
  margin: 16px 0 0;
  color: #a8aaa6;
  font-size: 0.88rem;
  line-height: 1.5;
}

.photo-frame {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 455px;
  justify-self: end;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #1c1e21, #0c0d0f);
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.photo-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: end start;
  padding: 30px;
}

.photo-placeholder span {
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  font-weight: 950;
  line-height: 0.9;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: #b9bab6;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer p {
  margin: 0;
}

.booking-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, #ffffff 54%, var(--paper-soft) 100%);
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.booking-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 108px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.booking-photo {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e8e5df;
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.18);
}

.booking-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  pointer-events: none;
}

.booking-photo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.booking-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  display: block;
  object-fit: cover;
}

.booking-copy {
  min-width: 0;
}

.booking-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
}

.booking-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #070707;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.booking-text,
.booking-destinations {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.62;
}

.booking-text {
  margin: 24px 0 0;
}

.booking-line {
  width: min(190px, 42vw);
  height: 3px;
  margin: 34px 0 26px;
  background: linear-gradient(90deg, var(--red), rgba(199, 19, 32, 0));
}

.booking-highlight {
  max-width: 620px;
  margin: 0;
  color: #090909;
  font-size: clamp(1rem, 2vw, 1.46rem);
  font-weight: 900;
  line-height: 1.2;
}

.booking-destinations {
  margin: 14px 0 30px;
}

.booking-fineprint {
  max-width: 540px;
  margin: 16px 0 0;
  color: #61646a;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .page-shell {
    min-height: auto;
    padding-top: 34px;
  }

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

  .hero-copy {
    max-width: none;
  }

  .photo-frame {
    justify-self: start;
    max-width: min(440px, 100%);
    order: -1;
  }

  .booking-inner {
    grid-template-columns: 1fr;
  }

  .booking-photo {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .footer,
  .booking-inner {
    width: min(100% - 28px, 1180px);
  }

  .page-shell {
    padding-top: 20px;
  }

  .photo-frame {
    aspect-ratio: 5 / 4;
    max-width: 100%;
  }

  .photo-placeholder {
    padding: 22px;
  }

  .intro {
    margin-top: 22px;
  }

  .whatsapp-button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

  .booking-inner {
    padding: 48px 0 56px;
    gap: 30px;
  }

  .booking-photo img {
    aspect-ratio: 4 / 3;
  }

  .booking-copy h2 {
    font-size: clamp(1.92rem, 9.8vw, 2.66rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .whatsapp-button {
    transition: none;
  }
}
