:root {
  --ink: #202326;
  --muted: #656f74;
  --paper: #ffffff;
  --surface: #ffffff;
  --soft: #f6fbf7;
  --line: #e3e8e4;
  --red: #c91627;
  --red-dark: #9f0f1d;
  --green: #202326;
  --green-dark: #111416;
  --gold: #f1b744;
  --shadow: 0 18px 48px rgba(32, 35, 38, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  align-items: center;
  background: #fff;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: center;
  min-height: 70px;
  padding: 10px clamp(18px, 5vw, 210px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  letter-spacing: 0;
  width: 38px;
}

.utility-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 54px);
  justify-content: center;
}

.utility-nav a {
  color: #292e32;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.utility-nav a:hover {
  color: var(--red);
}

.nav-search {
  align-items: center;
  border: 1px solid #d7dcdf;
  border-radius: 999px;
  display: flex;
  min-height: 42px;
  overflow: hidden;
  width: min(265px, 22vw);
}

.nav-search input {
  border: 0;
  font: inherit;
  min-width: 0;
  padding: 0 0 0 16px;
  width: 100%;
}

.nav-search button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  height: 42px;
  position: relative;
  width: 42px;
}

.nav-search button::before {
  border: 2px solid #1f2427;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 11px;
  position: absolute;
  top: 10px;
  width: 12px;
}

.nav-search button::after {
  background: #1f2427;
  content: "";
  height: 8px;
  left: 25px;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
  width: 2px;
}

.nav-cta {
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  font-style: italic;
  font-weight: 900;
  min-height: 44px;
  padding: 11px 20px;
  text-decoration: none;
  white-space: nowrap;
}

.category-nav {
  background: #fff;
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: center;
  overflow-x: auto;
  position: sticky;
  top: 0;
  z-index: 20;
}

.category-nav a {
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  min-height: 46px;
  padding: 13px 18px;
  text-decoration: none;
}

.category-nav a::after {
  background: var(--red);
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 160ms ease;
}

.category-nav a:hover {
  background: #f5f5f5;
  color: var(--red);
}

.category-nav a:hover::after {
  opacity: 1;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 20, 16, 0.06) 0%, rgba(8, 20, 16, 0.1) 43%, rgba(8, 20, 16, 0.62) 100%),
    url("https://images.unsplash.com/photo-1547981609-4b6bfe67ca0b?auto=format&fit=crop&w=2400&q=85");
  background-position: center 42%;
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr minmax(410px, 760px);
  min-height: 630px;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 210px);
  position: relative;
}

.hero-panel {
  color: #fff;
  grid-column: 2;
  max-width: 760px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-trust {
  color: #fff;
  grid-column: 2;
  justify-self: start;
  margin-left: -150px;
  margin-top: -150px;
  position: absolute;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-trust span,
.hero-trust small {
  display: block;
}

.hero-trust span {
  font-size: 16px;
  font-weight: 900;
}

.hero-trust strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin: 5px 0 8px;
}

.hero-trust::before,
.hero-trust::after {
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  content: "";
  display: block;
  margin: 0 auto 10px;
  width: 74px;
}

.hero-trust::after {
  margin: 10px auto 0;
}

.hero-trust small {
  font-size: 13px;
  max-width: 150px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  line-height: 1.22;
  margin-bottom: 10px;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.25;
  max-width: 760px;
}

.hero-search {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  margin-top: 30px;
  max-width: 680px;
  padding: 8px;
  text-shadow: none;
}

.hero-search input,
.hero-search button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  min-height: 50px;
  padding: 0 18px;
}

.hero-search input {
  min-width: 0;
}

.hero-search button {
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.floating-cta {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  bottom: 30px;
  box-shadow: 0 8px 22px rgba(159, 15, 29, 0.35);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  height: 112px;
  justify-content: center;
  left: 30px;
  line-height: 1.06;
  position: fixed;
  text-align: center;
  text-decoration: none;
  width: 112px;
  z-index: 30;
}

.update-strip,
.planning-bar {
  align-items: center;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  padding: 14px 20px;
  text-align: center;
}

.update-strip strong,
.planning-bar strong {
  color: var(--ink);
}

.update-strip span {
  color: var(--muted);
}

.update-strip a,
.planning-bar a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.intro-section {
  background: #fff;
  padding: clamp(72px, 8vw, 112px) 20px;
}

.intro-section div {
  margin: 0 auto;
  max-width: 1120px;
}

.intro-section h2 {
  font-size: clamp(40px, 4.8vw, 60px);
  margin-bottom: 42px;
}

.intro-section p {
  color: #202326;
  font-size: 20px;
  line-height: 1.72;
  max-width: 980px;
}

.kit-steps {
  background: #fff;
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px) 64px;
}

.kit-steps article {
  background: #fff;
  border-top: 5px solid var(--ink);
  min-height: 210px;
  padding: 28px;
}

.kit-steps article:nth-child(2) {
  border-top-color: var(--red);
}

.kit-steps article:nth-child(3) {
  border-top-color: var(--ink);
}

