:root {
  --navy: #062d5f;
  --navy-2: #021d42;
  --blue: #0077b6;
  --sky: #0d8bd3;
  --gold: #f7b521;
  --gold-deep: #e9a20c;
  --sand: #f6f0e5;
  --cream: #fffaf1;
  --ink: #152438;
  --muted: #5d6a78;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(2, 29, 66, .14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 29, 66, .96);
  color: white;
  backdrop-filter: blur(8px);
}
.nav-shell {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand span { font-size: .96rem; white-space: nowrap; }
.menu-toggle {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 9px 14px;
  color: white;
  background: transparent;
  cursor: pointer;
}
.main-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  padding: 10px 18px 20px;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.12);
}
.main-nav.is-open { display: grid; }
.main-nav a {
  text-decoration: none;
  padding: 12px 8px;
  font-weight: 700;
}
.nav-ask {
  color: var(--navy-2) !important;
  background: var(--gold);
  border-radius: 999px;
  text-align: center;
  margin-top: 6px;
}

.hero-desktop { display: none; }
.hero-mobile {
  position: relative;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,79,149,.12), rgba(2,29,66,.32)),
    url('/assets/images/hero-mobile.webp') center / cover no-repeat;
  color: white;
}
.hero-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,55,120,.10), rgba(1,20,48,.70) 78%, rgba(1,20,48,.88));
}
.hero-mobile-content {
  position: relative;
  z-index: 1;
  width: min(100% - 28px, 560px);
  margin-inline: auto;
  min-height: calc(100svh - 68px);
  padding: 34px 0 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo { width: clamp(150px, 46vw, 210px); border-radius: 50%; box-shadow: 0 0 26px rgba(255,255,255,.42); }
.eyebrow {
  margin: 20px 0 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .92rem;
}
.hero-mobile h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.35rem, 12vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.yellow-strip {
  display: inline-block;
  margin: 14px 0 8px;
  padding: 7px 13px;
  background: var(--gold);
  color: var(--navy-2);
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
.hero-script {
  margin: 8px 0 0;
  max-width: 330px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.15;
}
.hero-small {
  margin: 14px 0 0;
  max-width: 340px;
  color: #ffe5a2;
  font-weight: 750;
}
.hero-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.hero-action {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: left;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(2,29,66,.72);
  backdrop-filter: blur(8px);
  font-weight: 900;
  line-height: 1.1;
}
.action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-2);
  background: var(--gold);
  font-size: .9rem;
  font-weight: 950;
}

