/* ===== Asim Searah — cinematic artist layout (red / white / near-black) ===== */

:root {
  --red: #e61919;
  --red-deep: #b30f0f;
  --bg: #0a0a0a;
  --bg-2: #0e0e10;
  --bg-3: #121214;
  --line: #232327;
  --white: #f4f4f5;
  --muted: #9a9a9f;
  --gold: #d6b15a;
  --offer-h: 44px; /* height of the launch offer bar; overridden by offer.js, 0 when dismissed */
  --icon-play: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23fff'%3E%3Cpath%20d='M8%205v14l11-7z'/%3E%3C/svg%3E");
  --icon-pause: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23fff'%3E%3Cpath%20d='M6%205h4v14H6zM14%205h4v14h-4z'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Raleway', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Shared bits ---- */
.section-title {
  font-weight: 200;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.16em;
  text-transform: capitalize;
  color: var(--white);
}
.section-title--center {
  text-align: center;
  margin-bottom: 2.4rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.section-title--center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
}
/* Bold uppercase title (matches hero name) with red accent */
.sound-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 6vw, 3.2rem);
  color: var(--white);
}
.sound-title span { color: var(--red); }

.center-btn-wrap { text-align: center; margin-top: 2rem; }

.btn-outline, .btn-solid, .track__more {
  display: inline-block;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  transition: all 0.3s ease;
}
.btn-outline { border: 1px solid var(--line); color: var(--white); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: #fff; color: #000; }
.track__more { color: var(--muted); }
.track__more:hover { color: var(--red); }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: var(--offer-h, 0px); left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.4rem 0;
}
.nav--solid {
  background: rgba(8, 8, 9, 0.94);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.7rem 0;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.nav__logo { display: inline-flex; align-items: center; line-height: 0; }
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* render signature in white regardless of source color */
  transition: filter 0.3s ease, transform 0.3s ease;
  transform-origin: center center;
}
/* Only apply the red + zoom on real hover devices, so a tap on mobile doesn't stick it */
@media (hover: hover) {
  .nav__logo:hover img {
    /* turns the signature true red on hover and gently enlarges it */
    filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(7464%) hue-rotate(359deg) brightness(94%) contrast(118%);
    transform: scale(1.12);
  }
}
.nav__links { display: flex; gap: 2rem; position: absolute; left: 50%; top: 50%; transform: translate(calc(-50% + 25px - 1vw), -50%); }
.nav__links a {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { width: 100%; }
.nav__social { display: flex; gap: 1rem; align-items: center; }
.nav__social a svg { width: 16px; height: 16px; fill: var(--muted); transition: fill 0.3s ease; }
.nav__social a:hover svg { fill: var(--red); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--white); transition: 0.3s; }

/* Book Now (header) — matches the menu links, but red */
.nav__book {
  position: relative;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 4px;
  background: none;
  transition: color 0.3s ease;
}
.nav__book::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav__book:hover::after { width: 100%; }

/* Permanent offer mentions (pricing callout + booking form line) */
.offer-callout {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 1.2rem;
  padding: 1.15rem 1.5rem;
  background: rgba(230, 25, 25, 0.08);
  border: 1px solid var(--red);
  text-align: center;
}
.offer-callout__tag {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--red);
}
.offer-callout__text { font-size: 0.92rem; color: var(--white); }
.offer-callout__text strong { color: var(--red); font-weight: 700; }
.offer-callout .btn-solid { padding: 0.7rem 1.6rem; }
.offer-formline {
  display: block;
  margin: 0 0 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}
.offer-formline strong { font-weight: 800; color: var(--red); }

