/* =========================================================================
   MAXIMUM FITNESS PHUKET — HOME V2
   Fully autonomous stylesheet. Every rule is scoped under `.v2` so no global
   style can leak in or out and the existing site is never affected.
   Design tokens & specs from docs/v2-brief/02-design-spec.md
   ========================================================================= */

/* ---------- Design tokens (scoped to the V2 root) ---------- */
.v2 {
  /* Base / surfaces */
  --color-bg:          #0D0D0F;
  --color-surface:     #16161A;
  --color-surface-2:   #1F1F25;
  --color-border:      #2A2A31;

  /* Text */
  --color-text:        #F5F3EE;
  --color-text-muted:  #A0A0A8;

  /* Accent combat (primary) */
  --color-accent:      #E63319;
  --color-accent-hover:#FF4A2E;
  --color-accent-soft: rgba(230, 51, 25, 0.12);

  /* Accent premium (secondary — DTV / packages) */
  --color-gold:        #C8A96A;
  --color-gold-soft:   rgba(200, 169, 106, 0.10);

  /* Feedback */
  --color-success:     #3FB97A;

  /* Typography */
  --font-display: 'Anton', sans-serif;
  --font-head:    'Archivo', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-width: 1320px;
  --gutter: clamp(1rem, 4vw, 4rem);
  --section-pad-y: clamp(4rem, 10vw, 9rem);
  --gap: clamp(1rem, 2vw, 2rem);

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset (scoped) ---------- */
.v2 *,
.v2 *::before,
.v2 *::after { margin: 0; padding: 0; box-sizing: border-box; }

.v2 {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.v2 img,
.v2 svg { display: block; max-width: 100%; }
.v2 a { color: inherit; text-decoration: none; }
.v2 button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
.v2 ul { list-style: none; }
.v2 ::selection { background: var(--color-accent); color: #fff; }
.v2 .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.v2 :focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- Typography primitives ---------- */
.v2 h1, .v2 h2, .v2 h3, .v2 .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-text);
}
.v2 h1 { font-size: clamp(2.75rem, 8vw, 7rem); line-height: 0.95; }
.v2 h2 { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1; }
.v2 h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.1; }

.v2 .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}
.v2 .eyebrow.gold { color: var(--color-gold); }
.v2 .eyebrow.muted { color: var(--color-text-muted); }

.v2 .subhead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 56ch;
}
.v2 .lead { color: var(--color-text-muted); max-width: 60ch; }

/* ---------- Layout helpers ---------- */
.v2 .wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.v2 section { position: relative; padding-block: var(--section-pad-y); }
.v2 .section-surface { background: var(--color-surface); }
.v2 .section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.v2 .section-head.center { margin-inline: auto; text-align: center; }
.v2 .section-head.center .subhead,
.v2 .section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.v2 .btn .arrow { transition: transform 0.3s var(--ease-out); }
.v2 .btn:hover .arrow { transform: translateX(5px); }

.v2 .btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 12px 34px rgba(230, 51, 25, 0.35);
}
.v2 .btn-primary:hover { background: var(--color-accent-hover); transform: scale(1.02); }

.v2 .btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.v2 .btn-secondary:hover { background: var(--color-surface-2); border-color: var(--color-text); }

.v2 .btn-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.v2 .btn-gold:hover { background: var(--color-gold-soft); }

.v2 .btn-wa {
  background: transparent;
  color: var(--color-success);
  border-color: var(--color-success);
}
.v2 .btn-wa:hover { background: rgba(63, 185, 122, 0.12); }

.v2 .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 3px;
  position: relative;
}
.v2 .btn-ghost::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.v2 .btn-ghost:hover::after { transform: scaleX(1); }
.v2 .btn-ghost:hover .arrow { transform: translateX(4px); }
.v2 .btn-ghost .arrow { transition: transform 0.3s var(--ease-out); }

