@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Mono:wght@400;500;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #f3efe7;
  --panel: #f9f5ee;
  --card: #fffdf9;
  --ink: #1d2d25;
  --muted: #587066;
  --line: rgba(18, 34, 28, 0.12);
  --brand: #244d3a;
  --brand-strong: #163c30;
  --brand-soft: #dfeee2;
  --gold: #d0a76a;
  --shadow: 0 18px 38px rgba(20, 42, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #f5f0e7 0%, #efeae1 100%);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, .brand, .display, .title-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav a,
.nav-dropdown-toggle {
  position: relative;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: rgba(31, 74, 60, 0.06);
  color: var(--brand-strong);
  outline: none;
}

.nav > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav > a:not(.nav-cta):hover::after,
.nav > a:not(.nav-cta):focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--brand-strong);
  background: rgba(31, 74, 60, 0.06);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.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;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.nav-cta {
  min-height: 44px;
  padding: 0 22px;
  background: var(--brand-strong);
  color: #fff;
  border: 1px solid var(--brand-strong);
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(36, 77, 58, 0.18);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22, 60, 48, 0.24);
  outline: none;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(18, 34, 28, 0.16);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 5px 10px 5px 12px;
  box-shadow: 0 8px 18px rgba(20, 42, 31, 0.08);
}

.lang-switcher label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.lang-switcher select {
  min-height: 30px;
  border: 1px solid rgba(18, 34, 28, 0.1);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font: 700 0.82rem 'DM Sans', sans-serif;
  cursor: pointer;
  padding: 3px 26px 3px 9px;
  outline: none;
}

.lang-switcher::after {
  content: "\25BE";
  position: absolute;
  right: 17px;
  top: 50%;
  color: var(--brand-strong);
  pointer-events: none;
  transform: translateY(-52%);
}

.lang-switcher select:hover {
  border-color: var(--brand);
}

.lang-switcher select:focus-visible {
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 3px rgba(36, 77, 58, 0.14);
}

.lang-switcher option {
  background: var(--card);
  color: var(--ink);
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 18px 12px;
  padding-left: 32px;
}

.lang-switcher option[value="en"] { background-image: url('../images/flags/gb.svg'); }
.lang-switcher option[value="de"] { background-image: url('../images/flags/de.svg'); }
.lang-switcher option[value="fr"] { background-image: url('../images/flags/fr.svg'); }
.lang-switcher option[value="es"] { background-image: url('../images/flags/es.svg'); }
.lang-switcher option[value="ar"] { background-image: url('../images/flags/sa.svg'); }

.nav-cta,
.btn-primary {
  background: var(--brand-strong);
  color: white;
  box-shadow: 0 12px 24px rgba(22, 60, 48, 0.18);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(18, 34, 28, 0.12);
  color: var(--ink);
}

@media (max-width: 820px) {
  .topbar-inner {
    position: relative;
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 12px 0 16px;
    background: rgba(255, 253, 249, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a,
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 4px 12px;
    padding: 4px 0 4px 10px;
    border: 0;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown:not(.is-open) .nav-dropdown-menu {
    display: none;
  }

  .nav-cta {
    width: auto !important;
    margin-top: 6px;
    text-align: center !important;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }
}

.page-hero {
  padding: 42px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--brand-strong);
  font-family: 'DM Mono', monospace;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.featured-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center 32%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  color: #f8fff9;
  box-shadow: 0 24px 48px rgba(20, 42, 31, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.featured-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 18, 0.08) 18%, rgba(10, 25, 18, 0.82) 100%);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px rgba(20, 42, 31, 0.26);
}

.featured-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: auto;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(12, 31, 22, 0.38);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-card h3 {
  max-width: 12ch;
  margin: 18px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  color: #fff;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(248, 255, 249, 0.84);
  font-size: 0.88rem;
}

.featured-card .chart-box {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.featured-card .mini-chart {
  display: block;
  width: 100%;
  height: 92px;
}

.featured-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.featured-footer strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.featured-footer span {
  display: block;
  margin-top: 6px;
  color: rgba(248, 255, 249, 0.72);
  font-size: 0.8rem;
}

.featured-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.featured-footer a:hover,
.featured-footer a:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.search-panel {
  padding: 22px 0 0;
}

.search-header {
  margin-bottom: 18px;
}

.search-header h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(18, 34, 27, 0.06);
}

