/* ============================================================
   ROCK BOX NATION — Production Stylesheet
   Direction A: Dark & Electric
   Built by Devon Walsh, Lead Full-Stack Developer
   ============================================================ */

:root {
  /* Backgrounds */
  --black: #050505;
  --bg: #050505;
  --panel: #0f0f0f;
  --panel-2: #161616;
  --panel-3: #1d1d1d;

  /* Brand accent */
  --orange: #ff5a00;
  --orange-2: #ff7a1a;
  --orange-deep: #c43e00;

  /* Text */
  --white: #ffffff;
  --text: #f2f2f2;
  --muted: #b4b4b4;
  --subtle: #8a8a8a;

  /* Lines & effects */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --orange-line: rgba(255, 90, 0, 0.35);
  --glow: 0 0 40px rgba(255, 90, 0, 0.28);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.45);

  /* Fonts */
  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max: 1200px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --t-fast: 0.16s ease;
  --t: 0.25s ease;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 60% 40% at 85% 0%, rgba(255, 90, 0, 0.08), transparent),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 90, 0, 0.05), transparent);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 2000;
  background: var(--orange); color: #fff; padding: 10px 18px;
  font-weight: 700; border-radius: var(--radius); transition: var(--t-fast);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Typography ---------- */
.font-head { font-family: var(--font-head); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 0.92; letter-spacing: 1px; text-transform: uppercase; }
.orange { color: var(--orange); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-family: var(--font-body); font-weight: 800;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.section-h2 { font-size: clamp(40px, 6vw, 78px); margin-bottom: 18px; }
.section-h2 span { color: var(--orange); }
.lead { font-size: 18px; color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.bg-panel { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  padding: 15px 34px; border: 2px solid var(--orange); background: transparent;
  color: var(--white); transition: var(--t);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--orange-2); }
.btn-ghost { border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 18px 46px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,5,5,0.55); border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(5,5,5,0.92); border-bottom-color: var(--orange-line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; flex-direction: column; line-height: 0.82; transform: skewX(-5deg); }
.logo .l1 { font-family: var(--font-head); font-size: 22px; letter-spacing: 1px; color: #fff; }
.logo .l2 { font-family: var(--font-head); font-size: 29px; letter-spacing: 1px; color: var(--orange); text-shadow: 0 0 20px rgba(255,90,0,0.5); }
.logo .l3 { font-size: 7.5px; font-weight: 700; letter-spacing: 2.5px; color: var(--subtle); text-transform: uppercase; transform: skewX(5deg); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #ccc; padding: 9px 13px; border-bottom: 2px solid transparent; transition: var(--t-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: var(--t-fast); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 74px 0 0; z-index: 999; background: rgba(5,5,5,0.98); backdrop-filter: blur(10px); padding: 32px 24px; flex-direction: column; gap: 6px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 30px; letter-spacing: 1px; text-transform: uppercase; color: #fff; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .btn { margin-top: 20px; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-sm { min-height: 64vh; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.28) 100%); }
.hero-scratch { position: absolute; right: -60px; top: 0; bottom: 0; width: 420px; opacity: 0.16; transform: skewX(-4deg); background: repeating-linear-gradient(108deg, rgba(255,90,0,0.55) 0 4px, transparent 4px 14px); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 74px; }
.hero h1 { font-size: clamp(64px, 10vw, 128px); margin-bottom: 24px; }
.hero h1 span { color: var(--orange); text-shadow: 0 0 30px rgba(255,90,0,0.4); }
.hero-sub { font-size: clamp(16px, 2vw, 22px); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: #ddd; max-width: 600px; line-height: 1.35; margin-bottom: 14px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 34px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--orange-line); background: rgba(255,90,0,0.08); padding: 7px 14px; color: #eee; }
.pill::before { content: "•"; color: var(--orange); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Live Band headliner ---------- */
.band-headliner { position: relative; overflow: hidden; padding: 96px 0; background: linear-gradient(135deg, #0c0c0c 0%, #050505 60%); border-top: 1px solid var(--orange-line); border-bottom: 1px solid var(--orange-line); }
.band-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.band-h2 { font-size: clamp(48px, 7vw, 96px); margin-bottom: 20px; }
.band-h2 span { color: var(--orange); text-shadow: 0 0 30px rgba(255,90,0,0.4); }
.band-badge { display: flex; justify-content: center; }
.band-badge-inner { aspect-ratio: 1; width: 100%; max-width: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 3px solid var(--orange); border-radius: 50%; box-shadow: var(--glow), inset 0 0 40px rgba(255,90,0,0.15); background: radial-gradient(circle, rgba(255,90,0,0.08), transparent); }
.band-badge .bb-top { font-family: var(--font-body); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--orange); }
.band-badge .bb-main { font-family: var(--font-head); font-size: clamp(48px, 7vw, 80px); line-height: 0.9; color: #fff; margin: 10px 0; }
.band-badge .bb-sub { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
@media (max-width: 760px) { .band-inner { grid-template-columns: 1fr; } .band-badge { order: -1; } .band-badge-inner { max-width: 220px; } }

/* ---------- Trust bar ---------- */
.trust { background: var(--orange); padding: 18px 24px; }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-num { font-family: var(--font-head); font-size: 34px; letter-spacing: 1px; color: #fff; line-height: 1; }
.trust-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.9); line-height: 1.2; }
.trust-div { width: 1px; height: 38px; background: rgba(255,255,255,0.3); }
@media (max-width: 720px) { .trust-div { display: none; } .trust-inner { gap: 24px; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.card { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: var(--t); }
.service-card { position: relative; overflow: hidden; padding: 32px 28px; }
.service-card::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: var(--t); }
.service-card:hover { transform: translateY(-4px); border-color: var(--orange-line); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 38px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 25px; letter-spacing: 1px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); }

.photo-frame { border: 1px solid var(--orange-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Feature list */
.feature-list { display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; color: var(--text); }
.feature-list li::before { content: "✓"; color: var(--orange); font-weight: 900; flex-shrink: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.step .num { width: 56px; height: 56px; margin: 0 auto 14px; background: var(--orange); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-size: 26px; box-shadow: var(--glow); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--panel-2); border: 1px solid var(--orange-line); border-radius: var(--radius-lg); padding: 28px; }
.quote .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.quote .who { font-weight: 700; font-size: 14px; color: #fff; }
.quote .ev { font-size: 12px; color: var(--subtle); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: 80px 0; background: linear-gradient(135deg, rgba(255,90,0,0.18) 0%, rgba(0,0,0,0.4) 100%); border-top: 1px solid var(--orange-line); border-bottom: 1px solid var(--orange-line); }
.cta-band .scratch { position: absolute; right: 0; top: 0; bottom: 0; width: 300px; opacity: 0.12; background: repeating-linear-gradient(108deg, rgba(255,90,0,0.5) 0 3px, transparent 3px 12px); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(40px, 5vw, 70px); }
.cta-inner h2 span { color: var(--orange); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-phone { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cta-phone a { color: var(--orange); }

/* ---------- Pricing ---------- */
.sale-banner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; background: var(--orange); color: #fff; text-align: center; padding: 16px 24px; font-family: var(--font-head); font-size: 26px; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius); margin-bottom: 36px; box-shadow: var(--glow); }
.sale-banner .countdown { font-family: var(--font-body); font-size: 13px; font-weight: 800; letter-spacing: 1px; background: rgba(0,0,0,0.25); padding: 6px 14px; border-radius: 999px; }
.sale-flag { display: inline-block; background: var(--orange); color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.price-card.featured .sale-flag { background: #fff; color: var(--orange-deep); }
.price-was { color: var(--subtle); font-size: 17px; font-weight: 600; }
.price-was s { text-decoration: line-through; }
.pricing-toggle { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 48px; }
.pricing-toggle span { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.pricing-toggle span.active { color: var(--orange); }
.toggle { position: relative; width: 58px; height: 30px; background: var(--panel-3); border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; transition: var(--t); }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; transition: var(--t); }
.toggle.on::after { transform: translateX(28px); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; max-width: 1000px; margin: 0 auto; }
.price-card { display: flex; flex-direction: column; background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; transition: var(--t); }
.price-card:hover { transform: translateY(-4px); border-color: var(--orange-line); box-shadow: var(--shadow-card); }
.price-card.featured { border: 2px solid var(--orange); box-shadow: var(--glow); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 16px; white-space: nowrap; }
.tier-name { font-family: var(--font-head); font-size: 32px; letter-spacing: 1px; color: var(--orange); margin-bottom: 6px; }
.tier-for { font-size: 12px; color: var(--subtle); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.price { font-family: var(--font-head); font-size: 54px; color: #fff; line-height: 1; }
.price small { font-family: var(--font-body); font-size: 14px; color: var(--muted); font-weight: 600; }
.price-note { font-size: 13px; color: var(--muted); margin: 8px 0 24px; }
.price-features { display: grid; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; gap: 10px; font-size: 14px; color: var(--text); }
.price-features li::before { content: "✓"; color: var(--orange); font-weight: 900; flex-shrink: 0; }
.price-features li.off { color: var(--subtle); }
.price-features li.off::before { content: "—"; color: var(--subtle); }

/* ---------- Forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; background: #0b0b0b; border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 13px 14px; color: #fff; font-family: var(--font-body); font-size: 15px; transition: var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,0,0.15); }
.field input::placeholder, .field textarea::placeholder { color: #666; }
.form-note { font-size: 13px; color: var(--subtle); margin-top: 6px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.checkbox-row input { width: auto; margin-top: 3px; accent-color: var(--orange); }

/* Form feedback */
.form-feedback { display: none; padding: 16px 18px; border-radius: var(--radius); font-size: 15px; font-weight: 600; margin-top: 8px; }
.form-feedback.show { display: block; }
.form-feedback.success { background: rgba(40,160,80,0.15); border: 1px solid rgba(60,200,110,0.5); color: #aef0c4; }
.form-feedback.error { background: rgba(200,40,40,0.15); border: 1px solid rgba(240,80,80,0.5); color: #f4baba; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn { background: var(--panel-2); border: 1px solid var(--line-strong); color: var(--muted); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: var(--t-fast); }
.filter-btn:hover { border-color: var(--orange); color: #fff; }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); cursor: pointer; aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: "⤢"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; background: rgba(255,90,0,0.55); opacity: 0; transition: var(--t); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border: 1px solid var(--orange); border-radius: var(--radius); }
.lightbox .close { position: absolute; top: 20px; right: 24px; background: var(--orange); color: #fff; border: 0; width: 46px; height: 46px; font-size: 22px; cursor: pointer; border-radius: 50%; }
.lightbox .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,90,0,0.2); border: 1px solid var(--orange); color: #fff; width: 52px; height: 52px; font-size: 26px; cursor: pointer; border-radius: 50%; transition: var(--t-fast); }
.lightbox .nav-arrow:hover { background: var(--orange); }
.lightbox .prev { left: 24px; } .lightbox .next { right: 24px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 17px; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: "+"; color: var(--orange); font-size: 26px; transition: var(--t-fast); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- About / stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--font-head); font-size: 58px; color: var(--orange); line-height: 1; }
.stat .l { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-info { display: grid; gap: 18px; }
.contact-line { display: flex; align-items: center; gap: 14px; font-size: 17px; }
.contact-line .ico { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; background: rgba(255,90,0,0.12); border: 1px solid var(--orange-line); border-radius: 50%; font-size: 20px; }
.contact-line a:hover { color: var(--orange); }
.map-embed { border: 1px solid var(--orange-line); border-radius: var(--radius-lg); overflow: hidden; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }
.socials { display: flex; gap: 12px; }
.socials a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 18px; transition: var(--t-fast); }
.socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: var(--t); }
.post-card:hover { transform: translateY(-4px); border-color: var(--orange-line); box-shadow: var(--shadow-card); }
.post-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 24px; }
.post-card .tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); }
.post-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 19px; line-height: 1.3; text-transform: none; letter-spacing: 0; margin: 10px 0; }
.post-card p { font-size: 14px; color: var(--muted); }

/* ---------- Gear / products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: var(--t); }
.product-card:hover { transform: translateY(-4px); border-color: var(--orange-line); box-shadow: var(--shadow-card); }
.product-media { position: relative; aspect-ratio: 1; background: #929292; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-view { position: absolute; top: 10px; left: 10px; background: rgba(5,5,5,0.7); color: #fff; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 999px; }
.flip-btn { position: absolute; bottom: 10px; right: 10px; display: inline-flex; align-items: center; gap: 6px; background: rgba(5,5,5,0.82); color: #fff; border: 1px solid var(--orange); border-radius: 999px; font-family: var(--font-body); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 8px 14px; cursor: pointer; transition: var(--t-fast); }
.flip-btn:hover { background: var(--orange); }
.product-info { padding: 18px 20px; }
.product-info h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; text-transform: none; letter-spacing: 0; margin-bottom: 3px; }
.product-info .ptype { font-size: 12px; color: var(--subtle); text-transform: uppercase; letter-spacing: 1px; }
.product-price { display: flex; align-items: baseline; gap: 9px; margin-top: 10px; }
.product-price .now { font-family: var(--font-head); font-size: 24px; letter-spacing: 1px; color: var(--orange); }
.product-price .was { font-size: 15px; color: var(--subtle); text-decoration: line-through; }
.product-price .save { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); background: rgba(255,90,0,0.12); border: 1px solid var(--orange-line); padding: 2px 8px; border-radius: 999px; }
.product-price .coming { font-family: var(--font-head); font-size: 19px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .product-info { padding: 12px; } .product-info h3 { font-size: 14px; } }

/* ---------- Footer ---------- */
.footer { background: #030303; border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer h4 { font-family: var(--font-body); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: var(--t-fast); }
.footer-links a:hover { color: var(--orange); }
.footer-tag { color: var(--muted); font-size: 14px; margin: 14px 0 18px; max-width: 280px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: var(--subtle); }
.footer-bottom a { color: var(--subtle); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Page header (interior pages) ---------- */
.page-header { position: relative; padding: 150px 0 70px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-header .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-header::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,0.7), var(--bg)); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(48px, 7vw, 88px); }
.page-header h1 span { color: var(--orange); }
.breadcrumb { font-size: 13px; color: var(--subtle); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- AOS-lite scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .post-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 760px) {
  .split, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .post-grid, .testimonials, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn, .cta-actions .btn { width: 100%; }
}
