:root {
  --ink: #17211f;
  --muted: #5b6864;
  --paper: #fffaf1;
  --mist: #eef5f1;
  --sage: #2f6f58;
  --sage-dark: #1f4d40;
  --clay: #c96f4a;
  --gold: #d7a844;
  --indigo: #27345d;
  --white: #ffffff;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 20px 60px rgba(22, 31, 29, 0.16);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px max(20px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: rgba(18, 32, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 12px 40px rgba(21, 29, 27, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(14, 25, 23, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 13px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(47, 111, 88, 0.12);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--clay);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #b85e3b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  margin-top: -74px;
  padding: 146px 0 72px;
  color: var(--white);
  background-image: url("assets/consultation-hero.png");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #14211e;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 24, 21, 0.92) 0%, rgba(15, 37, 32, 0.76) 42%, rgba(15, 37, 32, 0.2) 78%),
    linear-gradient(180deg, rgba(9, 19, 17, 0.38), rgba(9, 19, 17, 0.1) 48%, rgba(9, 19, 17, 0.42));
}

.hero-content {
  max-width: 720px;
  margin-left: max(20px, calc((100% - 1120px) / 2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(3.15rem, 8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: 0 16px 34px rgba(201, 111, 74, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #b85e3b;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 38px 0 0;
}

.hero-metrics div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-metrics dt,
.hero-metrics dd {
  margin: 0;
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-metrics dd {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.confidence-band {
  color: var(--white);
  background: var(--sage-dark);
}

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

.confidence-grid p {
  min-height: 82px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

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

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

.offers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 48px;
  align-items: center;
}

.offers-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.offers-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.slideshow {
  display: grid;
  gap: 14px;
}

.slideshow-viewport {
  overflow: hidden;
  background: #17211f;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slideshow-track {
  display: flex;
  transition: transform 420ms ease;
}

.slide {
  flex: 0 0 100%;
  display: grid;
  min-height: 620px;
  max-height: 720px;
  place-items: center;
  margin: 0;
  padding: 16px;
  background: #17211f;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: 688px;
  object-fit: contain;
  border-radius: 6px;
}

.slideshow-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
}

.slide-arrow,
.slide-dot {
  cursor: pointer;
}

.slide-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--sage-dark);
  border: 0;
  border-radius: 6px;
  font-size: 2rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.slide-arrow:hover,
.slide-arrow:focus-visible {
  background: var(--clay);
  outline: none;
  transform: translateY(-1px);
}

.slide-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.slide-dot {
  width: 38px;
  height: 10px;
  background: rgba(31, 77, 64, 0.26);
  border: 0;
  border-radius: 999px;
  transition: background 160ms ease, width 160ms ease;
}

.slide-dot.is-active {
  width: 56px;
  background: var(--clay);
}

.slide-dot:focus-visible {
  outline: 3px solid rgba(47, 111, 88, 0.24);
  outline-offset: 3px;
}

.split-layout,
.pathway-shell,
.consultation-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: start;
}

.split-layout h2,
.section-heading h2,
.pathway-copy h2,
.consultation-copy h2,
.faq-layout h2,
.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.split-layout > p,
.pathway-copy p,
.consultation-copy p,
.testimonials-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-section {
  background: var(--mist);
}

.destinations-section {
  background: #f8efe2;
}

.destinations-layout {
  display: grid;
  gap: 8px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.destination-card {
  position: relative;
  min-height: 178px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(25, 38, 35, 0.1);
}

.destination-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -40px;
  width: 118px;
  height: 118px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.32;
}

.destination-card:nth-child(2),
.destination-card:nth-child(5) {
  background: var(--indigo);
}

.destination-card:nth-child(3),
.destination-card:nth-child(6) {
  background: var(--clay);
}

.destination-card span {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.15;
}

.destination-card .country-flag {
  flex: 0 0 auto;
  width: 34px;
  height: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 4px;
  box-shadow: 0 5px 14px rgba(8, 18, 16, 0.16);
}

.destination-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.48;
}

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

.service-card,
.quote-card,
.route-finder,
.contact-form,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(25, 38, 35, 0.08);
}

.service-card {
  min-height: 250px;
  padding: 24px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  margin-bottom: 34px;
  color: var(--sage-dark);
  background: rgba(47, 111, 88, 0.12);
  border-radius: 6px;
  font-weight: 900;
}

.service-card h3,
.route-panel h3,
.timeline-step h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.timeline-step p,
.route-panel p,
.faq-list p,
.quote-card p,
.footer-grid p {
  color: var(--muted);
}

.service-card p,
.timeline-step p,
.route-panel p {
  margin: 12px 0 0;
}

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

.route-finder {
  padding: 12px;
}

.route-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  background: var(--mist);
  border-radius: var(--radius);
}

.route-tab {
  min-height: 44px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.route-tab.is-active {
  color: var(--white);
  background: var(--sage);
}

.route-panel {
  padding: 26px 18px 18px;
}

.route-label {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--sage);
  border-bottom: 3px solid var(--sage);
  transform: rotate(-45deg);
}

