/* ============================================================
   ROADRUNNER ROOFING — Industrial / Texas / Masculine
   ============================================================ */

:root {
  --rr-black:      #0a0a0a;
  --rr-black-2:    #161616;
  --rr-black-3:    #1f1f1f;
  --rr-charcoal:   #2a2a2a;
  --rr-line:       #262626;
  --rr-line-soft:  #e5e5e5;

  --rr-white:      #ffffff;
  --rr-bone:       #f5f4f0;
  --rr-fog:        #d4d4d0;

  --rr-green:      #10b85a;
  --rr-green-deep: #086b35;
  --rr-green-glow: #1fd968;

  --rr-orange:     #ff6b1a;

  --font-display:     'Anton', 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --font-display-alt: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:        'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --gutter:        24px;
  --max-w:         1440px;
  --max-content:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--rr-black);
  background: var(--rr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--rr-green); color: var(--rr-black); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-tight { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--gutter); }

/* MARQUEE TICKER */
.topbar {
  background: var(--rr-black);
  border-bottom: 2px solid var(--rr-green);
  overflow: hidden;
  height: 36px;
  position: relative;
  z-index: 60;
}
.topbar-track {
  display: flex; align-items: center; height: 100%;
  white-space: nowrap; animation: marquee 60s linear infinite;
  width: max-content;
}
.topbar-track span {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--rr-bone);
  margin: 0 32px;
  display: inline-flex; align-items: center; gap: 12px;
}
.topbar-track .dot {
  width: 6px; height: 6px; background: var(--rr-green);
  border-radius: 50%; display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV */
.nav { background: var(--rr-black); border-bottom: 1px solid var(--rr-line); position: sticky; top: 0; z-index: 50; }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rr-white); line-height: 1; }
.brand-name em { display: block; font-style: normal; color: var(--rr-green); font-size: 12px; letter-spacing: 0.16em; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; margin-right: 24px; }
.nav-links a {
  font-family: var(--font-display-alt); font-size: 16px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--rr-bone);
  padding: 12px 18px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rr-green); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--rr-bone); display: flex; align-items: center; gap: 8px; }
.nav-phone .pulse { width: 8px; height: 8px; background: var(--rr-green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.nav-phone a { font-weight: 600; color: var(--rr-white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,184,90,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(16,184,90,0); }
}

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--rr-line); background: transparent; position: relative; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; position: absolute; left: 50%; width: 22px; height: 2px;
  background: var(--rr-white); transform: translateX(-50%);
}
.menu-btn span { top: 50%; transform: translate(-50%, -50%); }
.menu-btn span::before { content: ""; top: -7px; left: 0; transform: none; }
.menu-btn span::after { content: ""; top: 7px; left: 0; transform: none; }

.mobile-menu { display: none; position: fixed; inset: 116px 0 0 0; background: var(--rr-black); z-index: 40; padding: 30px var(--gutter); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rr-white); padding: 18px 0; border-bottom: 1px solid var(--rr-line); }
.mobile-menu a:hover { color: var(--rr-green); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display-alt); font-size: 16px; letter-spacing: 0.1em;
  text-transform: uppercase; border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--rr-green); color: var(--rr-black); border-color: var(--rr-green); }
.btn-primary:hover { background: var(--rr-green-glow); border-color: var(--rr-green-glow); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--rr-black); }
.btn-ghost { background: transparent; color: var(--rr-white); border-color: var(--rr-white); }
.btn-ghost:hover { background: var(--rr-white); color: var(--rr-black); }
.btn-dark { background: var(--rr-black); color: var(--rr-white); border-color: var(--rr-black); }
.btn-dark:hover { background: var(--rr-green); border-color: var(--rr-green); color: var(--rr-black); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* HERO */
.hero {
  position: relative; background: var(--rr-black); color: var(--rr-white);
  padding: 80px 0 100px; overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1632759145351-1d592919f522?w=2400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  opacity: 0.32; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 60%, var(--rr-black) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.85) 100%);
  z-index: -1;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 60px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rr-fog);
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px;
}
.hero-meta-l { color: var(--rr-green); font-weight: 500; }

.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(56px, 11vw, 168px); line-height: 0.88;
  letter-spacing: -0.01em; text-transform: uppercase;
  margin: 0 0 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block; opacity: 0; transform: translateY(100%);
  animation: rise 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.hero-title .accent { color: var(--rr-green); }