.kit-steps span {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.kit-steps strong {
  display: block;
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 12px;
}

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

.section {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.section-title {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-title.narrow {
  max-width: 680px;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quick-links {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card,
.guide-card,
.destination-card,
.itinerary-grid article,
.deal-card,
.review-grid blockquote,
.timeline article,
.sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(32, 35, 38, 0.07);
}

.quick-card {
  min-height: 190px;
  padding: 24px;
  text-decoration: none;
}

.quick-card span {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 26px;
  width: 34px;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card strong {
  font-size: 21px;
  margin-bottom: 10px;
}

.quick-card small {
  color: var(--muted);
  font-size: 15px;
}

.quick-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.ad-banner {
  align-items: center;
  background: #fff;
  border-block: 1px dashed #cfded2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  min-height: 88px;
  padding: 18px 20px;
  text-align: center;
}

.ad-banner span,
.sidebar-ad span,
.deal-card span,
.guide-card span,
.destination-card span,
.itinerary-grid span,
.timeline span {
  color: var(--ink);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ad-banner a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.destination-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(360px, 1.15fr) repeat(2, minmax(240px, 0.65fr));
}

.destination-card {
  overflow: hidden;
}

.destination-card a {
  color: inherit;
  text-decoration: none;
}

.destination-card h3 a:hover {
  color: var(--red);
}

.destination-card.featured {
  grid-row: span 2;
}

.destination-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.destination-card.featured img {
  aspect-ratio: 16 / 10;
}

.destination-card div {
  padding: 22px;
}

.destination-card p,
.guide-card p,
.itinerary-grid p,
.deal-card p,
.timeline p {
  color: var(--muted);
}

.split-section {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(230px, 300px) 1fr;
}

.sidebar {
  padding: 20px;
  position: sticky;
  top: 68px;
}

.sidebar h2 {
  font-size: 26px;
}

.sidebar button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: block;
  font: inherit;
  font-weight: 850;
  margin-bottom: 8px;
  min-height: 42px;
  padding: 0 12px;
  text-align: left;
  width: 100%;
}

.sidebar button:hover,
.sidebar button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.sidebar-ad {
  background: #f7f7f7;
  border: 1px dashed #cfded2;
  border-radius: var(--radius);
  margin-top: 22px;
  min-height: 180px;
  padding: 18px;
}

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

.guide-card {
  min-height: 210px;
  padding: 22px;
}

.guide-card a {
  color: inherit;
  text-decoration: none;
}

.guide-card a:hover {
  color: var(--red);
}

.guide-card[hidden] {
  display: none;
}

.guide-empty-state {
  background: #fff4f0;
  border: 1px solid #f3c6b8;
  border-radius: var(--radius);
  color: #742516;
  font-weight: 700;
  margin: 16px 0 0;
  padding: 16px 18px;
}

.warm-section {
  background: #f7f7f7;
}

.itinerary-grid,
.deal-grid,
.review-grid,
.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.itinerary-grid article,
.deal-card,
.timeline article {
  min-height: 220px;
  padding: 24px;
}

.deals-section {
  background: #fff;
}

.deal-card.esim,
.deal-card.tour {
  border-top: 6px solid var(--ink);
}

.deal-card.hotel {
  border-top: 6px solid var(--red);
}

.deal-card a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-color: rgba(201, 22, 39, 0.35);
  text-underline-offset: 4px;
}

.review-section {
  background: #fff;
}

.review-grid blockquote {
  margin: 0;
  min-height: 190px;
  padding: 26px;
}

.review-grid p {
  font-size: 18px;
}

.review-grid cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.plan-section {
  background: #171a1d;
  color: #fff;
}

.plan-section .eyebrow,
.timeline span {
  color: var(--gold);
}

.timeline article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.timeline p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  align-items: center;
  background: #111416;
  color: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.article-body {
  background: #fff;
}

.article-shell {
  margin: 0 auto;
  max-width: 860px;
  padding: 56px 22px 96px;
}

.article-shell h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.03;
  text-shadow: none;
}

.article-shell h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-top: 42px;
}

.article-shell p,
.article-shell li {
  color: #2f363a;
  font-size: 18px;
}

.article-shell .lede {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.article-shell ul,
.article-shell ol {
  padding-left: 24px;
}

.text-link {
  color: var(--red);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 28px;
  text-decoration: none;
}

.inline-offer {
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  margin-top: 42px;
  padding: 24px;
}

@media (max-width: 1260px) {
  .topbar {
    padding-inline: 26px;
  }

  .nav-search {
    display: none;
  }
}

@media (max-width: 1100px) {
  .utility-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-inline: clamp(20px, 6vw, 70px);
  }

  .hero-panel {
    grid-column: 1;
    max-width: 780px;
  }

  .hero-trust {
    display: none;
  }

  .quick-links,
  .kit-steps,
  .destination-grid,
  .itinerary-grid,
  .deal-grid,
  .review-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card.featured {
    grid-row: auto;
  }
}

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

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 570px;
  }

  .hero-search,
  .quick-links,
  .kit-steps,
  .destination-grid,
  .split-section,
  .guide-grid,
  .itinerary-grid,
  .deal-grid,
  .review-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .brand {
    font-size: 20px;
  }

  .category-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-block: 72px;
  }

  .floating-cta {
    display: none;
  }

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