@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --ink:        #294875;
  --ink-soft:   #4e749c;
  --steel:      #31328167;
  --rust:       #e05c2c;
  --rust-light: #fc6c44;
  --rust-dim:   #813e26;
  --chrome:     #e8ede8;
  --mist:       #b8c8c0;
  --gold:       #d4a843;
  --white:      #f5f2ec;
  --border:     rgba(68, 90, 68, 0.1);
  --border-warm: rgba(201,74,26,0.25);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--chrome);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 3px; }

/* ── HEADER ────────────────────────────────── */
#header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(82, 105, 143, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
}
.header-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 74px; gap: 2rem;
}
#header img { height: 58px; width: auto; }

nav { display: flex; gap: 0; }
nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  transition: color 0.33s, background 0.33s;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.phone-cta { display: flex; align-items: center; gap: 1.2rem; }
#phone-num {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--chrome); text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.33s;
}
#phone-num:hover { color: var(--rust-light); }

.button {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--rust);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  border: 2px solid var(--rust);
  transition: all 0.33s ease;
  cursor: pointer;
}
.button:hover {
  background: var(--rust-light);
  border-color: var(--rust-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,74,26,0.35);
}
.button-outline {
  background: transparent;
  color: var(--chrome);
  border-color: rgba(232,237,232,0.35);
}
.button-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--chrome);
  box-shadow: none;
}

/* ── HERO ──────────────────────────────────── */
#intro {
  position: relative;
  min-height: 100svh;
  background-image: url('jpg2.png');
  background-size: cover;
  background-position: center 55%;
  display: flex; align-items: flex-end;
  padding: 0 5vw 8vh;
}
#intro::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom left,
    rgba(167, 40, 107, 0.205) 0%,
    rgba(48, 16, 85, 0.329) 50%,
    rgba(54, 27, 58, 0.651) 100%,
    var(--ink) 100%
  );
}

#intro2 {
  position: relative;
  min-height: 50svh;
  background-image: url('jpg2.png');
  background-size: cover;
  background-position: center 55%;
  display: flex; align-items: flex-end;
  padding: 0 5vw 8vh;
  margin-top: 50px;
}
#intro2::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom left,
    rgba(167, 40, 107, 0.205) 0%,
    rgba(48, 16, 85, 0.329) 50%,
    rgba(54, 27, 58, 0.651) 100%,
    var(--ink) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust-light);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--rust);
}

.hero-eyebrow2 {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.2rem;
}
.hero-eyebrow2::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--rust);
}
#intro h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
#intro h1 span { color: var(--rust); }
#intro p.lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--mist);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* ── MARQUEE STRIP ─────────────────────────── */
.marquee-strip {
  background: var(--rust);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 0.12em;
  color: var(--white);
  padding: 0 2.5rem;
}
.marquee-item::after {
  content: '✦'; margin-left: 2.5rem;
  font-size: 0.7rem; opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAIN SECTION ──────────────────────────── */
#pain {
  padding: 9rem 5vw;
  background: var(--ink);
  position: relative;
}
#pain::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rust), transparent);
}
.section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--rust);
}
#pain h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 680px; margin-bottom: 4rem;
  line-height: 1.2; color: var(--white);
  font-style: italic;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  max-width: 1200px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 4px; overflow: hidden;
}

.pain-grid2 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  gap: 5px;
  max-width: 95%;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.pain-item {
  background: var(--ink-soft);
  padding: 2.2rem 1.8rem;
  font-size: 1.05rem;
  color: var(--mist);
  font-weight: 300;
  position: relative;
  transition: background 0.5s;
}
.pain-item:hover { background: var(--steel); color: var(--white); }
.pain-item::before {
  content: '×';
  display: block;
  font-size: 1.5rem; color: var(--rust);
  margin-bottom: 0.8rem; font-family: var(--font-display);
  letter-spacing: 0;
}

.pain-item2 {
  background: var(--ink);
  background-image: url(jpg2.png);
  background-size: cover;
  padding: 2.2rem 1.8rem;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 300;
  position: relative;
  opacity: 1;
  transition: opacity 0.5s;
}
.pain-item2::before {
      content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom left,
    rgba(167, 40, 107, 0.205) 0%,
    rgba(48, 16, 85, 0.329) 50%,
    rgba(54, 27, 58, 0.651) 100%,
    var(--ink) 100%
  );
}
.pain-item2:hover { 
  opacity: 0.5
}


.pain-conclusion {
  margin-top: 4rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--rust);
}
.pain-conclusion span { color: var(--white); }

/* ── PROCESS ───────────────────────────────── */
#process {
  padding: 9rem 5vw;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
