:root {
  --ctd-navy-900: #0b2341;
  --ctd-teal-700: #0f7c82;
  --ctd-gold-400: #d6a643;
  --ctd-sand-100: #f3e7d3;
  --ctd-foam-50: #f9fafb;
  --ctd-ink-900: #102a43;
  --ctd-muted-600: #64748b;
  --ctd-border-200: #d8e2ea;
  --ctd-green-600: #2e8b57;
  --ctd-danger-700: #b42318;
  --ctd-white: #ffffff;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1180px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --ink: var(--ctd-ink-900);
  --muted: var(--ctd-muted-600);
  --soft-muted: #7a8aa0;
  --line: var(--ctd-border-200);
  --paper: var(--ctd-foam-50);
  --panel: var(--ctd-white);
  --teal: var(--ctd-teal-700);
  --teal-dark: #0a6268;
  --coral: var(--ctd-teal-700);
  --gold: var(--ctd-gold-400);
  --sky: #e8f5f4;
  --blue: #174a7c;
  --navy: var(--ctd-navy-900);
  --shadow: 0 18px 42px rgba(11, 35, 65, 0.13);
  --shadow-soft: 0 10px 28px rgba(11, 35, 65, 0.08);
  --shadow-card: 0 16px 40px rgba(11, 35, 65, 0.1);
  color-scheme: light;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--ctd-foam-50) 0%, #f4f9f8 42%, var(--ctd-white) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 226, 234, 0.84);
  box-shadow: 0 10px 30px rgba(11, 35, 65, 0.045);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.deal-meta,
.deal-details,
.tag-row,
.deal-footer,
.form-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
}

.brand-mark-img {
  display: block;
  flex: 0 0 auto;
  width: clamp(46px, 4.5vw, 54px);
  height: clamp(46px, 4.5vw, 54px);
  filter: drop-shadow(0 9px 18px rgba(11, 35, 65, 0.12));
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.08;
}

.brand-name {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  gap: 4px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-action {
  background: rgba(15, 124, 130, 0.1);
  color: var(--teal-dark);
}

.nav-action {
  padding-inline: 18px;
  background: #e7f5f4;
  color: var(--teal-dark);
}

main {
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 226, 232, 0.72);
  color: var(--soft-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--teal-dark);
}

.breadcrumb span:last-child {
  color: var(--ink);
}

.policy-body > .breadcrumb {
  margin: -18px 0 28px;
  padding: 0 0 14px;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 700px;
  padding: clamp(82px, 9vw, 124px) clamp(18px, 4vw, 52px) 52px;
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.94) 0%, rgba(11, 35, 65, 0.72) 44%, rgba(15, 124, 130, 0.16) 100%),
    linear-gradient(180deg, rgba(11, 35, 65, 0.18), rgba(11, 35, 65, 0.38)),
    url("images/hero-grand-cayman.jpg") center 46%/cover;
  color: white;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, rgba(245, 248, 249, 0) 0%, rgba(245, 248, 249, 0.92) 82%, var(--paper) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero .hero-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #e8fffb;
  backdrop-filter: blur(10px);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.65vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
  line-height: 1.62;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 18px;
}

.trust-points span {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--ctd-teal-700);
  color: white;
  box-shadow: 0 14px 28px rgba(15, 124, 130, 0.22);
}

.primary:hover {
  background: #0a6268;
}

.secondary {
  background: white;
  color: var(--ctd-navy-900);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 24px rgba(8, 47, 66, 0.14);
}

.ghost {
  background: var(--ctd-navy-900);
  color: white;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(5, 28, 38, 0.22);
  max-width: 980px;
  margin-top: clamp(30px, 5vw, 64px);
}

.hero-panel div {
  min-height: 112px;
  padding: 18px 20px;
  background: rgba(5, 37, 49, 0.58);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-panel div:last-child {
  border-right: 0;
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 800;
}

.metric-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.destination-showcase,
.travel-types,
.why-use,
.faq-section,
.process-section,
.status-section,
.guide-category,
.guide-hub-intro,
.homepage-guides {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 52px) clamp(34px, 5vw, 54px);
}

