:root {
  --brand-primary: #c75b12;
  --brand-primary-dark: #a3471d;
  --brand-accent: #e8a23a;
  --surface-sand: #f2e3c6;
  --surface-main: #faf7f2;
  --surface-warm: #f6efe4;
  --text-main: #2b2b2b;
  --text-deep: #3a1f0f;
  --text-muted: #6a5b52;
  --pink-muted: #d98c6a;
  --white: #ffffff;
  --shadow-soft: 0 12px 34px rgba(58, 31, 15, 0.1);
  --shadow-strong: 0 20px 60px rgba(58, 31, 15, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(232, 162, 58, 0.22), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, var(--surface-main) 48%, #f7efe4 100%);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--text-deep);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-deep);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-main);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid rgba(58, 31, 15, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--text-deep);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: var(--white);
  font-size: 0.85rem;
}

.brand-text {
  font-size: 0.98rem;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-weight: 700;
}

.top-nav a {
  color: var(--text-muted);
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text-deep);
}

.nav-cta {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--text-deep);
  color: var(--white) !important;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 31, 15, 0.18) 0%, rgba(58, 31, 15, 0.58) 52%, rgba(58, 31, 15, 0.82) 100%),
    radial-gradient(circle at 70% 24%, rgba(232, 162, 58, 0.48), transparent 28%);
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 3.5rem 0 3rem;
}

.hero-copy {
  color: var(--white);
}

.hero-copy h1,
.hero-copy p,
.hero-copy strong,
.hero-copy span {
  color: var(--white);
}

.hero-lead {
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 1.5rem 0 0;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 34rem;
}

.hero-points li::before {
  content: "•";
  color: var(--brand-accent);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(58, 31, 15, 0.18);
  color: var(--text-deep);
}

.button-block {
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.hero-trust div,
.hero-card,
.trust-card,
.feature-card,
.comparison-card,
.timing-card,
.meeting-card,
.include-card,
.review-card,
.planning-card,
.widget-shell,
.story-pullquote {
  backdrop-filter: blur(10px);
}

.hero-trust div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-trust strong {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.hero-trust span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.92);
  box-shadow: var(--shadow-strong);
}

.hero-widget {
  display: grid;
  gap: 1rem;
}

.hero-widget-shell {
  padding: 0.35rem;
  border-radius: calc(var(--radius-lg) - 8px);
  background: linear-gradient(180deg, rgba(232, 162, 58, 0.1), rgba(58, 31, 15, 0.03));
  border: 1px solid rgba(58, 31, 15, 0.08);
}

.card-kicker {
  margin-bottom: 0.6rem;
  color: var(--brand-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.stat-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.stat-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(58, 31, 15, 0.08);
}

.stat-list dt {
  color: var(--text-muted);
  font-weight: 700;
}

.stat-list dd {
  margin: 0;
  font-weight: 800;
  color: var(--text-deep);
  text-align: right;
}

.hero-card-note {
  color: var(--text-muted);
}

.hero-feature-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-feature-thumb {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(58, 31, 15, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-feature-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-feature-thumb strong {
  display: block;
  color: var(--text-deep);
  line-height: 1.2;
}

.hero-card-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.section {
  padding: 4.5rem 0;
}

.section-sand {
  background:
    linear-gradient(180deg, rgba(232, 162, 58, 0.12) 0%, rgba(242, 227, 198, 0.58) 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(232, 162, 58, 0.18), transparent 28%),
    linear-gradient(180deg, #432110 0%, #2f190d 100%);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark span {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.trust-grid,
.feature-grid,
.timing-grid,
.include-grid,
.review-grid,
.planning-grid {
  display: grid;
  gap: 1rem;
}

.trust-card,
.feature-card,
.timing-card,
.include-card,
.review-card,
.planning-card,
.meeting-card,
.widget-shell {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.trust-card p,
.feature-card p,
.timing-card p,
.include-card p,
.planning-card p,
.meeting-card p {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.story-grid,
.itinerary-grid,
.availability-grid,
.footer-grid,
.footer-meta,
.comparison-grid {
  display: grid;
  gap: 1.25rem;
}

.story-pullquote {
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
}

.story-pullquote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.015em;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
}

.story-pullquote span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78vw, 88vw);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}

.gallery-card {
  scroll-snap-align: start;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card-large img {
  aspect-ratio: 5 / 4;
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.2rem;
  color: var(--text-muted);
}

.comparison-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.comparison-card-featured {
  background: linear-gradient(180deg, rgba(232, 162, 58, 0.22), rgba(255, 255, 255, 0.92));
}

.comparison-card ul,
.include-card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.comparison-card li,
.include-card li {
  display: flex;
  gap: 0.7rem;
}

.comparison-card li::before,
.include-card li::before {
  content: "✓";
  color: var(--brand-primary);
  font-weight: 800;
}

.itinerary-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: itinerary;
}

.itinerary-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1.2rem 1.2rem 1.2rem 4.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.itinerary-list li::before {
  counter-increment: itinerary;
  content: counter(itinerary);
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--text-deep);
  color: var(--white);
  font-weight: 800;
}

.itinerary-list strong {
  color: var(--text-deep);
}

.itinerary-list span {
  color: var(--text-muted);
}

.stars {
  color: var(--brand-accent);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-card p {
  margin: 0.7rem 0 1rem;
  color: var(--text-deep);
}

.review-card span {
  color: var(--text-muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  padding: 1.2rem 3.8rem 1.2rem 1.2rem;
  background: transparent;
  color: var(--text-deep);
  font-weight: 800;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--brand-primary);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-muted);
}

.availability-section {
  padding-bottom: 5.2rem;
}

.availability-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.availability-points span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(232, 162, 58, 0.18);
  color: var(--text-deep);
  font-weight: 800;
}

.widget-shell {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 228, 0.92));
}

