:root {
  --camel: #ae7f4d;
  --olive: #867d2c;
  --brown: #54441b;
  --sand: #dcaa68;
  --russet: #5f310e;
  --ink: #22190b;
  --muted: #756b5d;
  --line: #e9ddcd;
  --cream: #fbf7ef;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(54, 37, 15, 0.12);
  --radius: 8px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fffaf3;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

/* ── Page loader ───────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #1e1509;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__ring {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #c9972c;
  border-radius: 50%;
  animation: loader-spin 0.75s linear infinite;
}
.page-loader__text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--russet);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: linear-gradient(90deg, var(--brown), #3c2c0e);
  color: var(--white);
  font-size: 15px;
}

.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar__email i {
  color: var(--sand);
  font-size: 16px;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.topbar__social a:hover {
  background: var(--sand);
  color: #2d1c04;
  transform: translateY(-2px);
}

.topbar__social a.social-ta {
  background: #fff;
}

.topbar__social a.social-ta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.topbar__social a.social-ta:hover {
  background: var(--sand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(84, 68, 27, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 104px;
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 300px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 16px;
  font-weight: 600;
  color: #201916;
}

.primary-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--sand);
  transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.primary-nav a.is-active {
  color: var(--russet);
}

.primary-nav .material-symbols-rounded {
  font-size: 21px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle .material-symbols-rounded {
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(95, 49, 14, 0.18);
}

.btn--gold {
  background: var(--sand);
  color: #291d08;
}

.btn--primary {
  background: linear-gradient(90deg, #a44a00, var(--russet));
  color: var(--white);
}

.btn--light {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: rgba(84, 68, 27, 0.28);
}

.nav-cta {
  min-width: 178px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__slides,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1400ms ease, transform 7000ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__wash {
  background:
    linear-gradient(90deg, rgba(255, 247, 235, 0.96) 0%, rgba(255, 247, 235, 0.82) 23%, rgba(255, 247, 235, 0.08) 58%),
    linear-gradient(0deg, rgba(41, 26, 7, 0.28), rgba(41, 26, 7, 0));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker img {
  width: 30px;
  height: 24px;
  object-fit: contain;
}

.hero h1 {
  margin: 0;
  max-width: 610px;
  font-family: var(--serif);
  font-size: 82px;
  line-height: 0.95;
  color: #2e210b;
}

.hero__sub {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.2;
  color: #9b6c1e;
}

.hero__rule {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 350px;
  margin-bottom: 18px;
}

.hero__rule span {
  height: 1px;
  flex: 1;
  background: var(--sand);
}

.hero__rule img {
  width: 38px;
  height: 24px;
  object-fit: contain;
}

.hero__text {
  max-width: 430px;
  margin: 0 0 24px;
  color: #2a2a2a;
  font-size: 19px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.section-pad {
  padding: 86px 0;
}

.routes-section {
  padding: 32px 0 18px;
  background: #fffaf3;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading h2,
.intro__copy h2,
.feature-band__content h2,
.planning h2,
.safety h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.08;
  color: var(--ink);
}

.section-heading p:not(.section-kicker),
.planning__lead,
.faq__grid > div > p,
.contact__copy > p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--russet);
  font-weight: 800;
  white-space: nowrap;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(84, 68, 27, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(84, 68, 27, 0.08);
}

.route-card__media {
  position: relative;
  aspect-ratio: 1.78;
  overflow: hidden;
}

.route-card__media img,
.package-card img,
.intro__panel > img,
.feature-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card__icon {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--camel);
  color: var(--white);
  font-size: 32px;
  box-shadow: 0 8px 18px rgba(54, 37, 15, 0.22);
}

.route-card__body {
  padding: 28px 16px 16px;
}

.route-card h3,
.package-card h3,
.feature-list h3,
.steps h3,
.story-grid h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
}

.route-card h3 {
  font-size: 24px;
}

.route-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 8px;
  color: #302a22;
  font-size: 14px;
  font-weight: 700;
}

.route-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.route-card__meta .material-symbols-rounded {
  color: var(--olive);
  font-size: 20px;
}

.route-card p {
  min-height: 66px;
  margin: 0 0 16px;
  color: #29271f;
  line-height: 1.35;
}

.route-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 5px;
  background: linear-gradient(90deg, #a44a00, #8e3c00);
  color: var(--white);
  font-weight: 800;
}

.route-card--olive .route-card__button,
.route-card--olive .route-card__icon {
  background: var(--olive);
}

.route-card--sand .route-card__button,
.route-card--sand .route-card__icon {
  background: var(--sand);
  color: #2d1c04;
}

.route-card--dark .route-card__button,
.route-card--dark .route-card__icon {
  background: var(--russet);
}

.trust-strip {
  background: linear-gradient(90deg, var(--brown), #34290d);
  color: var(--white);
}

.trust-strip__grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip__grid > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: center;
  padding-inline: 30px;
  border-right: 1px solid rgba(220, 170, 104, 0.5);
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip .material-symbols-rounded {
  grid-row: span 2;
  color: var(--sand);
  font-size: 42px;
}

.trust-strip strong {
  font-size: 16px;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.intro {
  background: var(--white);
}

.intro__grid,
.feature-band__grid,
.planning__grid,
.safety__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.intro__copy p:not(.section-kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.intro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.intro__stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
}

.intro__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
  color: var(--russet);
}

.intro__stats span {
  color: var(--muted);
  font-weight: 700;
}

.intro__panel {
  position: relative;
  min-height: 470px;
}

.intro__panel > img {
  height: 470px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(32, 25, 13, 0.18);
}

.guide-card .material-symbols-rounded {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--olive);
  border-radius: 999px;
  font-size: 28px;
}

.guide-card strong {
  display: block;
  margin-bottom: 4px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.route-compare {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.98)),
    radial-gradient(circle at 85% 15%, rgba(220, 170, 104, 0.18), transparent 34%);
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(84, 68, 27, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 2fr 0.9fr;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row--head {
  background: var(--brown);
  color: var(--white);
  font-weight: 800;
}

.compare-row span:first-child {
  font-weight: 800;
}

.feature-band {
  padding: 74px 0;
  background: var(--brown);
  color: var(--white);
}

.feature-band__grid {
  gap: 52px;
}

.feature-band__image {
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-band__content h2,
.feature-band__content .section-kicker {
  color: var(--white);
}

.feature-band__content .section-kicker {
  color: var(--sand);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.feature-list .material-symbols-rounded {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(220, 170, 104, 0.42);
  border-radius: 999px;
  color: var(--sand);
  font-size: 30px;
}

.feature-list h3 {
  color: var(--white);
  font-size: 25px;
}

.feature-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.packages {
  background: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.package-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(84, 68, 27, 0.1);
  background: #fffaf3;
  box-shadow: 0 14px 34px rgba(84, 68, 27, 0.08);
}

.package-card--wide {
  grid-column: auto;
}

.package-card img {
  height: 335px;
}

.package-card div {
  padding: 24px;
}

.package-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--russet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 31px;
}

.package-card p {
  color: var(--muted);
}

.package-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--russet);
  font-weight: 900;
}

.planning {
  background: #fff7eb;
}

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

.steps article {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(84, 68, 27, 0.07);
}

.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--sand);
}

.steps h3 {
  font-size: 24px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.discount-band {
  background:
    linear-gradient(90deg, rgba(84, 68, 27, 0.94), rgba(95, 49, 14, 0.88)),
    url("assets/images/2014-08-19%2010.13.36.jpg") center / cover;
  color: var(--white);
}

.discount-band__inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.discount-band p {
  margin: 0 0 6px;
  font-size: 20px;
}

.discount-band strong {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.safety {
  background: var(--white);
}

.safety__content p {
  color: var(--muted);
  font-size: 18px;
}

.safety__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.safety__cards > div {
  min-height: 246px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff7eb;
  border: 1px solid var(--line);
}

.safety__cards .material-symbols-rounded {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: 28px;
}

.safety__cards strong {
  display: block;
  font-size: 18px;
}

.safety__cards p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonials {
  background: #f7f0e5;
}

.testimonial-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid figure,
.story-grid article {
  margin: 0;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(84, 68, 27, 0.07);
}

.testimonial-grid blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.32;
}

.testimonial-grid figcaption {
  font-weight: 900;
}

.testimonial-grid figcaption span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
  overflow: hidden;
}

.accordion__item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion__panel {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.stories {
  background: #fff7eb;
}

.story-grid span {
  color: var(--russet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-grid h3 {
  margin-top: 12px;
  font-size: 26px;
}

.story-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  background: var(--brown);
  color: var(--white);
}

.contact .section-kicker,
.contact h2 {
  color: var(--white);
}

.contact__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-methods .material-symbols-rounded {
  color: var(--sand);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf3;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(220, 170, 104, 0.2);
}

.footer {
  background: #241a08;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 0 0;
}

/* Social top bar */
.footer__social-top {
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}
.footer__social-top__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__social-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-right: 4px;
}
.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.footer__social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #2d1c04;
  transform: translateY(-3px);
}
.footer__social-icons a img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: filter 220ms, opacity 220ms;
}
.footer__social-icons a:hover img { filter: brightness(0); opacity: 1; }

