/* Destiny Center Safaris — static rebuild
   Tokens named after the Elementor "Default Kit" Global Colors/Fonts panel,
   so anyone comparing the two sees the same words. */

@import url('../fonts/fonts.css');

:root {
  /* System colours — from Elementor Site Settings (Default Kit, post #15) */
  --primary:   #080A0A;   /* near-black body/heading ink */
  --secondary: #080A0A;   /* headings */
  --tertiary:  #F18F24;   /* brand orange — logo sunset, accents, CTAs */
  --text:      #585C63;   /* body copy grey */
  --lighter:   #969BA1;   /* muted meta text */
  --dark:      #000000;   /* footer / topbar */
  --border:    #EAEAEA;

  /* Derived — not in the panel, needed for hover/surfaces */
  --tertiary-dark: #d97b12;
  --surface:    #F5F8FF;
  --surface-2:  #F7F7F8;
  --white:      #FFFFFF;
  --shadow:     0 8px 24px rgba(8, 10, 10, 0.08);
  --shadow-lg:  0 16px 40px rgba(8, 10, 10, 0.14);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shell: 1240px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--secondary); font-weight: 600; margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--tertiary);
  outline-offset: 2px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--tertiary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); }
.btn-accent { background: var(--tertiary); color: var(--white); }
.btn-accent:hover { background: var(--tertiary-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}
.link-arrow .ic {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.link-arrow:hover .ic { background: var(--tertiary); }
.link-arrow .ic svg { width: 12px; height: 12px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--dark);
  color: var(--white);
}
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  font-size: 13px;
}
.topbar__social {
  display: flex;
  gap: 10px;
}
.topbar__social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: inline-flex; align-items: center; justify-content: center;
}
.topbar__social svg { width: 14px; height: 14px; }
.topbar__contact { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__contact svg { width: 14px; height: 14px; }

.masthead {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.masthead .shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.masthead__call {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--primary);
  white-space: nowrap;
}
.masthead__call svg { width: 18px; height: 18px; color: var(--tertiary); flex-shrink: 0; }
.masthead__logo { justify-self: center; }
.masthead__logo img { height: 76px; width: auto; }
.masthead__search { justify-self: end; width: 100%; max-width: 240px; }
.searchform { display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.searchform input {
  border: 0; padding: 10px 16px; font-family: inherit; font-size: 14px; flex: 1; min-width: 0; background: transparent;
}
.searchform input:focus { outline: none; }
.searchform button {
  background: var(--primary); color: var(--white); border: 0; width: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.searchform button svg { width: 16px; height: 16px; }

.mainnav { background: var(--white); }
.mainnav .shell { display: flex; align-items: center; justify-content: center; }
.mainnav__list { display: flex; gap: 40px; padding: 16px 0; }
.mainnav__list a {
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--primary);
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.mainnav__list a:hover,
.mainnav__list a[aria-current="page"] { border-color: var(--tertiary); color: var(--tertiary); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .masthead .shell { grid-template-columns: auto 1fr auto; }
  .masthead__call span { display: none; }
  .masthead__search { display: none; }
  .nav-toggle { display: block; }
  .mainnav { border-top: 1px solid var(--border); }
  .mainnav .shell { justify-content: flex-start; }
  .mainnav__list {
    flex-direction: column; gap: 0; width: 100%; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .mainnav__list.is-open { max-height: 400px; }
  .mainnav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
}

/* ---------- Page banner (interior pages) ---------- */
.pagebanner {
  position: relative;
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  color: var(--white);
}
.pagebanner::before {
  content: ""; position: absolute; inset: 0; background: rgba(8,10,10,.45);
}
.pagebanner h1 { position: relative; font-size: 42px; color: var(--white); margin: 0; }
.breadcrumbs { position: relative; margin-top: 10px; font-size: 13px; display: flex; gap: 8px; justify-content: center; }
.breadcrumbs a { opacity: .85; }
.breadcrumbs span { opacity: .6; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; height: 560px; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,10,.15) 0%, rgba(8,10,10,.55) 100%); }
.hero__content {
  position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 20px;
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 600; color: var(--tertiary); margin-bottom: 14px; }
.hero__content h1 { color: var(--white); font-size: 52px; max-width: 780px; margin-bottom: 16px; }
.hero__content p { max-width: 560px; font-size: 17px; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 620px) {
  .hero { height: 480px; }
  .hero__content h1 { font-size: 34px; }
}

/* ---------- Search / filter widget ---------- */
.searchbar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
  position: relative;
  margin-top: -64px;
  z-index: 5;
}
.searchbar__field { display: flex; flex-direction: column; gap: 6px; }
.searchbar__field label { font-size: 12px; color: var(--lighter); display: flex; align-items: center; gap: 6px; }
.searchbar__field label svg { width: 14px; height: 14px; }
.searchbar__field select,
.searchbar__field input {
  border: 0; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--primary); padding: 0; background: transparent;
}
.searchbar__field select:focus, .searchbar__field input:focus { outline: none; }
.searchbar .btn { height: 48px; }