/* ===================== LAUNCH OFFER BAR ===================== */
.offer {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--red);
  color: #fff;
  text-align: center;
}
.offer__text { margin: 0; font-size: 0.78rem; line-height: 1.45; letter-spacing: 0.02em; }
.offer__text strong { font-weight: 700; }
.offer__tag { font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; margin-right: 0.45rem; }
.offer__spots { font-weight: 700; }
.offer__cta { margin-left: 0.5rem; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; color: #fff; }
.offer__cta:hover { opacity: 0.85; }
@media (max-width: 560px) {
  .offer { padding: 0.5rem 0.9rem; gap: 0.3rem; }
  .offer__text { font-size: 0.7rem; }
  .offer__tag { display: block; margin: 0 0 0.1rem; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
  filter: grayscale(0.2) brightness(0.7);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,7,8,0.92) 0%, rgba(7,7,8,0.45) 45%, rgba(7,7,8,0.2) 70%, rgba(7,7,8,0.65) 100%),
              linear-gradient(0deg, rgba(7,7,8,0.95) 0%, transparent 38%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__name {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  max-width: 880px;
  /* nudge the whole block down so more of the hero image shows up top */
  transform: translateY(8vh);
}
.hero__signature {
  height: clamp(92px, 16vw, 200px);
  width: auto;
  max-width: 100%;
  margin: 0.3rem 0 0.2rem;
  filter: brightness(0) invert(1) drop-shadow(0 8px 26px rgba(0, 0, 0, 0.6));
}
.hero__role {
  font-weight: 500;
  font-size: clamp(0.66rem, 1.3vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.hero__first,
.hero__script {
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
}
.hero__tag {
  margin-top: 1.4rem;
  max-width: 820px;
  color: #d6d3d2;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.6;
}
.hero__cta { display: flex; gap: 1rem; margin-top: 1.9rem; flex-wrap: wrap; }
.hero__btn { padding: 1.05rem 2.4rem; }
.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll span {
  display: block;
  width: 14px; height: 14px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: rotate(45deg) translate(0,0);} 50% { transform: rotate(45deg) translate(4px,4px);} }

/* ===================== ABOUT ===================== */
.about { background: var(--bg-2); }
.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about__text {
  padding: 4rem 3.5rem;
  align-self: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.about__text .section-title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.about__quote {
  font-style: italic;
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--white);
  max-width: 460px;
  margin: 0 auto 1.7rem;
}
.about__body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.95;
  max-width: 430px;
  margin: 0 auto 1.1rem;
}
.about__body strong { color: var(--white); font-weight: 600; }
.about__lead {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 1.6rem;
}
.about__lead strong { color: var(--red); font-weight: 700; }
.about__band { color: var(--red); font-weight: 700; }
.about__skills {
  list-style: none;
  max-width: 460px;
  margin: 0.2rem auto 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about__skills li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.about__skills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: rotate(45deg);
}
.about__skill-label { color: var(--white); font-weight: 700; }
.signature-img {
  display: inline-block;
  height: 112px;
  width: auto;
  margin-top: 1.6rem;
  filter: brightness(0) invert(1);
  opacity: 1;
}
/* min-height keeps the photo as tall as it was when the signature was in the text column */
.about__photo { position: relative; min-height: 620px; }
.about__img {
  position: absolute; inset: 0;
  background: url('about.jpg') center/cover no-repeat;
}
.about__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-2) 0%, rgba(14,14,16,0.35) 18%, transparent 38%);
}
.about__credit {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.4rem 1.1rem 0.85rem 2.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  /* soft corner scrim that fades into the photo — no hard edges */
  background: radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0) 72%);
  transition: color 0.3s ease;
}
.about__credit:hover { color: var(--red); }

/* ===================== VIDEOS ===================== */
.videos { background: var(--bg); padding: 2.5rem 2.5rem 4.25rem; }
.vidcarousel { position: relative; max-width: 1080px; margin: 0 auto; }
.vidcarousel__track { position: relative; }
.vidcarousel__center {
  position: relative;
  width: 62%;
  margin: 0 auto;
  z-index: 3;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.85);
}
.vidcarousel__side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #111;
  opacity: 0.4;
  filter: grayscale(0.55) brightness(0.5);
  cursor: pointer;
  z-index: 1;
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.vidcarousel__side--prev { left: 0; }
.vidcarousel__side--next { right: 0; }
.vidcarousel__side:hover { opacity: 0.75; filter: grayscale(0.2) brightness(0.8); }
.carousel__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border: 1px solid var(--line);
}
.carousel__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.carousel__caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  margin-top: 1.4rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.vidcarousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: none;
  border: 0;
  color: var(--white);
  width: 48px; height: 48px;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.vidcarousel__arrow:hover { color: var(--red); opacity: 1; }
.vidcarousel__arrow--prev { left: -6px; }
.vidcarousel__arrow--next { right: -6px; }
.carousel__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.4rem; }
.carousel__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel__dots button.is-active { background: var(--red); }