/* ---------- Media placeholders (clearly tagged) ---------- */
.v2 .ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(230,51,25,0.10), transparent 55%),
    linear-gradient(145deg, #1a1a20 0%, #101013 55%, #08080a 100%);
  border: 1px dashed var(--color-border);
  color: var(--color-text-muted);
  overflow: hidden;
}
.v2 .ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.v2 .ph-tag {
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  max-width: 88%;
  line-height: 1.4;
}
.v2 .ph.gold { border-color: rgba(200,169,106,0.4); }

/* =========================================================================
   0. ANNOUNCEMENT BAR + NAV
   ========================================================================= */
.v2 .topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.v2 .announce {
  position: relative;
  z-index: 1;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 48px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2 .announce .announce-item { transition: opacity 0.4s; }
.v2 .announce .announce-item[hidden] { display: none; }
/* Phones: keep only the first, short message so the bar stays on one line */
@media (max-width: 600px) {
  .v2 .announce { padding: 8px 16px; font-size: 0.72rem; min-height: 34px; }
  .v2 .announce .announce-item ~ .announce-item { display: none !important; }
}

.v2 header {
  position: relative;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.v2 header.solid {
  background: rgba(13, 13, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.v2 .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.v2 .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.v2 .brand .dot {
  width: 11px; height: 11px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--color-accent);
}
.v2 .nav-links {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v2 .nav-links a { position: relative; color: #d9d5dd; padding: 4px 0; transition: color 0.2s; }
.v2 .nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width 0.25s var(--ease-out);
}
.v2 .nav-links a:hover { color: #fff; }
.v2 .nav-links a:hover::after { width: 100%; }
.v2 .nav-links .has-sub > a::before { content: ""; }
.v2 .nav-links .has-sub small {
  display: block;
  font-size: 0.62rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
  font-weight: 500;
}

.v2 .nav-right { display: flex; align-items: center; gap: 16px; }
.v2 .langs {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.v2 .langs button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  min-height: 28px;
}
.v2 .langs button.active { background: var(--color-accent-soft); color: var(--color-text); }
.v2 .nav-cta { padding: 12px 22px; }

.v2 .burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.v2 .burger span {
  width: 24px; height: 2px; background: var(--color-text);
  transition: transform 0.3s, opacity 0.2s;
}

/* Mobile fullscreen menu */
.v2 .mobile-menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  visibility: hidden;
}
.v2 .mobile-menu.open { transform: translateX(0); visibility: visible; }
.v2 .mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  color: var(--color-text);
  padding: 8px 0;
}
.v2 .mobile-menu a:hover { color: var(--color-accent); }
.v2 .mobile-menu .btn-primary {
  margin-top: 1.5rem;
  font-size: 1rem;
  align-self: flex-start;
}

/* =========================================================================
   1. HERO
   ========================================================================= */
.v2 .hero {
  position: relative;
  min-height: 100svh;
  max-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(96px, 13vh, 128px);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
  overflow: hidden;
}
.v2 .hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(230,51,25,0.14), transparent 55%),
    linear-gradient(160deg, #1a1a20 0%, #0c0c0f 100%);
}
.v2 .hero-media img { filter: brightness(0.8); }
/* dark overlay between the photo and the content (content stays above, z-index:1) */
.v2 .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.45) 0%, rgba(13,13,15,0.85) 100%);
}
.v2 .hero-inner { position: relative; z-index: 1; width: 100%; }
.v2 .hero h1 {
  font-size: clamp(1.95rem, 5.6vw, 4.6rem);
  line-height: 0.95;
  margin: 0.4rem 0 1.1rem;
}
.v2 .hero h1 .l1,
.v2 .hero h1 .hl { display: block; }
.v2 .hero .hl { color: var(--color-accent); }
.v2 .hero .subhead { margin-bottom: 1.25rem; }
.v2 .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: clamp(1.25rem, 3vw, 2rem); }
.v2 .trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.v2 .trust-bar .star { color: var(--color-gold); }
.v2 .trust-bar .sep { color: var(--color-border); }

/* =========================================================================
   2. AUDIENCE ROUTER
   ========================================================================= */