#process::after {
  content: 'ALL RV';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 14rem; letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.185);
  pointer-events: none;
}
.process-header {
  max-width: 1200px; margin: 0 auto 5rem;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
#process h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.03em;
  color: var(--white);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute; top: 3rem; left: 16.6%; right: 16.6%;
  height: 1px; background: var(--border-warm);
}
.step-card {
  padding: 0 2.5rem 2.5rem;
  position: relative;
}
.step-card:first-child { padding-left: 0; }
.step-card:last-child  { padding-right: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.15em;
  color: var(--rust); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.step-number::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(201,74,26,0.2);
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; margin-bottom: 1rem;
  color: var(--white);
}
.step-card p { color: var(--mist); font-weight: 300; }

/* ── PARALLAX BANNER ───────────────────────── */
.parallax-banner {
  min-height: 60vh;
  background-image: url('jpg1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex; align-items: center;
  justify-content: flex-start;
  padding: 6rem 5vw;
  overflow: hidden;
}
.parallax-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13, 29, 53, 0.82) 0%, rgba(99, 4, 83, 0.247) 100%);
}
.banner-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.parallax-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95; color: var(--white);
}
.parallax-banner h2 span { color: var(--rust); display: block; }

/* ── FINAL CTA ─────────────────────────────── */
#cta-final {
  padding: 9rem 5vw;
  background: var(--steel);
  text-align: center;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,74,26,0.18), transparent);
}
#cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--white); margin-bottom: 1.5rem;
  position: relative;
}
#cta-final p {
  font-size: 1.15rem; color: var(--mist);
  max-width: 560px; margin: 0 auto 3rem;
  font-weight: 300; position: relative;
}
.big-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.08em;
  padding: 1.1rem 3rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.5s;
  position: relative;
  border: 2px solid var(--rust);
}
.big-cta:hover {
  background: transparent;
  color: var(--rust);
  box-shadow: 0 0 40px rgba(201,74,26,0.3);
}
.big-cta-outline {
  display: inline-flex; align-items: center; gap: 1rem;
  background: transparent;
  color: var(--chrome);
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.08em;
  padding: 1.1rem 3rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.33s;
  border: 2px solid rgba(232,237,232,0.35);
}
.big-cta-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--chrome);
  color: var(--white);
}
.cta-buttons {
  display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
}
@media (max-width: 600px) {
  .big-cta, .big-cta-outline {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%; max-width: 340px;
    justify-content: center;
  }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── FOOTER ────────────────────────────────── */
#footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 4rem 5vw;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1.2rem;
}
.footer-col p, .footer-col a {
  font-size: 0.9rem; color: var(--mist); font-weight: 300;
  line-height: 1.8; text-decoration: none; display: block;
  transition: color 0.33s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
#footer-logo { height: 44px; width: auto; }
.footer-bottom p {
  font-size: 0.78rem; color: var(--mist);
  font-weight: 300; opacity: 0.6;
}
.footer-bottom a {
  font-size: 0.78rem; color: var(--mist); opacity: 0.6;
  text-decoration: none; transition: opacity 0.33s;
}
.footer-bottom a:hover { opacity: 1; }

/* ── 3D SOCIAL ICONS ───────────────────────── */
.social-links {
  display: flex;
  gap: 40px;
  margin-top: 1.2rem;
  padding: 0.5rem 0 1.5rem;
  flex-wrap: wrap;
}

.social-links li {
  list-style: none;
}

.social-links a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #efefef;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: -17px 15px rgba(0,0,0,0.2);
  transform: perspective(800px) rotate(-25deg) skew(20deg);
  color: #000;
  font-size: 28px;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 8px; left: -15px;
  height: 100%; width: 15px;
  background: #757575;
  transform: skewY(-45deg);
  transition: 0.5s;
}

.social-links a::after {
  content: '';
  position: absolute;
  bottom: -15px; left: -8px;
  height: 15px; width: 100%;
  background: #b1b1b1;
  transform: skewX(-45deg);
  transition: 0.25s;
}

.social-links a .fa {
  font-size: 28px;
  color: #000;
  transition: 1s;
  line-height: 50px;
}

.social-links a:hover {
  transform: perspective(800px) rotate(-25deg) skew(20deg) translate(10px, -10px);
  box-shadow: -20px 15px rgba(0,0,0,1);
}