/* ===================== NEWS (compact) ===================== */
.news { background: var(--bg-2); padding: 4rem 2.5rem 2rem; }
.news__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.news__card { display: flex; gap: 1.4rem; align-items: flex-start; }
.news__thumb {
  width: 104px; height: 104px; flex-shrink: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.news__card:hover .news__thumb { filter: grayscale(0); }
.news__thumb--a { background-image: url('news/dark-river.jpg'); }
.news__thumb--b { background-image: url('https://img.youtube.com/vi/QTIrJakVA4I/hqdefault.jpg'); }
.news__thumb--ig { background-image: url('news/kairo.jpg'); }
.news__title {
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.35rem;
  transition: color 0.3s ease;
}
.news__card:hover .news__title { color: var(--red); }
.news__meta { font-style: italic; font-size: 0.74rem; color: #6f6f74; margin-bottom: 0.7rem; }
.news__excerpt { color: var(--muted); font-size: 0.84rem; line-height: 1.65; }
.news__more { color: var(--white); font-weight: 600; }
.news__card:hover .news__more { color: var(--red); }
.news__nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.4rem; }
.news__dots { display: flex; gap: 0.5rem; }
/* dots are only used for the mobile slider — hidden on desktop */
.news__nav .news__dots { display: none; }
.news__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); display: block; }
.news__dots i.is-active { background: var(--red); }
.news__nav .btn-outline { padding: 0.7rem 1.7rem; }

