/* ==========================================================================
   PREMIUM LIVE BAND — editorial ivory & deep red
   ========================================================================== */

:root {
  --paper:    #F7F3EB;
  --paper-2:  #EFE9DD;
  --paper-3:  #E6DFD1;
  --ink:      #14100E;
  --ink-2:    #6B6259;
  --ink-3:    #9A9084;
  --line:     rgba(20,16,14,.13);
  --line-2:   rgba(20,16,14,.07);
  --red:      #A11C2C;
  --red-2:    #C0293A;
  --red-deep: #6B1220;
  --gold:     #B08C4F;

  --pad:  clamp(20px, 5vw, 76px);
  --gap:  clamp(18px, 2.4vw, 34px);
  --sec:  clamp(74px, 11vh, 148px);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  /* Wordmark only — matches the heavy lettering on the band's own promo art. */
  --display: 'Archivo Black', 'Arial Black', Impact, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --e: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; overflow-x: hidden; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  font-variant-numeric: tabular-nums;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
input, textarea, select, button { font-family: var(--sans); }
input:focus, textarea:focus, select:focus { outline: none; }
::selection { background: var(--red); color: var(--paper); }

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

.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;
}

/* --------------------------------------------------------------- utilities */
.wrap { padding-left: var(--pad); padding-right: var(--pad); }
/* Show/hide only — each element keeps its own `display` value when visible,
   so these must never set one. See the !important pair at the end of the file. */

/* paper grain over the whole page */
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: .32; mix-blend-mode: multiply;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------- section chrome  */
.sec { padding-top: var(--sec); padding-bottom: var(--sec); }
.sec-tight { padding-top: var(--sec); padding-bottom: 0; }

.eyebrow {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: clamp(26px, 4.5vh, 52px);
}
.eyebrow > span:first-child {
  font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.eyebrow em {
  font-style: normal; color: var(--red); font-variant-numeric: tabular-nums;
}
.eyebrow .rule { flex: 1; height: 1px; background: var(--line); }

.h-sec {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-wrap: balance;
}
.h-sec i { font-style: normal; color: var(--red); }

.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(24px, 4vw, 60px); flex-wrap: wrap;
  margin-bottom: clamp(34px, 5.5vh, 66px);
}
.lede {
  margin: 0 0 6px; max-width: 42ch;
  font-size: 15.5px; line-height: 1.65; color: var(--ink-2);
  text-wrap: pretty;
}

/* alternating page bands, previously repeated as inline styles per section */
.band-2 {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.h-sub { font-size: clamp(24px, 3.2vw, 42px); }

/* review roll-up under the video testimonials */
.rev-more {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: clamp(30px, 4.5vh, 48px);
  padding: clamp(18px, 2.6vh, 26px) clamp(20px, 3vw, 30px);
  border: 1px dashed var(--line); border-radius: 3px; background: var(--paper-2);
}
.rev-more p {
  margin: 0; font-family: var(--serif); font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.3; color: var(--ink-2);
}

/* ------------------------------------------------------------- buttons     */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 100px; padding: 15px 30px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  cursor: pointer; transition: background .35s var(--e), color .35s var(--e), border-color .35s var(--e), transform .35s var(--e);
  white-space: nowrap;
}
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-sm { padding: 10px 20px; font-size: 10.5px; letter-spacing: .18em; }
.btn:disabled { opacity: .5; cursor: default; transform: none; }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ------------------------------------------------------------- preloader   */
#pre {
  position: fixed; inset: 0; z-index: 300; background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  /* Safety net: if JavaScript never runs, the overlay still clears itself
     instead of hiding the whole site behind a blank screen. */
  animation: preFallback .6s 5s forwards;
}
@keyframes preFallback { to { opacity: 0; visibility: hidden; } }
#pre .pre-mark {
  font-family: var(--display); font-size: clamp(28px, 5.6vw, 50px); font-weight: 400;
  letter-spacing: .05em; line-height: 1; text-transform: uppercase;
}
#pre .pre-sub {
  font-size: 10px; font-weight: 600; letter-spacing: .5em; text-transform: uppercase;
  color: var(--red); padding-left: .5em;
}
#pre .pre-track { width: min(220px, 50vw); height: 1px; background: var(--line); position: relative; overflow: hidden; }
#preBar { position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: left; }
#preN { font-family: var(--serif); font-size: 13px; color: var(--ink-3); }

/* ------------------------------------------------------------- cursor      */
/* A trailing ring only. The native cursor is deliberately left visible —
   hiding it made the pointer impossible to find. */