.search-field {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.search-field span {
  padding-left: 4px;
}

.search-field select {
  appearance: none;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(18,34,28,0.12);
  border-radius: 14px;
  min-height: 48px;
  padding: 0 40px 0 12px;
  font: inherit;
  color: var(--ink);
}

.search-form .btn {
  align-self: end;
  min-height: 48px;
}

.detail-section {
  padding-top: 12px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 22px 20px;
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(18, 34, 27, 0.04);
}

.detail-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(36, 77, 58, 0.08);
  color: var(--brand-strong);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  font-family: 'Instrument Serif', Georgia, serif;
}

.stat-card span {
  color: var(--muted);
}

.feature-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  padding: 22px;
  background-size: cover;
  background-position: center;
  color: #edf7f0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.feature-card .tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(2.1rem, 2.5vw, 3rem);
  line-height: 0.98;
}

.feature-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.section {
  padding: 22px 0 32px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.05;
}

.destinations-grid,
.experience-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.destinations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-tile,
.experience-card,
.story-card,
.contact-panel,
.info-box {
  background: rgba(255,255,255,0.56);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 34, 27, 0.04);
}

.destination-tile {
  min-height: 290px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  color: white;
}

.destination-tile .label {
  display: inline-flex;
  width: fit-content;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.destination-tile h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1.06;
}

.destination-tile p {
  margin: 0;
  color: rgba(255,255,255,0.88);
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
  padding: 18px;
}

.experience-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.experience-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  margin-bottom: 8px;
}

.experience-card p,
.story-card p,
.contact-panel p,
.info-box p {
  color: var(--muted);
  margin: 0;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  padding: 20px;
}

.story-card p {
  font-size: 1.03rem;
}

.story-card footer {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--brand-strong);
  font-family: 'DM Mono', monospace;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-panel,
.info-box {
  padding: 22px;
}

