/* ============================================================
   ForgeFit Gym — Showcase / Styled
   Design system: matte black + steel gray + white + electric lime
   ============================================================ */

:root {
  --black: #0b0c0e;
  --charcoal: #16181d;
  --charcoal-2: #1d2026;
  --steel: #2a2e37;
  --steel-light: #3a3f4b;
  --gray: #8a909c;
  --gray-light: #c7ccd6;
  --white: #ffffff;
  --paper: #f5f6f8;
  --paper-2: #eceef2;

  --lime: #c9f73a;
  --lime-bright: #d4ff3f;
  --lime-deep: #a8d422;

  --ff-head: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 18px 40px -22px rgba(0, 0, 0, 0.55);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--paper { background: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 22px;
}
.section--dark .eyebrow,
.section--charcoal .eyebrow { color: var(--lime); }
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  text-transform: uppercase;
}
.section-head p {
  margin: 20px 0 0;
  font-size: 1.06rem;
  color: var(--gray);
  max-width: 560px;
}
.section--paper .section-head p { color: var(--steel-light); }

.lime { color: var(--lime-deep); }
.section--dark .lime,
.section--charcoal .lime { color: var(--lime); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 12px 26px -12px rgba(201, 247, 58, 0.7);
}
.btn--primary:hover { background: var(--lime-bright); box-shadow: 0 18px 34px -12px rgba(201, 247, 58, 0.85); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.28); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--steel); }
.btn--dark:hover svg { transform: translateX(4px); }

.btn--outline-dark { background: transparent; color: var(--black); border-color: rgba(11, 12, 14, 0.2); }
.btn--outline-dark:hover { border-color: var(--black); }

.btn--lg { padding: 19px 38px; }
.btn--block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: rgba(11, 12, 14, 0);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 12, 14, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  background: var(--lime);
  color: var(--black);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 900;
  transform: skewX(-8deg);
}
.brand-mark span { transform: skewX(8deg); }
.brand b { color: var(--lime); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-light);
  border-radius: var(--radius);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--lime); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.nav-cta .btn { padding: 12px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.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: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 78% 18%, rgba(201, 247, 58, 0.14), transparent 60%),
    linear-gradient(180deg, #0b0c0e 0%, #121419 55%, #0b0c0e 100%);
}
/* diagonal accent slab */
.hero::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: -120px;
  width: 46%;
  background:
    linear-gradient(135deg, rgba(42, 46, 55, 0.55), rgba(11, 12, 14, 0.1));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 2px solid rgba(201, 247, 58, 0.25);
}
.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 247, 58, 0.35);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 30px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(201, 247, 58, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 247, 58, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(201, 247, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 247, 58, 0); }
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  text-stroke: 2px var(--lime);
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero p.lead {
  margin: 28px 0 38px;
  font-size: 1.12rem;
  color: var(--gray-light);
  max-width: 470px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stats .num {
  font-family: var(--ff-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stats .num b { color: var(--lime); }
.hero-stats .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

/* hero visual panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.hero-visual .ph { width: 100%; height: 100%; }
.hero-visual .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(11, 12, 14, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 247, 58, 0.3);
  border-radius: var(--radius);
}
.hero-visual .badge .ic {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--lime); color: var(--black);
  border-radius: var(--radius);
  font-weight: 900;
}
.hero-visual .badge .t { font-weight: 700; font-size: 0.92rem; color: var(--white); }
.hero-visual .badge .s { font-size: 0.72rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Image placeholders (gradient + texture) ---------- */
.ph {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px; top: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.ph-1 { background: linear-gradient(145deg, #1f2228, #2c313b 45%, #0d0e11); }
.ph-2 { background: linear-gradient(145deg, #232830, #14161b); }
.ph-3 { background: linear-gradient(160deg, #2a2f38, #16181d 70%); }
.ph-4 { background: linear-gradient(135deg, #1a1d22, #31373f); }
.ph-5 { background: linear-gradient(150deg, #20242b, #0f1115); }
.ph-lime { background: linear-gradient(145deg, #2c3320, #1a1d22 60%); }
.ph-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip {
  background: var(--lime);
  color: var(--black);
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 16px 26px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.strip-track span::after {
  content: "✦";
  font-size: 0.8rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   FEATURE / PROGRAM CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.section--dark .pcard,
.section--charcoal .pcard {
  background: var(--charcoal-2);
  border-color: var(--steel);
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.pcard:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: var(--shadow-card);
}
.pcard:hover::before { transform: scaleX(1); }

.pcard .pc-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.pcard .pc-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--black);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.section--dark .pcard .pc-icon,
.section--charcoal .pcard .pc-icon {
  background: var(--steel); color: var(--white);
}
.pcard:hover .pc-icon {
  background: var(--lime); color: var(--black);
  transform: rotate(-6deg) scale(1.05);
}
.pcard .pc-icon svg { width: 26px; height: 26px; }

.pcard h3 {
  font-size: 1.32rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section--dark .pcard h3,
.section--charcoal .pcard h3 { color: var(--white); }
.pcard p {
  color: var(--gray);
  font-size: 0.96rem;
  margin: 0 0 22px;
  flex: 1;
}
.pcard .pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pcard .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 11px;
  background: var(--paper);
  color: var(--steel-light);
  border-radius: 100px;
}
.section--dark .pcard .tag,
.section--charcoal .pcard .tag { background: var(--steel); color: var(--gray-light); }
.pcard .pc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.section--dark .pcard .pc-link,
.section--charcoal .pcard .pc-link { color: var(--white); }
.pcard .pc-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.pcard:hover .pc-link { color: var(--lime-deep); }
.section--dark .pcard:hover .pc-link,
.section--charcoal .pcard:hover .pc-link { color: var(--lime); }
.pcard:hover .pc-link svg { transform: translateX(5px); }

/* program card with image */
.pcard--img { padding: 0; }
.pcard--img .pc-thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
}
.pcard--img .pc-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }

/* ============================================================
   SPLIT / ABOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--steel);
}
.split-media .accent-block {
  position: absolute;
  right: -24px; bottom: -24px;
  width: 150px; height: 150px;
  background: var(--lime);
  z-index: -1;
}
.feat-list { list-style: none; margin: 30px 0 0; padding: 0; }
.feat-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.section--paper .feat-list li { border-bottom-color: var(--paper-2); }
.feat-list li .fi {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--lime); color: var(--black);
  border-radius: var(--radius);
  font-weight: 900;
}
.feat-list li h4 { font-size: 1.04rem; text-transform: uppercase; margin-bottom: 3px; }
.feat-list li p { margin: 0; font-size: 0.92rem; color: var(--gray); }

/* ============================================================
   MEMBERSHIP / PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--steel);
  border-radius: 6px;
  overflow: hidden;
}
.section--paper .price-grid { border-color: var(--paper-2); }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 42px 34px;
  background: var(--charcoal-2);
  border-right: 1px solid var(--steel);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.section--paper .plan { background: var(--white); border-right-color: var(--paper-2); }
.plan:last-child { border-right: none; }
.plan:hover { background: var(--charcoal); }
.section--paper .plan:hover { background: var(--paper); }

.plan--featured {
  background: var(--black);
  box-shadow: inset 0 0 0 2px var(--lime);
  z-index: 2;
}
.section--paper .plan--featured { background: var(--black); color: var(--white); }
.plan--featured .plan-name,
.plan--featured .plan-price,
.plan--featured .plan-feats li { color: var(--white); }

.plan-flag {
  position: absolute;
  top: 0; right: 0;
  padding: 7px 16px;
  background: var(--lime);
  color: var(--black);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.plan-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.section--paper .plan:not(.plan--featured) .plan-name { color: var(--lime-deep); }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price .amt {
  font-family: var(--ff-head);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.section--paper .plan:not(.plan--featured) .plan-price .amt { color: var(--black); }
.plan-price .per { color: var(--gray); font-size: 0.86rem; padding-bottom: 12px; }
.plan-desc { font-size: 0.92rem; color: var(--gray); margin: 0 0 26px; }

.plan-feats { list-style: none; margin: 0 0 32px; padding: 26px 0 0; border-top: 1px solid var(--steel); flex: 1; }
.section--paper .plan:not(.plan--featured) .plan-feats { border-top-color: var(--paper-2); }
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  color: var(--gray-light);
}
.section--paper .plan:not(.plan--featured) .plan-feats li { color: var(--steel-light); }
.plan-feats li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--lime); }
.plan-feats li.off { color: var(--gray); opacity: 0.55; }
.plan-feats li.off svg { color: var(--gray); }

/* ============================================================
   TRAINERS
   ============================================================ */
.trainer {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--steel);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.section--paper .trainer { border-color: var(--paper-2); }
.trainer:hover { transform: translateY(-6px); border-color: var(--lime); }
.trainer-photo { aspect-ratio: 3 / 4; }
.trainer-info {
  padding: 22px;
  background: var(--charcoal-2);
}
.section--paper .trainer-info { background: var(--white); }
.trainer-info .role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 7px;
}
.section--dark .trainer-info .role,
.section--charcoal .trainer-info .role { color: var(--lime); }
.trainer-info h3 { font-size: 1.25rem; text-transform: uppercase; }
.section--dark .trainer-info h3,
.section--charcoal .trainer-info h3 { color: var(--white); }
.trainer-info p { margin: 8px 0 0; font-size: 0.88rem; color: var(--gray); }
.trainer-socials { display: flex; gap: 10px; margin-top: 16px; }
.trainer-socials a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  color: var(--gray-light);
  transition: all 0.25s var(--ease);
}
.section--paper .trainer-socials a { border-color: var(--paper-2); color: var(--steel-light); }
.trainer-socials a:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }
.trainer-socials a svg { width: 15px; height: 15px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery .gitem {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery .gitem .ph { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.gallery .gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,12,14,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery .gitem:hover .ph { transform: scale(1.07); }
.gallery .gitem:hover::after { opacity: 1; }
.gallery .gitem .glabel {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}
.gallery .gitem:hover .glabel { opacity: 1; transform: translateY(0); }
.gallery .span-2 { grid-column: span 2; }
.gallery .row-2 { grid-row: span 2; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  padding: 34px 30px;
  background: var(--charcoal-2);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.section--paper .quote { background: var(--white); border-color: var(--paper-2); }
.quote:hover { transform: translateY(-6px); border-color: var(--lime); }
.quote .stars { color: var(--lime); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.9rem; }
.quote p {
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0 0 24px;
}
.section--paper .quote p { color: var(--black); }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lime); color: var(--black);
  font-weight: 800;
  flex-shrink: 0;
}
.quote .who .nm { font-weight: 700; font-size: 0.94rem; color: var(--white); }
.section--paper .quote .who .nm { color: var(--black); }
.quote .who .meta { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--lime);
  color: var(--black);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: var(--black);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.06;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  max-width: 640px;
}
.cta-band p { margin: 16px 0 0; font-weight: 600; max-width: 460px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--gray-light);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .brand { margin-bottom: 20px; }
.footer-about p { font-size: 0.94rem; color: var(--gray); max-width: 300px; margin: 0 0 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--gray-light);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--lime); color: var(--black); border-color: var(--lime); transform: translateY(-3px); }
.footer-social a svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--gray); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--lime); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 180px 0 90px;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(201, 247, 58, 0.12), transparent 60%);
}
.page-head::after {
  content: "";
  position: absolute;
  right: -100px; top: -50px;
  width: 420px; height: 420px;
  border: 2px solid rgba(201, 247, 58, 0.16);
  transform: rotate(45deg);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
}
.page-head h1 em { font-style: normal; color: var(--lime); }
.page-head p { margin: 22px 0 0; font-size: 1.1rem; color: var(--gray-light); max-width: 540px; }
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--lime); }
.crumbs span { color: var(--lime); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.info-card:hover { border-color: var(--lime); transform: translateX(4px); }
.info-card .ic {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--black); color: var(--lime);
  border-radius: var(--radius);
}
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.info-card p { margin: 0; font-size: 1.02rem; color: var(--black); font-weight: 600; }
.info-card p span { display: block; font-weight: 400; font-size: 0.9rem; color: var(--gray); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--paper-2);
  font-size: 0.94rem;
}
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed { color: var(--gray); }
.hours-table .now { color: var(--lime-deep); }

.form-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--paper-2);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 9px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--black);
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 16px; }
.form-msg {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(201, 247, 58, 0.14);
  border: 1px solid var(--lime-deep);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lime-deep);
}
.form-msg.show { display: block; }

.map-wrap {
  position: relative;
  margin-top: 0;
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--steel);
}
.map-wrap .ph { width: 100%; height: 100%; }
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.map-pin .dot {
  width: 18px; height: 18px;
  background: var(--lime);
  border: 4px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201, 247, 58, 0.6);
  animation: pulse 2.2s infinite;
}
.map-pin .lbl {
  padding: 7px 14px;
  background: var(--black);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* WhatsApp floating btn */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 36px -12px rgba(37, 211, 102, 0.85); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .txt { display: inline; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.4s; }

.img-reveal { position: relative; }
.img-reveal::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--lime);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s var(--ease);
  z-index: 5;
}
.img-reveal.in::after { transform: scaleX(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 12, 14, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.open .nav-links { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav.open .nav-links a { padding: 14px 16px; font-size: 0.95rem; }
  .card-grid, .card-grid.two, .quote-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--steel); }
  .section--paper .plan { border-bottom-color: var(--paper-2); }
  .plan--featured { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .section { padding: 76px 0; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .wa-float .txt { display: none; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .span-2 { grid-column: span 1; }
  .hero-stats .num { font-size: 1.7rem; }
  .form-card { padding: 26px; }
}
