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

:root {
  --black: #171717;
  --deep: #242321;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --orange: #f36c3f;
  --orange-dark: #d65026;
  --white: #ffffff;
  --text: #373532;
  --muted: #77716b;
  --line: rgba(23, 23, 23, .15);
  --shadow: 0 30px 80px rgba(23, 23, 23, .16);
  --container: 1220px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  transition: background .25s ease, color .25s ease;
}

body,
button {
  font: inherit;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--black);
  font-size: 20px;
  letter-spacing: -.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a,
.main-nav a:hover {
  color: var(--orange);
}

.phone-link {
  padding: 10px 15px;
  border: 1px solid var(--black);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-weight: 800;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.hero {
  padding: 46px 0 94px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: stretch;
}

.hero-media {
  position: relative;
  min-height: 650px;
}

.hero-media img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  border-radius: 0 0 220px 0;
  box-shadow: var(--shadow);
}

.route-count {
  position: absolute;
  right: -38px;
  bottom: 48px;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  text-align: center;
}

.route-count strong {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1;
}

.route-count span {
  max-width: 90px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 16px 0 20px;
  color: var(--black);
  font-family: "Playfair Display", serif;
  letter-spacing: -.055em;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  font-size: clamp(62px, 7vw, 108px);
  line-height: .9;
}

.hero-title-sub {
  margin-top: 10px;
  color: var(--orange);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .98;
}
.hero-copy > p {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.hero-call {
  width: fit-content;
  display: grid;
  padding: 18px 22px;
  color: white;
  background: var(--black);
}

.hero-call span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-call strong {
  font-size: 20px;
}

.more-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--black);
  font-weight: 800;
}

.more-link span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.section {
  padding: 110px 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-visual img {
  min-height: 590px;
  object-fit: cover;
  border-radius: 220px 0 0 0;
}

.vertical-note {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-number {
  display: inline-flex;
  margin-right: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.intro-copy h2,
.section-heading h2,
.stats-heading h2,
.booking-heading h2,
.cta-section h2 {
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.intro-copy h2 {
  margin: 16px 0 20px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.05em;
}

.intro-copy p {
  color: var(--muted);
  font-size: 17px;
}

.solid-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 22px;
  color: white;
  background: var(--orange);
  font-weight: 800;
}

.routes-section {
  background: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.split-heading p {
  margin: 0;
  color: var(--muted);
}

.routes-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
}

.route-feature {
  position: relative;
  min-height: 650px;
}

.route-feature img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.route-feature-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 26px;
  color: white;
  background: rgba(23,23,23,.84);
  backdrop-filter: blur(15px);
}

.route-feature-overlay small {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.route-feature-overlay h3 {
  margin: 6px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 39px;
}

.route-feature-overlay p {
  color: rgba(255,255,255,.72);
}

.route-feature-overlay a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 800;
}

.route-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.route-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
  background: var(--paper);
}

.route-list article > span {
  color: var(--orange);
  font-weight: 800;
}

.route-list h3 {
  margin: 0 0 4px;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.route-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.route-list a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.stats-section {
  padding: 58px 0;
  color: white;
  background: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.stats-heading h2 {
  margin: 8px 0 0;
  color: white;
  font-size: 38px;
  line-height: 1.05;
}

.stats-grid article {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--orange);
  font-family: "Playfair Display", serif;
  font-size: 46px;
}

.stats-grid span {
  color: rgba(255,255,255,.66);
}

.features-section {
  background: var(--paper);
}

.centered-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.centered-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}

.features-grid article {
  min-height: 300px;
  padding: 27px;
  background: var(--cream);
}

.feature-index {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.features-grid h3 {
  margin: 80px 0 10px;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.features-grid p {
  color: var(--muted);
  font-size: 14px;
}

.booking-section {
  background: var(--cream);
}

.booking-heading {
  max-width: 850px;
  margin-bottom: 45px;
}

.booking-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
}

.booking-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.booking-steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 27px;
  background: var(--paper);
}

.booking-steps article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: "Playfair Display", serif;
  font-size: 23px;
}

.booking-steps h3 {
  margin: 0 0 5px;
  color: var(--black);
  font-family: "Playfair Display", serif;
  font-size: 26px;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  padding: 90px 0;
  color: white;
  background: var(--orange);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
}

.cta-section span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-section h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: white;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .95;
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 310px;
}

.cta-actions a {
  display: grid;
  padding: 18px;
  color: white;
  background: rgba(23,23,23,.92);
}

