/* Template: landing — full-viewport hero with a lower-middle branding block
   and a locations strip. Every field comes from the page JSON and is
   optional (see js/templates/landing.js). */

.landing {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.landing__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.landing__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.landing__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-top: 120px;
  padding-bottom: clamp(48px, 9vh, 104px);
}

.landing__branding {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing__title {
  font-size: clamp(34px, 9vw, 92px);
  font-weight: 600;
  letter-spacing: clamp(0.08em, 1.5vw, 0.16em);
  line-height: 1.05;
}

.landing__subtitle {
  margin-top: clamp(14px, 2.5vh, 22px);
  font-size: clamp(13px, 2.2vw, 20px);
  font-weight: 500;
  letter-spacing: clamp(0.3em, 5vw, 0.46em);
  text-indent: clamp(0.3em, 5vw, 0.46em);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.landing__secondary {
  margin-top: clamp(10px, 2vh, 18px);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.landing__action {
  margin-top: clamp(28px, 5vh, 52px);
  display: inline-block;
  padding: clamp(12px, 2vh, 15px) clamp(36px, 6vw, 52px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-primary);
  border: 1px solid color-mix(in srgb, var(--color-text-primary) 38%, transparent);
  border-radius: 999px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.landing__action:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.landing__locations {
  margin-top: clamp(44px, 8vh, 84px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.9em;
  width: 100%;
  /* Viewport-scaled font with em-based gap/tracking keeps the strip
     proportional, so all items always fit on a single line. */
  font-size: min(1.4vw, 14px);
  border-top: 1px solid color-mix(in srgb, var(--color-text-primary) 14%, transparent);
  padding-top: clamp(20px, 3.5vh, 32px);
}

.landing__location {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-secondary);
  opacity: 0.8;
}