.hero-title .outline { -webkit-text-stroke: 2px var(--rr-white); color: transparent; }
.hero-title .word:nth-child(1) { animation-delay: 0.05s; }
.hero-title .word:nth-child(2) { animation-delay: 0.15s; }
.hero-title .word:nth-child(3) { animation-delay: 0.25s; }
.hero-title .word:nth-child(4) { animation-delay: 0.35s; }
.hero-title .word:nth-child(5) { animation-delay: 0.45s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-top: 50px; flex-wrap: wrap;
}
.hero-lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; color: var(--rr-fog); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  margin-top: 70px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.hero-badge { display: flex; flex-direction: column; gap: 6px; }
.hero-badge .num { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); line-height: 1; color: var(--rr-green); }
.hero-badge .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rr-fog); }

@media (max-width: 900px) {
  .hero-badges { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* SECTION SHELL */
section { position: relative; }
.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-dark { background: var(--rr-black); color: var(--rr-white); }
.section-bone { background: var(--rr-bone); }
.section-white { background: var(--rr-white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rr-green); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--rr-green); }
.section-dark .eyebrow { color: var(--rr-green-glow); }

.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px); line-height: 0.92;
  letter-spacing: -0.005em; text-transform: uppercase;
  margin: 0 0 24px;
}
.section-title .accent { color: var(--rr-green); }
.section-title .outline { -webkit-text-stroke: 2px var(--rr-black); color: transparent; }
.section-dark .section-title .outline { -webkit-text-stroke: 2px var(--rr-white); }

.section-lede { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--rr-charcoal); max-width: 640px; }
.section-dark .section-lede { color: var(--rr-fog); }

.section-head {
  display: grid; grid-template-columns: 2fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 70px;
}
.section-head-actions { text-align: right; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head-actions { text-align: left; }
}

/* CREDENTIALS — replaces old "trust" strip; bigger, more meaningful */
.credentials {
  background: var(--rr-bone);
  padding: clamp(60px, 7vw, 100px) 0;
  border-top: 1px solid var(--rr-line-soft);
  border-bottom: 1px solid var(--rr-line-soft);
}
.cred-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.cred-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.5vw, 56px); line-height: 0.96;
  letter-spacing: -0.005em; text-transform: uppercase;
  margin: 16px 0 0;
}
.cred-title .accent { color: var(--rr-green); }
.cred-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.cred-card {
  background: var(--rr-white);
  border: 2px solid var(--rr-black);
  padding: 36px 30px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cred-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--rr-green);
}
.cred-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--rr-black);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cred-name {
  font-family: var(--font-display-alt);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--rr-black);
  margin-bottom: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--rr-green);
}
.cred-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--rr-charcoal);
  margin: 0;
}
@media (max-width: 900px) {
  .cred-grid { grid-template-columns: 1fr; gap: 18px; }
  .cred-head { margin-bottom: 36px; }
}

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rr-line); border-left: 1px solid var(--rr-line);
}
.section-bone .services-grid, .section-white .services-grid { border-color: var(--rr-line-soft); }

.service-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--rr-line); border-bottom: 1px solid var(--rr-line);
  transition: background 0.25s; overflow: hidden;
}
.section-bone .service-card, .section-white .service-card { border-color: var(--rr-line-soft); }
.service-card::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 0;
  background: var(--rr-green); transition: height 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); z-index: -1;
}
.service-card:hover::before { height: 100%; }
.service-card:hover * { color: var(--rr-black) !important; }

