/* ==========================================================================
   HYBRID PERFORMANCE TRAINING — Design System
   Bold, athletic, dark theme. Orange / black / white.
   Swap --accent to rebrand the entire site.
   ========================================================================== */

:root {
  /* Palette */
  --bg: #0a0b0d;
  --bg-2: #101216;
  --surface: #16181d;
  --surface-2: #1c1f26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f6f7f8;
  --muted: #9aa1ab;
  --muted-2: #6c727c;

  --accent: #f47a1c;         /* HPT orange */
  --accent-2: #ff9d4d;       /* light orange */
  --accent-ink: #0a0b0d;     /* text on accent */
  --accent-glow: rgba(244, 122, 28, 0.4);

  --danger: #ff4d3d;

  /* Type */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------ Reset ----------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2e37; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3f4a; }

/* ------------------------------ Typography ------------------------------ */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5.5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p { color: var(--muted); }

.accent { color: var(--accent); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
}

/* Section label / eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

/* ------------------------------ Layout ---------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 10vw, 130px); }
.section-sm { padding-block: clamp(48px, 7vw, 90px); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head p { margin-top: 18px; font-size: 1.08rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.bg-alt { background: var(--bg-2); }
.divider { height: 1px; background: var(--border); border: 0; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  --pad-y: 15px;
  --pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 14px 40px -8px var(--accent-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-dark {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
}
.btn-dark:hover { background: #262a33; }

.btn-lg { --pad-y: 19px; --pad-x: 40px; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand .mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }
.site-footer .brand-logo { height: 60px; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); }
.nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto 0;
  background: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: clamp(48px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: #05070a;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 75% at 88% 108%, rgba(244, 122, 28, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.5) 0%, rgba(10, 11, 13, 0.2) 40%, rgba(10, 11, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(10, 11, 13, 0.78) 0%, rgba(10, 11, 13, 0) 60%);
}
.hero-inner { max-width: 900px; }
.hero h1 { margin: 18px 0 0; }
.hero h1 .line { display: block; }
.hero-sub {
  margin-top: 26px;
  max-width: 560px;
  font-size: 1.15rem;
  color: #cfd3d9;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* Hero entrance */
.hero-inner > * { animation: heroIn 0.9s var(--ease) both; }
.hero-inner .eyebrow { animation-delay: 0.05s; }
.hero-inner h1 { animation-delay: 0.14s; }
.hero-inner .hero-sub { animation-delay: 0.26s; }
.hero-inner .hero-actions { animation-delay: 0.38s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 11vw, 130px));
  padding-bottom: clamp(48px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: #07090c;
  opacity: 0.55;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0.55), rgba(10, 11, 13, 0.94));
}
.page-hero h1 { margin-top: 16px; }
.page-hero p { margin-top: 20px; max-width: 640px; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.breadcrumb a:hover { color: var(--accent); }

/* Marquee strip */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
  padding-block: 14px;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------ Stats ----------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--accent);
}
.stat .label {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------ Cards ----------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); }

/* Feature/class card with image */
.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  border: 1px solid var(--border);
}
.feature-card .fc-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: #12151a;
  transition: transform 0.6s var(--ease);
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0) 25%, rgba(10, 11, 13, 0.9) 100%);
}
.feature-card:hover .fc-bg { transform: scale(1.07); }
.feature-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: auto;
}
.feature-card h3 { margin-top: 18px; }
.feature-card p { color: #cfd3d9; margin-top: 8px; }
.feature-card .more {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  gap: 8px;
}

/* Icon feature */
.icon-feature .ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(244, 122, 28, 0.12);
  color: var(--accent);
  margin-bottom: 20px;
}
.icon-feature .ico svg { width: 26px; height: 26px; }
.icon-feature h3 { font-size: 1.35rem; }
.icon-feature p { margin-top: 12px; }