.destination-showcase {
  background: var(--paper);
}

.section-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr;
  gap: 16px;
}

.destination-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 280px;
  overflow: hidden;
  padding: 18px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
  box-shadow: var(--shadow-card);
}

.destination-tile::before,
.destination-tile::after {
  position: absolute;
  inset: 0;
  content: "";
}

.destination-tile::before {
  background: center/cover;
  transition: transform 220ms ease;
}

.destination-tile::after {
  background: linear-gradient(180deg, rgba(8, 47, 66, 0.08), rgba(8, 47, 66, 0.88));
}

.destination-tile:hover::before {
  transform: scale(1.04);
}

.destination-tile:focus-visible,
.type-card:focus-visible,
.text-link:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.source-list a:focus-visible,
.segment-card:focus-visible,
.faq-grid summary:focus-visible,
.image-credit:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(214, 166, 67, 0.86);
  outline-offset: 3px;
}

.destination-tile span,
.destination-tile strong {
  position: relative;
  z-index: 1;
}

.destination-tile span {
  margin-bottom: 8px;
  color: #bff5ef;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-tile strong {
  max-width: 280px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.destination-tile.cayman::before {
  background-image: url("images/cayman-seven-mile-beach.jpg");
}

.destination-tile.jamaica::before {
  background-image: url("images/jamaica-doctors-cave.jpg");
}

.destination-tile.stlucia::before {
  background-image: url("images/st-lucia-pitons.jpg");
}

.destination-tile.barbados::before {
  background-image: url("images/barbados-dover-beach.jpg");
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
  align-items: end;
  position: relative;
  z-index: 2;
  margin: -42px clamp(18px, 4vw, 52px) 0;
  padding: clamp(16px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 226, 232, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 32, 43, 0.1);
  backdrop-filter: blur(14px);
}

.toolbar-heading h2 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.toolbar .button {
  align-self: end;
}

.toolbar-heading .eyebrow {
  margin-bottom: 6px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: #536172;
  font-size: 0.82rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd9e1;
  border-radius: 8px;
  background: #fbfefe;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

select:hover,
input:hover,
textarea:hover {
  border-color: #aebfc9;
  background: white;
}

textarea {
  resize: vertical;
}

.results-band,
.newsletter,
.sources-strip,
.form-intro,
.form-shell {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 52px);
}

.results-band {
  padding-top: clamp(48px, 6vw, 78px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.answer-summary {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
}

.results-summary {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.results-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.results-summary p:last-child {
  font-size: 0.86rem;
  font-weight: 700;
}

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

.load-more-deals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 760px;
  margin: 30px auto 0;
  padding: 16px 18px;
  background: #f7fbfb;
  border: 1px solid rgba(216, 226, 234, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.load-more-deals[hidden] {
  display: none;
}

.load-more-deals p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.load-more-deals .button {
  flex: 0 0 auto;
}

.deal-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 226, 232, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(8, 47, 66, 0.15);
}

.deal-image {
  position: relative;
}

.deal-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #e9f1f3;
  object-fit: cover;
}

.image-credit {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 26px;
  height: 26px;
  max-width: calc(100% - 16px);
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: rgba(8, 28, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: white;
  font-size: 0;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.28;
  transition:
    width 160ms ease,
    opacity 160ms ease,
    font-size 160ms ease,
    padding 160ms ease;
}

.image-credit::before {
  content: "i";
  font-size: 0.78rem;
}

.deal-image:hover .image-credit,
.image-credit:focus {
  display: block;
  width: auto;
  max-width: calc(100% - 16px);
  height: auto;
  padding: 5px 7px;
  background: rgba(8, 28, 38, 0.76);
  border-radius: 6px;
  font-size: 0.67rem;
  opacity: 0.88;
}

.deal-image:hover .image-credit::before,
.image-credit:focus::before {
  content: "";
}

.deal-card-body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.deal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.deal-meta,
.deal-details,
.deal-footer {
  justify-content: space-between;
  gap: 10px;
}

.deal-meta {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-badge,
.demo-badge {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
}

.source-badge {
  background: #fbf4e3;
  border: 1px solid rgba(214, 166, 67, 0.56);
  color: #604815;
}

.demo-badge {
  background: #f9fafb;
  border: 1px solid var(--ctd-border-200);
  color: var(--ctd-muted-600);
}

.deal-details {
  display: grid;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.deal-details span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.tag-row {
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  padding: 5px 8px;
  background: #edf7f5;
  border-radius: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.deal-footer {
  align-items: end;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
}

.deadline {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  background: var(--teal-dark);
  border-radius: 8px;
  color: white;
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: ">";
}

.sources-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(229, 245, 244, 0.78)),
    url("images/dominica-trafalgar-falls.jpg") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sources-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.sources-strip .text-link {
  margin-top: 16px;
}

.empty-state {
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 245, 244, 0.72));
  border: 1px dashed #b7cbd4;
  border-radius: 8px;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.empty-state h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.travel-types {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.type-grid,
.why-grid,
.process-grid,
.status-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.type-card,
.why-grid article,
.process-grid article,
.status-grid article,
.faq-grid details {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.type-card {
  min-height: 210px;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 245, 244, 0.86));
}

.type-card span,
.why-grid span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--teal-dark);
  border-radius: 8px;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.type-card p,
.why-grid p,
.submit-cta p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.why-use {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  background: var(--paper);
}

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

.why-grid article {
  box-shadow: none;
}

.why-grid span {
  background: var(--ctd-gold-400);
  color: var(--ctd-navy-900);
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  box-shadow: 0 14px 32px rgba(19, 32, 43, 0.07);
}

.process-grid article::after {
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(0, 137, 123, 0.1);
  border-radius: 999px;
}

.process-grid span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--navy);
  border-radius: 8px;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.status-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px) clamp(18px, 4vw, 52px);
  background: var(--ctd-sand-100);
  border-top: 1px solid rgba(214, 166, 67, 0.42);
  border-bottom: 1px solid rgba(214, 166, 67, 0.42);
}

.status-callout p {
  max-width: 760px;
  margin-bottom: 0;
  color: #52616f;
  line-height: 1.65;
}

.status-section {
  background: white;
}

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

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-grid article {
  min-height: 220px;
  box-shadow: 0 14px 32px rgba(19, 32, 43, 0.07);
}

.status-grid span {
  width: fit-content;
  padding: 6px 9px;
  background: var(--teal-dark);
  border-radius: 8px;
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-grid p,
.checklist-grid li {
  color: var(--muted);
  line-height: 1.58;
}

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

.checklist-grid > div {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checklist-grid ul {
  margin: 0;
  padding-left: 20px;
}

.submit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 52px);
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(120deg, rgba(8, 47, 66, 0.96), rgba(0, 92, 97, 0.88)),
    url("images/st-lucia-pitons.jpg") center/cover;
  border-radius: 8px;
  color: white;
  box-shadow: var(--shadow);
}

.submit-cta .eyebrow,
.submit-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.submit-cta h2 {
  max-width: 760px;
}

.submit-cta p {
  max-width: 760px;
}

.faq-section {
  background: white;
}

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

.faq-grid details {
  align-content: start;
  box-shadow: none;
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.97), rgba(15, 124, 130, 0.88)),
    url("images/jamaica-doctors-cave.jpg") center/cover;
  color: white;
}

