/* ============================================================
   NXT GEN Fitness Equipment: design system
   Dark industrial theme / gunmetal metallic display type
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-2: #0e0f11;
  --card: #131417;
  --card-2: #17181c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f3f5;
  --muted: #99a0aa;
  --silver: #c7ccd4;
  --amber: #cf8427;
  --amber-bright: #e89b39;
  --green: #4ade80;
  --save: #e8563f;
  --radius: 12px;
  --header-h: 68px;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Typography ---------- */
h1, h2, h3, .h-style {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  font-weight: 700;
}

.metal {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.5'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"),
    repeating-linear-gradient(92deg, rgba(255,255,255,0) 0 2px, rgba(10,10,10,0.14) 2px 3px, rgba(255,255,255,0.05) 3px 4px),
    linear-gradient(178deg, #fbfcfd 0%, #e3e6ea 16%, #bdc4cc 32%, #848d98 47%, #5a626c 52%, #8f97a1 64%, #c9ced5 82%, #f0f2f4 100%);
  background-blend-mode: overlay, multiply, normal;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.85)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin-bottom: 14px;
}

.lead { color: var(--muted); font-size: 17px; max-width: 640px; }

.section { padding: 88px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section-head { margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 48px); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 32px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-amber {
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  color: #0c0c0d;
  box-shadow: 0 6px 24px rgba(207, 132, 39, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-amber:hover { box-shadow: 0 8px 32px rgba(207, 132, 39, 0.5), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-amber::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 62% { left: -80%; }
  86%, 100% { left: 130%; }
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--silver); color: #fff; background: rgba(255, 255, 255, 0.06); }

.btn-lg { padding: 19px 42px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(9, 9, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-link img { height: 30px; width: auto; }

.main-nav { display: flex; gap: 26px; margin-left: 12px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; border-bottom-color: var(--amber); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--silver);
  border: 1px solid var(--line-strong);
  padding: 9px 16px;
  border-radius: 99px;
  transition: border-color 0.2s, color 0.2s;
}
.phone-chip:hover { border-color: var(--amber); color: #fff; }
.phone-chip svg { width: 15px; height: 15px; fill: var(--amber-bright); }

.menu-btn { display: none; padding: 8px; margin-left: auto; }
.menu-btn svg { width: 26px; height: 26px; stroke: var(--silver); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 89;
  background: rgba(9, 9, 10, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 10px 20px 22px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 16px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg);
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(10, 10, 11, 0.97) 0%, rgba(10, 10, 11, 0.72) 24%, rgba(10, 10, 11, 0.25) 50%, rgba(10, 10, 11, 0.15) 75%, rgba(10, 10, 11, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 52px;
  text-align: center;
}
.hero .hero-ctas { justify-content: center; }

/* Intro pitch band: headline relocated directly below the hero video */
.intro-pitch {
  background: var(--bg);
  text-align: center;
  padding: 60px 0 48px;
}
.intro-pitch .eyebrow { margin-bottom: 12px; }
.intro-pitch h1 { font-size: clamp(34px, 6vw, 74px); }
.intro-pitch .sub {
  margin: 16px auto 0;
  max-width: 600px;
  color: var(--silver);
  font-size: clamp(16px, 2vw, 20px);
}
.intro-pitch .hero-ctas { justify-content: center; margin-top: 30px; }
.intro-pitch .hero-ticks { justify-content: center; }
@media (max-width: 680px) {
  .intro-pitch { padding: 42px 0 34px; }
}
.hero h1 {
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 700;
  max-width: 900px;
}
.hero .sub {
  margin-top: 18px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--silver);
  max-width: 560px;
}
.hero-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-ticks {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 14px;
  color: var(--silver);
}
.tick { display: inline-flex; align-items: center; gap: 8px; }
.tick svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }

.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ---------- Stats bar ---------- */
.stats-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 20px;
  gap: 20px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
}
.stat .lbl {
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.value-card {
  background: linear-gradient(165deg, var(--card-2), var(--card) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
}
.value-card .ic {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(207, 132, 39, 0.12);
  border: 1px solid rgba(207, 132, 39, 0.3);
  margin-bottom: 20px;
}
.value-card .ic svg { width: 22px; height: 22px; fill: var(--amber-bright); }
.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* collection tiles */
.collection-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 4 / 3;
  display: block;
}
.collection-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s;
  opacity: 0.92;
}
.collection-tile:hover img { transform: scale(1.05); opacity: 1; }
.collection-tile .ct-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(to top, rgba(8, 8, 9, 0.95), rgba(8, 8, 9, 0.55) 60%, transparent);
}
.collection-tile .ct-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.collection-tile .ct-price { font-size: 13px; color: var(--amber-bright); font-weight: 600; margin-top: 2px; }

/* product cards (catalogue) */
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.product-card .pc-img {
  aspect-ratio: 1 / 1;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .pc-img img { transform: scale(1.04); }
.pc-colour {
  position: absolute;
  bottom: 6px; left: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
.pc-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px;
  border-radius: 7px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.pc-check svg { width: 15px; height: 15px; fill: none; stroke: #0c0c0d; stroke-width: 3; opacity: 0; }
.product-card.selected .pc-check { background: var(--amber-bright); border-color: var(--amber-bright); }
.product-card.selected .pc-check svg { opacity: 1; }
.product-card.selected { border-color: rgba(207, 132, 39, 0.6); }
.pc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.pc-name { font-family: var(--font-head); font-size: 16.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.25; }
.pc-desc { font-size: 13px; color: var(--muted); margin-top: 5px; }
.pc-dims { font-size: 11.5px; color: rgba(153, 160, 170, 0.7); margin-top: 6px; }
.pc-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc-price { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: #fff; }
.pc-price small { font-size: 11px; color: var(--muted); font-family: var(--font-body); font-weight: 500; margin-left: 3px; }
.pc-enq {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-bright);
  border: 1px solid rgba(207, 132, 39, 0.45);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.pc-enq:hover { background: var(--amber); color: #0c0c0d; }

/* specials card */
.special-card { position: relative; }
.save-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--save);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(232, 86, 63, 0.4);
}
.pct-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: #0c0c0d;
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
}
.price-was { text-decoration: line-through; color: var(--muted); font-size: 14px; font-weight: 500; margin-right: 8px; }

/* ---------- Social proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0; }
.proof-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
blockquote.big-quote {
  font-size: clamp(19px, 2.6vw, 26px);
  font-style: italic;
  color: var(--silver);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}
blockquote.big-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-head);
}

/* ---------- Offer band ---------- */
.offer-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(207, 132, 39, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg-2), #0b0b0c);
  border-top: 1px solid rgba(207, 132, 39, 0.25);
  border-bottom: 1px solid rgba(207, 132, 39, 0.25);
}
.offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.offer-inner h3 { font-size: clamp(24px, 3.4vw, 36px); }
.offer-inner .amber { color: var(--amber-bright); }
.offer-inner p { color: var(--muted); margin-top: 8px; max-width: 520px; }

/* ---------- Warehouse strip ---------- */
.ware-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ware-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--amber-bright);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Lead / form section ---------- */
.lead-section {
  background:
    radial-gradient(ellipse at 75% 10%, rgba(207, 132, 39, 0.09), transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.lead-copy h2 { font-size: clamp(30px, 4vw, 46px); }
.lead-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.lead-point { display: flex; gap: 14px; align-items: flex-start; color: var(--silver); font-size: 15.5px; }
.lead-point svg { width: 20px; height: 20px; fill: var(--amber-bright); flex-shrink: 0; margin-top: 2px; }
.lead-contact-alt { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.lead-contact-alt a { color: #fff; font-weight: 600; }
.lead-contact-alt a:hover { color: var(--amber-bright); }

.form-shell {
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.form-shell iframe { width: 100%; min-height: 640px; border: none; border-radius: 10px; background: #fff; }
.form-note { text-align: center; font-size: 12.5px; color: var(--muted); padding: 12px 10px 4px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #070708; padding: 64px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}
.footer-grid .f-logo img { height: 34px; width: auto; margin-bottom: 18px; }
.footer-grid p { color: var(--muted); font-size: 14px; max-width: 380px; }
.f-head {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 16px;
}
.f-links { display: flex; flex-direction: column; gap: 10px; }
.f-links a { color: var(--muted); font-size: 14.5px; transition: color 0.2s; }
.f-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(153, 160, 170, 0.7);
}

/* ---------- Popup ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.popup-overlay.show { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup {
  background: linear-gradient(170deg, #17181c, #0e0f11);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  max-height: 92svh;
  overflow-y: auto;
  position: relative;
  padding: 34px 30px 26px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  animation: popIn 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes popIn { from { transform: translateY(26px) scale(0.96); opacity: 0; } to { transform: none; opacity: 1; } }
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.popup-close:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.popup .eyebrow { margin-bottom: 8px; }
.popup h3 { font-size: 26px; margin-bottom: 8px; padding-right: 40px; }
.popup .p-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.popup iframe { width: 100%; min-height: 480px; border: none; border-radius: 10px; background: #fff; }
.popup .p-trust { text-align: center; font-size: 12px; color: var(--silver); margin-top: 12px; letter-spacing: 0.2px; }
.popup .p-alt { text-align: center; font-size: 13px; color: var(--muted); margin-top: 6px; }
.popup .p-alt a { color: var(--amber-bright); font-weight: 600; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(9, 9, 10, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 10px; font-size: 13.5px; }

/* ---------- Catalogue page ---------- */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(207, 132, 39, 0.1), transparent 60%),
    linear-gradient(180deg, #101114, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 5.4vw, 62px); }
.page-hero .lead { margin-top: 14px; }
.page-hero-meta { display: flex; gap: 10px 24px; flex-wrap: wrap; margin-top: 20px; font-size: 14px; color: var(--muted); }

.chip-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 70;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.chip-nav::-webkit-scrollbar { display: none; }
.chip-nav-inner { display: flex; gap: 8px; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.chip {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 16px;
  transition: all 0.2s;
  white-space: nowrap;
}
.chip:hover { color: #fff; border-color: var(--line-strong); }
.chip.active { background: var(--amber); border-color: var(--amber); color: #0c0c0d; font-weight: 600; }

.collection-section { padding: 54px 0 10px; scroll-margin-top: calc(var(--header-h) + 58px); }
.collection-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.collection-title h2 { font-size: clamp(24px, 3.2vw, 34px); }
.collection-title .count { color: var(--muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-head); }

/* ---------- Founder / about ---------- */
.founder-role {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  margin-top: 10px;
}
.founder-photo-shell {
  background: linear-gradient(165deg, var(--card-2), var(--card) 65%);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.founder-photo-shell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact page ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.contact-card .cc-ic {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(207, 132, 39, 0.12);
  border: 1px solid rgba(207, 132, 39, 0.3);
}
.contact-card .cc-ic svg { width: 20px; height: 20px; fill: var(--amber-bright); }
.contact-card h3 { font-size: 15px; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; }
.contact-card a, .contact-card .cc-val { display: block; margin-top: 6px; font-size: 17px; font-weight: 600; color: #fff; }
.contact-card a:hover { color: var(--amber-bright); }

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 860px) { .package-grid { grid-template-columns: 1fr; } }
.package-card {
  background: linear-gradient(170deg, var(--card-2), var(--card) 55%);
  border: 1px solid rgba(207, 132, 39, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card .pk-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--card-2); }
.package-card .pk-img img { width: 100%; height: 100%; object-fit: cover; }
.pk-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pk-body h3 { font-size: 23px; margin-bottom: 14px; }
.pk-items { list-style: none; margin-bottom: 18px; }
.pk-items li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--silver);
}
.pk-items li span:last-child { color: var(--muted); white-space: nowrap; }
.pk-pricing { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pk-price-was { color: var(--muted); font-size: 14px; }
.pk-price-was s { opacity: 0.8; }
.pk-price { font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1; }
.pk-price small { display: block; font-family: var(--font-body); font-size: 11.5px; font-weight: 500; color: var(--muted); margin-top: 5px; }
.pk-save {
  background: rgba(232, 86, 63, 0.14);
  border: 1px solid rgba(232, 86, 63, 0.45);
  color: #ff8d75;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Enquiry basket / drawer ---------- */
.enquiry-fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 85;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  color: #0c0c0d;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 24px;
  border-radius: 99px;
  box-shadow: 0 10px 34px rgba(207, 132, 39, 0.45);
}
.enquiry-fab.show { display: inline-flex; animation: popIn 0.3s ease; }
.enquiry-fab .cnt {
  background: #0c0c0d;
  color: var(--amber-bright);
  border-radius: 99px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 0 7px;
}
@media (max-width: 680px) { .enquiry-fab { bottom: 76px; } }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.drawer-overlay.show { display: flex; }
.drawer {
  background: #121316;
  border: 1px solid var(--line-strong);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  width: 100%;
  max-width: 680px;
  max-height: 88svh;
  overflow-y: auto;
  animation: slideUp 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(60px); opacity: 0.4; } to { transform: none; opacity: 1; } }
.drawer-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #121316;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head h3 { font-size: 20px; }
.drawer-close { font-size: 26px; line-height: 1; color: var(--muted); padding: 2px 10px; }
.drawer-close:hover { color: #fff; }
.drawer-body { padding: 20px 22px 26px; }
.drawer-items { margin-bottom: 20px; }
.drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.drawer-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.drawer-item .di-name { flex: 1; }
.drawer-item .di-price { font-weight: 700; white-space: nowrap; }
.drawer-item .di-x { color: var(--muted); font-size: 18px; padding: 4px 8px; }
.drawer-item .di-x:hover { color: var(--save); }
.drawer-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 4px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.drawer-total small { color: var(--muted); font-family: var(--font-body); font-weight: 400; font-size: 12px; text-transform: none; }

.field { margin-bottom: 12px; }
.field input, .field textarea {
  width: 100%;
  background: #0d0e10;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); }
.field input::placeholder, .field textarea::placeholder { color: rgba(153, 160, 170, 0.65); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-msg { font-size: 13.5px; margin: 10px 0; display: none; }
.form-msg.err { display: block; color: #f87171; }
.form-msg.ok { display: block; color: var(--green); }
.drawer .fine { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-amber::after { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .ware-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav, .header-cta .phone-chip span.txt { display: none; }
  .menu-btn { display: block; }
  .header-cta { margin-left: 0; margin-right: 8px; }
  .header-inner { justify-content: space-between; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .section { padding: 64px 0; }
}
@media (max-width: 680px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* narrow 2-col cards: stack the save/pct badges (top-left) so they never collide */
  .save-badge { top: 8px; left: 8px; font-size: 11px; padding: 4px 8px; }
  .pct-badge { top: 36px; left: 8px; right: auto; font-size: 11px; padding: 4px 7px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid img:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 66px; }
  .offer-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-cards { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero-ctas .btn { width: 100%; }

  /* mobile hero: show the whole branded video (logo never cropped), CTAs below it */
  .hero { min-height: 0; display: block; }
  .hero video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .hero-overlay { display: none; }
  .hero-content { position: static; padding: 18px 20px 24px; }
  .hero .scroll-hint { display: none; }

  /* mobile catalogue: tighten the header so product cards appear straight away */
  .page-hero { padding: calc(var(--header-h) + 22px) 0 20px; }
  .page-hero .lead { font-size: 15px; margin-top: 10px; }
  .page-hero-meta { display: none; }

  /* mobile popup: less padding so the form runs closer to edge-to-edge */
  .popup { padding: 30px 16px 18px; }
  .popup iframe { min-height: 440px; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pc-name { font-size: 14.5px; }
  .pc-price { font-size: 18px; }
  .pc-enq { padding: 7px 10px; font-size: 11px; }
}