#curRing { display: none; }
@media (hover: hover) and (pointer: fine) {
  #curRing {
    display: block; position: fixed; top: 0; left: 0; z-index: 320;
    width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
    border: 1.5px solid var(--red); pointer-events: none;
    opacity: 0; transition: opacity .3s, width .25s, height .25s, margin .25s, background .25s;
  }
  #curRing.is-live { opacity: .85; }
  #curRing.is-hot {
    width: 52px; height: 52px; margin: -26px 0 0 -26px;
    background: rgba(161,28,44,.12);
  }
}
@media (pointer: coarse) { #curRing { display: none !important; } }

/* ------------------------------------------------------------- header      */
/* Transparent over the dark hero photograph, solid ivory once scrolled. */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  border-bottom: 1px solid transparent;
  color: #FFFBF4;
  transition: background .4s var(--e), border-color .4s var(--e), color .4s var(--e), backdrop-filter .4s;
}
.hdr.is-solid {
  background: rgba(247,243,235,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.hdr .hdr-logo span { color: #E8899A; transition: color .4s var(--e); }
.hdr.is-solid .hdr-logo span { color: var(--red); }
.hdr .hdr-link::after { background: currentColor; }
.hdr .lang-btn { color: rgba(255,251,244,.62); }
.hdr .lang-btn:hover { color: #FFFBF4; }
.hdr.is-solid .lang-btn { color: var(--ink-3); }
.hdr.is-solid .lang-btn:hover { color: var(--ink); }
.hdr .lang-btn.is-on, .hdr.is-solid .lang-btn.is-on { color: #fff; background: var(--red); }
.hdr .btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  height: 72px; padding: 0 var(--pad);
}
.hdr-logo { display: flex; align-items: baseline; gap: 10px; }
.hdr-logo b {
  font-family: var(--display); font-weight: 400; font-size: 17px;
  letter-spacing: .04em; line-height: 1; text-transform: uppercase;
}
.hdr-logo span {
  font-size: 8.5px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--red);
}
.hdr-nav { display: flex; gap: clamp(16px, 2vw, 30px); }
.hdr-link {
  font-size: 12.5px; font-weight: 500; position: relative; padding: 4px 0;
}
.hdr-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--e);
}
.hdr-link:hover::after { transform: scaleX(1); transform-origin: left; }
.hdr-right { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 20px); }
.langs { display: flex; gap: 4px; }
.lang-btn {
  background: none; border: none; padding: 4px 7px; cursor: pointer;
  font-size: 10.5px; font-weight: 600; letter-spacing: .12em; color: var(--ink-3);
  border-radius: 4px; transition: color .3s, background .3s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-on { color: #fff; background: var(--red); }
/* --- mobile language picker: one button, opens the three options --------- */
.lang-pick { position: relative; }
.lang-cur {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid currentColor; border-radius: 100px;
  padding: 6px 11px 6px 9px; cursor: pointer; color: inherit;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  opacity: .85; transition: opacity .3s, background .3s, color .3s;
}
.lang-cur:hover, .lang-cur[aria-expanded="true"] { opacity: 1; }
.lang-cur svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.lang-cur b { font-weight: 600; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 5;
  min-width: 148px; padding: 6px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 18px 40px -18px rgba(20,16,14,.42);
  display: none; flex-direction: column; gap: 2px;
}
.lang-pick.is-open .lang-menu { display: flex; }
.lang-menu .lang-btn {
  width: 100%; text-align: left; padding: 11px 12px; border-radius: 7px;
  font-size: 14px; letter-spacing: .01em; color: var(--ink);
}
.lang-menu .lang-btn.is-on { background: var(--red); color: #fff; }

.hdr-tel { font-size: 13px; font-weight: 500; }
.hdr-tel:hover { color: var(--red); }
.burger {
  background: none; border: none; cursor: pointer; padding: 8px 2px;
  display: flex; flex-direction: column; gap: 5px; transition: transform .4s var(--e);
}
.burger span { display: block; width: 22px; height: 1.5px; background: currentColor; }

/* mobile nav */
.mnav {
  position: fixed; inset: 0; z-index: 110; background: var(--ink); color: var(--paper);
  transform: translateY(-102%); transition: transform .6s var(--e);
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  padding: 92px var(--pad) 40px; overflow-y: auto;
}
.mnav.is-open { transform: translateY(0); }
.mnav a.mnav-link {
  font-family: var(--serif); font-size: clamp(27px, 7vw, 42px); font-weight: 500;
  padding: 5px 0; line-height: 1.15;
}
.mnav a.mnav-link:hover { color: var(--red-2); }
.mnav-foot {
  margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(247,243,235,.2);
  display: flex; flex-direction: column; gap: 12px;
}
.mnav-foot .btn { align-self: flex-start; }
.mnav-tel { font-size: 17px; font-weight: 500; }
.mnav-socials { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 4px; }
.mnav-socials a {
  font-size: 12px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red-2);
}

/* ------------------------------------------------------------- hero        */
/* Full-bleed photograph with the copy laid over it. Everything is sized to
   land inside one viewport height so the first screen needs no scrolling. */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(88px, 12vh, 116px) var(--pad) clamp(48px, 8vh, 76px);
  background: #100C0B;
  color: var(--paper);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%;
  transform: scale(1.03);
}
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(97deg, rgba(16,12,11,.9) 0%, rgba(16,12,11,.78) 28%, rgba(16,12,11,.4) 54%, rgba(16,12,11,.12) 76%, rgba(16,12,11,.42) 100%),
    linear-gradient(180deg, rgba(16,12,11,.66) 0%, rgba(16,12,11,.06) 24%, rgba(16,12,11,.1) 60%, rgba(16,12,11,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1240px; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(9.5px, .78vw, 11px); font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: #E8899A;
  margin-bottom: clamp(14px, 2.2vh, 24px);
}
.hero-kicker::before { content: ''; width: 30px; height: 1px; background: #E8899A; }

.hero-word { margin: 0 0 clamp(14px, 2vh, 22px); }
.hero-word .line { overflow: hidden; display: block; }
.hero-word .w1 {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 7.6vw, 108px); line-height: .96; letter-spacing: .01em;
  text-transform: uppercase; color: #FFFBF4;
}
.hero-word .w2 {
  display: flex; align-items: center; gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(4px, .8vh, 10px);
  font-size: clamp(11px, 1.35vw, 17px); font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: #E8899A;
}
.hero-word .w2::after { content: ''; flex: 1; max-width: 340px; height: 1px; background: rgba(232,137,154,.45); }

.hero-lead {
  margin: 0 0 clamp(16px, 2.4vh, 28px); max-width: 50ch;
  font-size: clamp(14.5px, 1.05vw, 17px); line-height: 1.6;
  color: rgba(247,243,235,.82); text-wrap: pretty;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(16px, 2.6vh, 28px);
}
.hero-pills span {
  border: 1px solid rgba(247,243,235,.28); border-radius: 100px; padding: 7px 15px;
  font-size: clamp(11px, .85vw, 12.5px); font-weight: 500;
  color: rgba(247,243,235,.9); background: rgba(16,12,11,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-clear {
  background: rgba(247,243,235,.08); color: #FFFBF4; border-color: rgba(247,243,235,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-clear:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* every contact channel gathered under the hero CTAs */
.hero-links {
  margin-top: clamp(18px, 3vh, 34px);
  padding-top: clamp(14px, 2.2vh, 22px);
  border-top: 1px solid rgba(247,243,235,.18);
}
.hero-links-label {
  display: block; margin-bottom: 11px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(247,243,235,.5);
}
.hero-links .socials { flex-wrap: wrap; gap: 8px; }
.hero-links .socials a {
  width: auto; height: auto; border-radius: 100px; padding: 9px 15px 9px 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,243,235,.1); border-color: rgba(247,243,235,.24);
  color: #FFFBF4;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-links .socials a:hover { background: var(--red); border-color: var(--red); }
.hero-links .socials a em {
  font-style: normal; font-size: 12px; font-weight: 500; letter-spacing: .01em;
}
.hero-links .socials svg { width: 15px; height: 15px; }

.hero-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 22px; transform: translateX(-50%);
}
.hero-cue i {
  display: block; width: 1px; height: 46px; background: rgba(247,243,235,.22);
  position: relative; overflow: hidden;
}
.hero-cue i::after {
  content: ''; position: absolute; inset: 0; background: #E8899A;
  animation: cue 2.6s var(--e) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ------------------------------------------------------------- marquee     */
.marq-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(13px, 2vh, 20px) 0; background: var(--paper-2);
}
.marq { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marq-row { display: flex; align-items: center; flex-shrink: 0; }
.marq-row > span:not(.dot) {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2.8vw, 38px); text-transform: uppercase; white-space: nowrap;
  padding: 0 clamp(14px, 1.9vw, 26px);
}
.marq-row .dot { color: var(--red); font-size: 11px; }
@keyframes marq { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ------------------------------------------------------------- stats       */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: clamp(28px, 5vh, 56px) clamp(14px, 2vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5.4vw, 78px); line-height: 1; letter-spacing: -.02em;
  color: var(--red);
}
.stat b sup { font-size: .42em; vertical-align: super; margin-left: 2px; }
/* Direct child only — the counter itself is a <span> inside the <b>. */
.stat > span {
  display: block; margin-top: 12px;
  font-size: 12.5px; line-height: 1.45; color: var(--ink-2); max-width: 22ch;
}
@media (max-width: 860px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
}

/* ------------------------------------------------------------- reels       */
.reels { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap); }
.reels-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1300px) { .reels { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1000px) { .reels, .reels-4 { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 720px)  { .reels, .reels-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.reel { min-width: 0; }
.reel-media {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  aspect-ratio: 9 / 16; overflow: hidden; border-radius: 3px;
  background: #100C0B; cursor: pointer;
}
.reel-media .reel-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s ease, transform .9s var(--e);
}
.reel-media:hover .reel-poster { transform: scale(1.04); }
.reel-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(16,12,11,.66) 100%);
  transition: opacity .4s;
}
.reel-play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.6); background: rgba(20,16,14,.3);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff; cursor: pointer;
  transition: background .35s, border-color .35s, transform .35s var(--e), opacity .35s;
}
.reel-media:hover .reel-play { background: var(--red); border-color: var(--red); transform: translate(-50%,-50%) scale(1.08); }
.reel-play svg { width: 15px; height: 15px; margin-left: 3px; fill: currentColor; }
/* Card in the reel row that holds copy rather than a clip. */
.reel-media.is-plain {
  display: grid; place-items: center; text-align: center; padding: 22px; cursor: default;
  background: var(--paper-2); border: 1px dashed var(--line);
}
.reel-media.is-plain::after { content: none; }
.reel-media.is-plain p {
  margin: 0; font-family: var(--serif); font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.3; color: var(--ink-2);
}
.reel-badge {
  position: absolute; z-index: 2; left: 11px; top: 11px;
  background: rgba(247,243,235,.92); color: var(--ink);
  border-radius: 100px; padding: 5px 11px;
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.reel-cap {
  margin: 13px 0 0; font-size: 13px; font-weight: 500; line-height: 1.4;
}
.reel-cap em { display: block; font-style: normal; font-size: 11.5px; color: var(--ink-3); font-weight: 400; margin-top: 3px; }

/* wide youtube cards */
.yt-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--gap); margin-top: clamp(34px, 5.5vh, 62px);
}
.yt-card { min-width: 0; }
.yt-frame {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  aspect-ratio: 16 / 9; overflow: hidden; border-radius: 3px; background: #100C0B;
}
.yt-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--e); }
.yt-frame:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center;
  transition: transform .35s var(--e), background .35s;
  box-shadow: 0 12px 30px -10px rgba(107,18,32,.8);
}
.yt-frame:hover .yt-play { transform: translate(-50%,-50%) scale(1.1); }
.yt-play svg { width: 18px; height: 18px; margin-left: 3px; fill: currentColor; }