/* Footer main grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 48px 0 36px;
}

.footer__logo {
  width: 230px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  padding: 8px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 14px;
  transition: color 180ms;
}
.footer a:hover { color: var(--gold); }

.footer__brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.65); margin: 0; }

/* Footer gallery thumbnail grid */
.footer__gallery-col { overflow: hidden; }
.footer__thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}
.footer__thumb-grid a { display: block; overflow: hidden; aspect-ratio: 1; }
.footer__thumb-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 200ms ease, transform 300ms ease;
}
.footer__thumb-grid a:hover img { opacity: 1; transform: scale(1.08); }
.footer__gallery-link {
  display: inline-block;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0 !important;
}
.footer__gallery-link:hover { text-decoration: underline; }

/* Footer bottom bar — 3-column: left | center | right */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}
.footer__brela { opacity: 0.60; flex: 1; }
.footer__copy { opacity: 0.80; flex: 2; text-align: center; }
.footer__domain { opacity: 0.60; flex: 1; text-align: right; }

@media (max-width: 1320px) {
  .topbar__contact {
    gap: 18px;
  }

  .nav-shell {
    grid-template-columns: 260px 1fr auto;
    gap: 18px;
  }

  .brand img {
    width: 245px;
  }

  .primary-nav {
    gap: 17px;
    font-size: 15px;
  }

  .nav-cta {
    min-width: 164px;
    padding-inline: 18px;
  }
}

