/* ===================================================
   ABZAL UTESHOV — landing page
   Mobile-first. Dark theme.
=================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-elevated-2: #1c1c1c;
  --text: #f5f5f2;
  --text-muted: #9a9a95;
  --border: rgba(255, 255, 255, 0.1);
  /* Soft muted purple/rose that harmonizes with the blue gradient background */
  --accent: #b88dd9;
  --accent-hover: #d4b5e8;
  /* Soft cool silver-blue for links, replaces jarring green */
  --gis-green: #7eb3d4;
  --gis-green-hover: #9ec8e0;

  /* Bebas Neue has no Cyrillic glyphs (Latin/Latin-ext only) — it's used
     only for pure-numeral display (day-of-month, countdown digits), never
     for Cyrillic headings/labels, where it would silently fall back and
     mismatch mid-word. Montserrat covers Cyrillic fully and carries the
     rest of the display/heading role. */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container-width: 1280px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
}

/* Wraps everything below the fixed header/splash. Gradient based on
   the exact colors extracted from the original background. */
.page-content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #3B3F59 0%,
    #5D718C 25%,
    #535B73 50%,
    #2E3140 75%,
    #1C1D26 100%
  );
  background-attachment: fixed;
}

/* Dark scrim overlay that reads as atmosphere, preventing the gradient
   from being too busy while keeping color variation visible across sections. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(8, 10, 18, 0.6);
}

/* Whole-page film grain — ties the Hero photograph and the flat UI
   sections into one visual material instead of a hard cut to "flat black". */
body::after {
  content: '';
  position: fixed;
  inset: -20px;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-flicker 12s ease-in-out infinite;
  will-change: transform;
}

/* Soft light that follows the cursor across the page (desktop pointer
   only, added/positioned from JS). Screen blend only ever brightens, so
   it never obscures text or photos underneath. */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cursor-glow.is-active {
  opacity: 1;
}

@keyframes grain-flicker {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -4%); }
  20% { transform: translate(-6%, 2%); }
  30% { transform: translate(4%, -2%); }
  40% { transform: translate(-2%, 6%); }
  50% { transform: translate(-6%, -3%); }
  60% { transform: translate(6%, 3%); }
  70% { transform: translate(0%, 4%); }
  80% { transform: translate(3%, -6%); }
  90% { transform: translate(-3%, 2%); }
}

/* ===== Splash / preload screen ===== */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-title-img {
  width: min(60vw, 340px);
  height: auto;
  opacity: 0;
  animation: splash-reveal 1.6s ease forwards;
}

@keyframes splash-reveal {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  45% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 46px rgba(255, 255, 255, 0.4));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.15));
  }
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Buttons ===== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
  transform: scale(0.97);
}

/* Light sweep on hover -- a quick diagonal highlight passing through the
   button, not a persistent effect. */
.btn:not(.btn-disabled)::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn:not(.btn-disabled):hover::after {
  animation: btn-shine 1.1s ease;
}