.social-links li:hover .fa { color: #fff; }

/* Google */
.social-links li:nth-child(1) a:hover { background: #cd201f; }
.social-links li:nth-child(1) a:hover::before { background: #930504; }
.social-links li:nth-child(1) a:hover::after  { background: #a01513; }

/* LinkedIn */
.social-links li:nth-child(2) a:hover { background: #0072b1; }
.social-links li:nth-child(2) a:hover::before { background: #0a4769; }
.social-links li:nth-child(2) a:hover::after  { background: #03659b; }

/* Facebook */
.social-links li:nth-child(3) a:hover { background: #3b5999; }
.social-links li:nth-child(3) a:hover::before { background: #1f2c45; }
.social-links li:nth-child(3) a:hover::after  { background: #2e446c; }

/* Twitter / X */
.social-links li:nth-child(4) a:hover { background: #1DA1F2; }
.social-links li:nth-child(4) a:hover::before { background: #2071a3; }
.social-links li:nth-child(4) a:hover::after  { background: #218bcd; }

/* Mobile – flatten the 3D effect */
@media (max-width: 768px) {
  .social-links a {
    transform: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  .social-links a::before,
  .social-links a::after { display: none; }
  .social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }
}

/* ── INNER PAGE HERO ───────────────────────── */
.page-hero {
  position: relative; min-height: 50vh;
  background-image: url('jpg2.png');
  background-size: cover; background-position: center 40%;
  display: flex; align-items: flex-end;
  padding: 0 5vw 7vh;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14, 26, 43, 0.541), rgba(17, 1, 27, 0.85) 90%, var(--ink) 100%);
}
.page-hero .hero-content { max-width: 1200px; width: 100%; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.02em; line-height: 0.95;
  color: var(--white); position: relative;
}
.page-hero h1 span { color: var(--rust); }

/* ── ABOUT PAGE ────────────────────────────── */
.about-split {
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 5vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-image-block {
  position: relative;
  border-radius: 4px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--steel);
}
.about-image-block img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.about-image-block::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(201,74,26,0.3);
  border-radius: 4px;
  pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 150px; height: 150px;
  background: var(--rust);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; z-index: 2;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--white); line-height: 1;
}
.about-badge span { font-size: 0.65rem; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; text-transform: uppercase; }
.about-text .section-label { margin-bottom: 1.2rem; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-text p {
  color: var(--mist); font-weight: 300;
  margin-bottom: 1.2rem; font-size: 1.05rem;
}
.about-text strong { color: var(--white); font-weight: 500; }

/* Affiliations */
.affiliations {
  background: var(--ink-soft);
  padding: 6rem 5vw;
  text-align: center;
}
.affiliations h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 4rem;
  font-style: italic;
}
.affil-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 4rem;
  max-width: 800px; margin: 0 auto;
}
.affil-card { text-align: center; }
.affil-card img { height: 100px; width: auto; object-fit: contain; margin-bottom: 1rem; opacity: 0.85; }
.affil-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.affil-card p { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ── SERVICE AREA PAGE ─────────────────────── */
.service-area-content {
  background: var(--ink-soft);
  padding: 6rem 5vw;
}
.service-area-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--white); text-align: center;
  margin-bottom: 0.8rem;
}
.service-area-content .sub {
  text-align: center; color: var(--mist);
  font-weight: 300; margin-bottom: 0.6rem;
  font-size: 1rem;
}
.map-wrap {
  max-width: 900px; margin: 3rem auto 0;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.map-wrap iframe { display: block; width: 100%; height: 480px; }

/* ── SERVICES PAGE ─────────────────────────── */
.services-nav {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  position: sticky; top: 74px; z-index: 100;
}
.services-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 0; overflow-x: auto;
}
.services-nav a {
  padding: 1rem 1.3rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.services-nav a:hover { color: var(--white); border-bottom-color: var(--rust); }

.service-hero {
  position: relative; min-height: 52vh;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 0 5vw 5vh;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.8) 0%, rgba(13,17,23,1) 85%, var(--ink) 100%);
}
.service-hero .hero-content { max-width: 1200px; width: 100%; margin: 0 auto; position: relative; }
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white); letter-spacing: 0.02em; line-height: 0.95;
}
.service-hero h1 span { color: var(--rust); }
.service-hero h3 { color: var(--mist); font-weight: 300; font-size: 1.05rem; margin-top: 0.8rem; }

.service-section {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 5vw;
}
.service-section > h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

details.service-accordion {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: var(--ink-soft);
  transition: border-color 0.2s;
}
details.service-accordion:hover { border-color: var(--border-warm); }
details[open].service-accordion { border-color: var(--rust); }

summary.service-accordion-summary {
  padding: 1.4rem 1.8rem;
  font-size: 1.05rem; font-weight: 500;
  cursor: pointer;
  position: relative; list-style: none;
  color: var(--chrome);
  display: flex; align-items: center; gap: 1rem;
}
summary.service-accordion-summary::-webkit-details-marker { display: none; }
summary.service-accordion-summary::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%; background: var(--rust);
}
summary.service-accordion-summary::after {
  content: '+';
  position: absolute; right: 1.8rem;
  font-size: 1.3rem; font-weight: 300;
  color: var(--rust); line-height: 1;
}
details[open] summary.service-accordion-summary::after { content: '−'; }

.accordion-content {
  padding: 0 1.8rem 1.6rem 1.8rem;
  font-size: 0.98rem; color: var(--mist);
  font-weight: 300; line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.service-hero-buttons {
  display: flex; flex-wrap: wrap;
  gap: 0.6rem; margin-top: 2rem;
}
.service-hero-buttons a {
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  color: var(--chrome);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}
.service-hero-buttons a:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

/* ── REVIEW WIDGET ─────────────────────────── */
.review-widget_net { max-width: 400px; }

/* ── MOBILE HAMBURGER ──────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  border-radius: 4px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--chrome);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 1.5rem 5vw 2rem;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

/* ── MOBILE ────────────────────────────────── */
@media (max-width: 900px) {
  .steps-container { grid-template-columns: 1fr; }
  .steps-container::before { display: none; }
  .step-card { padding: 0 0 2rem; border-bottom: 1px solid var(--border); }
  .step-card:last-child { border-bottom: none; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-header { flex-direction: column; }
}

@media (max-width: 768px) {
  /* Header: show hamburger, hide desktop nav */
  nav { display: none; }
  .mobile-nav { display: flex; }
  .hamburger { display: flex; }
  #phone-num { display: none; }
  #header img { height: 46px; }
  /* Hide the outline "Get a Quote" header btn on mobile — it's in the drawer */
  .phone-cta .button-outline { display: none; }

  /* Hero */
  #intro { padding: 0 5vw 6vh; }
  #intro h1 { font-size: clamp(3.8rem, 16vw, 6rem); }
  #intro p.lead { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-buttons .button { text-align: center; justify-content: center; }

  /* Pain section */
  #pain { padding: 6rem 5vw; }
  .pain-grid { grid-template-columns: 1fr; }

  /* Process */
  #process { padding: 6rem 5vw; }

  /* Parallax banner */
  .parallax-banner { min-height: 40vh; padding: 4rem 5vw; }

  /* CTA */
  #cta-final { padding: 6rem 5vw; }
  .big-cta {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    width: 100%; max-width: 340px;
    text-align: center; justify-content: center;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  /* About page */
  .about-split { padding: 4rem 5vw; gap: 2rem; }
  .about-image-block { aspect-ratio: 3/2; }
  .about-badge {
    width: 90px; height: 90px;
    bottom: -0.8rem; right: -0.5rem;
  }
  .about-badge strong { font-size: 1.6rem; }

  /* Services page */
  .service-section { padding: 3.5rem 5vw; }
  .service-hero { min-height: 40vh; }

  /* Services sticky nav — scrollable pill strip */
  .services-nav { padding: 0 0 0 5vw; }
  .services-nav-inner {
    gap: 0.4rem;
    padding: 0.6rem 5vw 0.6rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: auto !important;
  }
  .services-nav-inner::-webkit-scrollbar { display: none; }
  .services-nav a {
    white-space: nowrap;
    background: var(--ink-soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.45rem 1rem;
    font-size: 0.72rem;
    border-bottom: 1px solid var(--border);
  }
  .services-nav a:hover {
    border-color: var(--rust);
    background: rgba(201,74,26,0.12);
  }

  /* Page hero */
  .page-hero { min-height: 40vh; padding: 0 5vw 5vh; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 6rem); }
  .service-hero-buttons { gap: 0.4rem; }

  /* Social icons — simpler layout on mobile */
  .social-links { gap: 20px; padding-bottom: 0.5rem; }
  .social-links a {
    width: 44px; height: 44px;
    line-height: 44px;
  }
  .social-links a .fa { line-height: 44px; font-size: 22px; }

  /* Map */
  .map-wrap iframe { height: 340px; }

  /* Affiliations */
  .affiliations { padding: 4rem 5vw; }
  .affil-grid { gap: 2.5rem; }
}

/* ── UTILITY ───────────────────────────────── */
.priv-button { color: var(--mist); text-decoration: none; transition: color 0.2s; font-size: 0.78rem; }
.priv-button:hover { color: var(--white); }

/* Divider line between service sections */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
  margin: 0 auto;
}

/* Scripture quote style */
.scripture {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--mist);
  opacity: 0.55;
  margin-top: 0.5rem;
}
