/* =========================================================
   G Force Innovations Handyman — Venice, FL
   Design: Bold red + charcoal · Industrial editorial
   ========================================================= */

:root {
  --red: #DC2626;
  --red-deep: #991B1B;
  --red-glow: rgba(220, 38, 38, .35);
  --ink: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1e1e1e;
  --charcoal-3: #2a2a2a;
  --paper: #f5f2ea;
  --paper-2: #ffffff;
  --steel: #737373;
  --steel-2: #a3a3a3;
  --line: rgba(255, 255, 255, .09);
  --line-dark: rgba(0, 0, 0, .1);

  --display: 'Barlow Condensed', 'Impact', sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --nav-h: 68px;
  --pad-x: clamp(20px, 5vw, 80px);
  --gutter: clamp(24px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  font-family: var(--body);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--red); color: #fff; }

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  background: transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--paper);
}
.brand .bolt {
  width: 28px; height: 28px; color: var(--red);
  filter: drop-shadow(0 0 8px var(--red-glow));
  transition: transform .3s ease;
}
.brand:hover .bolt { transform: rotate(-8deg) scale(1.08); }
.brand-name {
  font-family: var(--display); line-height: 1;
  display: flex; flex-direction: column; gap: 3px;
}
.brand-name .b1 { font-size: 21px; font-weight: 900; letter-spacing: .06em; }
.brand-name .b2 { font-size: 9px; font-weight: 600; letter-spacing: .32em; color: var(--steel-2); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  letter-spacing: .04em; color: var(--paper);
  position: relative; transition: color .2s;
}
.nav-links a:not(.cta-inline):hover { color: var(--red); }
.nav-links a:not(.cta-inline)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--red); transition: width .3s ease;
}
.nav-links a:not(.cta-inline):hover::after { width: 100%; }
.cta-inline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff !important;
  padding: 9px 18px; border-radius: 3px;
  font-weight: 700; letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  transition: background .2s, transform .2s;
}
.cta-inline:hover { background: var(--red-deep); transform: translateY(-1px); }
.cta-inline svg { flex-shrink: 0; }

.menu-btn { display: none; width: 40px; height: 40px; padding: 8px; flex-direction: column; justify-content: space-between; }
.menu-btn span { display: block; height: 2px; background: var(--paper); border-radius: 1px; transition: transform .3s, opacity .3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(10,10,10,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .35s ease, visibility 0s linear .35s;
}
.mobile-drawer.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform .35s ease, visibility 0s linear 0s;
}
@media (min-width: 781px) {
  .mobile-drawer { display: none !important; }
}
.mobile-drawer a {
  padding: 18px var(--pad-x);
  font-family: var(--body); font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a.cta-inline {
  background: var(--red); color: #fff; text-align: center;
  border-radius: 0; margin: 0;
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 15px; font-weight: 600;
  letter-spacing: .04em; padding: 15px 26px; border-radius: 3px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 24px -6px var(--red-glow);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 8px 28px -6px var(--red-glow); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.04); }
.btn-outline {
  background: transparent; color: var(--paper);
  border: 1.5px solid var(--paper); padding: 15px 26px;
}
.btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 20px 34px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* =========== HERO =========== */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 620px;
  background: var(--ink); overflow: hidden;
}
.hero-stage {
  position: absolute; inset: 0;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
#heroCanvas.ready { opacity: 1; }
.hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .5s ease;
}
#heroCanvas.ready + .hero-fallback { opacity: 0; }

.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .11; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.6'/></svg>");
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 22%, rgba(10,10,10,0) 55%, rgba(10,10,10,.82) 100%),
    linear-gradient(90deg, rgba(10,10,10,.4), rgba(10,10,10,0) 30%, rgba(10,10,10,0) 70%, rgba(10,10,10,.4));
}
.hero-cursor-glow {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(
    circle 320px at var(--mx, 50%) var(--my, 50%),
    rgba(220, 38, 38, .28),
    rgba(220, 38, 38, .1) 20%,
    transparent 55%
  );
  mix-blend-mode: soft-light;
  will-change: background;
}
.hero:hover .hero-cursor-glow { opacity: 1; }
@media (hover: none) {
  .hero-cursor-glow { display: none; }
}