.service-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--rr-green); display: block; margin-bottom: 16px; font-weight: 500;
}
.service-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 2.8vw, 36px); line-height: 1;
  text-transform: uppercase; margin: 0 0 14px; color: inherit;
}
.service-card p {
  font-size: 15px; line-height: 1.6; color: var(--rr-charcoal); margin: 0 0 18px;
}
.section-dark .service-card p { color: var(--rr-fog); }
.service-card .arrow-link {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--rr-green);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.service-card:hover .arrow-link { gap: 12px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* IMAGE SPLIT */
.image-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
}
.image-split .img-side {
  min-height: 520px; background-size: cover; background-position: center; position: relative;
}
.image-split .img-side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.15), rgba(10,10,10,0.4));
}
.image-split .text-side {
  padding: clamp(48px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: center;
}
.image-split .text-side.dark { background: var(--rr-black); color: var(--rr-white); }
.image-split .text-side.green { background: var(--rr-green); color: var(--rr-black); }
.image-split .text-side.green .eyebrow { color: var(--rr-black); }
.image-split .text-side.green .eyebrow::before { background: var(--rr-black); }

@media (max-width: 900px) {
  .image-split { grid-template-columns: 1fr; }
  .image-split .img-side { min-height: 320px; }
}

/* PROCESS */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 2px solid var(--rr-green);
}
.process-step {
  padding: 40px 28px; border-right: 1px solid var(--rr-line); position: relative;
}
.section-bone .process-step, .section-white .process-step { border-right-color: var(--rr-line-soft); }
.process-step:last-child { border-right: none; }
.process-step .num { font-family: var(--font-display); font-size: 80px; line-height: 0.8; color: var(--rr-green); margin-bottom: 16px; display: block; }
.process-step h4 { font-family: var(--font-display); font-weight: 400; font-size: 24px; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; line-height: 1.6; color: var(--rr-charcoal); }
.section-dark .process-step p { color: var(--rr-fog); }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--rr-line); }
  .process-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rr-line); }
}

/* STATEMENT BLOCK */
.statement {
  background: var(--rr-black); color: var(--rr-white);
  padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden;
}
.statement::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1756298931327-954b5e57d480?w=2400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center; opacity: 0.18;
}
.statement-inner { position: relative; max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.statement-text {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5.5vw, 84px); line-height: 0.98;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.statement-text .accent { color: var(--rr-green); }
.statement-attr { margin-top: 36px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--rr-fog); text-transform: uppercase; }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.testimonial {
  padding: 40px 32px; border-right: 1px solid var(--rr-line);
  background: var(--rr-black-2); color: var(--rr-white);
}
.section-dark .testimonial { background: rgba(255,255,255,0.03); border-color: var(--rr-line); }
.testimonial:last-child { border-right: none; }
.testimonial .stars { color: var(--rr-green); font-size: 18px; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial blockquote {
  font-family: var(--font-display-alt); font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3; letter-spacing: 0.01em; margin: 0 0 18px; color: var(--rr-white);
}
.testimonial cite {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-style: normal; color: var(--rr-green);
}
.testimonial cite .where { display: block; color: var(--rr-fog); font-weight: 400; margin-top: 4px; }

@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1px solid var(--rr-line); }
}

/* CTA BANNER */
.cta-banner {
  background: var(--rr-green); color: var(--rr-black);
  padding: clamp(60px, 7vw, 100px) 0; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--rr-black); clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
/* On narrow viewports the wedge eats CTA text — hide it */
@media (max-width: 900px) {
  .cta-banner::after { display: none; }
}
.cta-banner .wrap { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5vw, 64px); line-height: 0.95;
  letter-spacing: -0.005em; text-transform: uppercase;
  margin-bottom: 16px; max-width: 720px;
}
.cta-banner p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.55; margin-bottom: 28px; max-width: 600px; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn { min-width: 0; }

/* FOOTER */
.footer { background: var(--rr-black); color: var(--rr-fog); padding: 80px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand img { height: 70px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--rr-fog); max-width: 320px; }
.footer-col h4 { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rr-white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--rr-fog); transition: color 0.2s; word-wrap: break-word; }
.footer-col ul a:hover { color: var(--rr-green); }
.footer-bottom {
  padding-top: 30px; border-top: 1px solid var(--rr-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rr-fog);
}
.footer-bottom a { color: var(--rr-fog); }
.footer-bottom a:hover { color: var(--rr-green); }
@media (max-width: 900px) {
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; letter-spacing: 0.08em; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { height: 56px; }
  .footer-bottom { font-size: 10px; }
}

/* PAGE HERO */
.page-hero { background: var(--rr-black); color: var(--rr-white); padding: 70px 0 60px; position: relative; overflow: hidden; isolation: isolate; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506092309076-af15fb0051e3?w=2400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center; opacity: 0.22; z-index: -2;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.92));
  z-index: -1;
}
.page-hero .breadcrumbs { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rr-fog); margin-bottom: 30px; }
.page-hero .breadcrumbs a { color: var(--rr-green); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 7.5vw, 110px); line-height: 0.92;
  letter-spacing: -0.005em; text-transform: uppercase;
  margin: 0 0 26px; max-width: 1100px;
}
.page-hero h1 .accent { color: var(--rr-green); }
.page-hero h1 .outline { -webkit-text-stroke: 2px var(--rr-white); color: transparent; }
.page-hero .lede { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.5; color: var(--rr-fog); max-width: 720px; }

