﻿:root {
  --navy: #10364d;
  --ink: #17324d;
  --body: #344054;
  --muted: #667085;
  --paper: #f3efe7;
  --paper-strong: #e7dfd3;
  --mist: #eef5f7;
  --sky: #d8edf2;
  --accent-green: #43b649;
  --green: #2f7d32;
  --blue: #0b5d7a;
  --white: #ffffff;
  --line: #d6cfc5;
  --shadow: 0 18px 48px rgba(16, 54, 77, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(16, 54, 77, 0.96);
  border-bottom: 3px solid var(--accent-green);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: #d4e4f1;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.shortlist-toggle,
.shortlist-head button,
.dialog-close,
.shortlist-actions button,
.hero-search button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  padding: 9px 12px;
  min-height: 38px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.shortlist-toggle:hover,
.shortlist-head button:hover,
.dialog-close:hover,
.shortlist-actions button:hover,
.hero-search button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-links a.active {
  color: var(--navy);
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.shortlist-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  color: var(--navy);
  background: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
}

.identity-bar {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--white);
  background: var(--navy);
}

.identity-bar span {
  flex: 1;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.identity-bar span:nth-child(1) {
  background: var(--green);
}

.identity-bar span:nth-child(2) {
  background: var(--accent-green);
}

.identity-bar span:nth-child(3) {
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.intro-section {
  padding: 52px 24px;
  background:
    linear-gradient(90deg, rgba(16, 54, 77, 0.07), rgba(216, 154, 43, 0.09)),
    var(--white);
}

.intro-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.intro-logo {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 210px;
  background: var(--navy);
  border-left: 8px solid var(--accent-green);
}

.intro-logo img {
  width: 140px;
  max-height: 180px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(16, 54, 77, 0.18);
}

.intro-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.intro-copy p {
  max-width: 880px;
  margin: 0 0 12px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero-media.ready {
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 54, 77, 0.72), rgba(16, 54, 77, 0.2)),
    linear-gradient(0deg, rgba(16, 54, 77, 0.95), rgba(16, 54, 77, 0.02) 45%);
}

.hero-tile {
  min-height: 0;
  overflow: hidden;
  background: var(--paper-strong);
}

.hero-tile:first-child {
  grid-row: span 2;
}

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

.hero-panel {
  width: min(820px, calc(100% - 48px));
  margin: 0 0 76px 48px;
  padding: 0;
  color: var(--white);
  background: transparent;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.directory-toolbar h2,
.shortlist-head h2 {
  margin: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 6vw, 70px);
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 26px;
  color: #eaf2f8;
  font-size: 17px;
  line-height: 1.55;
}

.hero-search label {
  display: block;
  margin-bottom: 8px;
  color: #d4e4f1;
  font-size: 13px;
  font-weight: 700;
}

.hero-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 720px;
}

.hero-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 14px;
  color: var(--white);
  background: rgba(16, 54, 77, 0.72);
  outline: none;
  backdrop-filter: blur(14px);
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.hero-search input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(216, 154, 43, 0.24);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
  max-width: 760px;
}