/* ------------------------------------------------------------- full bleed  */
.bleed {
  position: relative; overflow: hidden;
  height: clamp(300px, 62vh, 660px);
  background: #100C0B;
}
.bleed img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.bleed::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,12,11,.45), rgba(16,12,11,.15) 45%, rgba(16,12,11,.8));
}
.bleed-copy {
  position: absolute; z-index: 2; inset: auto 0 0 0; padding: var(--pad);
  color: rgba(255,255,255,.96);
}
.bleed-copy p {
  margin: 0; max-width: 22ch;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 3.6vw, 52px); line-height: 1.16;
}
.bleed-copy span {
  display: block; margin-top: 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ------------------------------------------------------------- why / diff  */
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 0; border-top: 1px solid var(--line);
}
.diff-card {
  padding: clamp(28px, 4.4vh, 46px) clamp(18px, 2.4vw, 40px) clamp(32px, 5vh, 54px);
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  transition: background .4s var(--e);
}
.diff-card:hover { background: var(--paper-2); }
.diff-card:last-child { border-right: none; }
.diff-card b {
  display: block; font-family: var(--serif); font-weight: 500; font-size: 15px;
  color: var(--red); letter-spacing: .1em; margin-bottom: 18px;
}
.diff-card h3 {
  margin: 0 0 10px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(19px, 1.7vw, 25px); line-height: 1.22; letter-spacing: -.01em;
}
.diff-card p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--ink-2); }