/* ARTICLE BODY */
.article-body { max-width: 760px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) var(--gutter); }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--rr-charcoal); margin: 0 0 20px; }
.article-body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1; letter-spacing: 0;
  text-transform: uppercase; margin: 56px 0 20px; color: var(--rr-black);
}
.article-body h3 {
  font-family: var(--font-display-alt); font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px); letter-spacing: 0.02em;
  text-transform: uppercase; margin: 38px 0 14px; color: var(--rr-black);
}
.article-body ul, .article-body ol {
  font-size: 17px; line-height: 1.75; color: var(--rr-charcoal);
  margin: 0 0 22px; padding-left: 22px; list-style: none;
}
.article-body ul li, .article-body ol li { margin-bottom: 8px; position: relative; padding-left: 18px; }
.article-body ul li::before { content: "■"; position: absolute; left: 0; color: var(--rr-green); font-size: 12px; top: 6px; }
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; }
.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero) ".";
  position: absolute; left: -8px; color: var(--rr-green);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; top: 2px;
}
.article-body strong { font-weight: 700; color: var(--rr-black); }
.article-body a { color: var(--rr-green-deep); border-bottom: 2px solid var(--rr-green); transition: background 0.2s; }
.article-body a:hover { background: var(--rr-green); color: var(--rr-black); }
.article-body blockquote {
  margin: 36px 0; padding: 28px 30px;
  background: var(--rr-black); color: var(--rr-white);
  border-left: 6px solid var(--rr-green);
  font-family: var(--font-display-alt); font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3; letter-spacing: 0.01em;
}

/* FAQ */
.faq { border-top: 2px solid var(--rr-black); }
.section-dark .faq { border-top-color: var(--rr-green); }
.faq-item { border-bottom: 1px solid var(--rr-line-soft); }
.section-dark .faq-item { border-bottom-color: var(--rr-line); }
.faq-q {
  width: 100%; text-align: left; padding: 28px 0;
  font-family: var(--font-display-alt); font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--rr-black);
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: color 0.2s;
}
.section-dark .faq-q { color: var(--rr-white); }
.faq-q:hover { color: var(--rr-green-deep); }
.section-dark .faq-q:hover { color: var(--rr-green); }
.faq-q .icon { flex: 0 0 32px; width: 32px; height: 32px; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.2s; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: currentColor; }
.faq-q .icon::before { width: 14px; height: 2px; }
.faq-q .icon::after { width: 2px; height: 14px; transition: transform 0.25s; }
.faq-item.open .faq-q .icon { background: var(--rr-green); color: var(--rr-black); border-color: var(--rr-green); }
.faq-item.open .faq-q .icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 700px; }
.faq-a-inner { padding: 0 0 28px; font-size: 16px; line-height: 1.7; color: var(--rr-charcoal); max-width: 820px; }
.section-dark .faq-a-inner { color: var(--rr-fog); }