.hero-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(16, 54, 77, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions a:hover {
  border-color: var(--accent-green);
}

.hero-actions a.active {
  color: var(--navy);
  background: var(--accent-green);
  border-color: var(--accent-green);
  text-shadow: none;
}

.hero-stats {
  position: absolute;
  right: 34px;
  bottom: 76px;
  display: grid;
  gap: 10px;
  width: 170px;
}

.hero-stats article {
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-stats span {
  display: block;
  font-size: 31px;
  font-weight: 850;
  line-height: 1;
}

.hero-stats small {
  display: block;
  margin-top: 5px;
  color: #d4e4f1;
}

.destination-section,
.experience-section,
.feature-band,
.planner-section,
.itinerary-section,
.directory,
.maps,
.trade-section {
  padding: 72px 48px;
}

.view-page,
.view-page-support {
  animation: viewReveal 220ms ease;
}

.view-page:not(.hero) {
  min-height: calc(100vh - 156px);
}

.view-page-support {
  padding-top: 0;
}

@keyframes viewReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-section,
.experience-section {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-heading h2,
.directory-toolbar h2 {
  font-size: 34px;
  color: var(--ink);
}

.sector-pills {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.sector-pill {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  text-align: left;
  border: 1px solid var(--line);
  padding: 15px;
  color: var(--ink);
  background: var(--paper);
}

.sector-pill:hover,
.sector-pill.active {
  color: var(--white);
  background: var(--sector-color);
  border-color: var(--sector-color);
}

.sector-pill span {
  display: block;
}

.sector-pill strong {
  font-size: 15px;
  line-height: 1.15;
}

.sector-pill small {
  color: inherit;
  opacity: 0.76;
  font-size: 12px;
}

.destination-grid,
.featured-grid,
.planner-grid,
.itinerary-grid {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.destination-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.destination-card img,
.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card::after,
.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 54, 77, 0.92), rgba(16, 54, 77, 0.1) 66%);
}

.destination-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.destination-card span,
.featured-card span,
.itinerary-card span,
.planner-grid span {
  display: block;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.destination-card h3,
.featured-card strong,
.planner-grid h3,
.itinerary-card h3 {
  margin: 8px 0;
  line-height: 1.12;
}

.destination-card h3 {
  font-size: 26px;
}

.destination-card p,
.featured-card small,
.planner-grid p,
.itinerary-card p,
.trade-section p {
  margin: 0;
  line-height: 1.5;
}

.destination-card p,
.featured-card small {
  color: #eaf2f8;
}

.feature-band,
.itinerary-section {
  background: var(--mist);
}

.featured-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.featured-card {
  min-height: 330px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 22px;
  text-align: left;
  color: var(--white);
  background: var(--navy);
  border: 0;
}

.featured-card:first-child {
  min-height: 460px;
  grid-row: span 2;
}

.featured-card span,
.featured-card strong,
.featured-card small {
  position: relative;
  z-index: 1;
}

.featured-card strong {
  display: block;
  max-width: 360px;
  color: var(--white);
  font-size: 24px;
}

.featured-card small {
  display: block;
  max-width: 390px;
  font-size: 14px;
}

.planner-section {
  background: var(--white);
}

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

.planner-grid article,
.itinerary-card,
.trade-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.planner-grid article {
  min-height: 240px;
  background: linear-gradient(180deg, var(--white), var(--mist));
  border-top: 4px solid var(--accent-green);
}

.planner-grid span {
  color: var(--blue);
  font-size: 28px;
}

.planner-grid h3 {
  font-size: 20px;
}

.planner-grid p,
.itinerary-card p,
.trade-section p {
  color: var(--body);
}

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

.itinerary-card {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.itinerary-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-members button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid #b6dce5;
  font-size: 12px;
  font-weight: 800;
}

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

.directory-toolbar {
  max-width: 1180px;
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.toolbar-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.toolbar-controls select,
.toolbar-controls input {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
}

.toolbar-controls input {
  width: min(320px, 100%);
}

.result-count {
  color: var(--muted);
  font-size: 13px;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.enterprise-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 164px minmax(0, 1fr);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.enterprise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(16, 54, 77, 0.34);
}

.card-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-strong);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #81786d;
  background:
    linear-gradient(135deg, rgba(16, 54, 77, 0.08), rgba(216, 154, 43, 0.16)),
    var(--paper-strong);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.card-heading {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.card-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(16, 54, 77, 0.12);
  overflow: hidden;
  color: var(--white);
  background: var(--sector-color);
  font-weight: 850;
}

.card-logo img {
  max-width: 88%;
  max-height: 82%;
  object-fit: contain;
  background: var(--white);
}

.card-logo.initials {
  color: var(--white);
  background: var(--sector-color);
  font-weight: 850;
}

.card-body {
  padding: 15px;
}

.sector-chip,
.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sector-color);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sector-chip::before,
.sector-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--sector-color);
}

.card-media .sector-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(16, 54, 77, 0.82);
  backdrop-filter: blur(10px);
}

.enterprise-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
}

.enterprise-card p {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.45;
}

