/* ==========================================================================
   Orient Tour Armenia — Page compositions
   Heroes and section layouts specific to individual pages.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Home hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(100svh, 940px);
  padding-top: calc(var(--header-h) + var(--sp-16));
  padding-bottom: var(--sp-12);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: var(--tuff-950);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slow drift keeps a still photograph feeling alive */
  animation: hero-drift 26s var(--ease-in-out) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.13) translate3d(-1.4%, -1.2%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img,
  .hero__media video { animation: none; transform: scale(1.04); }
}

/* Two-stop scrim: darkens the base for text, and the top for the header */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(13, 10, 8, 0.92) 0%, rgba(13, 10, 8, 0.55) 38%, rgba(13, 10, 8, 0.1) 70%),
    linear-gradient(to bottom, rgba(13, 10, 8, 0.62) 0%, transparent 26%);
}

.hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-end;
  gap: var(--sp-10);
}

/* Wide enough that the display type never breaks mid-word. The title sets its
   own measure below; this only stops the column running the full 1220px. */
.hero__content { max-width: min(100%, 46rem); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.5em 1.1em;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  color: var(--white);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--apricot-400);
  box-shadow: 0 0 0 0 rgba(245, 166, 92, 0.7);
  animation: pulse 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 92, 0.65); }
  70% { box-shadow: 0 0 0 9px rgba(245, 166, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 92, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 15ch;
  text-wrap: balance;
  /* Display type must never hyphenate or break inside a word */
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero__title em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--apricot-300);
}

.hero__text {
  margin-top: var(--sp-6);
  max-width: 46ch;
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions { margin-top: var(--sp-8); display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Glass stat panel anchored to the hero's bottom-right */
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  width: min(310px, 100%);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.hero__panel-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.hero__panel-row + .hero__panel-row { padding-top: var(--sp-5); border-top: 1px solid rgba(255, 255, 255, 0.16); }

.hero__panel-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  flex: none;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--sp-6);
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
  animation: scroll-hint 2.2s var(--ease-in-out) infinite;
}

@keyframes scroll-hint {
  0%, 100% { transform: scaleY(1); opacity: 0.55; transform-origin: top; }
  50% { transform: scaleY(0.4); opacity: 1; transform-origin: top; }
}

/* --------------------------------------------------------------------------
   2. Hero search widget
   -------------------------------------------------------------------------- */

.hero-search {
  position: relative;
  z-index: 3;
  margin-top: calc(var(--sp-12) * -1);
  margin-bottom: var(--sp-4);
}

.hero-search__box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: var(--sp-2);
  align-items: end;
  padding: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.hero-search__field { display: flex; flex-direction: column; gap: var(--sp-1); padding-inline: var(--sp-3); min-width: 0; }
.hero-search__field + .hero-search__field { border-left: 1px solid var(--line-soft); }

.hero-search__label {
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-search__control {
  border: none;
  background: none;
  padding: 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-strong);
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero-search__control:focus { outline: none; }

/* --------------------------------------------------------------------------
   3. Interior page hero
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-12);
  overflow: hidden;
  color: var(--white);
  background: var(--tuff-950);
  isolation: isolate;
}

.page-hero__media { position: absolute; inset: 0; z-index: -2; }

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(13, 10, 8, 0.9) 0%, rgba(13, 10, 8, 0.5) 50%, rgba(13, 10, 8, 0.28) 100%),
    linear-gradient(to bottom, rgba(13, 10, 8, 0.6) 0%, transparent 30%);
}

.page-hero__inner { position: relative; width: 100%; }
.page-hero__title { font-size: var(--fs-4xl); color: var(--white); margin-top: var(--sp-4); max-width: 20ch; }

.page-hero__text {
  margin-top: var(--sp-4);
  max-width: 58ch;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-6);
}

.page-hero__meta .chip { color: rgba(255, 255, 255, 0.86); }
.page-hero__meta .chip svg { color: var(--apricot-400); }

/* Compact variant for text-led pages (FAQ, legal) */
.page-hero--compact { min-height: 340px; }

.page-hero--plain {
  background: var(--bg-alt);
  color: var(--text);
  min-height: 0;
  padding-block: calc(var(--header-h) * 0.5 + var(--sp-16)) var(--sp-16);
}

.page-hero--plain::before { display: none; }
.page-hero--plain .page-hero__title { color: var(--text-strong); }
.page-hero--plain .page-hero__text { color: var(--text-muted); }

/* --------------------------------------------------------------------------
   4. Tour detail page
   -------------------------------------------------------------------------- */

/* Gallery mosaic at the top of a tour page */
.tour-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
  height: clamp(340px, 52vw, 560px);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.tour-gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--surface-sunk);
  cursor: zoom-in;
}

.tour-gallery__item:first-child { grid-row: span 2; }

.tour-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.tour-gallery__item:hover img { transform: scale(1.05); }

.tour-gallery__more {
  position: absolute;
  right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 2;
}