.hero-overlay {
  position: relative; z-index: 3;
  height: 100%;
  padding: calc(var(--nav-h) + 4vh) var(--pad-x) 6vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: 1600px; margin: 0 auto;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; color: var(--paper);
  padding: 8px 14px 8px 8px;
  background: rgba(10,10,10,.5);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 100px;
  width: fit-content;
}
.hero-rating {
  padding: 8px 16px;
  gap: 10px;
}
.hero-rating .stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: .08em;
  font-family: var(--body);
  text-shadow: 0 0 12px rgba(220,38,38,.5);
}
.hero-rating strong { color: var(--paper); font-weight: 700; }
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(220,38,38,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(220,38,38,.25); }
  50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(58px, 11vw, 178px);
  line-height: .88;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  margin-bottom: 26px;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal; color: var(--red);
  position: relative;
}
.hero-title em::after {
  content: ''; position: absolute;
  left: -4%; right: -4%; bottom: 6%;
  height: .1em; background: var(--red);
  transform: scaleX(0); transform-origin: left center;
  animation: underline 1.2s ease .6s forwards;
}
@keyframes underline {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--paper); opacity: .92;
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 34px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-sub strong { color: var(--paper); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 4vh; }

.hero-scroll {
  position: absolute; bottom: 26px; right: var(--pad-x);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .4em; color: var(--steel-2);
}
.scroll-line {
  width: 60px; height: 1px; background: rgba(255,255,255,.15);
  overflow: hidden; position: relative;
}
.scroll-line i {
  position: absolute; top: 0; left: 0;
  width: 30%; height: 100%; background: var(--red);
  animation: scrollBar 2.4s ease-in-out infinite;
}
@keyframes scrollBar {
  0% { left: -30%; }
  100% { left: 100%; }
}

.hero-loader {
  position: absolute; left: 0; bottom: 0; z-index: 4;
  width: 100%; height: 2px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.hero-loader i {
  display: block; height: 100%; width: 0%;
  background: var(--red);
  transition: width .3s ease;
}
.hero-loader.done { opacity: 0; transition: opacity .5s ease .3s; }

/* =========== TRUST BAR =========== */
.trust {
  background: var(--paper);
  color: var(--ink);
  border-top: 6px solid var(--red);
}
.trust-inner {
  max-width: 1600px; margin: 0 auto;
  padding: 34px var(--pad-x);
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.trust-item {
  display: flex; flex-direction: column; gap: 4px;
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.trust-item b {
  font-family: var(--display); font-size: 46px; font-weight: 900;
  line-height: 1; letter-spacing: -.02em;
  color: var(--ink);
}
.trust-item .rating { display: inline-flex; align-items: baseline; gap: 4px; }
.trust-item .rating span { font-size: 22px; color: var(--red); }
.trust-item .trust-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel);
}
.trust-item .pill {
  display: inline-block;
  font-size: 15px; padding: 8px 14px;
  background: var(--ink); color: var(--red);
  border-radius: 3px; letter-spacing: .1em;
  width: fit-content;
}

/* =========== SECTIONS SHARED =========== */
.section-head {
  max-width: 1600px; margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) var(--pad-x) 40px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .32em; color: var(--red);
  margin-bottom: 20px;
  position: relative; padding-left: 40px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 2px; background: var(--red);
}
.eyebrow.light { color: var(--paper); }
.eyebrow.light::before { background: var(--paper); }
.section-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: .96;
  letter-spacing: -.015em;
  max-width: 18ch;
  color: var(--paper);
  text-transform: uppercase;
}
.section-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--steel-2);
  max-width: 60ch; margin-top: 22px;
  line-height: 1.6;
}

/* =========== SERVICES =========== */
.services {
  background: var(--ink);
  padding-bottom: clamp(72px, 10vw, 130px);
}
.services-grid {
  max-width: 1600px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: var(--gutter);
  grid-template-columns: repeat(12, 1fr);
}
.svc {
  background: var(--charcoal);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .3s ease, transform .4s ease;
}
.svc:hover { border-color: var(--red); transform: translateY(-4px); }
.svc-01 { grid-column: 1 / span 4; }
.svc-02 { grid-column: 5 / span 4; }
.svc-03 { grid-column: 9 / span 4; }
.svc-04 { grid-column: 1 / span 4; }
.svc-05 { grid-column: 5 / span 4; }
.svc-06 { grid-column: 9 / span 4; }

.svc-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--charcoal-2);
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,.8,.24,1), filter .4s;
  filter: saturate(1.05) contrast(1.02);
}
.svc:hover .svc-img img { transform: scale(1.05); }

.svc-body {
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
  min-height: 268px;
}
.svc-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .3em; color: var(--red);
}
.svc-body h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05; letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
}
.svc-body h3 .from {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; color: var(--red);
  text-transform: uppercase;
  padding: 4px 10px; background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.35);
  border-radius: 2px;
}
.svc-body p {
  color: var(--steel-2); font-size: 15px;
  line-height: 1.6;
}
.svc-more {
  background:
    radial-gradient(120% 90% at 100% 100%, rgba(220,38,38,.08), transparent 55%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--ink) 100%);
  overflow: hidden;
}
.svc-more .svc-body { justify-content: flex-start; padding-top: clamp(28px, 3vw, 44px); position: relative; z-index: 1; }
.svc-bg-num {
  position: absolute; z-index: 0;
  bottom: -.16em; right: -.12em;
  font-family: var(--display); font-weight: 900;
  font-size: clamp(220px, 26vw, 360px);
  line-height: .78;
  color: var(--red);
  opacity: .045;
  letter-spacing: -.04em;
  pointer-events: none; user-select: none;
  transition: opacity .5s cubic-bezier(.16,.8,.24,1), transform .5s cubic-bezier(.16,.8,.24,1);
}
.svc-more:hover .svc-bg-num {
  opacity: .085;
  transform: translate(-6px, -6px);
}
.svc-list {
  list-style: none; padding: 0; margin-top: 16px;
  display: grid; grid-template-columns: 1fr;
  gap: 3px;
}
.svc-list li {
  font-size: 15px; color: var(--paper);
  padding: 10px 6px 10px 0;
  position: relative;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .25s, transform .25s;
}
.svc-list li:last-child { border-bottom: 0; }
.svc-list li::before { content: none; }
.svc-list li svg {
  color: var(--red);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.16,.8,.24,1);
}
.svc-list li:hover { color: var(--paper); transform: translateX(6px); }
.svc-list li:hover svg { transform: rotate(-8deg) scale(1.15); }
.svc-list li {
  font-size: 15px; color: var(--paper);
  padding-left: 18px; position: relative;
}
.svc-list li::before {
  content: '+'; position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* Honest "doesn't do" note under the services grid */
.svc-not {
  max-width: 1600px; margin: 32px auto 0;
  padding: 0 var(--pad-x);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
}
.svc-not-k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel-2);
}
.svc-not-v {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  color: var(--paper); opacity: .85;
  letter-spacing: .02em;
}

/* =========== ABOUT =========== */
.about {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
}
.about-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; gap: clamp(40px, 6vw, 90px);
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}
.about-copy .eyebrow { color: var(--red); }
.about-copy h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .98; letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 20ch;
  margin-bottom: 30px;
}
.george-quote {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
  margin: 8px 0 34px;
  padding: 0;
}
.george-quote img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,.3);
}
.george-quote-body {
  display: flex; flex-direction: column; justify-content: center;
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 4px solid var(--red);
}
.george-quote blockquote {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2; color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}
.george-quote figcaption {
  display: flex; flex-direction: column; gap: 2px;
}
.george-quote figcaption .who {
  font-family: var(--display); font-weight: 800;
  font-size: 18px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink);
}
.george-quote figcaption .what {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel);
}
@media (max-width: 640px) {
  .george-quote { grid-template-columns: 1fr; gap: 22px; }
  .george-quote img { max-width: 200px; }
  .george-quote-body { padding-left: 20px; }
}
.about-copy p {
  color: #333; font-size: 16px; line-height: 1.65;
  margin-bottom: 16px;
  max-width: 58ch;
}
.creds {
  background: var(--ink); color: var(--paper);
  padding: clamp(28px, 3vw, 42px);
  border-top: 6px solid var(--red);
}
.creds-title {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .3em; color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.creds-list { list-style: none; }
.creds-list li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: 14px;
}
.creds-list li:last-child { border-bottom: 0; }
.creds-k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; color: var(--steel-2);
  text-transform: uppercase;
  flex-shrink: 0;
}
.creds-v {
  font-family: var(--body); font-weight: 500;
  color: var(--paper); text-align: right;
}

/* =========== REVIEWS =========== */
.reviews {
  background: var(--ink);
  padding-bottom: clamp(72px, 10vw, 130px);
}
.reviews-grid {
  max-width: 1600px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.review {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: clamp(28px, 2.6vw, 40px);
  position: relative;
  transition: border-color .3s;
}
.review:hover { border-color: var(--red); }
.review::before {
  content: '"'; position: absolute;
  top: -18px; left: 24px;
  font-family: var(--display); font-size: 120px;
  font-weight: 900; line-height: 1;
  color: var(--red);
  opacity: .8;
}
.stars {
  color: var(--red); font-size: 15px;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.review blockquote {
  font-family: var(--body); font-size: 17px;
  line-height: 1.5; color: var(--paper);
  margin-bottom: 20px;
}
.review blockquote em {
  font-style: normal; color: var(--red); font-weight: 600;
}
.review figcaption {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; color: var(--steel-2);
  text-transform: uppercase;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.review-cta {
  background: transparent;
  border: 2px dashed rgba(255,255,255,.15);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 20px;
}
.review-cta::before { display: none; }
.review-cta blockquote {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1; color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* =========== RATES =========== */
.rates {
  background: var(--paper); color: var(--ink);
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
}
.rates-inner {
  max-width: 1100px; margin: 0 auto;
}
.rates-head .eyebrow { color: var(--red); }
.rates-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: .98; letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 14px;
}
.rates-head p {
  color: #444; font-size: 16px;
  max-width: 50ch; margin-bottom: 46px;
}
.rates-list {
  list-style: none;
  border-top: 2px solid var(--ink);
}
.rates-list li {
  display: grid;
  grid-template-columns: 1fr 130px 70px;
  align-items: baseline;
  column-gap: 8px;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  transition: background .2s;
}
.rates-list li:hover { background: rgba(220,38,38,.05); }
.rate-k {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--ink);
  grid-column: 1;
}
.rate-v { display: contents; }
.rate-v .amt {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--red);
  letter-spacing: -.015em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-align: right;
  grid-column: 2;
}
.rate-v .unit {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(12px, 1.1vw, 15px);
  color: var(--steel);
  letter-spacing: .05em;
  text-align: left;
  text-transform: lowercase;
  grid-column: 3;
  white-space: nowrap;
}
.rates-footnote {
  margin-top: 24px;
  font-family: var(--mono); font-size: 12px;
  color: var(--steel); letter-spacing: .1em;
}

/* =========== CONTACT =========== */
.contact {
  background: var(--red);
  color: var(--paper-2);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 45%);
  pointer-events: none;
}
.contact::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.contact-inner .eyebrow {
  padding-left: 40px; color: var(--paper);
  margin-bottom: 14px;
}
.contact-inner .eyebrow::before { background: var(--paper); }
.contact-inner h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .92; letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}
.contact-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--paper); opacity: .92;
  max-width: 44ch;
  line-height: 1.55;
  margin-bottom: 28px;
}
.contact-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 0;
}
.contact-actions .btn-red {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.4);
}
.contact-actions .btn-red:hover { background: #000; }
.contact-actions .btn-outline { border-color: var(--paper); color: var(--paper); }
.contact-actions .btn-outline:hover { background: var(--paper); color: var(--red); }

.contact-copy { display: flex; flex-direction: column; }
.contact-grid {
  display: grid; gap: 18px 28px;
  grid-template-columns: 1fr 1fr;
  padding: 22px 24px;
  margin-top: 32px;
  background: rgba(0,0,0,.18);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.14);
}
.contact-cell { text-align: left; }
.cell-k {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--paper); opacity: .75;
  margin-bottom: 6px;
}
.cell-v {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.25; color: var(--paper);
  text-transform: uppercase;
}
.cell-v a {
  color: var(--paper); text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
  text-transform: none;
  word-break: break-word;
}
.cell-v a:hover { text-decoration-color: var(--paper); }

/* =========== LEAD-CAPTURE FORM =========== */
.lead-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.35);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.lead-form .hp { position: absolute; left: -9999px; }
.lead-head { margin-bottom: 6px; }
.lead-eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .3em; color: var(--red);
  display: inline-block; margin-bottom: 10px;
}
.lead-head h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1; letter-spacing: -.01em;
  text-transform: uppercase; color: var(--ink);
}
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field > span {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--steel);
}
.lead-field input,
.lead-field textarea {
  font-family: var(--body); font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
  font-weight: 500;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(0,0,0,.35); font-weight: 400; }
.lead-field input:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.lead-submit {
  margin-top: 8px;
  justify-content: center;
  width: 100%;
}
.lead-fine {
  font-family: var(--body); font-size: 12px;
  color: var(--steel); line-height: 1.5;
  margin-top: 2px;
}

/* =========== STICKY MOBILE CALL BAR =========== */
.sticky-call {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.22,.9,.24,1);
}
.sticky-call.visible { transform: translateY(0); }
.sticky-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 12px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  letter-spacing: .02em;
  border-radius: 4px;
  transition: transform .15s ease, background .15s ease;
  min-height: 48px;
}
.sticky-btn:active { transform: scale(.98); }
.sticky-btn-call {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 20px -6px rgba(220,38,38,.6);
}
.sticky-btn-msg {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.24);
}
.sticky-btn svg { flex-shrink: 0; }
@media (max-width: 780px) {
  .sticky-call { display: flex; }
  .foot { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
  .hero-scroll { display: none; }
}

/* =========== FOOTER =========== */
.foot {
  background: var(--ink); color: var(--paper);
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: 1600px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.foot-brand {
  display: flex; align-items: center; gap: 14px;
}
.foot-brand .bolt { width: 30px; height: 30px; color: var(--red); }
.foot-name {
  font-family: var(--display); font-weight: 800;
  font-size: 18px; letter-spacing: .04em;
  text-transform: uppercase;
}
.foot-tag {
  font-size: 12px; color: var(--steel-2);
  font-family: var(--mono); letter-spacing: .1em;
  margin-top: 3px;
}
.foot-meta {
  font-family: var(--mono); font-size: 12px;
  color: var(--steel-2); letter-spacing: .1em;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.foot-meta a { color: var(--steel-2); transition: color .2s; }
.foot-meta a:hover { color: var(--red); }

/* =========== REVEAL ANIMATIONS =========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,.8,.24,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Mask-reveal for section headings — line-by-line theatrical entrance */
.mask-heading .mask-line {
  display: block; overflow: hidden;
}
.mask-heading .mask-inner {
  display: inline-block; will-change: transform;
  transform: translateY(105%);
  transition: transform 1s cubic-bezier(.22,.9,.24,1);
}
.mask-heading.in .mask-inner { transform: translateY(0); }
.mask-heading .mask-line:nth-child(2) .mask-inner { transition-delay: .09s; }
.mask-heading .mask-line:nth-child(3) .mask-inner { transition-delay: .18s; }
.mask-heading .mask-line:nth-child(4) .mask-inner { transition-delay: .27s; }

/* Magnetic hover effect on primary CTAs */
.magnetic {
  will-change: transform;
  transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
@media (hover: none) {
  .magnetic { transform: none !important; }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1100px) {
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item.wide { grid-column: span 3; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-01, .svc-02, .svc-03, .svc-04, .svc-05, .svc-06 { grid-column: span 3; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .hero-title { font-size: clamp(52px, 15vw, 100px); }
  .hero-overlay { padding-bottom: 100px; }
  .hero-scroll { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); padding: 26px var(--pad-x); gap: 22px; }
  .trust-item.wide { grid-column: span 2; }
  .trust-item b { font-size: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-01, .svc-02, .svc-03, .svc-04, .svc-05, .svc-06 { grid-column: span 1; }
  .contact-inner { grid-template-columns: 1fr; text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cell { text-align: left; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { justify-content: center; }
  .foot-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