@media (max-width: 1000px) {
  .searchbar { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
}
@media (max-width: 600px) {
  .searchbar { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--surface { background: var(--surface-2); }
.section__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; gap: 20px; flex-wrap: wrap;
}
.section__head h2 { font-size: 30px; margin: 0; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tertiary); margin-bottom: 10px;
}

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .tour-grid, .tour-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tour-grid, .tour-grid--2 { grid-template-columns: 1fr; } }

.tour-card {
  position: relative;  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
  height: 100%;
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tour-card__img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.tour-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tour-card__price-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--white); color: var(--primary); font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.tour-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-card__loc { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--lighter); }
.tour-card__loc svg { width: 13px; height: 13px; }
.tour-card__body h3 { font-size: 17px; margin: 0; }
.tour-card__body h3 a::after { content: ""; position: absolute; inset: 0; }
.tour-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed var(--border); padding-top: 14px; margin-top: auto;
}
.tour-card__from { font-size: 12px; color: var(--lighter); }
.tour-card__from strong { display: block; font-size: 16px; color: var(--primary); }
.tour-card__days { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); }
.tour-card__days svg { width: 14px; height: 14px; }
.tour-card__foot { position: relative; padding: 14px 20px 20px; }

/* ---------- Testimonials ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.review-card__stars { color: var(--tertiary); margin-bottom: 14px; letter-spacing: 2px; }
.review-card h3 { font-size: 17px; }
.review-card p { color: var(--text); font-size: 14.5px; }
.review-card__by { font-weight: 600; color: var(--primary); font-size: 14px; margin-top: 14px; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); position: relative; }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__cat { color: var(--tertiary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h3 { font-size: 18px; margin: 10px 0; }
.blog-card h3 a::after { content: ""; position: absolute; inset: 0; }
.blog-card__meta { font-size: 12px; color: var(--lighter); margin-top: 14px; }

/* ---------- Stat row (about) ---------- */
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
.stat-row__item strong { display: block; font-size: 30px; color: var(--primary); }
.stat-row__item span { font-size: 13px; color: var(--lighter); }

/* ---------- Two column layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split__imgpair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split__imgpair img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.split__imgpair .is-tall { aspect-ratio: 3/4.6; }

/* ---------- Icon feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { text-align: center; padding: 10px; }
.feature-card__ic {
  width: 62px; height: 62px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  color: var(--tertiary);
}
.feature-card__ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 16px; }
.feature-card p { font-size: 14px; }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,10,0) 40%, rgba(8,10,10,.8) 100%); }
.dest-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--white); }
.dest-card__count { font-size: 12px; background: var(--tertiary); display: inline-block; padding: 4px 12px; border-radius: 999px; font-weight: 700; margin-bottom: 10px; }
.dest-card h3 { color: var(--white); font-size: 24px; font-style: italic; margin-bottom: 12px; }
.dest-card--soon { filter: grayscale(.4); }
.dest-card--soon .dest-card__count { background: var(--lighter); }

/* ---------- Tour detail page ---------- */
.tour-hero { position: relative; height: 420px; background-size: cover; background-position: center; }
.tour-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,10,.1), rgba(8,10,10,.7)); }
.tour-hero__body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 40px; color: var(--white); }
.tour-hero__loc { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 10px; }
.tour-hero__loc svg { width: 16px; height: 16px; color: var(--tertiary); }
.tour-hero h1 { color: var(--white); font-size: 36px; max-width: 800px; }

.tour-layout { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
@media (max-width: 980px) { .tour-layout { grid-template-columns: 1fr; } }

.tour-facts { display: flex; gap: 28px; flex-wrap: wrap; padding: 22px 0; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.tour-facts__item { display: flex; align-items: center; gap: 10px; }
.tour-facts__item svg { width: 20px; height: 20px; color: var(--tertiary); flex-shrink: 0; }
.tour-facts__item strong { display: block; font-size: 14px; color: var(--primary); }
.tour-facts__item span { font-size: 12px; color: var(--lighter); }

.tour-body h2 { font-size: 22px; margin-top: 40px; }
.tour-body h2:first-child { margin-top: 0; }
.tour-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0; }
@media (max-width: 640px) { .tour-gallery { grid-template-columns: 1fr 1fr; } }
.tour-gallery img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--surface); color: var(--primary); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 999px; }

