/* Any Audio Guide — landing page (from design v2) */

:root {
  --navy: #0F2A4D;
  --navy-deep: #0B2140;
  --cream: #F7F3ED;
  --cream-warm: #EFEAE0;
  --gold: #D8B26C;
  --gold-deep: #B08B45;
  --gold-hover: #b8914d;
  --ink: #0F2A4D;
  --green-live: #4a8f5f;
  --green-sync: #8fd0a3;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
  --max: 1240px;
  --pad: 40px;
}

/* Latvian: Outfit for ā/ē/ī/ū/č/š/ž (Jost garumzīmes sit poorly). */
html[lang="lv"] {
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  padding: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.landing a {
  color: var(--gold);
  text-decoration: none;
}

body.landing a:hover {
  color: var(--gold-hover);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.landing-page {
  width: 100%;
  background: var(--cream);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header / footer chrome: public/css/chrome.css (loaded from layouts/base) */

/* —— Buttons —— */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy) !important;
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy) !important;
}

.btn--ghost {
  border: 1px solid rgba(247, 243, 237, 0.32);
  color: var(--cream) !important;
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--cream);
  color: var(--cream) !important;
}

.btn--outline-navy {
  border: 1px solid rgba(15, 42, 77, 0.3);
  color: var(--navy) !important;
  background: transparent;
  text-align: center;
}

.btn--block {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* —— Eyebrows / type —— */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--bronze {
  color: var(--gold-deep);
  letter-spacing: 0.4em;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.feature-list__diamond {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.feature-list strong {
  font-weight: 500;
}

.feature-list span {
  color: rgba(15, 42, 77, 0.65);
  font-weight: 300;
}

.section__cta-row {
  margin: 28px 0 0;
}

.section__cta-row .btn {
  display: inline-block;
}

.feature-list--on-dark span {
  color: rgba(247, 243, 237, 0.65);
}

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  left: 42%;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 70%;
}


/* Desktop: full-bleed gradient art (navy fade baked into the PNG). */
@media (min-width: 951px) {
  .hero__media {
    left: 45%;
    /*width: 50%;*/
    /*object-position: 70% 45%;*/
  }

  .hero__veil {
    /* Image already carries the left/top navy wash — keep a light readability tint only. */
    background: linear-gradient(
      100deg,
      rgba(15, 42, 77, 0.42) 0%,
      rgba(15, 42, 77, 0.18) 38%,
      rgba(15, 42, 77, 0) 68%
    );
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #0f2a4d 0%,
    #0f2a4d 44%,
    rgba(15, 42, 77, 0.55) 62%,
    rgba(15, 42, 77, 0) 82%
  );
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px var(--pad) 0;
}

.hero__copy {
  max-width: 620px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  color: var(--cream);
  margin: 26px 0 0;
  text-wrap: pretty;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.76);
  max-width: 470px;
  margin: 28px 0 0;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  font-size: 13px;
  color: rgba(247, 243, 237, 0.62);
  letter-spacing: 0.06em;
}

.hero__stars {
  color: var(--gold);
  letter-spacing: 0.24em;
  font-size: 14px;
}

.hero__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 96px;
  border-top: 1px solid rgba(216, 178, 108, 0.28);
  background: var(--navy);
  box-shadow:
    0 0 0 100vmax var(--navy),
    0 -28px 34px 0 rgba(15, 42, 77, 0.75);
  clip-path: inset(0 -100vmax -100vmax -100vmax);
}

.hero__step {
  padding: 26px 26px 30px;
  border-left: 1px solid rgba(216, 178, 108, 0.28);
}

.hero__step:first-child {
  padding-left: 0;
  border-left: none;
}

.hero__step:last-child {
  padding-right: 0;
}

.hero__step-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}

.hero__step-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 10px;
}

.hero__step-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.6);
  margin-top: 8px;
  font-weight: 300;
}

/* —— Sections —— */
.section {
  padding: 120px var(--pad);
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
}

.section--warm {
  background: var(--cream-warm);
}

.section--tight {
  padding: 110px var(--pad);
}

.section__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 90px;
  align-items: center;
}

.section__grid--how {
  grid-template-columns: 1fr 1fr;
}

.section__grid--tour {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 84px;
}

.section__grid--broadcast {
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  margin: 22px 0 0;
}

.section__title--light {
  color: var(--cream);
}

.section__lead {
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 0;
  font-weight: 300;
  max-width: 480px;
}

.section__lead--muted {
  color: rgba(15, 42, 77, 0.7);
}