.v2 .router-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  align-items: stretch;
}
.v2 .router-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
  min-height: 230px;
  padding: 28px 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
}
.v2 .router-card:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  transform: translateY(-6px);
}
.v2 .router-card .rc-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}
/* fixed-height title block so every description starts at the same line */
.v2 .router-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
  min-height: calc(2 * 1.1em);
  display: flex;
  align-items: flex-start;
}
.v2 .router-card p { color: var(--color-text-muted); font-size: 0.95rem; }
.v2 .router-card .arrow {
  font-size: 1.3rem; color: var(--color-accent);
  margin-top: auto;
  transition: transform 0.3s var(--ease-out);
}
.v2 .router-card:hover .arrow { transform: translateX(6px); }

/* =========================================================================
   3. HOW TO START (3 steps)
   ========================================================================= */
.v2 .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.v2 .step {
  padding: 32px 28px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
}
.v2 .step:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}
.v2 .step .step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.v2 .step h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.v2 .step p { color: var(--color-text-muted); }

/* =========================================================================
   4. DISCIPLINES
   ========================================================================= */
.v2 .marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--color-border);
  padding-block: clamp(0.8rem, 2vw, 1.4rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v2 .marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: v2-marquee 32s linear infinite;
}
.v2 .marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  padding-inline: 1.2rem;
  color: var(--color-text);
}
.v2 .marquee-track span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text);
}
.v2 .marquee-track .star { color: var(--color-accent); -webkit-text-stroke: 0; }
@keyframes v2-marquee { to { transform: translateX(-50%); } }

.v2 .disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.v2 .disc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.2s;
}
.v2 .disc-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.v2 .disc-card .disc-img {
  aspect-ratio: 4 / 3;
  filter: grayscale(1);
  transition: filter 0.4s;
}
.v2 .disc-card:hover .disc-img { filter: grayscale(0); }
.v2 .disc-card .disc-img.ph { border: none; border-bottom: 1px solid var(--color-border); }
.v2 .disc-body { padding: 24px 26px 28px; }
.v2 .disc-body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.v2 .disc-body p { color: var(--color-text-muted); font-size: 0.95rem; }

/* =========================================================================
   5. COACHES
   ========================================================================= */
.v2 .coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.v2 .coach-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.2s;
}
.v2 .coach-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.v2 .coach-card .coach-img { aspect-ratio: 3 / 4; filter: grayscale(1); transition: filter 0.4s; }
.v2 .coach-card:hover .coach-img { filter: grayscale(0); }
.v2 .coach-card .coach-img.ph { border: none; border-bottom: 1px solid var(--color-border); }
.v2 .coach-body { padding: 22px 22px 26px; }
.v2 .coach-body h3 { font-size: 1.35rem; }
.v2 .coach-body .coach-role {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 6px 0 12px;
}
.v2 .coach-body p { color: var(--color-text-muted); font-size: 0.9rem; }

/* =========================================================================
   6. DTV (premium, gold rule)
   ========================================================================= */
.v2 .dtv {
  position: relative;
  background: var(--color-surface);
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.v2 .dtv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.v2 .dtv h2 .gold { color: var(--color-gold); }
.v2 .dtv .body { color: var(--color-text-muted); margin: 1.5rem 0; max-width: 52ch; }
.v2 .dtv-steps { display: grid; gap: 12px; margin-bottom: 1.5rem; }
.v2 .dtv-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.98rem;
}
.v2 .dtv-steps .n {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}
.v2 .dtv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-gold-soft);
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.v2 .dtv .fineprint { font-size: 0.82rem; color: var(--color-text-muted); margin: 1.25rem 0 1.75rem; max-width: 52ch; }
.v2 .dtv .verify-note {
  font-size: 0.72rem;
  color: var(--color-gold);
  background: var(--color-gold-soft);
  border-left: 2px solid var(--color-gold);
  padding: 8px 12px;
  margin-top: 1rem;
  max-width: 52ch;
}
.v2 .dtv-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.v2 .dtv-visual .ph { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); height: 100%; }