.tour-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  display: flex;
  gap: var(--sp-1);
  margin-bottom: var(--sp-10);
  padding-block: var(--sp-2);
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
  overflow-x: auto;
  scrollbar-width: none;
}

.tour-nav::-webkit-scrollbar { display: none; }

.tour-nav a {
  flex: none;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.tour-nav a:hover { color: var(--text-strong); }
.tour-nav a.is-active { color: var(--accent-text); border-bottom-color: var(--accent); }

.tour-section + .tour-section { margin-top: var(--sp-16); }

.tour-section__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line-soft);
}

/* Key facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: var(--sp-1);
  padding: var(--sp-2);
  background: var(--surface-sunk);
  border-radius: var(--r-lg);
}

.fact {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--surface);
  border-radius: var(--r-md);
}

.fact svg { width: 22px; height: 22px; flex: none; color: var(--accent); stroke-width: 1.7; }
.fact__label { font-size: var(--fs-2xs); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-faint); }
.fact__value { font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong); line-height: 1.3; }

/* Route map placeholder — a styled frame the client can drop a map into */
.route-map {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-sunk);
  border: 1px solid var(--line-soft);
}

.route-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.route-map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  text-align: center;
  color: var(--text-faint);
  font-size: var(--fs-sm);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
}

.route-map__placeholder svg { width: 38px; height: 38px; stroke-width: 1.3; }

/* --------------------------------------------------------------------------
   5. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--tuff-950);
  color: var(--white);
  isolation: isolate;
}

.cta-band__media { position: absolute; inset: 0; z-index: -2; }

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(13, 10, 8, 0.94) 12%, rgba(13, 10, 8, 0.6) 58%, rgba(140, 28, 52, 0.42) 100%);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  padding: clamp(var(--sp-10), 6vw, var(--sp-20)) clamp(var(--sp-6), 5vw, var(--sp-16));
}

.cta-band__title { font-size: var(--fs-3xl); color: var(--white); max-width: 20ch; }
.cta-band__text { margin-top: var(--sp-4); max-width: 52ch; color: rgba(255, 255, 255, 0.78); font-size: var(--fs-md); line-height: 1.65; }
.cta-band__actions { display: flex; flex-direction: column; gap: var(--sp-3); flex: none; }

/* --------------------------------------------------------------------------
   6. Feature strip (trust bar under the hero)
   -------------------------------------------------------------------------- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--sp-1);
  background: var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
}

.trust-strip__item svg { width: 26px; height: 26px; flex: none; color: var(--accent); stroke-width: 1.6; }
.trust-strip__title { font-size: var(--fs-sm); font-weight: 800; color: var(--text-strong); line-height: 1.3; }
.trust-strip__text { font-size: var(--fs-xs); color: var(--text-faint); line-height: 1.5; margin-top: 2px; }

/* --------------------------------------------------------------------------
   7. Seasons strip
   -------------------------------------------------------------------------- */

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

.season {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.season:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Colour bar keyed to the season */
.season::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--season-color, var(--accent));
}

.season--spring { --season-color: #7fae6a; }
.season--summer { --season-color: var(--apricot-500); }
.season--autumn { --season-color: var(--pom-600); }
.season--winter { --season-color: var(--sky-500); }

.season__months {
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--season-color, var(--accent));
}

.season__title { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600; color: var(--text-strong); }
.season__text { font-size: var(--fs-sm); line-height: 1.6; color: var(--text-muted); }

.season__temp {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--line);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   8. About page — story timeline & team
   -------------------------------------------------------------------------- */

.milestones { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: var(--sp-8); }

.milestone { position: relative; padding-top: var(--sp-8); border-top: 2px solid var(--line); }

.milestone::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: var(--r-pill);
  background: var(--accent);
  border: 3px solid var(--bg);
}

.milestone__year {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.milestone__title { font-weight: 800; font-size: var(--fs-sm); color: var(--text-strong); margin-top: var(--sp-3); }
.milestone__text { font-size: var(--fs-sm); line-height: 1.6; color: var(--text-muted); margin-top: var(--sp-2); }

.team-card { display: flex; flex-direction: column; gap: var(--sp-4); }
.team-card__photo { border-radius: var(--r-arch-soft); overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface-sunk); }

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__name { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600; color: var(--text-strong); }
.team-card__role { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--accent-text); margin-top: 2px; }
.team-card__bio { font-size: var(--fs-sm); line-height: 1.6; color: var(--text-muted); margin-top: var(--sp-2); }
.team-card__langs { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }

/* --------------------------------------------------------------------------
   9. Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--surface-sunk);
  border-radius: var(--r-lg);
}

.contact-item { display: flex; align-items: flex-start; gap: var(--sp-4); }

.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--accent);
  box-shadow: var(--shadow-xs);
}

.contact-item__icon svg { width: 20px; height: 20px; stroke-width: 1.7; }
.contact-item__label { font-size: var(--fs-2xs); font-weight: 800; text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-faint); }
.contact-item__value { font-size: var(--fs-sm); font-weight: 700; color: var(--text-strong); line-height: 1.5; margin-top: 3px; }
.contact-item__value a:hover { color: var(--accent-text); }
.contact-item__note { font-size: var(--fs-xs); color: var(--text-faint); margin-top: 2px; }

.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-sunk);
  border: 1px solid var(--line-soft);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2); }

[data-theme="dark"] .map-embed iframe { filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* --------------------------------------------------------------------------
   10. Destinations page
   -------------------------------------------------------------------------- */

.region-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-8);
  border-bottom: 2px solid var(--line);
}

.region-head__title { font-size: var(--fs-2xl); }
.region-head__count { font-size: var(--fs-sm); font-weight: 700; color: var(--text-faint); }

/* Editorial two-column destination row, alternating sides */
.dest-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: center;
}

.dest-row + .dest-row { margin-top: clamp(var(--sp-12), 7vw, var(--sp-24)); }
.dest-row:nth-child(even) .dest-row__media { order: -1; }

.dest-row__figures { display: flex; flex-wrap: wrap; gap: var(--sp-6) var(--sp-10); margin-top: var(--sp-6); }
.dest-row__figure { display: flex; flex-direction: column; gap: 2px; }
.dest-row__figure dt { font-size: var(--fs-2xs); font-weight: 800; text-transform: uppercase; letter-spacing: var(--tracking-caps); color: var(--text-faint); }
.dest-row__figure dd { margin: 0; font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; color: var(--text-strong); }

/* --------------------------------------------------------------------------
   11. Packages comparison
   -------------------------------------------------------------------------- */

.package-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr) minmax(0, 250px);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.package-card:hover { box-shadow: var(--shadow-lg); border-color: var(--line); }

.package-card__media { position: relative; overflow: hidden; min-height: 260px; background: var(--surface-sunk); }

.package-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.package-card:hover .package-card__media img { transform: scale(1.05); }

.package-card__body { display: flex; flex-direction: column; gap: var(--sp-4); padding: var(--sp-8); min-width: 0; }
.package-card__title { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 600; color: var(--text-strong); line-height: 1.25; }
.package-card__route { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); font-weight: 600; color: var(--text-muted); }
.package-card__route span:not(:last-child)::after { content: "→"; margin-left: var(--sp-2); color: var(--accent); opacity: 0.7; }

.package-card__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--surface-sunk);
  border-left: 1px solid var(--line-soft);
}

.package-card__flag {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  z-index: 2;
}

/* --------------------------------------------------------------------------
   12. Travel-info page — quick answer cards
   -------------------------------------------------------------------------- */

.info-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: var(--sp-3);
}

.info-nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-strong);
  transition: all var(--dur-fast) var(--ease-out);
}

.info-nav a:hover { border-color: var(--accent); color: var(--accent-text); transform: translateY(-2px); }
.info-nav svg { width: 19px; height: 19px; flex: none; color: var(--accent); stroke-width: 1.7; }

.kv-list { display: grid; gap: var(--sp-1); }

.kv {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
}

.kv:nth-child(odd) { background: var(--surface-sunk); }
.kv dt { font-weight: 800; color: var(--text-strong); }
.kv dd { margin: 0; color: var(--text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   13. 404
   -------------------------------------------------------------------------- */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  min-height: 74vh;
  text-align: center;
  padding-block: var(--sp-20);
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 15rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0.22;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .package-card { grid-template-columns: minmax(0, 280px) minmax(0, 1fr); }
  .package-card__aside { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--line-soft); flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-search__box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-search__box .btn { grid-column: 1 / -1; }
  .hero-search__field:nth-child(3) { border-left: none; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__panel { display: none; }
  .hero__content { max-width: 100%; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .seasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .hero { min-height: min(88svh, 720px); }
  .hero__scroll { display: none; }

  .cta-band__inner { grid-template-columns: minmax(0, 1fr); }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }

  .dest-row { grid-template-columns: minmax(0, 1fr); }
  .dest-row:nth-child(even) .dest-row__media { order: 0; }

  .tour-gallery { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; height: auto; aspect-ratio: 4 / 3; }
  .tour-gallery__item:first-child { grid-row: span 1; height: 100%; }
  .tour-gallery__item:not(:first-child) { display: none; }

  .package-card { grid-template-columns: minmax(0, 1fr); }
  .package-card__media { min-height: 220px; aspect-ratio: 16 / 9; }
}

@media (max-width: 620px) {
  .hero-search { margin-top: var(--sp-8); }
  .hero-search__box { grid-template-columns: minmax(0, 1fr); gap: var(--sp-3); }
  .hero-search__field + .hero-search__field { border-left: none; border-top: 1px solid var(--line-soft); padding-top: var(--sp-3); }
  .seasons { grid-template-columns: minmax(0, 1fr); }
  .kv { grid-template-columns: minmax(0, 1fr); gap: var(--sp-1); }
  .package-card__aside { flex-direction: column; align-items: stretch; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