.pull {
  margin: clamp(40px, 6vh, 76px) 0 0;
  padding: clamp(30px, 5vh, 58px) clamp(24px, 4vw, 62px);
  background: var(--ink); color: var(--paper); border-radius: 3px;
  position: relative; overflow: hidden;
}
.pull::before {
  content: '“'; position: absolute; right: 2%; top: -14%;
  font-family: var(--serif); font-size: clamp(180px, 26vw, 400px); line-height: 1;
  color: rgba(247,243,235,.05); pointer-events: none;
}
.pull p {
  position: relative; margin: 0; max-width: 26ch;
  font-family: var(--serif); font-weight: 500; font-size: clamp(23px, 3.4vw, 46px);
  line-height: 1.2; letter-spacing: -.01em;
}
.pull p i { font-style: normal; color: var(--red-2); }

/* ------------------------------------------------------------- repertoire  */
.rep-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .62fr);
  gap: clamp(28px, 4vw, 70px); align-items: start;
}
@media (max-width: 900px) { .rep-grid { grid-template-columns: 1fr; } }
.rep-list { border-top: 1px solid var(--line); }
.rep-item {
  display: flex; align-items: baseline; gap: clamp(14px, 2vw, 26px);
  padding: clamp(15px, 2.4vh, 22px) 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .45s var(--e), background .4s;
}
.rep-item:hover { padding-left: 14px; background: var(--paper-2); }
.rep-item i {
  font-style: normal; font-size: 11px; font-weight: 600; color: var(--red);
  min-width: 26px; letter-spacing: .06em;
}
.rep-item span {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(17px, 2.1vw, 27px); line-height: 1.24; letter-spacing: -.01em;
}
.rep-side {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 3px;
  padding: clamp(24px, 3.6vh, 38px);
  position: sticky; top: 96px;
}
.rep-side h3 {
  margin: 0 0 12px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2vw, 27px); line-height: 1.22;
}
.rep-side p { margin: 0 0 22px; font-size: 14px; line-height: 1.62; color: var(--ink-2); }
.rep-side .btn { width: 100%; }
.rep-note {
  margin: 20px 0 0; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.6; color: var(--ink-2);
}
.rep-note b { color: var(--ink); }

/* ------------------------------------------------------------- packages    */
.pk-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr));
  gap: var(--gap);
}
.pk-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 3px; background: var(--paper);
  padding: clamp(28px, 4vh, 42px) clamp(22px, 2.6vw, 36px) clamp(26px, 3.6vh, 38px);
  transition: transform .5s var(--e), box-shadow .5s var(--e), border-color .4s;
}
.pk-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(20,16,14,.34); border-color: rgba(20,16,14,.22); }
.pk-card.is-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pk-card.is-featured .pk-num { color: var(--red-2); }
.pk-card.is-featured p { color: rgba(247,243,235,.62); }
.pk-card.is-featured .pk-feat li { border-color: rgba(247,243,235,.14); }
.pk-card.is-featured .pk-feat li::before { color: var(--red-2); }
.pk-num {
  font-size: 10.5px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.pk-card h3 {
  margin: 0 0 8px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -.015em;
}
.pk-card > p { margin: 0 0 26px; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.pk-feat { list-style: none; margin: 0 0 30px; padding: 0; flex: 1; }
.pk-feat li {
  position: relative; padding: 12px 0 12px 24px; border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.5;
}
.pk-feat li::before {
  content: '—'; position: absolute; left: 0; top: 12px; color: var(--red); font-weight: 600;
}
.pk-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--red); color: #fff; border-radius: 0 0 3px 3px;
  padding: 7px 14px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.pk-card .btn { width: 100%; }
.pk-note {
  margin-top: clamp(26px, 4vh, 44px); padding: clamp(20px, 3vh, 30px) clamp(20px, 3vw, 34px);
  border: 1px dashed var(--line); border-radius: 3px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  background: var(--paper-2);
}
.pk-note p { margin: 0; font-size: 14.5px; line-height: 1.55; max-width: 52ch; color: var(--ink-2); }
.pk-note p b { color: var(--ink); }

/* ------------------------------------------------------------- interactive */
.ia-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: var(--gap);
}
/* Six cards: three across fills two rows evenly instead of leaving orphans. */
@media (min-width: 1120px) { .ia-grid { grid-template-columns: repeat(3, 1fr); } }
.ia-card {
  border-radius: 3px; padding: clamp(24px, 3.4vh, 36px) clamp(20px, 2.4vw, 30px);
  background: var(--paper-2); border: 1px solid transparent;
  transition: background .4s var(--e), border-color .4s, transform .5s var(--e);
}
.ia-card:hover { background: var(--paper); border-color: var(--line); transform: translateY(-4px); }
.ia-ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
}
.ia-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.ia-card h3 {
  margin: 0 0 8px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 23px); line-height: 1.22;
}
.ia-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }

/* ------------------------------------------------------------- reviews     */
/* The testimonials are videos only; there is no text-quote carousel. */

/* ------------------------------------------------------------- gallery     */
.gal {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* Cells are sized in row units rather than per-item aspect-ratio: two cells
     of different widths in the same row then still resolve to exactly the same
     height, so the bottoms always line up. */
  grid-auto-rows: clamp(52px, 5.2vw, 88px);
  gap: clamp(8px, 1vw, 16px);
}
.gal a {
  position: relative; display: block; overflow: hidden;
  border-radius: 2px; background: var(--paper-3);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e); }
.gal a:hover img { transform: scale(1.05); }
.gal a::after {
  content: ''; position: absolute; inset: 0; background: rgba(107,18,32,.28);
  opacity: 0; transition: opacity .45s;
}
.gal a:hover::after { opacity: 1; }

/* row 1 */ .g-a { grid-column: span 7; grid-row: span 5; }
/* row 1 */ .g-b { grid-column: span 5; grid-row: span 5; }
/* row 2 */ .g-c { grid-column: span 4; grid-row: span 6; }
/* row 2 */ .g-d { grid-column: span 4; grid-row: span 6; }
/* row 2 */ .g-e { grid-column: span 4; grid-row: span 6; }
/* row 3 */ .g-f { grid-column: span 5; grid-row: span 5; }
/* row 3 */ .g-g { grid-column: span 7; grid-row: span 5; }
/* row 4 */ .g-h { grid-column: span 6; grid-row: span 5; }
/* row 4 */ .g-i { grid-column: span 6; grid-row: span 5; }

@media (max-width: 860px) {
  /* Two columns built in JS (initGalleryMasonry): every photo keeps its own
     proportions, so nothing is cropped, and each one lands in whichever column
     is shorter so the two end level. */
  .gal.is-masonry {
    display: flex; align-items: flex-start; gap: 10px;
    grid-template-columns: none; grid-auto-rows: initial;
  }
  .gal-col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
  .gal.is-masonry a {
    display: block; width: 100%; margin: 0;
    aspect-ratio: auto; grid-column: auto; grid-row: auto;
  }
  .gal.is-masonry img { height: auto; }
}

/* --------------------------------------------------- media lightbox ------ */
/* One overlay for clips and YouTube. Only a single media element ever lives
   inside it, so opening a second video inherently stops the first. */
.mediabox {
  position: fixed; inset: 0; z-index: 290; background: rgba(16,12,11,.97);
  display: none; align-items: center; justify-content: center;
  padding: clamp(46px, 6vh, 70px) clamp(12px, 4vw, 44px);
  opacity: 0; transition: opacity .3s;
}
.mediabox.is-open { display: flex; }
.mediabox.is-in { opacity: 1; }
.mediabox-stage {
  position: relative; display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 100%;
  transform: scale(.94); transition: transform .42s var(--e);
}
.mediabox.is-in .mediabox-stage { transform: scale(1); }
.mediabox video {
  max-height: min(84vh, 1000px); max-width: 100%;
  width: auto; border-radius: 4px; background: #000;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.mediabox .yt-hold {
  width: min(1180px, 92vw); aspect-ratio: 16 / 9; max-height: 84vh;
  border-radius: 4px; overflow: hidden; background: #000;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.mediabox .yt-hold iframe { width: 100%; height: 100%; border: 0; display: block; }
.mediabox-close {
  position: fixed; top: 16px; right: 16px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(247,243,235,.32); background: rgba(16,12,11,.5);
  color: var(--paper); cursor: pointer; font-size: 17px;
  transition: background .3s, border-color .3s, color .3s;
}
.mediabox-close:hover { background: var(--red); border-color: var(--red); color: #fff; }

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 280; background: rgba(16,12,11,.96);
  display: none; align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: min(1200px, 94vw); max-height: 88vh; object-fit: contain; }
.lightbox-overlay button {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(247,243,235,.3); background: none; color: var(--paper);
  cursor: pointer; font-size: 17px;
}
.lightbox-overlay button:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ------------------------------------------------------------- steps       */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: clamp(26px, 4vh, 46px) clamp(16px, 2.2vw, 34px) clamp(30px, 5vh, 52px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(44px, 5vw, 72px); line-height: 1; color: var(--paper-3);
  margin-bottom: 16px; transition: color .5s var(--e);
}
.step:hover b { color: var(--red); }
.step h3 { margin: 0 0 8px; font-size: 16px; font-weight: 600; }
.step p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }

/* ------------------------------------------------------------- geography   */
.geo {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 70px); align-items: center;
}
@media (max-width: 900px) { .geo { grid-template-columns: 1fr; } }
.geo-map { position: relative; }
.geo-map svg { width: 100%; height: auto; display: block; }
.geo-map .kz-shape { fill: var(--paper-2); stroke: var(--line); stroke-width: 1; }
.geo-city circle { fill: var(--red); }
.geo-city text { font-family: var(--sans); font-size: 11px; font-weight: 500; fill: var(--ink-2); }
.geo-city .halo { fill: var(--red); opacity: .18; }
.geo-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.geo-list span {
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px;
  font-size: 12.5px; color: var(--ink-2);
}