.section__lead--light {
  color: rgba(247, 243, 237, 0.72);
}

.section__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 178, 108, 0.28);
}

.section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.section__center {
  text-align: center;
}

.section__center .section__title {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 48px);
}

.section__center .lead {
  font-size: 17px;
  color: rgba(15, 42, 77, 0.65);
  margin-top: 14px;
}

/* —— Chat mock —— */
.chat {
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 30px 70px -40px rgba(15, 42, 77, 0.45);
}

.chat--light {
  background: #fff;
  border: 1px solid rgba(15, 42, 77, 0.09);
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 42, 77, 0.08);
}

.chat__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
}

.chat__title {
  font-size: 15px;
  font-weight: 500;
}

.chat__status {
  font-size: 12px;
  color: var(--green-live);
}

.chat__live {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  border: 1px solid rgba(216, 178, 108, 0.5);
  padding: 4px 8px;
  border-radius: 3px;
}

.chat__thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0 6px;
}

.bubble {
  max-width: 80%;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
}

.bubble--guide {
  align-self: flex-start;
  background: var(--cream-warm);
  border-radius: 14px 14px 14px 4px;
}

.bubble--user {
  align-self: flex-end;
  background: var(--navy);
  color: var(--cream);
  border-radius: 14px 14px 4px 14px;
  max-width: 74%;
}

.chat__chips {
  align-self: flex-start;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 2px;
}

.chip {
  border: 1px solid rgba(15, 42, 77, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(15, 42, 77, 0.75);
}

.chat__compose {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(15, 42, 77, 0.14);
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
}

.chat__compose-placeholder {
  font-size: 15px;
  color: rgba(15, 42, 77, 0.42);
  font-weight: 300;
}

.chat__send {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 15px;
  flex-shrink: 0;
}

/* —— Player card —— */
.player-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  max-width: 520px;
}

.player-card__art {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, #e7ddc6 0 7px, #d9cdb2 7px 14px);
  flex: none;
}

.player-card__body {
  flex: 1;
  min-width: 0;
}

.player-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

.player-card__meta {
  font-size: 13px;
  color: rgba(15, 42, 77, 0.6);
  margin-top: 2px;
}

.progress {
  height: 4px;
  border-radius: 2px;
  background: rgba(15, 42, 77, 0.14);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.progress__bar {
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 2px;
}

.progress__bar--38 {
  right: 62%;
}

.progress__bar--42 {
  right: 58%;
}

.player-card__times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(15, 42, 77, 0.55);
  margin-top: 7px;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex: none;
  cursor: pointer;
  border: none;
  padding: 0;
}

.play-btn:hover {
  background: var(--gold-hover);
}

.play-btn--sm {
  width: 46px;
  height: 46px;
  font-size: 15px;
}

.tour-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(216, 178, 108, 0.28);
}

.tour-point {
  background: var(--navy);
  padding: 22px;
}

.tour-point:first-child {
  padding-left: 0;
}

.tour-point:last-child {
  padding-right: 0;
}

.tour-point__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.tour-point__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 243, 237, 0.7);
  margin-top: 10px;
  font-weight: 300;
}

/* —— Broadcast —— */
.listeners {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(15, 42, 77, 0.1);
  border-radius: 14px;
  padding: 18px 22px;
  max-width: 470px;
}

.listeners__stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid var(--cream);
}

.avatar + .avatar {
  margin-left: -12px;
}

.avatar--navy {
  background: var(--navy);
  color: var(--gold);
}

.avatar--mid {
  background: #1e3e6a;
  color: var(--gold);
}

.avatar--gold {
  background: var(--gold);
  color: var(--navy);
}

.avatar--soft {
  background: var(--cream-warm);
  color: rgba(15, 42, 77, 0.7);
  font-size: 13px;
}

.listeners__copy {
  font-size: 15px;
  line-height: 1.5;
}

.listeners__copy strong {
  font-weight: 500;
  display: block;
}

.listeners__copy span {
  color: rgba(15, 42, 77, 0.6);
  font-weight: 300;
}

.listeners__code {
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}

.broadcast-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(216, 178, 108, 0.35);
  box-shadow: 0 40px 80px -50px rgba(15, 42, 77, 0.7);
}

.broadcast-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247, 243, 237, 0.14);
}

.on-air {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 178, 108, 0.16);
  border: 1px solid rgba(216, 178, 108, 0.5);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 6px 10px;
  border-radius: 3px;
}

.on-air__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.broadcast-panel__title {
  font-size: 14px;
  color: rgba(247, 243, 237, 0.8);
}