.check-list li, .cross-list li {
  display: flex; gap: 10px; padding: 8px 0; font-size: 14.5px; align-items: flex-start;
}
.check-list svg { color: #1e9e5a; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cross-list svg { color: #c94b4b; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 640px) { .inc-exc { grid-template-columns: 1fr; } }

.itinerary { border-left: 2px solid var(--border); padding-left: 26px; margin-top: 18px; }
.itinerary__day { position: relative; padding-bottom: 30px; }
.itinerary__day:last-child { padding-bottom: 0; }
.itinerary__day::before {
  content: ""; position: absolute; left: -32px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--tertiary); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--tertiary);
}
.itinerary__day h4 { font-size: 15px; margin-bottom: 6px; color: var(--primary); }
.itinerary__day p { font-size: 14px; margin: 0; }

.booking-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: sticky; top: 20px;
  box-shadow: var(--shadow);
}
.booking-card__price { font-size: 13px; color: var(--lighter); }
.booking-card__price strong { display: block; font-size: 30px; color: var(--primary); }
.booking-card hr { border: 0; border-top: 1px solid var(--border); margin: 18px 0; }
.booking-card dl { display: grid; grid-template-columns: 1fr auto; gap: 10px; font-size: 14px; margin: 0 0 18px; }
.booking-card dt { color: var(--lighter); }
.booking-card dd { margin: 0; font-weight: 600; color: var(--primary); text-align: right; }

.related-tours { margin-top: 20px; }

/* ---------- FAQ (native <details>) ---------- */
.faq-cats { display: grid; grid-template-columns: 1fr 300px; gap: 46px; align-items: start; }
@media (max-width: 900px) { .faq-cats { grid-template-columns: 1fr; } }
.faq-group h2 { font-size: 22px; margin-top: 40px; }
.faq-group h2:first-child { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--primary); font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; color: var(--tertiary); font-weight: 400; margin-left: 20px; flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 18px; font-size: 14.5px; margin: 0; }
.faq-aside { background: var(--surface); border-radius: var(--radius); padding: 24px; }
.faq-aside h3 { font-size: 15px; margin-bottom: 14px; }
.faq-aside ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.faq-aside ul li:last-child { border: 0; }
.faq-aside ul li a:hover { color: var(--tertiary); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; background: var(--surface-2); border-radius: var(--radius); padding: 20px;
}
.contact-card__ic {
  width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card__ic svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 15px; margin-bottom: 4px; }
.contact-card p { font-size: 14px; margin: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--primary); }
.field input, .field select, .field textarea {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-family: inherit; font-size: 14.5px; color: var(--primary); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tertiary); }
.form-status[role="status"]:empty { display: none; }
.form-status { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.form-status.is-ok { background: #e7f6ee; color: #1e6b3f; }
.form-status.is-err { background: #fdecec; color: #a12626; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 40px; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Generic content page ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 22px; margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15.5px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose ul li { padding: 3px 0; }
.legal-meta { color: var(--lighter); font-size: 13.5px; margin-bottom: 30px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--primary); color: var(--white); border-radius: var(--radius); padding: 56px 40px; text-align: center;
}
.cta-band h2 { color: var(--white); font-size: 28px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 520px; margin-inline: auto; }
.cta-band .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.cta-band .btn-outline:hover { border-color: var(--white); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer__top { padding: 64px 0 40px; }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; gap: 30px; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__col h4 {
  color: var(--white); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px;
}
.footer__col li { padding: 7px 0; font-size: 14px; }
.footer__col li a:hover { color: var(--tertiary); }
.footer__contact p { font-size: 13px; margin-bottom: 4px; }
.footer__contact .big { color: var(--white); font-size: 20px; font-weight: 700; margin: 8px 0; }
.footer__partners { border-top: 1px solid rgba(255,255,255,.1); padding: 34px 0; text-align: center; }
.footer__partners h4 { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.footer__partners-row { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.footer__partners-row img { height: 46px; width: auto; background: var(--white); padding: 8px 14px; border-radius: 8px; }
.footer__partners-row img.is-transparent { height: 24px; background: none; padding: 0; border-radius: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom .shell { display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: var(--white); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

[hidden] { display: none !important; }