.process-section {
  background: #f8efe2;
}

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

.timeline-step {
  min-height: 230px;
  padding: 24px;
}

.timeline-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--indigo);
  border-radius: 50%;
  font-weight: 900;
}

.results-section {
  color: var(--white);
  background: var(--indigo);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

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

.review-submit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 12, 28, 0.16);
}

.review-submit-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.review-submit-copy p:not(.section-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.review-form label,
.rating-field {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.rating-field {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
}

.rating-field legend {
  padding: 0;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.rating-options label {
  display: block;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options span {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: var(--sage-dark);
  background: rgba(47, 111, 88, 0.1);
  border: 1px solid rgba(47, 111, 88, 0.22);
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.rating-options input:checked + span {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.rating-options input:focus-visible + span {
  outline: 3px solid rgba(201, 111, 74, 0.22);
  outline-offset: 3px;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.review-form textarea {
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(47, 111, 88, 0.12);
}

.testimonials-heading .section-kicker,
.testimonials-heading h2,
.testimonials-heading > p {
  color: var(--white);
}

.testimonials-heading > p {
  opacity: 0.78;
}

.quote-card {
  padding: 24px;
  color: var(--ink);
}

.review-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 276px;
}

.review-highlight {
  background: #fff7e6;
}

.review-rating {
  justify-self: start;
  padding: 7px 10px;
  color: var(--sage-dark);
  background: rgba(47, 111, 88, 0.12);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
}

.quote-card p {
  margin: 0;
  font-weight: 850;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.consultation-section {
  background: var(--mist);
}

.consultation-copy .check-list {
  margin-top: 24px;
}

.contact-lines {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-lines strong {
  color: var(--sage-dark);
}

.contact-lines a {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--clay);
  outline: none;
}

.contact-lines span {
  min-width: 82px;
  color: var(--sage-dark);
  font-weight: 900;
}

.office-address {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-style: normal;
}

.office-address strong {
  color: var(--sage-dark);
}

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

.contact-form label,
.contact-form .field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.field {
  position: relative;
}

.field-label {
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.flag-select-button {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.flag-select {
  position: relative;
}

.flag-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.flag-select-button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.flag-select.is-open .flag-select-button::after {
  transform: translateY(2px) rotate(225deg);
}

.flag-select-value,
.flag-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.flag-select-value img,
.flag-select-option img {
  flex: 0 0 32px;
  width: 32px;
  height: 22px;
  object-fit: cover;
  border: 1px solid rgba(23, 33, 31, 0.14);
  border-radius: 4px;
}

.flag-select-value span,
.flag-select-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flag-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  max-height: 286px;
  overflow-y: auto;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flag-select-menu[hidden] {
  display: none;
}

.flag-select-option {
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}

.flag-select-option:hover,
.flag-select-option:focus-visible,
.flag-select-option.is-selected {
  background: rgba(47, 111, 88, 0.12);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.flag-select-button:focus-visible {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(47, 111, 88, 0.12);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #16201d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

.footer-grid address strong {
  color: var(--gold);
}

.footer-grid address a:hover,
.footer-grid address a:focus-visible {
  color: var(--white);
  outline: none;
}

.footer-note {
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a {
    padding: 13px 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    background: rgba(47, 111, 88, 0.1);
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 126px 0 58px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 24, 21, 0.95) 0%, rgba(15, 37, 32, 0.82) 58%, rgba(15, 37, 32, 0.54)),
      linear-gradient(180deg, rgba(9, 19, 17, 0.32), rgba(9, 19, 17, 0.58));
  }

  .hero-content {
    width: var(--container);
    margin: 0 auto;
  }

  .offers-layout {
    grid-template-columns: 1fr;
  }

  .slide {
    min-height: 560px;
  }

  .confidence-grid,
  .destination-grid,
  .service-grid,
  .timeline,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-submit-panel {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .pathway-shell,
  .consultation-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand-mark {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    inset: 66px 14px auto;
  }

  .hero {
    margin-top: -66px;
    padding: 108px 0 42px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 3.55rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics,
  .confidence-grid,
  .destination-grid,
  .service-grid,
  .timeline,
  .reviews-grid,
  .footer-grid,
  .contact-form,
  .review-form,
  .route-tabs {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 26px;
  }

  .section {
    padding: 64px 0;
  }

  .slide {
    min-height: 0;
    max-height: 70vh;
    padding: 10px;
  }

  .slide img {
    max-height: calc(70vh - 20px);
  }

  .slideshow-controls {
    grid-template-columns: 42px 1fr 42px;
  }

  .slide-arrow {
    width: 42px;
    height: 42px;
  }

  .slide-dot {
    width: 24px;
  }

  .slide-dot.is-active {
    width: 38px;
  }

  .service-card,
  .timeline-step {
    min-height: auto;
  }

  .service-number,
  .timeline-step span {
    margin-bottom: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .review-submit-panel {
    padding: 18px;
  }
}