.newsletter .eyebrow {
  color: #bff5ef;
}

.newsletter label {
  color: rgba(255, 255, 255, 0.88);
}

.newsletter p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.newsletter h2 {
  max-width: 720px;
}

.signup-form {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(5, 28, 38, 0.18);
  backdrop-filter: blur(10px);
}

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

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.85rem;
}

.form-intro {
  background: var(--sky);
}

.form-intro p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.form-shell {
  padding-top: 30px;
}

.deal-form {
  max-width: 980px;
  padding: clamp(18px, 3vw, 32px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.source-list {
  display: grid;
  max-width: 860px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19, 32, 43, 0.08);
}

.source-list a {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 800;
}

.source-list a:last-child {
  border-bottom: 0;
}

.page-hero {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.9), rgba(0, 92, 97, 0.72)),
    url("images/cayman-seven-mile-beach.jpg") center/cover;
  color: white;
}

.deals-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.92), rgba(0, 92, 97, 0.72)),
    url("images/barbados-dover-beach.jpg") center/cover;
}

.destinations-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.9), rgba(0, 92, 97, 0.68)),
    url("images/cayman-seven-mile-beach.jpg") center/cover;
}

.travel-types-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.92), rgba(0, 92, 97, 0.7)),
    url("images/jamaica-doctors-cave.jpg") center/cover;
}