/* =========================================================================
   7. TRAIN + STAY
   ========================================================================= */
.v2 .stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 2.5rem;
}
.v2 .stay-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.2s;
}
.v2 .stay-card:hover { transform: translateY(-6px); border-color: var(--color-gold); }
.v2 .stay-card .stay-img { aspect-ratio: 16 / 10; }
.v2 .stay-card .stay-img.ph { border: none; border-bottom: 1px solid var(--color-border); }
.v2 .stay-body { padding: 24px 26px 28px; }
.v2 .stay-body .stay-dur {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.v2 .stay-body .stay-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-gold);
  margin: 6px 0 12px;
}
.v2 .stay-body p { color: var(--color-text-muted); font-size: 0.9rem; }

/* =========================================================================
   8. PRICING
   ========================================================================= */
.v2 .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: stretch;
}
.v2 .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.v2 .price-card.popular {
  border-color: var(--color-accent);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-card);
}
@media (min-width: 880px) {
  .v2 .price-card.popular { transform: translateY(-16px); }
}
.v2 .price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.v2 .price-badge.visitors { background: var(--color-surface-2); border: 1px solid var(--color-border); color: var(--color-text-muted); }
.v2 .price-card .plan {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
}
.v2 .price-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin: 14px 0;
}
.v2 .price-card .price small { font-size: 0.9rem; color: var(--color-text-muted); font-family: var(--font-body); }
.v2 .price-card .plan-desc { color: var(--color-text-muted); font-size: 0.92rem; min-height: 3em; }
.v2 .price-card .btn { width: 100%; margin-top: 24px; }
.v2 .price-foot { text-align: center; margin-top: 2.5rem; }
.v2 .price-foot a { color: var(--color-accent); }
.v2 .price-foot .note { color: var(--color-text-muted); font-size: 0.85rem; margin-top: 0.75rem; }

/* =========================================================================
   9. VIDEO TOUR / GALLERY
   ========================================================================= */
.v2 .video-main.ph { aspect-ratio: 16 / 9; border-radius: var(--radius-lg); margin-bottom: var(--gap); }
.v2 .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}
.v2 .gallery .gi.ph { border-radius: var(--radius-md); height: 100%; }
.v2 .gallery .gi.big { grid-column: span 2; grid-row: span 2; }
.v2 .gallery .gi.wide { grid-column: span 2; }

/* =========================================================================
   10. TESTIMONIALS (marquee scroller)
   ========================================================================= */
.v2 .testi-scroller {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.v2 .testi-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: v2-marquee 48s linear infinite;
}
.v2 .testi-scroller:hover .testi-track { animation-play-state: paused; }
.v2 .testi-card {
  width: min(420px, 80vw);
  flex: none;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2 .testi-stars { color: var(--color-gold); letter-spacing: 2px; }
.v2 .testi-card blockquote { font-size: 1rem; line-height: 1.55; }
.v2 .testi-meta {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.v2 .testi-meta .date { color: var(--color-text-muted); font-weight: 500; }
.v2 .testi-meta .src { color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.04em; }
.v2 .testi-cta { text-align: center; margin-top: 3rem; }

/* =========================================================================
   11. SCHEDULE
   ========================================================================= */
.v2 .sched-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.v2 .sched-filters button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  min-height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.v2 .sched-filters button:hover { color: var(--color-text); }
.v2 .sched-filters button.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.v2 .sched-table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.v2 table.sched { width: 100%; border-collapse: collapse; min-width: 680px; }
.v2 table.sched th, .v2 table.sched td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.v2 table.sched thead th {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
}
.v2 table.sched tbody tr { transition: background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.v2 table.sched tbody tr:hover {
  background: var(--color-accent-soft);
  box-shadow: inset 3px 0 0 var(--color-accent);
}
.v2 table.sched td .pill {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.v2 table.sched tr[hidden] { display: none; }
.v2 .sched-cta { margin-top: 2rem; }

/* =========================================================================
   12. FAQ (accordion)
   ========================================================================= */
.v2 .faq-list { max-width: 820px; margin-inline: auto; }
.v2 .faq-item { border-bottom: 1px solid var(--color-border); }
.v2 .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  min-height: 44px;
}
.v2 .faq-q .icon {
  flex: none;
  position: relative;
  width: 22px; height: 22px;
}
.v2 .faq-q .icon::before,
.v2 .faq-q .icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.v2 .faq-q .icon::before { width: 18px; height: 2px; }
.v2 .faq-q .icon::after { width: 2px; height: 18px; }
.v2 .faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.v2 .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.v2 .faq-item.open .faq-a { grid-template-rows: 1fr; }
.v2 .faq-a > div { overflow: hidden; }
.v2 .faq-a p { color: var(--color-text-muted); padding: 0 4px 24px; max-width: 70ch; }

/* =========================================================================
   13. FINAL CTA + EMAIL CAPTURE + FOOTER
   ========================================================================= */
.v2 .final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.v2 .final-cta .ph {
  position: absolute; inset: 0; z-index: 0; border: none;
}
.v2 .final-cta::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,15,0.8), rgba(13,13,15,0.92));
}
.v2 .final-cta .wrap { position: relative; z-index: 2; }
.v2 .final-cta h2 { margin: 0.5rem 0 1.25rem; }
.v2 .final-cta .lead { margin-inline: auto; margin-bottom: 2rem; }
.v2 .final-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }

.v2 .capture {
  max-width: 640px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.v2 .capture p { color: var(--color-text-muted); margin-bottom: 1.25rem; }
.v2 .capture form { display: flex; flex-wrap: wrap; gap: 12px; }
.v2 .capture input {
  flex: 1 1 180px;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.v2 .capture input::placeholder { color: var(--color-text-muted); }
.v2 .capture input:focus { outline: none; border-color: var(--color-accent); }
.v2 .capture .btn { flex: 1 1 100%; }

.v2 footer.site-footer { background: var(--color-bg); border-top: 1px solid var(--color-border); }
.v2 .footer-marquee { border-bottom: 1px solid var(--color-border); }
.v2 .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.v2 .footer-brand .brand { font-size: 1.6rem; margin-bottom: 1rem; }
.v2 .footer-brand .tagline { color: var(--color-text-muted); max-width: 32ch; margin-bottom: 1.5rem; }
.v2 .footer-map.ph { aspect-ratio: 16 / 7; border-radius: var(--radius-md); }
.v2 .footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.v2 .footer-col ul { display: grid; gap: 10px; }
.v2 .footer-col a, .v2 .footer-col li { color: var(--color-text); font-size: 0.92rem; }
.v2 .footer-col a:hover { color: var(--color-accent); }
.v2 .footer-contact span { color: var(--color-text-muted); }
.v2 .footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* =========================================================================
   MOBILE STICKY BAR
   ========================================================================= */
.v2 .sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(13,13,15,0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  transform: translateY(120%);
  transition: transform 0.3s var(--ease-out);
}
.v2 .sticky-bar.show { transform: translateY(0); }
.v2 .sticky-bar .btn { flex: 1; padding: 14px 12px; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.v2 .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.v2 .reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   REAL MEDIA (images fill their containers; graceful fallback)
   ========================================================================= */
.v2 .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2 .disc-img img,
.v2 .coach-img img,
.v2 .stay-img img,
.v2 .dtv-img img,
.v2 .gallery .gi img,
.v2 .video-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* fallback if a remote image fails to load → tasteful dark gradient */
.v2 .noimg {
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(230,51,25,0.12), transparent 55%),
    linear-gradient(150deg, #1b1b21 0%, #0c0c0f 100%);
}
.v2 .noimg img { display: none; }

/* coach placeholder — sits BEHIND the photo; if the image is missing or
   fails to load (img removed via onerror), this clean block shows. There is
   never a broken-image icon or empty frame. */
.v2 .coach-img { position: relative; }
.v2 .coach-img img { position: relative; z-index: 1; }
.v2 .coach-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--color-gold);
  border: 1px solid rgba(200, 169, 106, 0.30);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(230,51,25,0.14), transparent 60%),
    linear-gradient(160deg, #1F1F25 0%, #0D0D0F 100%);
}
.v2 .coach-ph svg { width: 30%; max-width: 70px; opacity: 0.55; }
.v2 .coach-ph b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(245, 243, 238, 0.55);
}
.v2 .coach-langs {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

/* dtv image */
.v2 .dtv-img {
  aspect-ratio: 4 / 5;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.35);
}