/* INSURANCE CALLOUT BAND — high-priority placard between hero and pricing */
.insurance-callout {
  background: var(--rr-black);
  color: var(--rr-white);
  padding: 36px 0;
  border-top: 4px solid var(--rr-green);
  border-bottom: 4px solid var(--rr-green);
  position: relative;
  overflow: hidden;
}
.insurance-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 24px,
    rgba(255, 107, 26, 0.06) 24px,
    rgba(255, 107, 26, 0.06) 48px
  );
  pointer-events: none;
}
.callout-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.callout-flag {
  flex-shrink: 0;
}
.callout-tag {
  display: inline-block;
  background: var(--rr-orange);
  color: var(--rr-black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 2px solid var(--rr-black);
  box-shadow: 4px 4px 0 var(--rr-green);
  white-space: nowrap;
}
.callout-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--rr-white);
}
.callout-text h2 .accent { color: var(--rr-green); }
.callout-text p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  color: var(--rr-fog);
  margin: 0;
  max-width: 720px;
}
@media (max-width: 700px) {
  .insurance-callout { padding: 28px 0; }
  .callout-inner { grid-template-columns: 1fr; gap: 18px; }
  .callout-flag { order: -1; }
}

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--rr-white); border: 2px solid var(--rr-black);
  padding: 36px 28px; position: relative; transition: transform 0.2s;
}
.price-card.featured { background: var(--rr-black); color: var(--rr-white); border-color: var(--rr-black); }
.price-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--rr-green); }
.price-card .tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rr-green); margin-bottom: 14px; }
.price-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1; text-transform: uppercase; margin-bottom: 12px; }
.price-card .price-range { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--rr-green); margin: 18px 0; }
.price-card .price-range .sml { font-size: 16px; font-family: var(--font-mono); letter-spacing: 0.1em; color: inherit; margin-left: 8px; }
.price-card ul { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--rr-line-soft); padding-top: 22px; }
.price-card.featured ul { border-top-color: var(--rr-line); }
.price-card ul li { font-size: 14px; line-height: 1.55; padding: 8px 0 8px 22px; position: relative; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--rr-green); font-weight: 700; }
.price-card .price-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rr-charcoal); margin-top: 18px; }
.price-card.featured .price-note { color: var(--rr-fog); }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* CONCERNS */
.concerns-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 2px solid var(--rr-green); border-left: 1px solid var(--rr-line-soft);
}
.section-dark .concerns-grid { border-left-color: var(--rr-line); }
.concern-card { padding: 36px 32px; border-right: 1px solid var(--rr-line-soft); border-bottom: 1px solid var(--rr-line-soft); }
.section-dark .concern-card { border-color: var(--rr-line); }
.concern-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; line-height: 1; text-transform: uppercase;
  margin: 0 0 14px; color: var(--rr-black);
}
.section-dark .concern-card h3 { color: var(--rr-white); }
.concern-card p { font-size: 15px; line-height: 1.65; color: var(--rr-charcoal); }
.section-dark .concern-card p { color: var(--rr-fog); }
@media (max-width: 700px) { .concerns-grid { grid-template-columns: 1fr; } }

/* TWO COL + NEIGHBORHOODS */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.neighborhood-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 2px solid var(--rr-green);
}
.neighborhood-list li {
  padding: 18px 6px;
  font-family: var(--font-display-alt); font-size: 19px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--rr-black);
  border-bottom: 1px solid var(--rr-line-soft);
}
.section-dark .neighborhood-list li { color: var(--rr-white); border-bottom-color: var(--rr-line); }
.link-arrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rr-green-deep); font-weight: 600;
  display: inline-block; margin-top: 18px; border-bottom: 2px solid var(--rr-green); padding-bottom: 4px;
}
.link-arrow:hover { color: var(--rr-black); }
.section-dark .link-arrow { color: var(--rr-green); }
.section-dark .link-arrow:hover { color: var(--rr-white); }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } .neighborhood-list { grid-template-columns: 1fr; } }

/* BLOG */
.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
@media (max-width: 900px) { .blog-index-grid { grid-template-columns: 1fr; } }

.post-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border-top: 3px solid var(--rr-black); padding-top: 22px; transition: opacity 0.2s; }
.post-card:hover { opacity: 0.7; }
.post-card .meta { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rr-charcoal); margin-bottom: 14px; }
.post-card .meta .cat { color: var(--rr-green-deep); font-weight: 700; }
.post-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2vw, 28px); line-height: 1.05; text-transform: uppercase; margin: 0 0 12px; color: var(--rr-black); }
.post-card p { font-size: 14.5px; line-height: 1.6; color: var(--rr-charcoal); margin: 0 0 16px; }
.post-card .read-more { margin-top: auto; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rr-green-deep); }

.article-hero { background: var(--rr-black); color: var(--rr-white); padding: 70px 0 50px; position: relative; isolation: isolate; overflow: hidden; }
.article-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1527484728228-e601f31ddefa?w=2400&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center; opacity: 0.15; z-index: -1;
}
.article-hero .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rr-fog); margin-bottom: 22px; }
.article-hero .meta .cat { color: var(--rr-green); font-weight: 600; }
.article-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 6vw, 80px); line-height: 0.94; letter-spacing: -0.005em; text-transform: uppercase; max-width: 1100px; margin: 0 0 24px; }
.article-hero h1 .accent { color: var(--rr-green); }
.article-hero .lede { max-width: 760px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.5; color: var(--rr-fog); }