/* ------------------------------ Split section --------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-color: #12151a;
}
.split-media .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}
.split-media .badge small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.check-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.check-list li:last-child { border-bottom: 0; }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }

/* ------------------------------ Pricing --------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(244, 122, 28, 0.08), var(--surface) 60%);
  box-shadow: 0 30px 60px -30px var(--accent-glow);
}
.price-card .plan {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card.featured .plan { color: var(--accent); }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  margin: 14px 0 4px;
}
.price-card .amount .per { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-card .desc { font-size: 0.95rem; min-height: 66px; }
.price-card .feat-list { margin: 22px 0; display: grid; gap: 10px; }
.price-card .feat-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.price-card .feat-list svg { flex: none; width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.pop-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ------------------------------ Team ------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.team-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(244, 122, 28, 0.14), transparent 55%),
    linear-gradient(160deg, #1a1d24, #0e1013);
  position: relative;
}
.team-photo .initials {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--accent);
  opacity: 0.9;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 20px; flex: 1; }
.team-info h3 { font-size: 1.15rem; }
.team-info .role {
  margin-top: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 2.4em;
}

/* ------------------------------ Accordion / FAQ ------------------------- */
.accordion { max-width: 860px; margin-inline: auto; }
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 14px;
  overflow: hidden;
}
.acc-item.open { border-color: var(--border-strong); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}
.acc-icon {
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.acc-icon::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.acc-icon::after { left: 12px; top: 3px; width: 2px; height: 20px; }
.acc-item.open .acc-icon::after { transform: rotate(90deg); opacity: 0; }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.acc-body-inner { padding: 0 26px 24px; color: var(--muted); }

/* ------------------------------ Schedule -------------------------------- */
.sched-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.sched-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.sched-tab.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.sched-panel { display: none; }
.sched-panel.active { display: block; animation: fadeUp 0.4s var(--ease); }
.sched-list { display: grid; gap: 12px; }
.sched-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.sched-row:hover { border-color: var(--border-strong); transform: translateX(4px); }
.sched-time { font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); }
.sched-class { font-weight: 600; }
.sched-class span { display: block; font-size: 0.82rem; color: var(--muted); font-weight: 400; margin-top: 2px; }
.sched-coach { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }

/* ------------------------------ WOD ------------------------------------- */
.wod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 760px;
  margin-inline: auto;
}
.wod-top {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.wod-top .date { font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.wod-top .tag { font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; }
.wod-body { padding: 32px; }
.wod-block { margin-bottom: 28px; }
.wod-block:last-child { margin-bottom: 0; }
.wod-block h4 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.wod-block ul { display: grid; gap: 8px; }
.wod-block li { color: var(--text); padding-left: 20px; position: relative; }
.wod-block li::before { content: "—"; position: absolute; left: 0; color: var(--muted-2); }

/* ------------------------------ CTA band -------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding-block: clamp(70px, 11vw, 140px);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: #0e1013;
  opacity: 0.4;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 120% at 50% 120%, rgba(244, 122, 28, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.7), rgba(10, 11, 13, 0.9));
}
.cta-band p { max-width: 560px; margin: 20px auto 0; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ------------------------------ Contact --------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); }
.info-list { display: grid; gap: 24px; margin-top: 32px; }
.info-item { display: flex; gap: 18px; }
.info-item .ico {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(244, 122, 28, 0.12);
  color: var(--accent);
}
.info-item .ico svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1rem; }
.info-item p, .info-item a { color: var(--muted); font-size: 0.98rem; margin-top: 4px; }
.info-item a:hover { color: var(--accent); }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input,
.field textarea,
.field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 122, 28, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 300px; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ------------------------------ Gallery --------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  background: var(--surface);
}
.gallery.gallery-tight { grid-template-columns: repeat(3, 1fr); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(244, 122, 28, 0.0) 60%, rgba(10, 11, 13, 0.55));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery.gallery-tight { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}

/* ------------------------------ Footer ---------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding-top: clamp(56px, 8vw, 90px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.2s;
}
.socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted-2);
}
.footer-bottom a:hover { color: var(--accent); }

/* ------------------------------ Mobile nav panel ------------------------ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); }
.mobile-nav .btn { margin-top: 24px; }

/* ------------------------------ Animations ------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sched-row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .row-2 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ------------------------------ Scroll progress ------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  will-change: transform;
  pointer-events: none;
}

/* ------------------------------ Sticky trial bar ------------------------ */
.trial-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px clamp(16px, 5vw, 24px);
  background: rgba(16, 18, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.trial-bar.show { transform: translateY(0); }
.trial-bar .trial-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.trial-bar .trial-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trial-bar .btn { flex: none; }
@media (min-width: 1081px) { .trial-bar { display: none; } }

/* ------------------------------ Outline watermark ---------------------- */
.watermark-wrap { position: relative; overflow: hidden; }
.watermark-wrap > .container { position: relative; z-index: 1; }
.bg-word {
  position: absolute;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 18rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  opacity: 0.55;
}

/* ------------------------------ Lightbox -------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 60px);
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  animation: lbin 0.35s var(--ease);
}
@keyframes lbin {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.lightbox-btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.gallery-item { cursor: pointer; }
@media (max-width: 560px) {
  .lightbox-btn { width: 44px; height: 44px; font-size: 1.25rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