@media (max-width: 1220px) {
  .topbar__contact {
    gap: 18px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .route-grid,
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div {
    border-bottom: 1px solid rgba(220, 170, 104, 0.3);
  }

  .package-grid,
  .steps,
  .safety__cards {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 1480px);
  }

  .topbar {
    font-size: 13px;
  }

  .topbar__inner {
    gap: 10px;
  }

  .topbar__email {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar__social a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .nav-shell {
    min-height: 84px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

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

  .brand img {
    width: min(245px, 64vw);
    height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
  }

  .primary-nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(255, 247, 235, 0.97) 0%, rgba(255, 247, 235, 0.82) 48%, rgba(255, 247, 235, 0.22) 100%),
      linear-gradient(0deg, rgba(41, 26, 7, 0.24), rgba(41, 26, 7, 0));
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero__sub {
    font-size: 26px;
  }

  .section-heading--row,
  .intro__grid,
  .feature-band__grid,
  .planning__grid,
  .safety__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__gallery-col { grid-column: 1 / -1; }
  .footer__thumb-grid { grid-template-columns: repeat(6, 1fr); }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .footer__brela, .footer__copy, .footer__domain { flex: unset; text-align: center; }

  .section-heading--row {
    align-items: start;
  }

  .intro__grid,
  .feature-band__grid,
  .planning__grid,
  .safety__grid,
  .contact__grid,
  .faq__grid {
    gap: 34px;
  }

  .feature-band__image {
    height: 380px;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .compare-row--head {
    display: none;
  }

  .testimonial-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 60px 0;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar__contact {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .brand img {
    width: 210px;
  }

  .hero {
    min-height: 640px;
    align-items: end;
  }

  .hero__slide {
    background-position: 61% center;
  }

  .hero__content {
    padding-block: 48px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 47px;
  }

  .hero__sub {
    max-width: 340px;
    font-size: 22px;
  }

  .hero__rule {
    width: 250px;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__actions,
  .discount-band__inner,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-heading h2,
  .intro__copy h2,
  .feature-band__content h2,
  .planning h2,
  .safety h2,
  .faq h2,
  .contact h2 {
    font-size: 35px;
  }

  .route-grid,
  .trust-strip__grid,
  .intro__stats {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div {
    padding: 20px 0;
    border-right: 0;
  }

  .route-card p {
    min-height: auto;
  }

  .intro__panel,
  .intro__panel > img {
    min-height: 360px;
    height: 360px;
  }

  .guide-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .feature-band__image {
    height: 300px;
  }

  .package-card img {
    height: 245px;
  }

  .discount-band strong {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* =========================================================
   Multi-page additions: dropdown nav, page hero, prose,
   itineraries, pricing, tables, gallery
   ========================================================= */

/* ---- Dropdown navigation ---- */
.primary-nav .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.primary-nav .nav-item > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.primary-nav .nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--sand);
  transition: width 180ms ease;
}

.primary-nav .nav-item > a:hover::after,
.primary-nav .nav-item.is-active > a::after {
  width: 100%;
}

.primary-nav .nav-item.is-active > a {
  color: var(--russet);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 244px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 44px rgba(54, 37, 15, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 60;
}

@media (min-width: 981px) {
  .nav-item.has-dropdown:hover .dropdown,
  .nav-item.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown li { margin: 0; }

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #2b2418;
  white-space: nowrap;
}

.dropdown a .material-symbols-rounded {
  font-size: 19px;
  color: var(--camel);
}

.dropdown a:hover,
.dropdown a.is-current {
  background: #fbf3e6;
  color: var(--russet);
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  background: var(--brown);
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 26, 8, 0.86), rgba(36, 26, 8, 0.5) 60%, rgba(36, 26, 8, 0.28));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 56px;
  color: var(--white);
}

.page-hero .eyebrow,
.page-hero .section-kicker { color: var(--sand); }

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.02;
  color: var(--white);
}

.page-hero p {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a { color: var(--sand); }
.breadcrumb span.sep { opacity: 0.6; }

/* ---- Prose / content typography ---- */
.prose h2 {
  margin: 38px 0 14px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.12;
  color: var(--ink);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin: 26px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--russet);
}

.prose p,
.prose li {
  color: #3a3326;
  font-size: 17px;
  line-height: 1.65;
}

.prose p { margin: 0 0 16px; }

.prose ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prose ul li {
  position: relative;
  padding-left: 30px;
}

.prose ul li::before {
  content: "check_circle";
  font-family: "Material Symbols Rounded";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--olive);
  font-size: 20px;
}

.prose a { color: var(--russet); font-weight: 700; text-decoration: underline; }

/* ---- Two-column split (content + image) ---- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.split--reverse .split__media { order: -1; }

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ---- Route quick-facts ---- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 8px;
}

.quick-facts > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(84, 68, 27, 0.07);
}

.quick-facts .material-symbols-rounded {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 999px;
  background: var(--camel);
  color: var(--white);
  font-size: 26px;
}

.quick-facts small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quick-facts strong {
  font-size: 18px;
  color: var(--ink);
}

/* ---- Included / Not included ---- */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.incl-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(84, 68, 27, 0.07);
}

.incl-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 22px;
}