/* News page list */
.newslist { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }
.newsitem { display: flex; gap: 1.8rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.newsitem:last-child { border-bottom: 0; }
.newsitem__thumb { width: 200px; height: 200px; flex-shrink: 0; background-size: cover; background-position: center; background-color: var(--bg-2); filter: grayscale(0.25); }
.newsitem__title { font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.newsitem__meta { font-style: italic; font-size: 0.76rem; color: #6f6f74; margin: 0.4rem 0 0.9rem; }
.newsitem__text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.newsitem__link { display: inline-block; margin-top: 0.9rem; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }

/* ===================== MUSIC / TRACKS ===================== */
.music { background: var(--bg); padding: 4.25rem 2.5rem; }
.tracks {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 1rem;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.track:hover { border-color: var(--red); }
.track.is-playing { border-color: var(--red); }
#yt-audio { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.track__play {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background-color: var(--red);
  background-image: var(--icon-play);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.track:hover .track__play { transform: scale(1.08); box-shadow: 0 0 18px rgba(230, 25, 25, 0.45); }
.track.is-playing .track__play { background-image: var(--icon-pause); background-size: 13px; }
.track__art {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.3);
}
.track__art--a, .track__art--c { background-image: url('https://img.youtube.com/vi/rjP1CICoh6o/hqdefault.jpg'); }
.track__art--b, .track__art--d { background-image: url('https://img.youtube.com/vi/QTIrJakVA4I/hqdefault.jpg'); }
.track__info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.track__artist { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.track__name { font-weight: 600; color: var(--white); font-size: 0.98rem; }
/* Tracks moved under Releases — give the heading some breathing room */
.tracks-title { margin-top: 4.5rem; }

/* ===================== EVENTS / TOUR ===================== */
.events {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.event {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 1.25rem 1.6rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.event:hover { border-color: var(--red); transform: translateY(-2px); }
.event__flag {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.event__details { display: flex; flex-direction: column; gap: 0.28rem; flex: 1; min-width: 0; }
.event__date { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.event__name {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--gold);
}
.event__loc { font-size: 0.86rem; color: var(--muted); }
.event__go {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.event__go:hover { background: var(--red); border-color: var(--red); color: #fff; }
.event__arrow { font-size: 1.35rem; line-height: 1; transition: transform 0.3s ease; }
.event__go:hover .event__arrow { transform: translateX(3px); }
.events-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2.6rem; }
.events-note a { color: var(--red); transition: color 0.3s ease; }
.events-note a:hover { color: var(--white); }

/* Upcoming / Past toggle */
.events-toggle {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  max-width: 880px;
  margin: 0 auto 2.4rem;
}
.events-toggle button {
  font-family: inherit;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.events-toggle button:hover { color: var(--white); border-color: var(--red); }
.events-toggle button.is-active { color: #fff; background: var(--red); border-color: var(--red); }
/* needed because .events sets display:flex and would otherwise override [hidden] */
.events[hidden] { display: none; }

/* Past / archived events — dimmed, desaturated flag */
.event--past { opacity: 0.72; transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.event--past:hover { opacity: 1; }
.event--past .event__flag { filter: grayscale(0.55); }
.events-year {
  max-width: 880px;
  margin: 2.8rem auto 1.3rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--red);
}
#events-past > .events-year:first-child { margin-top: 0.4rem; }

/* ===================== TESTIMONIALS ===================== */
.testi { background: var(--bg-2); padding: 2rem 2.5rem; }
.testi__carousel { position: relative; max-width: 1000px; margin: 0 auto; }
.testi__viewport { overflow: hidden; transition: height 0.4s ease; }
.testi__track { display: flex; transition: transform 0.5s ease; }
.testi__slide { min-width: 100%; padding: 0.5rem 1rem; }
.testi__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.testi__inner--media {
  max-width: 940px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}
.testi__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}
.testi__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi__media--video { aspect-ratio: 16 / 9; cursor: pointer; }
.testi__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testi__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background-color: rgba(15, 15, 17, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-image: var(--icon-play);
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 20px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.testi__media--video:hover .testi__play {
  background-color: var(--red);
  border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 24px rgba(230, 25, 25, 0.5);
}
.testi__quote {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--white);
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.4rem;
}
.testi__quote::-webkit-scrollbar { width: 4px; }
.testi__quote::-webkit-scrollbar-thumb { background: var(--line); }
.testi__author { margin-top: 1.4rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); font-size: 1.18rem; }
.testi__country { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--red); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.3rem; opacity: 0.85; }
.testi__flag { width: 1.5em; height: auto; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18); }
.testi__role { color: var(--red); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }
.testi__arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: none; border: 0; color: var(--white);
  width: 44px; height: 44px; font-size: 2.2rem; line-height: 1;
  cursor: pointer; opacity: 0.6;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.testi__arrow:hover { color: var(--red); opacity: 1; }
.testi__arrow--prev { left: -12px; }
.testi__arrow--next { right: -12px; }
.testi__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.6rem; flex-wrap: wrap; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: background 0.3s ease; }
.testi__dots button.is-active { background: var(--red); }

/* ===================== CONTACT ===================== */
.contact { background: var(--bg-2); padding: 2rem 2.5rem 4rem; }
.contact__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact__lead { color: var(--muted); margin-bottom: 2rem; font-size: 0.98rem; }
.contact__social { display: flex; justify-content: center; gap: 1.4rem; margin-top: 2.6rem; }
.contact__social a svg { width: 20px; height: 20px; fill: var(--muted); transition: fill 0.3s ease, transform 0.3s ease; }
.contact__social a:hover svg { fill: var(--red); transform: translateY(-3px); }

/* ===================== FOOTER ===================== */
.footer { background: #060606; border-top: 1px solid var(--line); padding: 2rem 2.5rem; }
/* Thin sponsors / endorsements strip */
.footer__sponsors {
  max-width: 1280px;
  margin: 0 auto 1.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem 1rem;
}
.footer__sponsors-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
}
.footer__sponsors-list { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; }
.footer__sponsors-list a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}
.footer__sponsors-list a:hover { color: var(--red); }
.footer__sponsors-list a:not(:last-child)::after {
  content: "\2022"; /* round bullet dot */
  color: var(--red);
  font-size: 0.5em;
  vertical-align: middle;
  margin: 0 0.55rem;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; }
.footer__brand { color: var(--red); text-transform: uppercase; }
.footer__link { color: var(--muted); transition: color 0.3s ease; }
.footer__link:hover { color: var(--red); }
.footer__credits { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; }
.footer__credit { color: #5f5f64; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer__credit-name { color: var(--red); transition: color 0.3s ease; }
.footer__credit:hover .footer__credit-name { color: #ff3a3a; }

/* Legal / privacy page */
.legal { max-width: 820px; margin: 0 auto; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.legal h2 { color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1rem; font-weight: 600; margin: 2.2rem 0 0.7rem; }
.legal strong { color: var(--white); font-weight: 600; }
.legal a { color: var(--red); }
.legal ul { margin: 0.5rem 0 1rem 1.2rem; }
.legal li { margin-bottom: 0.4rem; }
.legal__updated { color: #6f6f74; font-size: 0.8rem; font-style: italic; margin-bottom: 2rem; }

/* ===================== PACKAGES (compact strip on home) ===================== */
.packages { background: var(--bg-2); padding: 4.25rem 2.5rem 2rem; text-align: center; }
.packages__lead { color: var(--muted); max-width: 560px; margin: 0 auto 3rem; font-size: 0.95rem; }
.pkg-row {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.pkg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.7rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pkg:hover { border-color: var(--red); transform: translateY(-3px); }
.pkg--feature { border-color: rgba(230, 25, 25, 0.55); }
.pkg__name { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pkg__price { font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.pkg__meta { font-size: 0.72rem; color: var(--muted); }
.pkg__cta { margin-top: 0.55rem; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }

/* ===================== PACKAGES PAGE (detail) ===================== */
.pkggrid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}
.pcard {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  min-width: 0;
}
.pcard__btn .btn-outline, .pcard__btn .btn-solid { width: 100%; text-align: center; }
.pcard--feature { border-color: var(--red); box-shadow: 0 0 30px -10px rgba(230, 25, 25, 0.35); }
.pcard__badge {
  position: absolute; top: 0; right: 0;
  background: var(--red); color: #fff;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}
.pcard__name { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--white); }
.pcard__sub {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin: 0.5rem 0 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.pcard__price { font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.pcard__price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.pcard__save { color: var(--red); font-size: 0.74rem; margin-top: 0.4rem; letter-spacing: 0.05em; }
.pcard__list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.pcard__list li { color: var(--muted); font-size: 0.88rem; padding-left: 1.3rem; position: relative; }
.pcard__list li::before { content: "—"; color: var(--red); position: absolute; left: 0; }
.pcard__btn { margin-top: auto; text-align: center; }
.pkg-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 3rem; }
.pkg-note a { color: var(--red); }
.pkg-policy {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  scroll-margin-top: 90px; /* keep heading clear of the sticky nav when linked to */
}
.pkg-policy-link { text-align: center; margin-top: 1.4rem; }
.pkg-policy-link a {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.pkg-policy-link a:hover { color: var(--red); }
.pkg-policy__title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.pkg-policy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.pkg-policy__list strong { color: var(--white); font-weight: 600; }

/* ===================== VIDEOS PAGE ===================== */
.page { padding-top: calc(96px + var(--offer-h, 0px)); }
.page-head { text-align: center; padding: 2.5rem 2.5rem 0.5rem; }
.page-head .section-title { text-transform: uppercase; letter-spacing: 0.24em; font-weight: 300; }
.page-head__lead { color: var(--muted); margin-top: 1rem; font-size: 0.95rem; }
.vidgrid-wrap { padding: 1.5rem 2.5rem 4rem; }
.vidgrid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vidcard { background: var(--bg-3); border: 1px solid var(--line); transition: border-color 0.3s ease, transform 0.3s ease; }
.vidcard:hover { border-color: var(--red); transform: translateY(-3px); }
.vidcard__media { position: relative; width: 100%; padding-top: 56.25%; cursor: pointer; overflow: hidden; background: #000; }
.vidcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.25) brightness(0.85); transition: transform 0.4s ease, filter 0.4s ease; }
.vidcard__media:hover img { filter: none; transform: scale(1.05); }
.vidcard__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vidcard__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background-color: rgba(15, 15, 17, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-image: var(--icon-play);
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 22px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.vidcard__media:hover .vidcard__play {
  background-color: var(--red);
  border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 26px rgba(230, 25, 25, 0.55);
}
.vidcard__title { padding: 1rem 1.1rem; font-weight: 600; font-size: 0.92rem; line-height: 1.45; color: var(--white); }

/* ===================== CONTACT PAGE ===================== */
.contactpage__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: start;
}
.cinfo__lead { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.cinfo__row { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.4rem; }
.cinfo__ic { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cinfo__ic svg { width: 18px; height: 18px; fill: var(--red); }
.cinfo__label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.cinfo__val { color: var(--white); font-size: 0.92rem; }
.cinfo__val:hover { color: var(--red); }
.cinfo .contact__social { justify-content: flex-start; margin-top: 2rem; }

.cform { display: flex; flex-direction: column; gap: 1.3rem; text-align: left; }
.cform__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.3rem; }
.cfield { display: flex; flex-direction: column; min-width: 0; }
.cfield label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.cfield label .req { color: var(--red); margin-left: 2px; }
.cfield input, .cfield textarea, .cfield select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 0.8rem 0.9rem;
  font-family: 'Raleway', system-ui, sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}
.cfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239a9a9f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 18px;
}
.cfield select option { background: var(--bg-3); color: var(--white); }
.iti { max-width: 100%; }
.cfield input::placeholder, .cfield textarea::placeholder { color: #5f5f64; }
.cfield input:focus, .cfield textarea:focus, .cfield select:focus { outline: none; border-color: var(--red); }
.cfield textarea { resize: vertical; min-height: 140px; }
.cform__btn { width: 100%; border: 0; cursor: pointer; font-family: inherit; }
.cform__status { font-size: 0.85rem; min-height: 1.2em; margin: 0; }

/* Compact booking form (home, under lessons) */
.bookform { background: var(--bg-2); padding: 0.5rem 2.5rem 0; }
.bookform__inner {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2rem 2rem 2.2rem;
}
.bookform__title {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--white);
}
.bookform__lead { text-align: center; color: var(--muted); font-size: 0.84rem; margin: 0.5rem 0 1.5rem; }
.bookform__lead a { color: var(--red); }
.cform--compact { gap: 1rem; }
.cform--compact textarea { min-height: 88px; }
.cform__row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* intl-tel-input — dark theme to match the form fields */
.iti { width: 100%; display: block; }
.iti__selected-flag { background: transparent; }
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag { background: rgba(255, 255, 255, 0.06); }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--white); }
.iti__country-list {
  background: #131313;
  color: #e5e2e1;
  border: 1px solid #2f2e2e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.iti__country.iti__highlight { background: #201f1f; }
.iti__divider { border-bottom-color: #2f2e2e; }
.iti__dial-code { color: #9a9a9f; }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; border: 1px solid var(--line); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.8rem; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) {
  .nav__links, .nav__social { display: none; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    transform: none;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,9,0.98);
    border-top: 1px solid var(--line);
  }
  .nav__links.is-open a { padding: 1rem 2.5rem; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .hero__inner { justify-content: center; }
  .hero__name { text-align: center; align-items: center; width: 100%; }
  .hero__cta { width: 100%; flex-direction: column; align-items: center; }
  .hero__btn { width: 100%; max-width: 320px; text-align: center; }
  .about__inner { grid-template-columns: 1fr; }
  .about__text { padding: 4rem 1.8rem; }
  .about__photo { min-height: 320px; order: -1; }
  .about__photo::after { background: linear-gradient(0deg, var(--bg-2) 0%, transparent 30%); }
  .tracks { grid-template-columns: 1fr; }
  /* Latest News becomes a swipeable slider on mobile (like the testimonials) */
  .news__grid {
    grid-template-columns: none;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
  }
  .news__grid::-webkit-scrollbar { display: none; }
  .news__card {
    flex: 0 0 86%;
    scroll-snap-align: center;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-3);
    border: 1px solid var(--line);
    padding: 1.1rem;
  }
  .news__thumb { width: 100%; height: 190px; }
  .news__nav .news__dots:first-child { display: flex; }
  .news__dots i { cursor: pointer; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .nav__book { display: none; }
  .testi__inner--media { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; }
  .testi__media { max-width: 280px; margin: 0 auto; width: 100%; }
  .testi__media--video { max-width: 100%; }
  .vidcarousel__side { display: none; }
  .vidcarousel__center { width: 100%; }
  .vidcarousel__arrow { width: 38px; height: 38px; font-size: 1.7rem; }
  .vidcarousel__arrow--prev { left: -4px; }
  .vidcarousel__arrow--next { right: -4px; }
  .vidgrid { grid-template-columns: repeat(2, 1fr); }
  .pkg-row { grid-template-columns: 1fr; max-width: 360px; }
  .pkggrid { grid-template-columns: minmax(0, 1fr); max-width: 440px; }
  .newsitem { flex-direction: column; gap: 1rem; }
  .newsitem__thumb { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .contactpage__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cform__row--3 { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .vidgrid { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  /* Let the homepage booking form fill the width on mobile by cancelling the section's side padding */
  .bookform { margin: 0 -2.5rem; padding: 0.5rem 1.1rem 0; }
  .bookform__inner { padding: 1.6rem 1.1rem 1.8rem; }
  .cform--compact { gap: 1.3rem; }
  .cform--compact textarea { min-height: 140px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--big { grid-column: span 1; grid-row: span 1; }
  .event { gap: 1rem; padding: 1.1rem 1.2rem; }
  .event__flag { width: 38px; }
  .event__name { font-size: 1.05rem; }
  .event__go { width: 42px; height: 42px; }
}

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