@keyframes btn-shine {
  from { left: -60%; }
  to { left: 140%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn:not(.btn-disabled):hover::after {
    animation: none;
  }
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(227, 32, 46, 0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 30px -6px rgba(184, 141, 217, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
}

.btn-disabled {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
  cursor: not-allowed;
}

.btn-small {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* ===== Header ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile dropdown menu */
@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .main-nav.is-open {
    display: flex;
    max-height: 320px;
  }

  .main-nav .nav-link {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  overflow: hidden;
  padding-bottom: 28px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dark fade across the bottom of Hero: hides the artist photo's hard,
   un-faded bottom edge and carries the section down into var(--bg), the
   same tone Tour's own top fade starts from -- together they read as one
   deliberate dark bridge between the two sections instead of a seam. */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 70%, var(--bg) 100%);
}

/* Artist photo already includes his shadow, baked in by the source image —
   just placed and sized, no extra glow duplicate, tint or shadow layer.
   The mask (feathering the source's hard right-edge cutoff, see below) and
   the drop-shadow filter are split across two elements on purpose: filters
   render before masking, so a filter and a mask on the very same element
   makes the browser compute the drop-shadow from the photo's *unmasked*
   shape -- which, being a tight crop, touches non-zero alpha right at
   every edge -- and blur that into a faint rectangular halo tracing the
   crop's bounding box. Masking the inner img and filtering the outer
   wrapper makes the shadow follow the already-masked (feathered) shape. */
.hero-photo-frame {
  position: absolute;
  bottom: 0;
  left: 52%;
  transform: translateX(-50%);
  height: 56%;
  z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

@media (min-width: 768px) {
  .hero-photo-frame {
    height: 62%;
  }
}

.hero-photo {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 99%);
  mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 99%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: calc(var(--header-height) + 20px);
}

.hero-title {
  margin: 0;
}

.hero-title-img {
  width: min(90vw, 520px);
  height: auto;
  display: block;
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-socials {
  display: flex;
  gap: 22px;
}

.hero-socials a {
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.hero-socials a:hover {
  color: var(--text);
}

.hero-socials svg {
  width: 22px;
  height: 22px;
}

/* ===== Sections (shared) ===== */

.section {
  position: relative;
  padding: 80px 0 96px;
}

.music {
  padding-top: 96px;
}

.info {
  padding-bottom: 104px;
}

/* Continues the dark bridge Hero's own bottom fade ends on (both meet at
   var(--bg)), then releases back to the shared tiled background. */
.tour {
  position: relative;
  z-index: 0;
}

.tour::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
}

/* ===== Tour marquee ===== */

.tour-marquee {
  overflow: hidden;
  padding: 14px 0;
  margin-bottom: 56px;
  user-select: none;
}

.tour-marquee-track {
  display: flex;
  width: max-content;
  animation: tour-marquee-scroll 30s linear infinite;
}

.tour-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.tour-marquee-group span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.1rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding: 0 20px;
}

@keyframes tour-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-align: center;
  margin: 0 0 8px;
}

.section-title-left {
  text-align: left;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 28px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 48px;
  font-size: 15px;
}

@media (min-width: 768px) {
  .section-title {
    text-align: left;
  }

  .section-subtitle {
    text-align: left;
  }
}

/* ===== Countdown ===== */

.countdown-bar {
  margin-bottom: 56px;
}

.countdown-bar-inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.countdown-bar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.countdown-bar-time {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-bar-time strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  margin-right: 4px;
}

.countdown-bar-time small {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.countdown-bar-city {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ===== Tour dates ===== */

.tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 4px 22px 20px;
  margin-left: -20px;
  border-bottom: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.55s ease;
}

.tour-item:last-child {
  border-bottom: none;
}

.tour-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.tour-item:hover::before {
  transform: scaleY(1);
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 64px;
  flex-shrink: 0;
}

.tour-day {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.tour-month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.tour-info {
  display: flex;
  flex-direction: column;
  flex: 0 1 520px;
  min-width: 0;
}

.tour-city-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-city {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .tour-city {
    font-size: 28px;
  }
}

.tour-remaining {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.tour-remaining.is-soon {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.tour-venue {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gis-green);
  text-decoration: underline;
  text-decoration-color: rgba(46, 204, 113, 0.4);
  text-underline-offset: 2px;
  width: fit-content;
  transition: color 0.4s ease;
}

.tour-venue svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.tour-venue:hover {
  color: var(--gis-green-hover);
  text-decoration-color: currentColor;
}

.tour-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.tour-btn {
  flex-shrink: 0;
  margin-left: auto;
  padding: 10px 18px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: var(--accent);
  border-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px -6px rgba(184, 141, 217, 0.3);
}

.tour-item.is-sold-out .tour-city,
.tour-item.is-sold-out .tour-venue,
.tour-item.is-coming-soon .tour-city,
.tour-item.is-coming-soon .tour-venue {
  color: var(--text-muted);
}

.tour-item.is-sold-out .tour-remaining,
.tour-item.is-coming-soon .tour-remaining {
  display: none;
}

@media (min-width: 640px) {
  .tour-item {
    padding: 24px 8px;
  }
}

/* Below 640px the one-row layout leaves too little width for the info
   column once the fixed date column and button are accounted for — at the
   larger, bold, uppercase city-name size that overflows instead of
   wrapping (single unbreakable word). Stack the row instead of squeezing
   it horizontally. */
@media (max-width: 639px) {
  .tour-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tour-date {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    width: auto;
  }

  .tour-month {
    margin-top: 0;
  }

  .tour-info {
    flex: none;
    width: 100%;
  }

  .tour-btn {
    margin-left: 0;
    align-self: flex-start;
  }
}

/* ===== Music ===== */

.music-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .music-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: start;
  }
}

.music-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.clip-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.clip-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clip-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

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

.clip-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

.clip-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.clip-thumb:hover .clip-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.clip-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.clip-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.clip-arrow svg {
  width: 18px;
  height: 18px;
}

.clip-arrow:hover {
  border-color: var(--text);
  background: var(--bg-elevated);
}

.clip-counter {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.spotify-player {
  width: 100%;
}

.spotify-player iframe {
  display: block;
  width: 100%;
}

.streaming-label {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.platform-links {
  display: flex;
  justify-content: flex-start;
  gap: 26px;
}

.platform-link {
  color: var(--text-muted);
  transition: color 0.4s ease, transform 0.4s ease;
}

.platform-link:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.platform-link svg {
  width: 28px;
  height: 28px;
}

/* ===== FAQ + Booking ===== */

.info-grid {
  display: grid;
  gap: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-summary {
  width: 100%;
  padding: 18px 0;
  margin: 0;
  background: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* Grid-rows reveal: animating an actual track size is far smoother than
   animating `height` (which forces layout every frame). No JS measuring. */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-panel-inner p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-panel-inner p a {
  color: var(--text);
  text-decoration: underline;
}

.faq-contact-btn {
  display: inline-flex;
  margin-top: 28px;
}

.booking-block {
  padding: 40px;
  background: var(--bg-elevated);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.booking-block:hover {
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

.booking-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elevated-2);
  color: var(--gis-green);
  margin-bottom: 24px;
}

.booking-icon svg {
  width: 24px;
  height: 24px;
}

.booking-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 34ch;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

.booking-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
}

.booking-role {
  font-size: 13px;
  color: var(--text-muted);
}

.booking-cta svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .section-title-left {
    margin-bottom: 32px;
  }
}

/* ===== Footer ===== */

.site-footer {
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-socials a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.footer-socials a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 12px;
  color: #5a5a56;
}

@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===== Fade-in on scroll ===== */

.fade-in {
  --reveal-i: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--reveal-i) * 60ms);
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  body::after {
    animation: none;
  }
  .tour-marquee-track {
    animation: none;
  }
  .splash-title-img {
    animation: none;
  }
}