/* ------------------------------------------------------------- faq         */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: clamp(19px, 2.8vh, 28px) 0;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(16.5px, 1.75vw, 24px); line-height: 1.28; letter-spacing: -.008em;
  transition: color .3s;
}
.faq-q:hover { color: var(--red); }
.faq-i {
  flex-shrink: 0; width: 26px; height: 26px; margin-top: 2px; position: relative;
  transition: transform .45s var(--e);
}
.faq-i::before, .faq-i::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: var(--red);
  transform: translate(-50%,-50%);
}
.faq-i::before { width: 14px; height: 1.5px; }
.faq-i::after  { width: 1.5px; height: 14px; transition: opacity .3s; }
.faq-item[data-open="1"] .faq-i { transform: rotate(90deg); }
.faq-item[data-open="1"] .faq-i::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--e); }
.faq-a p {
  margin: 0 0 clamp(20px, 3vh, 30px); max-width: 68ch;
  font-size: 14.5px; line-height: 1.7; color: var(--ink-2);
}

/* ------------------------------------------------------------- contact     */
.contact { background: var(--ink); color: var(--paper); }
.contact .eyebrow > span:first-child { color: rgba(247,243,235,.42); }
.contact .eyebrow .rule { background: rgba(247,243,235,.16); }
.contact .h-sec i { color: var(--red-2); }
.contact .lede { color: rgba(247,243,235,.6); }

.cta-strip {
  display: block; overflow: hidden;
  border-top: 1px solid rgba(247,243,235,.16); border-bottom: 1px solid rgba(247,243,235,.16);
  padding: clamp(16px, 2.6vh, 28px) 0;
  transition: background .4s;
}
.cta-strip:hover { background: rgba(247,243,235,.05); }
.cta-strip .marq { animation-duration: 28s; }
.cta-strip .marq-row > span:not(.dot) { font-size: clamp(26px, 4.4vw, 62px); }
.cta-strip .marq-row .red { color: var(--red-2); }
.cta-strip .marq-row .dot { color: var(--red-2); font-size: clamp(14px, 1.8vw, 22px); }

.ct-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(36px, 6vh, 66px) var(--pad);
}
.ct-item span {
  display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(247,243,235,.4); margin-bottom: 8px;
}
.ct-item a, .ct-item p { font-size: 15px; margin: 0; transition: color .3s; }
.ct-item a:hover { color: var(--red-2); }

.ft {
  border-top: 1px solid rgba(247,243,235,.14);
  padding: 24px var(--pad) 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(247,243,235,.5);
}
.ft-mark { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(247,243,235,.38); }

/* socials */
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .35s, border-color .35s, color .35s, transform .35s var(--e);
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.contact .socials a { border-color: rgba(247,243,235,.22); }

/* ------------------------------------------------------------- form        */
.form-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(18px, 2.6vw, 32px); margin-bottom: clamp(20px, 3vh, 30px);
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field > span {
  font-size: 9.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(247,243,235,.5);
}
.field input, .field select {
  background: transparent; border: none; border-bottom: 1px solid rgba(247,243,235,.28);
  color: var(--paper); font-size: 16px; padding: 10px 0; border-radius: 0;
  caret-color: var(--red-2); transition: border-color .35s;
  color-scheme: dark;
}
.field input::placeholder { color: rgba(247,243,235,.3); }
.field input:focus, .field select:focus { border-bottom-color: var(--red-2); }
.field select option { background: #14100E; color: var(--paper); }

/* country code + national number */
.phone-row { display: flex; align-items: center; gap: 10px; }
.phone-row select {
  flex: 0 0 auto; width: auto; max-width: 42%;
  background: transparent; border: none; border-bottom: 1px solid rgba(247,243,235,.28);
  color: var(--paper); font-size: 15px; padding: 10px 0; border-radius: 0;
  cursor: pointer; color-scheme: dark;
}
.phone-row select:focus { border-bottom-color: var(--red-2); }
.phone-row input { flex: 1 1 auto; min-width: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(20px, 3vh, 30px); }
.chip {
  background: transparent; border: 1px solid rgba(247,243,235,.28); border-radius: 100px;
  padding: 10px 18px; font-size: 13px; cursor: pointer;
  transition: background .28s, color .28s, border-color .28s;
}
.chip:hover { border-color: rgba(247,243,235,.6); }
.chip.is-chip-on { background: var(--red); border-color: var(--red); color: #fff; }
.form-label {
  display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(247,243,235,.5); margin-bottom: 13px;
}
.form-err { margin: 0 0 16px; font-size: 13px; color: #E8836F; display: none; }
.form-fine {
  margin: 16px 0 0; max-width: 46ch;
  font-size: 11.5px; line-height: 1.55; color: rgba(247,243,235,.38);
}
.form-fine b { color: rgba(247,243,235,.7); font-weight: 500; }

/* ------------------------------------------------------------- modal       */
.modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(16,12,11,.985); color: var(--paper);
  opacity: 0; transition: opacity .45s; overflow-y: auto;
}
.modal-panel {
  max-width: 880px; margin: 0 auto;
  padding: clamp(60px, 9vh, 100px) var(--pad) 70px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s .08s, transform .6s var(--e) .08s;
}
.modal-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: clamp(22px, 4vh, 38px);
}
.modal-top > span {
  font-size: 10.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(247,243,235,.45);
}
.modal-close {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(247,243,235,.3);
  background: none; cursor: pointer; font-size: 17px; transition: background .3s, color .3s, border-color .3s;
}
.modal-close:hover { background: var(--red); border-color: var(--red); color: #fff; }
.modal h3 {
  margin: 0 0 8px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 5.4vw, 58px); line-height: 1.04; letter-spacing: -.02em;
}
.modal h3 i { font-style: normal; color: var(--red-2); }
.modal-sub {
  margin: 0 0 clamp(28px, 4.6vh, 46px); max-width: 46ch;
  font-size: 14.5px; line-height: 1.6; color: rgba(247,243,235,.55);
}
.form-ok { display: none; }
.form-ok p:first-child {
  margin: 0 0 10px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3.6vw, 38px); line-height: 1.15;
}
.form-ok p:nth-child(2) { margin: 0 0 26px; font-size: 14.5px; color: rgba(247,243,235,.6); max-width: 46ch; }