.cta-actions small {
  color: rgba(255,255,255,.62);
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 0 24px;
  color: white;
  background: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand .brand-symbol {
  color: white;
  border-color: white;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-intro p,
.site-footer a,
.site-footer p {
  color: rgba(255,255,255,.62);
}

.site-footer h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 19px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.disclaimer {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.disclaimer p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  padding: 14px 18px;
  color: white;
  background: var(--orange);
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .routes-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media img {
    min-height: 520px;
  }

  .route-count {
    right: 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav ul {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav ul.open {
    display: flex;
  }

  .main-nav a,
  .phone-link {
    text-align: center;
  }

  .split-heading,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .hero-media img {
    border-radius: 0 0 110px 0;
  }

  .route-count {
    width: 112px;
    height: 112px;
    right: 12px;
    bottom: 22px;
  }

  .route-count strong {
    font-size: 34px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section {
    padding: 78px 0;
  }

  .intro-visual img {
    min-height: 420px;
    border-radius: 110px 0 0 0;
  }

  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps article {
    grid-template-columns: 54px 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    text-align: center;
  }
}

/* THE VACATIONS DEAL BRAND UPDATE */
.brand-copy strong { white-space: nowrap; }
@media (max-width: 640px) {
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; letter-spacing: .11em; }
}


/* LIGHT MODE ONLY */
body {
  color-scheme: light;
}

/* MOBILE ALIGNMENT AND CONTENT FIXES */
@media (max-width: 900px) {
  .nav-wrap {
    min-height: 74px;
  }

  .main-nav ul {
    top: 74px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 12px;
  }

  .phone-link {
    justify-content: center;
    border-radius: 0;
  }

  .hero {
    padding: 28px 0 70px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    padding: 0;
    text-align: left;
  }

  .hero-title-main {
    font-size: clamp(52px, 10vw, 78px);
    line-height: .92;
  }

  .hero-title-sub {
    margin-top: 8px;
    font-size: clamp(30px, 6.5vw, 48px);
    line-height: 1;
  }

  .hero-call {
    width: 100%;
    max-width: 380px;
  }

  .more-link {
    margin-top: 20px;
  }

  .intro-grid,
  .routes-layout,
  .cta-grid {
    gap: 32px;
  }

  .intro-copy,
  .booking-heading,
  .section-heading {
    max-width: 100%;
  }

  .split-heading {
    gap: 16px;
  }

  .route-feature {
    min-height: 520px;
  }

  .route-feature img {
    min-height: 520px;
  }

  .route-feature-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid article {
    min-height: 250px;
  }

  .features-grid h3 {
    margin-top: 55px;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .site-header {
    position: sticky;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 82px);
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 20px;
  }

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

  .brand-copy strong {
    display: block;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 7px;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .hero {
    padding: 18px 0 56px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-media {
    order: 1;
    min-height: 360px;
  }

  .hero-copy {
    order: 2;
    padding-inline: 2px;
  }

  .hero-media img {
    min-height: 360px;
    border-radius: 0 0 78px 0;
  }

  .route-count {
    width: 92px;
    height: 92px;
    right: 10px;
    bottom: 16px;
  }

  .route-count strong {
    font-size: 29px;
  }

  .route-count span {
    max-width: 70px;
    font-size: 9px;
  }

  .eyebrow {
    max-width: 100%;
    line-height: 1.4;
  }

  .hero-title {
    margin: 12px 0 16px;
  }

  .hero-title-main {
    font-size: clamp(45px, 13vw, 62px);
    line-height: .94;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-title-sub {
    margin-top: 7px;
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1;
  }

  .hero-copy > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-call {
    width: 100%;
    padding: 16px 18px;
  }

  .hero-call strong {
    font-size: 18px;
  }

  .more-link {
    max-width: 100%;
    font-size: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .intro-visual img {
    min-height: 360px;
    border-radius: 78px 0 0 0;
  }

  .vertical-note {
    display: none;
  }

  .intro-copy h2,
  .centered-heading h2,
  .booking-heading h2,
  .cta-section h2 {
    font-size: clamp(36px, 11vw, 49px);
    line-height: 1;
  }

  .intro-copy p,
  .split-heading p,
  .booking-steps p,
  .features-grid p {
    font-size: 14px;
    line-height: 1.7;
  }

  .split-heading {
    display: block;
  }

  .split-heading p {
    margin-top: 14px;
  }

  .route-feature,
  .route-feature img {
    min-height: 440px;
  }

  .route-feature-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 17px;
  }

  .route-feature-overlay h3 {
    font-size: 28px;
    line-height: 1.05;
  }

  .route-list article {
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    padding: 18px 14px;
  }

  .route-list h3 {
    font-size: 20px;
  }

  .route-list p {
    font-size: 12px;
    line-height: 1.55;
  }

  .route-list a {
    width: 34px;
    height: 34px;
  }

  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    gap: 22px;
  }

  .stats-heading h2 {
    font-size: 32px;
  }

  .stats-grid strong {
    font-size: 39px;
  }

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

  .features-grid article {
    min-height: auto;
    padding: 22px;
  }

  .features-grid h3 {
    margin: 36px 0 8px;
    font-size: 23px;
  }

  .booking-steps article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 20px 14px;
  }

  .booking-steps article > span {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .booking-steps h3 {
    font-size: 22px;
    line-height: 1.15;
  }

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

  .cta-grid {
    gap: 28px;
  }

  .cta-actions {
    min-width: 0;
  }

  .cta-actions a {
    padding: 16px;
    overflow-wrap: anywhere;
  }

  .cta-actions strong {
    font-size: 15px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    gap: 8px;
    text-align: center;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}
