:root {
  color-scheme: light;
  --ink: #173247;
  --muted: #5a6670;
  --paper: #f7f3ed;
  --panel: #ffffff;
  --line: #d8d0c4;
  --blue: #173247;
  --aqua: #cfe9e4;
  --coral: #cc624d;
  --gold: #c49b45;
  --leaf: #476b57;
  --shadow: 0 24px 70px rgba(23, 50, 71, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}
.brand strong, .brand small { display: block; }
.brand small {
  color: var(--muted);
  font-size: 12px;
}
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}
nav a { text-decoration: none; }
.nav-feature {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
}
.translate-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 850;
}
.translate-control select {
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.hero, .subhero {
  width: min(1320px, calc(100% - 36px));
  margin: clamp(24px, 5vw, 60px) auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}
.hero-copy p, .subhero p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}
.kicker {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-photo {
  margin: 0;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe9e4;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.subhero img {
  width: 100%;
  height: min(620px, 70vh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.subhero img.qr-demo-image {
  object-fit: contain;
  background: #f8fbff;
  padding: clamp(10px, 2vw, 18px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.section-shell > .hero-actions { margin-top: 16px; }
.hero-actions a, .panel-link, .link-grid a, .urgent-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}
.primary-action, .panel-link {
  color: #fff !important;
  background: var(--coral) !important;
  border-color: var(--coral) !important;
}
.secondary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

.notice, .anonamed-panel, .section-shell, .deals, .split-band, .urgent, .network, .references, .airline-table, .ask-ai, .country-health, .travelologist-locator {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(34px, 6vw, 82px) auto;
}
.notice {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #e0b0a6;
  border-radius: 8px;
  background: #fff5f1;
  color: var(--muted);
}
.notice strong { color: var(--ink); }
.anonamed-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow);
}
.anonamed-panel p { color: rgba(255, 255, 255, 0.82); }
.anonamed-panel .kicker { color: var(--gold); }
.profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.profile-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}
.section-heading p, article p, .references li, footer p { color: var(--muted); }
.card-grid, .urgent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.deals {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.deals p { color: var(--muted); }
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
article span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.split-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: var(--aqua);
}
.split-band > img {
  width: 100%;
  height: min(560px, 70vh);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.urgent {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  color: #fff;
  background: #26333b;
}
.urgent p { color: rgba(255, 255, 255, 0.82); }
.urgent .kicker { color: #f0c563; }
.urgent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.urgent-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.urgent-grid a {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
}
.ask-ai {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.ask-ai p { color: var(--muted); }
.travelologist-locator {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.55fr);
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef6f3;
}
.travelologist-locator p { color: var(--muted); }
.locator-actions {
  display: grid;
  gap: 10px;
}
.locator-actions button, .locator-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.locator-actions a {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
.ai-form {
  display: grid;
  gap: 10px;
}
.ai-form label {
  color: var(--ink);
  font-weight: 900;
}
.ai-form textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #faf8f4;
  font: inherit;
}
.ai-form button {
  min-height: 44px;
  border: 1px solid var(--coral);
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.ai-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: clamp(34px, 6vw, 82px) 0;
}
.photo-band img {
  width: 100%;
  height: clamp(260px, 32vw, 480px);
  object-fit: cover;
}
.references {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--ink);
  background: #eef6f3;
  font-size: 13px;
  text-transform: uppercase;
}
td {
  color: var(--muted);
}
td:first-child {
  color: var(--ink);
  font-weight: 900;
}
tr:last-child td {
  border-bottom: 0;
}
.references ul {
  columns: 2;
  margin: 0;
  padding-left: 20px;
}
.references li { break-inside: avoid; margin-bottom: 9px; }
footer {
  padding: 32px clamp(18px, 5vw, 58px);
  border-top: 1px solid var(--line);
}
footer p { margin: 0; }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .subhero, .anonamed-panel, .section-heading, .deals, .split-band, .urgent, .references, .ask-ai, .travelologist-locator {
    grid-template-columns: 1fr;
  }
  .card-grid, .deal-grid, .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-band { grid-template-columns: 1fr; }
  .hero-photo, .hero-photo img { min-height: 420px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(46px, 16vw, 70px); }
  h2 { font-size: clamp(28px, 10vw, 42px); }
  .card-grid, .deal-grid, .compact-grid, .urgent-grid, .link-grid, .profile-list {
    grid-template-columns: 1fr;
  }
  .notice { align-items: flex-start; flex-direction: column; }
  .hero-photo, .hero-photo img { min-height: 360px; }
  .subhero img, .split-band > img { height: 360px; }
}