.incl-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }

.incl-card li {
  position: relative;
  padding-left: 30px;
  color: #3a3326;
  line-height: 1.45;
}

.incl-card li::before {
  font-family: "Material Symbols Rounded";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.incl-card--yes li::before { content: "check_circle"; color: var(--olive); }
.incl-card--no li::before { content: "cancel"; color: #b25a2a; }

/* ---- Itinerary ---- */
.itinerary { display: grid; gap: 16px; }

.itin-day {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(84, 68, 27, 0.06);
}

.itin-day__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--camel), var(--russet));
  color: var(--white);
  text-align: center;
}

.itin-day__num small { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.itin-day__num strong { font-family: var(--serif); font-size: 34px; line-height: 1; }

.itin-day h4 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
}

.itin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.itin-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fbf3e6;
  color: #5a4a26;
  font-size: 12.5px;
  font-weight: 700;
}

.itin-meta .material-symbols-rounded { font-size: 16px; color: var(--olive); }

.itin-day p { margin: 0; color: #3a3326; line-height: 1.6; }

.itin-block { margin-bottom: 38px; }
.itin-block > h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

/* ---- Generic tables (dates, bus, swahili) ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(84, 68, 27, 0.07);
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

.data-table thead th {
  background: var(--brown);
  color: var(--white);
  font-weight: 800;
}

.data-table tbody tr:nth-child(even) { background: #fdf8f0; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table td .pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eef0d8;
  color: #5b5520;
  font-size: 12px;
  font-weight: 800;
}
.data-table td .pill--closed { background: #f3ddd0; color: #8a3c14; }

/* Two-column glossary (swahili) */
.glossary { columns: 2; column-gap: 32px; }
.glossary > h3 { column-span: all; }
.gloss-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  break-inside: avoid;
}
.gloss-row span:first-child { color: var(--muted); }
.gloss-row span:last-child { font-weight: 800; color: var(--russet); }

