:root {
  --navy: #0F2A4D;
  --blue: #1B3E6F;
  --red: #C8102E;
  --gold: #C89B3C;
  --paper: #FFFFFF;
  --panel: #F4F6F8;
  --ink: #16233B;
  --ink-soft: #5B6472;
  --line: #E1E5EA;

  --serif: "STIX Two Text", Georgia, serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Utility bar ---- */

.utility-bar {
  background: var(--navy);
  color: #D7DEE8;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px;
  font-size: 13px;
}

.utility-links {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

.utility-links a:hover { color: #fff; }

.utility-buttons {
  display: flex;
  height: 100%;
}

.utility-cta {
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.utility-cta:hover { background: #a80d26; }

.utility-index {
  background: #2E4E76;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.utility-index:hover { background: #253f61; }

/* ---- Header ---- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wordmark span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 2px;
}

.primary-nav { display: flex; gap: 28px; }

.primary-nav a {
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-bottom-color: var(--red);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span { display: block; height: 2px; background: var(--navy); }

/* ---- Title bar ---- */

.title-bar {
  background: #1C1C1C;
  border-left: none;
}

.title-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
}

.title-accent {
  width: 4px;
  height: 22px;
  background: var(--blue);
  display: inline-block;
}

.page-title {
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-graphic {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-eyebrow {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.14;
  max-width: 16ch;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--gold);
  color: #fff;
  display: inline-block;
}

.hero-sub {
  font-size: 18px;
  color: #C9D6E8;
  max-width: 56ch;
  margin: 0;
}

/* ---- Destinations ---- */

.destinations { padding: 72px 0; border-bottom: 1px solid var(--line); }

.destinations h2, .news-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 36px;
  color: var(--navy);
}

.news-title { text-align: center; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 168px;
  grid-auto-flow: dense;
  gap: 20px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.dest-card.is-visible { opacity: 1; transform: translateY(0); }

.dest-card.dest-featured {
  grid-column: span 2;
  grid-row: span 2;
  border-top-width: 5px;
}

.dest-card.dest-wide {
  grid-row: span 1;
}

.dest-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(135deg, rgba(200,16,46,0.05) 0 2px, transparent 2px 18px);
  pointer-events: none;
}

.dest-fill {
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.dest-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px 24px;
  height: 100%;
  justify-content: center;
}

.dest-featured .dest-content { padding: 36px 32px; justify-content: flex-start; }

.dest-icon {
  width: 32px;
  height: 32px;
  color: var(--navy);
  transition: color 0.2s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.dest-featured .dest-icon { width: 40px; height: 40px; }

.dest-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
  transition: color 0.2s ease;
}

.dest-featured h3 { font-size: 24px; }

.dest-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  transition: color 0.2s ease;
}

.dest-featured p { font-size: 15px; max-width: 34ch; }

.dest-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.dest-go svg { transition: transform 0.2s ease; }

.dest-card:hover .dest-go svg,
.dest-card:focus-visible .dest-go svg { transform: translateX(4px); }

.dest-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease 0.05s;
  z-index: 1;
}

.dest-featured::after { left: 32px; }

.dest-card:hover,
.dest-card:focus-visible {
  box-shadow: 0 12px 28px rgba(15,42,77,0.18);
}

.dest-card:hover .dest-fill,
.dest-card:focus-visible .dest-fill { transform: translateX(0); }

.dest-card:hover .dest-icon,
.dest-card:focus-visible .dest-icon { transform: scale(1.1) rotate(-4deg); }

.dest-card:hover .dest-icon,
.dest-card:hover h3,
.dest-card:hover .dest-go,
.dest-card:focus-visible .dest-icon,
.dest-card:focus-visible h3,
.dest-card:focus-visible .dest-go { color: #fff; }

.dest-card:hover p,
.dest-card:focus-visible p { color: #C9D6E8; }

.dest-card:hover::after,
.dest-card:focus-visible::after { width: 32px; }

/* ---- News carousel ---- */

.news { padding: 72px 0 88px; }

.news-carousel-wrap {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.news-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.news-track::-webkit-scrollbar { display: none; }

.news-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 220px;
}

.news-image { aspect-ratio: 4 / 3; margin-bottom: 16px; }

.news-date { font-size: 13px; color: var(--ink-soft); margin: 0 0 8px; }

.news-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--navy);
}

.news-excerpt { font-size: 14px; color: var(--ink-soft); margin: 0; }

.carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.carousel-arrow:hover { background: var(--navy); }
.carousel-arrow.prev { left: 4px; }
.carousel-arrow.next { right: 4px; }

.news-cta-wrap { text-align: center; margin-top: 40px; }

.news-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 12px 32px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.news-cta:hover { background: var(--navy); }

/* ---- Footer ---- */

.site-footer { background: var(--panel); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 32px 48px;
}

.footer-col h4 {
  font-size: 15px;
  color: var(--blue);
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.footer-col a:hover { color: var(--red); }

.brand-tile {
  background: var(--navy);
  padding: 24px;
  max-width: 220px;
}

.brand-tile .wordmark { color: #fff; margin: 0 0 10px; }
.brand-tile .wordmark span { color: #C9D2DF; }

.brand-tagline {
  color: #C9D2DF;
  font-size: 13px;
  margin: 0;
}

.footer-base { background: var(--navy); color: #C9D2DF; }

.footer-base-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 16px 32px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 16px;
}

.footer-base-top a:hover { color: #fff; }

.footer-base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  font-size: 13px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #C9D2DF; }
.footer-social a:hover { color: #fff; }

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .dest-card.dest-featured { grid-column: span 2; grid-row: span 1; }
  .dest-featured .dest-content { padding: 28px 24px; }
  .dest-featured h3 { font-size: 20px; }
  .news-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .utility-links { display: none; }

  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 32px 24px;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .dest-card.dest-featured { grid-column: span 1; }
  .news-card { flex: 0 0 85%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .dest-card { opacity: 1 !important; transform: none !important; }
}