/* ------------------------------------------------------------- whatsapp fab*/
.fab {
  position: fixed; right: clamp(14px, 2.4vw, 28px); bottom: clamp(14px, 2.4vw, 28px);
  z-index: 130; display: flex; align-items: center; gap: 11px;
  background: #25D366; color: #fff; border-radius: 100px;
  padding: 13px 20px 13px 15px;
  box-shadow: 0 16px 34px -12px rgba(20,16,14,.45);
  transform: translateY(120%); opacity: 0;
  transition: transform .6s var(--e), opacity .5s, background .3s;
}
.fab.is-in { transform: translateY(0); opacity: 1; }
.fab:hover { background: #1FBE59; }
.fab svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.fab span { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
@media (max-width: 560px) {
  .fab { padding: 14px; }
  .fab span { display: none; }
}

/* ------------------------------------------------------------- reveals     */
[data-rv] { will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .marq { animation: none; }
}

/* ---------------------------------------------- responsive show/hide (last) */
@media (min-width: 1001px) { .mb-only { display: none !important; } }
@media (max-width: 1000px) { .dt-only { display: none !important; } }

/* ============================================================== MOBILE ==== */

/* A long Russian button label must wrap rather than push <body> wider than the
   viewport — overflow-x:hidden would then clip every section's right edge. */
@media (max-width: 620px) {
  .btn { white-space: normal; text-align: center; }
  .pk-note .btn, .rep-side .btn, .rev-more .btn { width: 100%; }
}

@media (max-width: 1000px) {
  /* header: logo · language · «оставить заявку» · burger */
  .hdr-inner { height: 62px; gap: 8px; }
  .hdr-logo b { font-size: 15px; }
  .hdr-logo span { font-size: 7.5px; letter-spacing: .26em; }
  .hdr-right { gap: 7px; }
  .hdr-cta { padding: 8px 13px; font-size: 9.5px; letter-spacing: .1em; }
  .hdr.is-solid { background: rgba(247,243,235,.96); }

  /* the header is opaque from the very top so the switcher is always legible */
  .hdr {
    background: rgba(247,243,235,.96);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    color: var(--ink);
  }
  .hdr .hdr-logo span { color: var(--red); }
  .hdr .lang-btn { color: var(--ink-3); }
  .hdr .lang-btn:hover { color: var(--ink); }
  .hero { padding-top: 62px; }
}

@media (max-width: 720px) {
  /* Everything below is about density: on a phone the desktop rhythm turns
     into 17 screens of scrolling, so vertical space is cut roughly a third. */
  .sec { padding-top: 46px; padding-bottom: 46px; }
  .h-sec { font-size: clamp(27px, 7.6vw, 36px); line-height: 1.08; }
  .h-sub { font-size: clamp(21px, 5.8vw, 27px); }
  .sec-head { margin-bottom: 20px; gap: 12px; }
  .eyebrow { margin-bottom: 16px; }
  .lede { font-size: 14px; line-height: 1.55; }

  /* ---- hero: photograph on top, copy on a solid panel underneath ----------
     Laying the text over the picture on a narrow screen meant neither read
     properly — the band's faces sat behind the paragraph and buttons. Split
     into two blocks instead: the photo gets its own band at the top, the
     wordmark and everything below sit on solid ink. */
  .hero {
    display: block;
    min-height: 0;
    padding: 62px 0 0;          /* clears the fixed header, nothing more */
  }
  /* The photograph is shown whole here — no fixed height and no cover crop,
     so the full stage, the lights and every member stay in frame. Its own
     proportions decide the band's height. */
  .hero-bg {
    position: relative;
    height: auto; min-height: 0; max-height: none;
  }
  .hero-bg img {
    position: static;
    width: 100%; height: auto;
    object-fit: fill; object-position: center;
    transform: none;
  }
  /* No scrim at all: it exists to keep text legible over the photo, and on a
     phone no text sits there any more. Its bottom stop was also drawing a dark
     band across the picture. */
  .hero-scrim { display: none; }
  .hero-inner {
    position: relative; z-index: 2;
    background: #100C0B;
    padding: 16px var(--pad) max(14px, env(safe-area-inset-bottom));
    max-width: none;
  }

  .hero-kicker { margin-bottom: 9px; }
  .hero-word { margin-bottom: 11px; }
  .hero-word .w1 { font-size: clamp(34px, 11.5vw, 58px); }
  .hero-word .w2 { font-size: 10.5px; letter-spacing: .3em; }
  .hero-lead { font-size: 13.5px; line-height: 1.48; margin-bottom: 15px; }
  /* The three pills repeat what the numbers strip says two screens down. */
  .hero-pills { display: none; }
  .hero-cta .btn { flex: 1 1 100%; padding-top: 13px; padding-bottom: 13px; }
  .hero-links { margin-top: 13px; padding-top: 11px; }
  /* The five icons read on their own; dropping the label buys ~25px so the
     whole hero clears Safari's chrome on every iPhone size, not just barely. */
  .hero-links-label { display: none; }
  /* Icons only: five labelled pills wrapped onto two rows. */
  .hero-links .socials { gap: 8px; }
  .hero-links .socials a { width: 42px; height: 42px; padding: 0; border-radius: 50%; justify-content: center; }
  .hero-links .socials a em { display: none; }
  .hero-links .socials svg { width: 17px; height: 17px; }

  /* Same cue as desktop, smaller, and in normal flow so it can never land on
     top of the contact icons or behind the browser's bottom bar. */
  .hero-cue {
    display: flex; justify-content: center;
    position: static; transform: none; bottom: auto;
    margin: 10px 0 0;
  }
  .hero-cue i { height: 16px; }

  .marq-row > span:not(.dot) { font-size: 20px; padding: 0 12px; }

  .stat { padding: 18px 14px; }
  .stat b { font-size: clamp(30px, 9.5vw, 40px); }
  .stat > span { font-size: 11px; margin-top: 6px; line-height: 1.35; }

  .reels, .reels-4 { gap: 10px; }
  /* Thumbnails only — the clip still opens full screen at its true 9:16, so a
     shorter card here saves ~230px of scrolling without losing anything. */
  .reel-media { aspect-ratio: 3 / 4; }
  .reel-cap { font-size: 11.5px; margin-top: 8px; line-height: 1.35; }
  .reel-cap em { font-size: 10px; margin-top: 2px; }
  .reel-play { width: 40px; height: 40px; }
  .reel-badge { font-size: 8px; padding: 4px 8px; left: 8px; top: 8px; }
  .yt-grid { gap: 14px; margin-top: 30px; }

  .bleed { height: 260px; }
  .bleed-copy p { font-size: 22px; }
  .pull { padding: 22px 18px; margin-top: 28px; }
  .pull p { font-size: clamp(19px, 5.6vw, 25px); }

  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { padding: 18px 0 20px; border-right: none; }
  .diff-card b { margin-bottom: 10px; }
  .diff-card h3 { font-size: 17px; margin-bottom: 6px; }
  .diff-card p { font-size: 13.5px; }

  .rep-grid { gap: 22px; }
  .rep-item { padding: 12px 4px; }
  .rep-item span { font-size: 15px; }
  .rep-side { position: static; padding: 20px; }
  .rep-side h3 { font-size: 19px; }
  .rep-side p { font-size: 13.5px; margin-bottom: 16px; }
  .rep-note { margin-top: 16px; padding-top: 16px; font-size: 12.5px; }

  .pk-grid { gap: 12px; }
  .pk-card { padding: 22px 18px 20px; }
  .pk-card h3 { font-size: 26px; }
  .pk-card > p { font-size: 13.5px; margin-bottom: 18px; }
  .pk-feat { margin-bottom: 16px; }
  .pk-feat li { padding: 8px 0 8px 19px; font-size: 13px; line-height: 1.45; }
  .pk-note { padding: 18px; margin-top: 20px; gap: 14px; }
  .pk-note p { font-size: 13.5px; }

  .rev-more { padding: 16px 18px; margin-top: 22px; gap: 14px; }
  .rev-more p { font-size: 15px; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 16px 0 18px; border-right: none; }
  .step b { font-size: 34px; margin-bottom: 6px; }
  .step h3 { font-size: 15px; }
  .step p { font-size: 13px; }

  .geo { gap: 18px; margin-top: 30px !important; }
  .geo img { max-height: none; height: auto; object-fit: contain; }
  .geo-list { gap: 6px; margin-top: 18px; }
  .geo-list span { padding: 6px 12px; font-size: 12px; }

  .faq-q { font-size: 15px; padding: 14px 0; gap: 14px; }
  .faq-a p { font-size: 13.5px; margin-bottom: 16px; }

  .ct-grid { padding: 26px var(--pad); gap: 18px; }
  .cta-strip .marq-row > span:not(.dot) { font-size: 26px; }
  .ft { font-size: 11px; gap: 8px; padding-bottom: 24px; }
  .ft-mark { display: none; }

  .modal-panel { padding: 72px var(--pad) 50px; }
  .modal h3 { font-size: clamp(24px, 7.4vw, 34px); }
  .modal-sub { font-size: 13.5px; margin-bottom: 24px; }
  .form-grid { gap: 16px; margin-bottom: 18px; }
  .chip { padding: 9px 14px; font-size: 12.5px; }
  .chips { gap: 7px; margin-bottom: 18px; }

  /* full-screen media on a phone */
  .mediabox { padding: 56px 10px 18px; }
  .mediabox video { max-height: 78vh; }
  .fab { padding: 13px; }
}

/* Short screens (small iPhones, or any phone in landscape): drop the least
   important hero furniture so the contact icons stay above the fold. */
@media (max-width: 720px) and (max-height: 700px) {
  .hero-links-label { display: none; }
  .hero-cue { display: none; }
  .hero-word .w1 { font-size: clamp(30px, 9.5vw, 44px); }
  .hero-lead { font-size: 13px; margin-bottom: 12px; }
  .hero-links { margin-top: 10px; padding-top: 9px; }
  .hero-links .socials a { width: 38px; height: 38px; }
}

@media (max-width: 400px) {
  .hdr-logo span { display: none; }
  .hdr-inner { gap: 6px; }
  .hdr-cta { padding: 8px 10px; font-size: 9px; letter-spacing: .06em; }
  .lang-cur { padding: 6px 8px 6px 7px; font-size: 10px; }
  .lang-cur svg { width: 12px; height: 12px; }
  .reels, .reels-4 { gap: 10px; }
}