.site-footer {
  padding: 2.8rem 0 2rem;
  background: #26140b;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer p,
.site-footer a {
  color: inherit;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-accent);
}

.footer-meta {
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta .button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.footer-brand {
  margin-bottom: 1rem;
}

.error-page {
  min-height: 100vh;
}

.error-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.error-shell {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.error-shell .button-secondary {
  background: rgba(58, 31, 15, 0.06);
  border-color: rgba(58, 31, 15, 0.12);
  color: var(--text-deep);
}

@media (min-width: 720px) {
  .top-nav {
    display: flex;
  }

  .trust-grid,
  .feature-grid,
  .timing-grid,
  .planning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-strip {
    grid-auto-columns: minmax(30rem, 34rem);
  }

  .footer-meta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 960px) {
  .hero-grid,
  .story-grid,
  .itinerary-grid,
  .availability-grid,
  .footer-grid,
  .comparison-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .hero-grid {
    gap: 2rem;
    padding: 5rem 0 4rem;
  }

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

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

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

  .gallery-strip {
    grid-auto-columns: minmax(24rem, 27rem);
  }
}

.tour-cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.tour-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(58, 31, 15, 0.06);
}

.tour-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tour-card-chip,
.tour-card-rank {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card-chip {
  background: var(--text-deep);
  color: var(--white);
  align-self: flex-start;
}

.tour-card-rank {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
  color: var(--white);
}


.tour-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.3rem 1.3rem 1.5rem;
  flex: 1;
}

.tour-card-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.tour-card-provider {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tour-card-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
  margin: 0.2rem 0 0;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(232, 162, 58, 0.1);
}

.tour-card-meta li {
  display: flex;
  flex-direction: column;
}

.tour-card-meta strong {
  color: var(--text-deep);
  font-weight: 800;
  font-size: 0.95rem;
}

.tour-card-meta span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.tour-card-abstract {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tour-card-widget {
  margin-top: auto;
  padding-top: 0.6rem;
}

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

@media (min-width: 1060px) {
  .tour-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.fast-facts-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.fast-facts-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(58, 31, 15, 0.06);
}

.fast-facts-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--text-main);
}

.fast-facts-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-weight: 800;
}

.fast-facts-list strong {
  color: var(--text-deep);
}

.mistakes-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  counter-reset: mistakes;
}

.mistakes-list li {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--brand-primary);
}

.mistakes-list h3 {
  margin-bottom: 0.45rem;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-deep);
}

.mistakes-list p {
  margin: 0;
  color: var(--text-muted);
}

.verified-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.12);
  color: #1f6b28;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 0.08em;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quick-facts-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.quick-facts {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(58, 31, 15, 0.06);
}

.quick-facts > div {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(58, 31, 15, 0.08);
}

.quick-facts > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quick-facts dt {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--text-main);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 560px;
}

.data-table caption {
  text-align: left;
  padding: 1rem 1rem 0.3rem;
  color: var(--text-muted);
  font-weight: 700;
}

.data-table th,
.data-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(58, 31, 15, 0.08);
}

.data-table thead th {
  background: rgba(232, 162, 58, 0.18);
  color: var(--text-deep);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.data-table tbody th {
  background: rgba(58, 31, 15, 0.04);
  color: var(--text-deep);
  font-weight: 700;
  width: 28%;
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.meeting-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.meeting-wrap {
  display: grid;
  gap: 1.25rem;
}

.meeting-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.meeting-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.respect-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.respect-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.respect-list li::before {
  content: "•";
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  color: var(--brand-primary);
  font-size: 1.6rem;
  line-height: 1;
}

.respect-list strong {
  color: var(--text-deep);
}

.respect-note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.faq-list details.faq-item {
  padding: 0;
}

.faq-list details.faq-item summary {
  list-style: none;
  padding: 1.2rem 3.8rem 1.2rem 1.2rem;
  color: var(--text-deep);
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.faq-list details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-list details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--brand-primary);
}

.faq-list details.faq-item[open] summary::after {
  content: "−";
}

.faq-list details.faq-item .faq-answer {
  max-height: none;
  overflow: visible;
}

.faq-list details.faq-item .faq-answer p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-muted);
  margin: 0;
}

.last-updated {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-sources h3 {
  color: var(--white);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-sources ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-sources a {
  color: var(--brand-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-sources a:hover,
.footer-sources a:focus-visible {
  color: var(--white);
}

.sources-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.author-byline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.author-byline time {
  font-weight: 700;
  color: var(--brand-accent);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (max-width: 719px) {
  .brand-text {
    font-size: 0.9rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .quick-facts > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

}