/* ---- Gallery ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(84, 68, 27, 0.1);
}
.gallery a { display: block; overflow: hidden; border-radius: var(--radius); }
.gallery a img { transition: transform 400ms ease; }
.gallery a:hover img { transform: scale(1.06); }

/* Full gallery page grid */
.gallery--full {
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 250ms;
  color: #fff; font-size: 28px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
@media (max-width: 900px) { .gallery--full { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery--full { grid-template-columns: repeat(2, 1fr); } }

/* ---- Info cards grid ---- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.info-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(84, 68, 27, 0.06);
}
.info-card .material-symbols-rounded {
  width: 48px; height: 48px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: 26px;
}
.info-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 22px; color: var(--ink); }
.info-card p { margin: 0; color: var(--muted); line-height: 1.55; }

/* ---- CTA strip ---- */
.cta-band {
  background: linear-gradient(90deg, rgba(84,68,27,0.95), rgba(95,49,14,0.9)),
    url("assets/images/2014-08-19%2010.13.36.jpg") center/cover;
  color: var(--white);
  text-align: center;
}
.cta-band__inner { padding: 64px 0; }
.cta-band h2 { font-family: var(--serif); font-size: 40px; margin: 0 0 10px; color: var(--white); }
.cta-band p { margin: 0 auto 26px; max-width: 600px; color: rgba(255,255,255,0.85); font-size: 18px; }
.cta-band .hero__actions { justify-content: center; }

.section-narrow { max-width: 1080px; }

/* ---- Contact modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 19, 6, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(18px) scale(0.98);
  transition: transform 260ms ease;
  text-align: center;
}

.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(84, 68, 27, 0.08);
  color: var(--brown);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease;
}
.modal__close:hover { background: rgba(84, 68, 27, 0.18); }

.modal__dialog h2 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}

.modal__sub { margin: 0 auto 18px; max-width: 320px; color: var(--muted); font-size: 14px; }

.modal__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.modal__method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.modal__method:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  box-shadow: 0 10px 20px rgba(84, 68, 27, 0.12);
}

.modal__method i,
.modal__method img {
  width: 26px;
  height: 26px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-size: 13px;
}

.modal__method--whatsapp i { background: #25d366; }
.modal__method--ta img { background: #fff; padding: 3px; border: 1px solid var(--line); object-fit: contain; }

.modal__cta { width: 100%; margin-top: 16px; }

/* ---- Custom scrollbars ---- */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--camel) #f1e6d3;
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #f1e6d3; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--camel), var(--russet));
  border-radius: 999px;
  border: 3px solid #f1e6d3;
}
::-webkit-scrollbar-thumb:hover { background: var(--russet); }