.source-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.92), rgba(0, 92, 97, 0.7)),
    url("images/dominica-trafalgar-falls.jpg") center/cover;
}

.status-hero {
  background:
    linear-gradient(90deg, rgba(8, 47, 66, 0.92), rgba(0, 92, 97, 0.72)),
    url("images/cayman-seven-mile-beach.jpg") center/cover;
}

.guides-hero {
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.94), rgba(15, 124, 130, 0.72)),
    url("images/barbados-dover-beach.jpg") center/cover;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
}

.policy-body {
  max-width: 880px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 52px);
}

.policy-body h2 {
  margin-top: 34px;
}

.policy-body p,
.policy-body li {
  color: #334155;
  line-height: 1.75;
}

.guide-hub-intro,
.homepage-guides {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  background: var(--paper);
}

.guide-hub-intro p,
.homepage-guides p,
.article-content p,
.article-content li,
.article-toc a {
  color: var(--muted);
  line-height: 1.7;
}

.guide-category:nth-of-type(even) {
  background: #ffffff;
}

.guide-category:nth-of-type(odd) {
  background: var(--paper);
}

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

.guide-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.guide-card span,
.article-meta {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-card h3 {
  font-size: 1.22rem;
}

.guide-card p,
.guide-card small {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-card small {
  font-weight: 700;
}

.article-layout {
  background: white;
}

.article-hero {
  padding: clamp(50px, 8vw, 92px) clamp(18px, 4vw, 52px);
  background: var(--ctd-sand-100);
}

.article-hero h1 {
  max-width: 980px;
}

.short-answer {
  max-width: 900px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(214, 166, 67, 0.46);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.short-answer h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 52px);
}

.article-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-toc h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.article-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.article-content {
  display: grid;
  gap: 24px;
}

.article-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.article-intro {
  color: var(--ink) !important;
  font-size: 1.12rem;
}

.trust-note,
.takeaway-box {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.takeaway-box {
  background: #fbf4e3;
  border-color: rgba(214, 166, 67, 0.46);
}

.takeaway-box ul {
  columns: 2;
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-newsletter {
  min-height: auto;
  padding: 28px;
  border-radius: 8px;
}

.answer-card,
.disclosure-panel {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto var(--space-6);
  padding: clamp(22px, 4vw, 34px);
  background: var(--ctd-white);
  border: 1px solid rgba(216, 226, 234, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.answer-card h2,
.disclosure-panel h2 {
  margin-top: 0;
}

.deal-detail-shell,
.page-empty {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.deal-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: clamp(38px, 7vw, 78px) 0 var(--space-7);
}

.deal-detail-hero h1 {
  margin-bottom: 18px;
}

.deal-detail-hero p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.deal-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.deal-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reviewed-badge {
  background: #edf8f0;
  color: var(--ctd-green-600);
}

.expired-badge {
  background: #fff2ef;
  color: var(--ctd-danger-700);
}

.sponsored-badge {
  background: #fff8e6;
  color: #6c4b00;
}

.deal-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-6);
  align-items: start;
}

.deal-detail-main,
.deal-detail-aside,
.related-section,
.segment-section,
.partner-options {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto var(--space-7);
}

.deal-detail-main {
  width: auto;
  padding: clamp(24px, 4vw, 38px);
  background: var(--ctd-white);
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.deal-detail-main h2 {
  margin-top: 30px;
}

.deal-detail-main h2:first-child {
  margin-top: 0;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.detail-list div {
  padding: 14px;
  background: #f5faf9;
  border: 1px solid rgba(216, 226, 234, 0.86);
  border-radius: var(--radius-sm);
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 6px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.deal-detail-aside {
  position: sticky;
  top: 104px;
  width: auto;
}

.price-panel {
  padding: 22px;
  background: var(--ctd-sand-100);
  border: 1px solid rgba(214, 166, 67, 0.34);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.price-panel .button {
  width: 100%;
  margin-top: 12px;
}

.price-panel .form-note {
  margin-top: 16px;
}

.related-section {
  margin-top: var(--space-7);
}

.segment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 22px;
  color: var(--navy);
  font-weight: 800;
  background: var(--ctd-white);
  border: 1px solid rgba(216, 226, 234, 0.92);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.segment-card::after {
  content: "->";
  color: var(--teal);
}

.segment-card:hover {
  border-color: rgba(15, 124, 130, 0.46);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

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

.label-explainer-grid article {
  padding: 18px;
  background: #f8fbfb;
  border: 1px solid rgba(216, 226, 234, 0.9);
  border-radius: var(--radius-md);
}

.label-explainer-grid p {
  margin-bottom: 0;
}

.article-faq {
  padding: 0;
}

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

.full {
  grid-column: 1 / -1;
}

.form-actions {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 10px;
  padding: 14px;
  background: #f7fbfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.checkbox-field label {
  color: #334155;
  line-height: 1.5;
}

.site-footer {
  justify-content: space-between;
  gap: 28px;
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--ctd-navy-900);
  border-top: 1px solid rgba(216, 226, 234, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
  max-width: 320px;
}

.footer-brand,
.footer-logo {
  display: block;
}

.footer-logo {
  width: min(220px, 64vw);
  height: auto;
}

.footer-brand-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--ctd-gold-400);
}

@media (max-width: 980px) {
  .hero,
  .newsletter,
  .sources-strip,
  .why-use,
  .status-callout,
  .guide-hub-intro,
  .homepage-guides,
  .article-shell,
  .deal-detail-hero,
  .deal-detail-grid {
    grid-template-columns: 1fr;
  }

  .deal-detail-aside {
    position: static;
  }

  .toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .toolbar-heading {
    grid-column: 1 / -1;
  }

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

  .toolbar .button {
    width: 100%;
  }

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

  .guide-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .type-grid,
  .why-grid,
  .process-grid,
  .status-grid,
  .checklist-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .submit-cta,
  .status-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-toc {
    position: static;
  }

  .site-header {
    padding-inline: clamp(16px, 3vw, 32px);
  }

  .brand-tagline {
    display: none;
  }

  .site-nav a {
    padding-inline: 10px;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section-heading,
  .site-footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 14px;
    position: static;
  }

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

  .brand-mark-img {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.03rem;
    line-height: 1.1;
  }

  .brand-tagline {
    display: none;
  }

  .results-summary {
    justify-items: start;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    background: #f1f8f7;
    border: 1px solid #d9e9e7;
    text-align: center;
  }

  .site-nav .nav-action {
    grid-column: 1 / -1;
    background: var(--teal-dark);
    color: white;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.75rem);
  }

  .hero-panel,
  .toolbar,
  .load-more-deals,
  .deal-grid,
  .guide-card-grid,
  .destination-grid,
  .type-grid,
  .why-grid,
  .process-grid,
  .status-grid,
  .checklist-grid,
  .faq-grid,
  .form-grid,
  .signup-row,
  .detail-list,
  .label-explainer-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    margin-top: -18px;
  }

  .load-more-deals {
    align-items: stretch;
    margin-top: 22px;
  }

  .destination-tile {
    min-height: 230px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .button {
    width: 100%;
  }

  .takeaway-box ul {
    columns: 1;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 10px;
  }

  .brand-name {
    max-width: 13ch;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .deal-card:hover,
  .destination-tile:hover::before {
    transform: none;
  }
}