.section { padding: 64px 0; }
.section-shell { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.section-shell.narrow { max-width: 780px; text-align: center; }
.section-kicker {
  margin: 0 0 7px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  font-weight: 900;
  font-size: .78rem;
}
.section-kicker.gold { color: var(--gold); }
.section h2, .page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 8vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.section p { color: var(--muted); }
.section-soft { background: var(--sand); }
.section-dark { background: var(--navy-2); color: white; }
.section-dark p { color: #d5dfed; }
.section-lead { max-width: 720px; }
.section-heading-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.text-link { color: var(--navy); font-weight: 850; text-decoration: none; }

.card-grid { display: grid; gap: 16px; }
.place-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0c7bb5, #073866);
  box-shadow: var(--shadow);
}
.place-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .5;
}
.card-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,45,.92), rgba(0,20,45,.06) 65%); }
.card-copy { position: absolute; left: 20px; right: 20px; bottom: 20px; color: white; }
.card-copy span { color: #ffd66e; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.card-copy h3 { margin: 5px 0 3px; font-size: 1.8rem; }
.card-copy p { margin: 0; color: #eef5fb; }

.split-section { display: grid; gap: 24px; }
.feature-panel {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.feature-panel ul { margin: 12px 0 0; padding-left: 20px; }
.feature-panel li { margin: 10px 0; }
.feature-label { color: var(--gold) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }

.primary-button, .secondary-button, .ask-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.primary-button { background: var(--gold); color: var(--navy-2); }
.secondary-button { background: white; color: var(--navy-2); }

.mini-grid { display: grid; gap: 12px; margin-top: 26px; }
.mini-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.mini-grid span { color: var(--gold); font-weight: 950; }
.mini-grid h3 { margin: 8px 0 4px; }

.tours-callout { background: var(--cream); }
.tour-shell { display: grid; gap: 18px; }

.ask-section { background: linear-gradient(135deg, #087fb7, #064574 55%, #032a55); color: white; }
.ask-shell { display: grid; gap: 18px; align-items: center; }
.ask-shell p { color: #dceef8; }
.ask-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-2);
  font-size: 2rem;
  font-weight: 950;
}
.ask-button { margin: 0; background: var(--gold); color: var(--navy-2); }

.page-hero {
  padding: 72px 0 64px;
  color: white;
  background: linear-gradient(135deg, #0b86c5, #063a70 70%, #021d42);
}
.page-hero p { max-width: 720px; color: #e0edf7; }
.tours-page-hero { background: linear-gradient(135deg, #074a78, #021d42); }
.empty-state {
  padding: 32px;
  border: 1px solid #dbe4ec;
  border-radius: var(--radius);
  background: #f8fbfd;
}
.empty-state h2 { font-size: 1.6rem; }

.site-footer { background: #01172f; color: white; }
.footer-shell {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  padding: 48px 0 32px;
  display: grid;
  gap: 32px;
}
.footer-logo { width: 84px; border-radius: 50%; }
.footer-tagline { color: #c9d7e6; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #d8e3ed; text-decoration: none; }
.social-block p { margin-top: 0; color: #c9d7e6; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 900;
}
.footer-bottom {
  padding: 16px;
  text-align: center;
  color: #92a6bb;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
}

@media (min-width: 720px) {
  .section { padding: 84px 0; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .section-heading-row { flex-direction: row; align-items: end; justify-content: space-between; }
  .split-section { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
  .tour-shell { grid-template-columns: 1fr auto; align-items: center; }
  .ask-shell { grid-template-columns: auto 1fr auto; }
  .footer-shell { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 940px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .main-nav a { padding: 9px 10px; font-size: .92rem; }
  .nav-ask { margin: 0 0 0 4px; padding-inline: 16px !important; }
  .hero-mobile { display: none; }
  .hero-desktop { display: block; background: #036da5; }
  .desktop-hero-wrap { position: relative; width: 100%; max-width: 1672px; margin: 0 auto; }
  .desktop-hero-wrap > img { width: 100%; height: auto; }
  .hero-hotspot {
    position: absolute;
    top: 52.5%;
    height: 13.5%;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: background .2s ease, border-color .2s ease;
  }
  .hero-hotspot:hover,
  .hero-hotspot:focus-visible {
    background: rgba(247,181,33,.12);
    border-color: rgba(255,221,118,.9);
    outline: none;
  }
  .hotspot-1 { left: 10.5%; width: 17.8%; }
  .hotspot-2 { left: 30%; width: 16.5%; }
  .hotspot-3 { left: 48.7%; width: 18.3%; }
  .hotspot-4 { left: 69.2%; width: 21.2%; }
}

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

/* V2 refinements: mobile-first hero, destination photography and touch states */
.place-card { text-decoration: none; color: inherit; }
.place-card:focus-visible,
.place-card:hover { outline: 3px solid var(--gold); outline-offset: 3px; }
.place-card::before { opacity: .72; transition: transform .35s ease, opacity .35s ease; }
.place-card:hover::before { transform: scale(1.035); opacity: .82; }
.card-bathsheba::before {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a7/Bathsheba_Barbados.JPG');
  background-position: 38% center;
}
.card-bridgetown::before {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/56/The_Careenage_of_the_Constitution_River_003.jpg');
  background-position: center;
}
.card-speightstown::before {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/59/Speightstownbds.JPG');
  background-position: center;
  image-rendering: auto;
}

@media (max-width: 939px) {
  .hero-mobile {
    min-height: auto;
    background: linear-gradient(180deg, #087fc1 0%, #006aa8 44%, #02466d 73%, #021d42 100%);
    isolation: isolate;
  }
  .hero-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url('/assets/images/hero-desktop.webp');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 100% center;
    opacity: .38;
    filter: blur(1.2px) saturate(.95);
    transform: scale(1.015);
  }
  .hero-mobile-overlay {
    background:
      linear-gradient(180deg, rgba(0,58,115,.28) 0%, rgba(1,42,83,.52) 54%, rgba(1,24,53,.94) 100%);
  }
  .hero-mobile-content {
    min-height: auto;
    padding: 24px 0 22px;
  }
  .hero-logo {
    width: clamp(118px, 34vw, 155px);
    box-shadow: 0 0 24px rgba(255,255,255,.35);
  }
  .eyebrow { margin-top: 15px; font-size: .78rem; }
  .hero-mobile h1 { font-size: clamp(2.4rem, 12.8vw, 4rem); }
  .yellow-strip { margin-top: 10px; font-size: .79rem; padding: 6px 10px; }
  .hero-script { font-size: clamp(1.28rem, 6vw, 1.6rem); max-width: 300px; }
  .hero-small { margin-top: 9px; font-size: .9rem; max-width: 310px; }
  .hero-actions { margin-top: 22px; padding-top: 0; gap: 9px; }
  .hero-action {
    min-height: 78px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(1,29,66,.82);
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    font-size: .9rem;
  }
  .hero-action:active { transform: translateY(1px); }
  .hero-action:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
  .action-icon { width: 38px; height: 38px; flex-basis: 38px; font-size: 1rem; }
}

@media (max-width: 390px) {
  .nav-shell { width: min(100% - 20px, var(--max)); }
  .brand span { font-size: .9rem; }
  .brand img { width: 42px; height: 42px; }
  .hero-actions { grid-template-columns: 1fr 1fr; }
  .hero-action { font-size: .82rem; }
}


/* Meet a Local cards */
.local-preview {
  background: var(--cream);
}

.local-preview-heading {
  margin-bottom: 30px;
}

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

.local-card {
  display: block;
  min-width: 0;
  padding: 20px;
  border: 1px solid #dce4eb;
  border-radius: var(--radius);
  background: white;
  color: var(--navy-2);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.local-card:hover,
a.local-card:focus-visible {
  transform: translateY(-3px);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.local-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.preview-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef3f7;
  color: #627386;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.local-price {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.local-avatar {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #ffd970);
  color: var(--navy-2);
  font-size: 2rem;
  font-weight: 950;
}

.local-card-body h3 {
  margin: 3px 0 9px;
  font-size: 1.55rem;
}

.local-card-body p {
  margin-top: 0;
}

.local-card-body .local-area {
  margin: 0;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.local-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f3f6f8;
  color: #41566b;
  font-size: .75rem;
  font-weight: 800;
}

.local-preview-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #d7e0e7;
}

.local-preview-footer p {
  max-width: 680px;
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .local-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .local-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Local Experience cards */
.experience-heading-link {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.experience-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  color: var(--navy-2);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  transform: translateY(-3px);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.experience-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.experience-card-body h3 {
  margin: 4px 0 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.experience-card-body p {
  margin-top: 0;
  color: #536678;
}

.experience-type {
  margin: 0 0 5px !important;
  color: var(--blue) !important;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.experience-duration {
  margin-top: auto;
  padding-top: 12px;
  color: var(--navy-2);
  font-size: .8rem;
  font-weight: 900;
}

.experience-main-button {
  margin-top: 28px;
}

.experiences-page-hero {
  background: linear-gradient(135deg, #074a78, #021d42);
}

.experience-detail-grid {
  display: grid;
  gap: 28px;
}

.experience-detail-card {
  overflow: hidden;
  border: 1px solid #dce4eb;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.experience-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.experience-detail-copy {
  padding: 24px;
}

.experience-detail-copy h2 {
  margin: 5px 0 14px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.experience-detail-copy p {
  color: var(--muted);
}

.experience-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.experience-facts span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef3f7;
  color: #42576b;
  font-size: .78rem;
  font-weight: 850;
}

.experience-status {
  margin: 20px 0 0 !important;
  padding-top: 16px;
  border-top: 1px solid #e1e7ec;
  color: var(--blue) !important;
  font-weight: 900;
}

.image-credit-section {
  padding: 0 0 42px;
  background: var(--sand);
}

.image-credits {
  color: #607080;
  font-size: .78rem;
}

.image-credits summary {
  cursor: pointer;
  font-weight: 850;
}

.image-credits a {
  color: var(--navy);
}

@media (min-width: 720px) {
  .experience-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-detail-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
  }

  .experience-detail-card:nth-child(even) {
    grid-template-columns: 1.1fr .9fr;
  }

  .experience-detail-card:nth-child(even) img {
    order: 2;
  }

  .experience-detail-card img {
    height: 100%;
    min-height: 390px;
  }
}

@media (min-width: 1060px) {
  .experience-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Off the Beaten Path cards */
.offbeat-preview {
  background: #fff;
}

.offbeat-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.offbeat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce4eb;
  border-radius: var(--radius);
  background: white;
  color: var(--navy-2);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.offbeat-card:hover,
.offbeat-card:focus-visible {
  transform: translateY(-3px);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.offbeat-card-body {
  padding: 20px;
}

.offbeat-card-body h3 {
  margin: 4px 0 4px;
  font-size: 1.55rem;
}

.offbeat-card-body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-2);
  font-size: .92rem;
}

.offbeat-card-body p {
  margin-top: 0;
  color: #536678;
}

.offbeat-type {
  margin: 0 0 5px !important;
  color: var(--blue) !important;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.offbeat-main-button {
  margin-top: 28px;
}

.offbeat-page-hero {
  background: linear-gradient(135deg, #123f36, #071f28);
}

.offbeat-detail-grid {
  display: grid;
  gap: 28px;
}

.offbeat-detail-card {
  overflow: hidden;
  border: 1px solid #dce4eb;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.offbeat-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.offbeat-detail-copy {
  padding: 24px;
}

.offbeat-detail-copy h2 {
  margin: 5px 0 2px;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
}

.offbeat-detail-copy h3 {
  margin: 0 0 15px;
  color: #536678;
  font-size: 1rem;
  font-weight: 850;
}

.offbeat-detail-copy p {
  color: var(--muted);
}

.offbeat-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.offbeat-facts span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef3f7;
  color: #42576b;
  font-size: .78rem;
  font-weight: 850;
}

@media (min-width: 720px) {
  .offbeat-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offbeat-detail-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
  }

  .offbeat-detail-card:nth-child(even) {
    grid-template-columns: 1.1fr .9fr;
  }

  .offbeat-detail-card:nth-child(even) img {
    order: 2;
  }

  .offbeat-detail-card img {
    height: 100%;
    min-height: 390px;
  }
}

@media (min-width: 1060px) {
  .offbeat-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* ==========================================================
   MUST SEE HOMEPAGE WORLD HERITAGE FEATURE
   ========================================================== */

.historic-home-feature {
  background: var(--navy-2);
  color: #fff;
}

.historic-home-feature-shell {
  display: grid;
  gap: 0;
  padding-top: 54px;
  padding-bottom: 54px;
}

.historic-home-feature-image {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  min-height: 300px;
}

.historic-home-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.historic-home-feature-copy {
  padding: 30px 26px;
  background: rgba(255,255,255,.055);
  border-radius: 0 0 var(--radius) var(--radius);
}

.historic-home-feature-copy h2 {
  margin: 4px 0 14px;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.historic-home-feature-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: #dbe7f2;
  font-size: 1.05rem;
}

.historic-home-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.historic-home-feature-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 17px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.historic-home-feature-button.primary {
  background: var(--gold);
  color: var(--navy-2);
}

.historic-home-feature-button.secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.historic-home-feature-button:hover,
.historic-home-feature-button:focus-visible {
  transform: translateY(-1px);
}

@media (min-width: 850px) {

  .historic-home-feature-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: stretch;
  }

  .historic-home-feature-image {
    border-radius: var(--radius) 0 0 var(--radius);
    min-height: 420px;
  }

  .historic-home-feature-image img {
    min-height: 420px;
  }

  .historic-home-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    border-radius: 0 var(--radius) var(--radius) 0;
  }
}



/* ==========================================================
   MUST SEE TWO CARD GRID
   ========================================================== */

@media (min-width: 760px) {
  .featured-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-inline: auto;
  }
}