/* ---- Mobile navigation (drop-down drawer) ---- */
@media (max-width: 980px) {
  .primary-nav.is-open {
    flex-basis: 100%;
    order: 3;
    display: block;
    width: 100%;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 6px 0 14px;
    border-top: 1px solid var(--line);
  }

  .primary-nav.is-open .nav-item {
    position: static;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 6px;
    font-size: 16px;
  }

  .primary-nav.is-open .nav-item > a::after { display: none; }

  .primary-nav.is-open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 2px 0 10px;
    border: 0;
    border-radius: 0;
    background: #fbf3e6;
    box-shadow: none;
  }

  .primary-nav.is-open .nav-item.is-expanded .dropdown { display: block; }
  .primary-nav.is-open .nav-item.is-expanded > a .material-symbols-rounded { transform: rotate(180deg); }

  .primary-nav.is-open .dropdown a {
    white-space: normal;
    padding: 12px 16px;
    border-radius: 0;
  }
}

@media (max-width: 620px) {
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
    padding-block: 7px;
  }
  .topbar__email {
    font-size: 12px;
    min-width: 0;
    max-width: 100%;
  }
  .topbar__social { gap: 9px; flex: none; }
}

@media (max-width: 900px) {
  .page-hero h1 { font-size: 42px; }
  .split, .incl-grid, .info-cards { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .quick-facts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .glossary { columns: 1; }
  .itin-day { grid-template-columns: 64px 1fr; gap: 16px; padding: 18px; }
  .itin-day__num strong { font-size: 26px; }
  .data-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(84, 68, 27, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(84, 68, 27, 0.14); }
.blog-card__media { aspect-ratio: 1.6; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px; }
.blog-card__cat { color: var(--russet); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.2; color: var(--ink); }
.blog-card p { margin: 0; flex: 1; color: var(--muted); font-size: 15px; line-height: 1.5; }
.blog-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--muted);
}
.blog-card__foot .blog-card__link { color: var(--russet); font-weight: 800; }

.blog-meta {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-bottom: 6px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.blog-meta span { display: inline-flex; align-items: center; gap: 7px; }
.blog-meta .material-symbols-rounded { font-size: 18px; color: var(--sand); }

.blog-body .prose { max-width: 760px; }
.blog-share { display: flex; align-items: center; gap: 12px; margin: 30px 0; padding-top: 22px; border-top: 1px solid var(--line); }
.blog-share span { font-weight: 800; color: var(--ink); }
.blog-share a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--brown); color: var(--white); font-size: 15px;
  transition: background 160ms ease, transform 160ms ease;
}
.blog-share a:hover { background: var(--sand); color: #2d1c04; transform: translateY(-2px); }

@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }
