/* bold-modern — near-black, huge tight type, electric lime accent */
:root {
  --acid: #b8e62e;
  --ink: #f2f4ef;
  --dim: #9aa093;
  --bg: #0e0f12;
  --edge: #15171c;
  --line: #2a2d34;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }
h1, h2, h3 { line-height: 1.02; margin: 0 0 .4em; font-weight: 800; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 8vw, 5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.huge { text-transform: uppercase; color: var(--acid); font-size: clamp(1.2rem, 2.6vw, 1.6rem); letter-spacing: .12em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.dim { color: var(--dim); }
.dim a { color: var(--dim); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 740px; }

/* bar */
.bar { position: sticky; top: 0; z-index: 50; background: rgba(14, 15, 18, .9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.bar-row { display: flex; align-items: center; gap: 20px; min-height: 60px; }
.brand { font-weight: 800; text-decoration: none; letter-spacing: -0.02em; }
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a { color: var(--dim); text-decoration: none; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.nav a:hover { color: var(--acid); }
@media (max-width: 680px) { .nav { display: none; } }

/* buttons */
.btn {
  display: inline-block; padding: 14px 26px; text-decoration: none; font-weight: 750;
  border-radius: 8px; font-size: .98rem; letter-spacing: .02em;
}
.btn-acid { background: var(--acid); color: #10130a; }
.btn-acid:hover { filter: brightness(1.08); }
.btn-line { border: 1.5px solid var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--acid); color: var(--acid); }
.btn-dark { background: #0e0f12; color: var(--acid); }

/* hero */
.hero { padding: clamp(60px, 11vw, 130px) 0 clamp(40px, 7vw, 80px); border-bottom: 1px solid var(--line); }
.kicker { color: var(--acid); font-weight: 750; letter-spacing: .18em; font-size: .82rem; }
.lede { color: var(--dim); font-size: 1.2rem; max-width: 36em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-media { margin-top: 48px; }
.hero-media img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }

/* sections */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-edge { background: var(--edge); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.service-rows { list-style: none; margin: 26px 0 0; padding: 0; }
.service-row { display: flex; gap: 26px; padding: 26px 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.idx { color: var(--acid); font-weight: 800; font-size: 1.1rem; min-width: 2.2em; }
.service-row p { margin: 0; color: var(--dim); }

.quote-stack { display: grid; gap: 18px; margin: 26px 0; }
.quote-stack blockquote {
  margin: 0; padding: 24px 28px; border-left: 3px solid var(--acid);
  background: var(--bg); font-size: 1.25rem; font-weight: 550; line-height: 1.4;
}

.grid-gallery { display: grid; gap: 4px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); margin-top: 30px; }
.grid-gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; filter: saturate(.95); }
.grid-gallery img:hover { filter: none; }

.split { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.hours { border-collapse: collapse; }
.hours th { text-align: left; padding: 9px 26px 9px 0; font-weight: 650; }
.hours td { color: var(--dim); padding: 9px 0; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line); }

.about-body { font-size: 1.15rem; white-space: pre-line; }

.mega-phone {
  display: inline-block; font-size: clamp(1.8rem, 6vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--acid); text-decoration: none; margin-bottom: 10px;
}
.mega-phone:hover { text-decoration: underline; }

/* cta */
.cta { background: var(--acid); color: #10130a; padding: clamp(40px, 7vw, 72px) 0; }
.cta h2 { margin: 0; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* footer */
.footer { padding: 36px 0 86px; }
.footer-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

/* mobile call bar */
.callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--acid); color: #10130a; text-align: center; padding: 16px;
  font-weight: 800; text-decoration: none; letter-spacing: .04em;
}
@media (max-width: 640px) { .callbar { display: block; } .footer { padding-bottom: 110px; } }