.broadcast-panel__time {
  margin-left: auto;
  font-size: 13px;
  color: rgba(247, 243, 237, 0.5);
}

.broadcast-panel__player {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(247, 243, 237, 0.14);
}

.broadcast-panel__track {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  color: var(--cream);
}

.broadcast-panel__track .progress {
  background: rgba(247, 243, 237, 0.18);
  margin-top: 10px;
}

.broadcast-panel__badge {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  flex: none;
}

.broadcast-roster {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

.broadcast-roster__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.broadcast-roster__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.broadcast-roster__avatar--host {
  background: var(--gold);
  color: var(--navy);
}

.broadcast-roster__avatar--guest {
  background: rgba(247, 243, 237, 0.12);
  color: var(--cream);
}

.broadcast-roster__name {
  font-size: 14px;
  color: rgba(247, 243, 237, 0.85);
}

.broadcast-roster__name--host {
  color: var(--cream);
}

.broadcast-roster__role {
  color: rgba(247, 243, 237, 0.45);
}

.broadcast-roster__state {
  margin-left: auto;
  font-size: 12px;
  color: rgba(247, 243, 237, 0.5);
}

.broadcast-roster__state--sync {
  color: var(--green-sync);
}

.shared-chat {
  background: rgba(247, 243, 237, 0.06);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shared-chat__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.5);
}

.shared-chat .bubble--user {
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px 12px 4px 12px;
  max-width: 84%;
  font-size: 14px;
  padding: 11px 14px;
}

.shared-chat .bubble--guide {
  background: rgba(247, 243, 237, 0.1);
  color: var(--cream);
  border-radius: 12px 12px 12px 4px;
  max-width: 88%;
  font-size: 14px;
  padding: 11px 14px;
}

.broadcast-compose {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.broadcast-compose__field {
  flex: 1;
  border: 1px solid rgba(247, 243, 237, 0.2);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  color: rgba(247, 243, 237, 0.45);
  font-weight: 300;
}

.broadcast-compose__share {
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.map-banner {
  position: relative;
  margin-top: 74px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 77, 0.12);
}

.map-banner img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 82%;
}

.map-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 77, 0.94) 0%,
    rgba(15, 42, 77, 0.6) 44%,
    rgba(15, 42, 77, 0.1) 78%
  );
}

.map-banner__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 44px;
}

.map-banner__copy-inner {
  max-width: 430px;
}

.map-banner__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  color: var(--cream);
}

.map-banner__text {
  font-size: 14px;
  color: rgba(247, 243, 237, 0.7);
  font-weight: 300;
  margin-top: 12px;
}

/* —— Places —— */
.places {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 56px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.place__image {
  height: 260px;
  border-radius: 999px 999px 10px 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 77, 0.12);
}

.place__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 14px;
}

a.place {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.place:hover .place__label,
a.place:focus-visible .place__label {
  color: var(--gold-deep, #B08B45);
}

.places__more {
  text-align: center;
  margin: 28px auto 0;
  max-width: var(--max);
  font-size: 15px;
}

.places__more a {
  color: var(--navy, #0F2A4D);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.places__more a:hover,
.places__more a:focus-visible {
  color: var(--gold-deep, #B08B45);
}

/* —— Stats band —— */
.stats {
  position: relative;
  background: var(--navy);
}

.stats__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.stats__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 77, 0.96) 0%,
    rgba(15, 42, 77, 0.82) 38%,
    rgba(15, 42, 77, 0.25) 75%
  );
}

.stats__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px var(--pad);
}

.stats__copy {
  max-width: 520px;
}

.stats__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0;
}

.stats__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(247, 243, 237, 0.75);
  font-weight: 300;
  margin: 20px 0 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(216, 178, 108, 0.3);
  margin-top: 70px;
}

.stat {
  background: rgba(15, 42, 77, 0.72);
  padding: 28px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.7);
  margin-top: 12px;
}

/* —— Quote —— */
.quote {
  background: var(--cream);
  padding: 110px var(--pad);
}

.quote__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote__mark {
  font-family: var(--font-display);
  font-size: 58px;
  color: var(--gold);
  line-height: 0.4;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.35;
  font-weight: 300;
  margin: 22px 0 0;
  text-wrap: pretty;
}

.quote__attr {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(15, 42, 77, 0.55);
  margin-top: 28px;
}

/* —— Plans —— */
.plans {
  max-width: var(--max);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.plan {
  border-radius: 16px;
  padding: 38px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.plan:hover {
  transform: translateY(-2px);
}

.plan:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.plan--free {
  background: var(--cream);
  border: 1px solid rgba(15, 42, 77, 0.12);
}

.plan--plus {
  background: var(--cream);
  border: 1px solid rgba(216, 178, 108, 0.7);
  box-shadow: 0 10px 30px -18px rgba(176, 139, 69, 0.9);
}

.plan--pro {
  background: var(--navy);
  border: 1px solid rgba(216, 178, 108, 0.4);
}

.plan__badge {
  position: absolute;
  top: -11px;
  left: 38px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 3px;
}

.plan__name {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.plan--free .plan__name,
.plan--plus .plan__name {
  color: var(--gold-deep);
}

.plan--pro .plan__name {
  color: var(--gold);
}

.plan__price {
  font-family: var(--font-display);
  font-size: 46px;
  margin-top: 14px;
  color: var(--ink);
}

.plan--pro .plan__price {
  color: var(--cream);
}

.plan__period {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(15, 42, 77, 0.55);
}

.plan--pro .plan__period {
  color: rgba(247, 243, 237, 0.6);
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
  font-size: 16px;
  font-weight: 300;
  padding: 0;
  list-style: none;
}

.plan--free .plan__features,
.plan--plus .plan__features {
  color: rgba(15, 42, 77, 0.75);
}

.plan--pro .plan__features {
  color: rgba(247, 243, 237, 0.8);
}

.plan .btn {
  margin-top: 32px;
}

.plan--pro .btn--ghost {
  text-align: center;
}

/* —— Coming soon dialog —— */
.coming-soon {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(420px, calc(100vw - 32px));
}

.coming-soon::backdrop {
  background: rgba(15, 42, 77, 0.55);
  backdrop-filter: blur(4px);
}

.coming-soon__inner {
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px;
  border: 1px solid rgba(216, 178, 108, 0.45);
  padding: 32px 30px 28px;
  box-shadow: 0 24px 60px -28px rgba(11, 33, 64, 0.85);
}

.coming-soon__eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.coming-soon__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--navy);
}

.coming-soon__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(15, 42, 77, 0.78);
}

.coming-soon__ok {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* —— CTA —— */
.cta {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 65%;
  opacity: 0.9;
}

.cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    #0f2a4d 0%,
    #0f2a4d 42%,
    rgba(15, 42, 77, 0.72) 62%,
    rgba(15, 42, 77, 0.25) 84%,
    rgba(15, 42, 77, 0.15) 100%
  );
}

.cta__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad);
}

.cta__copy {
  max-width: 560px;
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  color: var(--cream);
  margin: 0;
}

.cta__lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(247, 243, 237, 0.75);
  font-weight: 300;
  margin: 22px 0 0;
}

.cta__actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .hero__steps,
  .places,
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero__step:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }

  .hero__step:nth-child(even) {
    border-left: 1px solid rgba(216, 178, 108, 0.28);
  }

  .places {
    grid-template-columns: repeat(3, 1fr);
  }
  .place .place__image {
    border-radius: 25px 25px;
  }

  .hero__media {
    left: 0;
    top: -10%;
    width: 100%;
  }
}

@media (max-width: 950px) {
  :root {
    --pad: 24px;
  }

  .hero__media {
    left: 0;
    width: 100%;
    top:-25%;
    opacity: 1;
    /*object-position: 55% 40%;*/
    z-index: 0;
  }

  .hero__veil {
    z-index: 1;
    /* Keep type readable without wiping the photo (was ~0.55–0.88 navy = solid blue). */
    background: linear-gradient(
      180deg,
      rgba(15, 42, 77, 0.28) 0%,
      rgba(15, 42, 77, 0.42) 45%,
      rgba(15, 42, 77, 0.78) 100%
    );
  }

  .hero__inner {
    z-index: 2;
    padding-top: 72px;
  }

  .hero__steps {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .hero__step,
  .hero__step:first-child,
  .hero__step:last-child,
  .hero__step:nth-child(even) {
    padding: 22px 0;
    border-left: none;
    border-top: 1px solid rgba(216, 178, 108, 0.28);
  }

  .section__grid--how,
  .section__grid--tour,
  .section__grid--broadcast,
  .plans {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tour-points {
    grid-template-columns: 1fr;
  }

  .tour-point:first-child,
  .tour-point:last-child {
    padding: 22px 0;
  }

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

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

  .map-banner__copy {
    padding: 28px;
  }

  .map-banner__title {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .places {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .place__image {
    height: 220px;
    border-radius: 25px;
  }
}