.contact-strip {
  display: grid;
  gap: 4px;
  min-height: 22px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.contact-strip span {
  display: block;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.card-actions button {
  flex: 1;
  min-height: 36px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-actions button:hover {
  border-color: var(--sector-color);
}

.save-button.saved,
.primary-button.saved {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.maps {
  background: var(--paper);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
}

.map-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #edf0f2;
}

.map-card h3 {
  margin: 10px 0 4px;
  font-size: 20px;
}

.map-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.shortlist-panel {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100vh;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-left: 3px solid var(--accent-green);
  box-shadow: -24px 0 60px rgba(16, 54, 77, 0.24);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.shortlist-panel.open {
  transform: translateX(0);
}

.shortlist-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.shortlist-head button,
.shortlist-actions button,
.dialog-close {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.shortlist-items {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-height: calc(100vh - 190px);
  overflow: auto;
}

.shortlist-item {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.shortlist-item strong,
.shortlist-item small {
  display: block;
}

.shortlist-item small {
  margin-top: 4px;
  color: var(--muted);
}

.shortlist-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.profile-dialog {
  width: min(920px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-dialog::backdrop {
  background: rgba(16, 54, 77, 0.66);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.dialog-content {
  min-height: 520px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.profile-media {
  background: var(--paper-strong);
  min-height: 520px;
}

.profile-media > img,
.profile-media > .image-fallback {
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
}

.profile-gallery img {
  width: 100%;
  height: 94px;
  object-fit: cover;
}

.profile-copy {
  padding: 42px 34px;
}

.profile-title {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 14px 0;
}

.profile-logo {
  display: grid;
  place-items: center;
  width: 68px;
  height: 58px;
  color: var(--white);
  background: var(--sector-color);
  border: 1px solid var(--line);
  font-weight: 850;
  overflow: hidden;
}

.profile-logo img {
  max-width: 90%;
  max-height: 84%;
  object-fit: contain;
  background: var(--white);
}

.profile-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.profile-copy p {
  color: var(--body);
  line-height: 1.6;
}

.profile-contacts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.profile-contact-group {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.profile-contact-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-contact-group a,
.profile-contact-group div span {
  display: block;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.primary-button {
  width: 100%;
  min-height: 44px;
  margin-top: 24px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  font-weight: 850;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  background: var(--paper);
}

.trade-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  color: var(--white);
  background: var(--navy);
}

.trade-copy {
  max-width: 620px;
  justify-self: end;
}

.trade-copy h2 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.08;
}

.trade-copy p {
  color: #d4e4f1;
  font-size: 16px;
}

.trade-grid {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.trade-grid article {
  color: var(--ink);
  background: var(--white);
  border-left: 6px solid var(--accent-green);
}

.trade-grid h3 {
  margin: 0 0 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  color: var(--white);
  background: #0b2638;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: #d4e4f1;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.site-footer a.active {
  color: var(--accent-green);
}

@media (max-width: 1080px) {
  .sector-pills,
  .enterprise-grid,
  .destination-grid,
  .planner-grid,
  .itinerary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

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

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: start;
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
  }

  .nav-links {
    justify-content: start;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-tile:not(:first-child) {
    display: none;
  }

  .hero-panel {
    width: calc(100% - 32px);
    margin: 0 16px 28px;
    padding: 24px;
  }

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

  .hero-stats {
    position: static;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 16px 18px;
  }

  .destination-section,
  .experience-section,
  .feature-band,
  .planner-section,
  .itinerary-section,
  .intro-section,
  .directory,
  .maps,
  .trade-section {
    padding: 48px 18px;
  }

  .intro-layout,
  .profile-layout,
  .trade-section {
    grid-template-columns: 1fr;
  }

  .intro-logo {
    min-height: 180px;
  }

  .section-heading,
  .directory-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .sector-pills,
  .destination-grid,
  .featured-grid,
  .planner-grid,
  .itinerary-grid,
  .enterprise-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .featured-card:first-child {
    grid-column: auto;
  }

  .trade-copy {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 18px;
  }

  .site-footer nav {
    justify-content: start;
  }

  .profile-media {
    min-height: 300px;
  }

  .profile-media > img,
  .profile-media > .image-fallback {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 13px;
  }

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

  .hero-search div,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats span {
    font-size: 25px;
  }

  .section-heading h2,
  .directory-toolbar h2 {
    font-size: 27px;
  }
}