/* gallery tiles */
.v2 .gallery .gi { border-radius: var(--radius-md); overflow: hidden; height: 100%; }

/* video tour */
.v2 .video-main {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--gap);
}
.v2 .video-main img { transition: transform 0.5s var(--ease-out); }
.v2 .video-main:hover img { transform: scale(1.04); }
.v2 .video-main::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.15), rgba(13,13,15,0.55));
}
.v2 .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 80px; height: 80px; border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 12px 44px rgba(230, 51, 25, 0.55);
  transition: background 0.2s, transform 0.2s var(--ease-out);
}
.v2 .play-btn::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.v2 .video-main:hover .play-btn { background: var(--color-accent-hover); transform: translate(-50%, -50%) scale(1.06); }
.v2 .video-cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: #fff;
}

/* final CTA background */
.v2 .final-bg { position: absolute; inset: 0; z-index: 0; }
.v2 .final-bg img { width: 100%; height: 100%; object-fit: cover; }

/* footer map */
.v2 .footer-map { aspect-ratio: 16 / 7; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); }
.v2 .footer-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(1.05); transition: filter 0.4s; }
.v2 .footer-map:hover iframe { filter: none; }
.v2 .footer-contact li span { color: var(--color-text-muted); }

/* =========================================================================
   PASSES & PACKAGES (pay-as-you-train, no subscriptions)
   ========================================================================= */
.v2 .indic-label {
  display: inline-block; margin-top: 1rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  padding: 6px 14px;
}
/* pricing heading forced onto two lines, slightly smaller */
.v2 .h2-stack { font-size: clamp(1.45rem, 4vw, 3rem); }
.v2 .h2-stack span { display: block; }
/* strict single-line-per-span (exactly 2 lines) only for English */
.v2.lang-en .hero h1 .l1,
.v2.lang-en .hero h1 .hl,
.v2.lang-en .h2-stack span { white-space: nowrap; }
.v2 .pass-groups {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gap); align-items: start;
}
.v2 .pass-group {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.v2 .pass-group-head { padding: 22px 24px; border-bottom: 1px solid var(--color-border); }
.v2 .pass-group-head h3 { font-size: 1.4rem; }
.v2 .pass-group-head span { display: block; color: var(--color-text-muted); font-size: 0.85rem; margin-top: 4px; }
.v2 .pass-table { width: 100%; border-collapse: collapse; }
.v2 .pass-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.v2 .pass-table tbody tr:last-child { border-bottom: 0; }
.v2 .pass-table tr.pop { background: var(--color-accent-soft); }
.v2 .pass-table tbody tr:hover {
  background: var(--color-accent-soft);
  box-shadow: inset 3px 0 0 var(--color-accent);
}
.v2 .pass-table th[scope="row"] {
  text-align: left; font-family: var(--font-head); font-weight: 600;
  font-size: 0.95rem; padding: 14px 12px 14px 24px;
}
.v2 .pass-table .amt {
  font-family: var(--font-display); font-size: 1.15rem;
  text-align: right; white-space: nowrap; padding: 14px 12px; color: var(--color-text);
}
.v2 .pass-table .get { text-align: right; padding: 8px 20px 8px 8px; white-space: nowrap; }
.v2 .pass-table .get a {
  display: inline-block; padding: 8px 6px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-accent);
}
.v2 .pass-table .get a:hover { color: var(--color-accent-hover); }
.v2 .pop-badge {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: var(--color-accent);
  border-radius: var(--radius-pill); padding: 3px 8px;
}
.v2 .pass-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

.v2 .perks {
  margin-top: 2rem; text-align: center;
  background: var(--color-gold-soft);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.v2 .perks p { color: var(--color-text); font-size: 0.95rem; }
.v2 .perks a { color: var(--color-gold); font-weight: 600; white-space: nowrap; }

/* Personal training */
.v2 .pt-head { margin-top: clamp(3.5rem, 7vw, 6rem); }
.v2 .pt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.v2 .pt-card {
  display: flex; flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: transform 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
}
.v2 .pt-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}
.v2 .pt-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.v2 .pt-card-head h3 { font-size: 1.5rem; }
.v2 .pt-tier {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(200, 169, 106, 0.4); border-radius: var(--radius-pill);
  padding: 5px 12px; white-space: nowrap;
}
.v2 .pt-rates { margin-bottom: 24px; }
.v2 .pt-rates li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem; color: var(--color-text-muted);
}
.v2 .pt-rates li:last-child { border-bottom: 0; }
.v2 .pt-rates .amt { font-family: var(--font-head); font-weight: 700; color: var(--color-text); white-space: nowrap; }
.v2 .pt-card .btn { margin-top: auto; }

/* anchor offset for the fixed top bar */
.v2 section[id], .v2 footer[id] { scroll-margin-top: 124px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .v2 .router-grid,
  .v2 .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .v2 .disc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .v2 .nav-links,
  .v2 .nav-cta { display: none; }
  .v2 .burger { display: flex; }
  .v2 .dtv-grid { grid-template-columns: 1fr; }
  .v2 .dtv-visual { order: -1; }
  .v2 .dtv-img { aspect-ratio: 16 / 10; }
  .v2 .pass-groups,
  .v2 .pt-grid,
  .v2 .steps-grid,
  .v2 .stay-grid,
  .v2 .price-grid { grid-template-columns: 1fr; }
  .v2 .price-card.popular { transform: none; }
  .v2 .footer-grid { grid-template-columns: 1fr; }
  .v2 .sticky-bar { display: flex; }
  .v2 .hero { padding-bottom: 90px; }
}
@media (max-width: 560px) {
  .v2 .router-grid,
  .v2 .disc-grid,
  .v2 .coach-grid { grid-template-columns: 1fr; }
  .v2 .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .v2 .gallery .gi.big { grid-column: span 2; grid-row: span 1; }
  .v2 .langs { display: none; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .v2 *,
  .v2 *::before,
  .v2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .v2 .marquee-track,
  .v2 .testi-track { animation: none !important; transform: none !important; }
  .v2 .reveal { opacity: 1 !important; transform: none !important; }
  /* disable elevation transforms on hover */
  .v2 .step:hover,
  .v2 .pt-card:hover,
  .v2 .router-card:hover,
  .v2 .disc-card:hover,
  .v2 .coach-card:hover,
  .v2 .stay-card:hover { transform: none !important; }
}

/* =========================================================================
   LANGUAGE-SPECIFIC TYPOGRAPHY
   Anton (display) only covers Latin, so for Russian (Cyrillic) and Thai we
   fall back to fonts that render those scripts, and let long headings wrap.
   ========================================================================= */
.v2.lang-ru h1, .v2.lang-ru h2, .v2.lang-ru h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
.v2.lang-th {
  font-family: 'Noto Sans Thai', 'Inter', sans-serif;
}
.v2.lang-th h1, .v2.lang-th h2, .v2.lang-th h3,
.v2.lang-th .eyebrow, .v2.lang-th .btn,
.v2.lang-th .pt-tier, .v2.lang-th .pop-badge, .v2.lang-th .indic-label {
  font-family: 'Noto Sans Thai', 'Archivo', sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.3;
  font-weight: 700;
}
/* non-English headings wrap freely and get a little more line height */
.v2.lang-fr .hero h1, .v2.lang-ru .hero h1, .v2.lang-th .hero h1 { line-height: 1.05; }