.article-footer { background: var(--rr-bone); padding: clamp(50px, 6vw, 80px) 0; }
.article-footer h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 30px; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rr-black); margin-bottom: 6px; display: block; }
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 16px;
  background: var(--rr-white); border: 2px solid var(--rr-black); color: var(--rr-black);
  outline: none; transition: border 0.15s;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--rr-green); }
.form textarea { min-height: 140px; resize: vertical; }
.form button { align-self: flex-start; margin-top: 10px; }

.contact-info { background: var(--rr-black); color: var(--rr-white); padding: 40px 32px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 18px; }
.contact-info .info-row { padding: 18px 0; border-top: 1px solid var(--rr-line); display: flex; flex-direction: column; gap: 4px; }
.contact-info .info-row:first-of-type { border-top: 2px solid var(--rr-green); }
.contact-info .info-row .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rr-green); }
.contact-info .info-row .val { font-family: var(--font-display-alt); font-size: 22px; letter-spacing: 0.02em; }
.contact-info .info-row .val a { color: var(--rr-white); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* CHATBOT */
.chatbot-launcher {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  background: var(--rr-green); border: 3px solid var(--rr-black);
  cursor: pointer; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; box-shadow: 4px 4px 0 var(--rr-black);
}
.chatbot-launcher:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--rr-black); }
.chatbot-launcher img { width: 38px; height: 38px; }
.chatbot-launcher .ping {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--rr-orange); border: 2px solid var(--rr-black);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
.chatbot-window {
  position: fixed; bottom: 100px; right: 24px;
  width: 380px; max-width: calc(100vw - 24px); max-height: 580px;
  background: var(--rr-white); border: 3px solid var(--rr-black);
  box-shadow: 6px 6px 0 var(--rr-black);
  z-index: 99; display: none; flex-direction: column; overflow: hidden;
}
.chatbot-window.open { display: flex; }

.chatbot-header { background: var(--rr-black); color: var(--rr-white); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--rr-green); }
.chatbot-header .who { display: flex; align-items: center; gap: 12px; }
.chatbot-header .avatar { width: 36px; height: 36px; background: var(--rr-green); display: flex; align-items: center; justify-content: center; border: 2px solid var(--rr-black); }
.chatbot-header .avatar img { width: 24px; height: 24px; }
.chatbot-header .name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.chatbot-header .status { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--rr-green); text-transform: uppercase; display: block; margin-top: 2px; }
.chatbot-header .close { background: transparent; color: var(--rr-white); font-size: 24px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.chatbot-body { flex: 1; overflow-y: auto; padding: 20px; background: var(--rr-bone); }
.chatbot-msg { margin-bottom: 12px; max-width: 86%; padding: 12px 14px; font-size: 14px; line-height: 1.5; }
.chatbot-msg.bot { background: var(--rr-white); border-left: 3px solid var(--rr-green); color: var(--rr-black); }
.chatbot-msg.user { background: var(--rr-black); color: var(--rr-white); margin-left: auto; border-right: 3px solid var(--rr-green); }
.chatbot-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.chatbot-options button {
  width: 100%; text-align: left;
  background: var(--rr-white); border: 2px solid var(--rr-black);
  padding: 11px 14px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--rr-black);
  cursor: pointer; transition: all 0.15s;
}
.chatbot-options button:hover { background: var(--rr-green); border-color: var(--rr-green); transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--rr-black); }
.chatbot-input { display: flex; gap: 0; border-top: 2px solid var(--rr-black); background: var(--rr-white); }
.chatbot-input input { flex: 1; padding: 14px; border: none; font-family: var(--font-body); font-size: 14px; outline: none; }
.chatbot-input button { background: var(--rr-green); color: var(--rr-black); padding: 0 18px; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-left: 2px solid var(--rr-black); cursor: pointer; }
.chatbot-input button:hover { background: var(--rr-green-glow); }
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 6px; height: 6px; background: var(--rr-green); border-radius: 50%; animation: typing 1.4s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* SCROLL REVEAL */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.in { opacity: 1; transform: translateY(0); }
/* Safety for users with reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-title .word { opacity: 1; transform: none; animation: none; }
}
/* No-JS fallback (if JS fails to load, IntersectionObserver never fires) */
.no-js .fade-in { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 700px) {
  .hero { padding: 60px 0 80px; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
  .chatbot-window { right: 12px; left: 12px; max-width: none; width: auto; bottom: 100px; }
  .chatbot-launcher { bottom: 16px; right: 16px; }
}