.contact-panel form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.9rem;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(18, 34, 28, 0.12);
  background: rgba(255,255,255,0.7);
  min-height: 46px;
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  min-height: 125px;
  resize: vertical;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.info-box {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.info-box .eyebrow,
.info-box h1,
.info-box p,
.info-box li {
  color: #fff;
}

.info-list li::before {
  content: '✓';
  color: var(--brand-strong);
  margin-right: 10px;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 28px;
  background: linear-gradient(180deg, rgba(17, 39, 32, 0.94), rgba(12, 27, 23, 1));
  color: rgba(239, 247, 242, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand .brand {
  width: 180px;
  height: 68px;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 180px;
  height: 68px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-brand p,
.footer-column p,
.footer-meta {
  margin: 0;
  color: rgba(239, 247, 242, 0.7);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 247, 242, 0.82);
  font-family: 'DM Mono', monospace;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(239, 247, 242, 0.8);
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-cta-column {
  justify-items: start;
}

.footer-cta-column .btn {
  margin-top: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  color: rgba(239, 247, 242, 0.82);
  font-size: 0.82rem;
  font-family: 'DM Mono', monospace;
}

.footer-bottom > div:first-child {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-top: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .destinations-grid,
  .experience-grid,
  .story-grid,
  .detail-grid,
  .search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }
  .trust-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Homepage visual system */
:root {
  --bg: #f4f1e9;
  --panel: #fbfaf6;
  --card: #fffefa;
  --ink: #17352c;
  --muted: #60756d;
  --line: rgba(23, 53, 44, 0.13);
  --brand: #28705a;
  --brand-strong: #123f34;
  --brand-soft: #dcece2;
  --gold: #c58b43;
  --shadow: 0 20px 46px rgba(22, 54, 43, 0.11);
}

body {
  background:
    radial-gradient(circle at 92% 8%, rgba(197, 139, 67, 0.13), transparent 22rem),
    radial-gradient(circle at 4% 38%, rgba(40, 112, 90, 0.09), transparent 26rem),
    linear-gradient(180deg, #f8f6f0 0%, var(--bg) 48%, #eef1eb 100%);
}

.topbar {
  background: rgba(248, 246, 240, 0.86);
  border-bottom-color: rgba(23, 53, 44, 0.1);
}

.topbar-inner {
  min-height: 78px;
}

.brand {
  flex: 0 0 auto;
  width: 122px;
  height: 52px;
  overflow: hidden;
  align-items: center;
}

.brand-mark {
  position: static;
  width: 122px;
  height: 78px;
  object-fit: contain;
}

.nav {
  gap: 6px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 500;
}

.nav a,
.nav-dropdown-toggle {
  padding: 9px 11px;
}

.lang-switcher {
  min-height: 38px;
  padding: 4px 8px 4px 10px;
  box-shadow: none;
  background: rgba(255, 254, 250, 0.72);
}

.hero {
  padding: clamp(54px, 8vw, 96px) 0 46px;
}

.hero-grid {
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.89;
  color: var(--brand-strong);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 24px;
  font-size: 1.04rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.btn {
  min-height: 48px;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-primary,
.nav-cta {
  background: var(--brand-strong);
  box-shadow: 0 12px 24px rgba(18, 63, 52, 0.18);
}

.btn-secondary {
  background: rgba(255, 254, 250, 0.58);
}

.trust-list {
  gap: 0;
  max-width: 580px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-list li {
  padding: 16px 18px 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-list li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trust-list strong {
  color: var(--brand-strong);
  font-size: 1.8rem;
}

.featured-card {
  min-height: 520px;
  border-radius: 18px;
  box-shadow: 0 28px 58px rgba(18, 63, 52, 0.2);
}

.section {
  padding: 54px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-head h2 {
  color: var(--brand-strong);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.section-head p:not(.eyebrow) {
  max-width: 50ch;
  margin-top: 16px;
}

.destination-grid,
.trip-grid,
.testimonials {
  gap: 14px;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: stretch;
  margin-top: 26px;
}

.destination-card,
.trip-card,
.quote,
.why-box,
.story-panel,
.enquiry-shell {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.destination-card {
  min-height: 315px;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: var(--brand-strong);
  box-shadow: 0 18px 36px rgba(18, 63, 52, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 39, 31, 0.02) 18%, rgba(10, 31, 25, 0.82) 100%);
  transition: background 220ms ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 2px;
  z-index: 0;
  background: var(--gold);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 220ms ease;
}

.destination-card > * {
  position: relative;
  z-index: 1;
}

.destination-card:hover,
.destination-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 26px 48px rgba(18, 63, 52, 0.2);
}

.destination-card:hover::before,
.destination-card:focus-within::before {
  background: linear-gradient(180deg, rgba(12, 39, 31, 0.04) 10%, rgba(10, 31, 25, 0.92) 100%);
}

.destination-card:hover::after,
.destination-card:focus-within::after {
  transform: scaleX(1);
}

.destination-card span {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.destination-card h3 {
  max-width: 11ch;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.destination-card p {
  max-width: 28ch;
  line-height: 1.45;
}

.trip-card {
  border-color: rgba(23, 53, 44, 0.1);
  box-shadow: 0 14px 30px rgba(18, 63, 52, 0.07);
}

.trip-card:hover,
.trip-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(18, 63, 52, 0.14);
}

.trip-visual {
  height: 190px;
}

.trip-chart {
  background: linear-gradient(180deg, rgba(40, 112, 90, 0.1), rgba(40, 112, 90, 0.02));
}

.filter-btn {
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.66);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-btn.active {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.why-box,
.story-panel,
.enquiry-shell {
  background: rgba(255, 254, 250, 0.74);
}

.enquiry-shell {
  padding: clamp(22px, 4vw, 42px);
  border-color: rgba(23, 53, 44, 0.1);
}

input,
select,
textarea {
  background: rgba(255, 254, 250, 0.82);
  border-radius: 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 112, 90, 0.13);
}

@media (max-width: 820px) {
  .brand,
  .brand-mark {
    width: 96px;
  }

  .brand-mark {
    height: 64px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .nav {
    background: rgba(248, 246, 240, 0.98);
  }

  .destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-card-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-list li,
  .trust-list li + li {
    padding: 14px 9px;
  }

  .trust-list strong {
    font-size: 1.35rem;
  }

  .trust-list span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .featured-card {
    min-height: 470px;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card-large {
    grid-column: auto;
  }
}
