/*
Theme Name: Orlando Pumpkin Porches
Theme URI: https://orlandopumpkinporches.com
Description: White-label lead-gen theme for Orlando Pumpkin Porches.
Version: 1.0.0
*/

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  /* Brand design-system tokens — mapped 1:1 from brand.md via setup.sh.
     These are the single source of truth; the semantic aliases below resolve
     to them so the brand system actually governs every surface. */
  --brand-light: #FBF7F0;
  --brand-medium: #EFE3D2;
  --brand-dark: #9C4524;
  --action-primary: #EFB73E;
  --neutral: #8A7B6A;
  --brand-dark-2: #7E3C22;
  --text-primary: #33261C;

  --orange: var(--action-primary);
  --orange-dark: #7E3C22;
  --accent: #7E3C22;
  --dark: var(--brand-dark);
  --gray: var(--neutral);
  --light-gray: var(--brand-medium);
  --white: var(--brand-light);
  --border: #e0e0e0;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-size-base: 1rem;
  --line-height: 1.65;

  --max-width: 1100px;
  --section-pad: clamp(3rem, 6vw, 5rem);
  --radius: 6px;
  --btn-radius: 16px;        /* single source of truth for ALL button corners */
  --cta-min-width: 210px;    /* identical width for header / hero / inline CTA */
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--dark); }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; }

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.75rem; }
/* H3 = design-system display-sm (24px desktop / 20px mobile). Was too small. */
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--light-gray); }
.section--orange { background: var(--orange); color: var(--white); }
.section--orange h2, .section--orange p { color: var(--white); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none;
}

.btn--primary { background: var(--orange); color: var(--text-primary); }
.btn--primary:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); }
.btn--primary:active { transform: scale(0.98); }

.btn--large { padding: 1.1rem 1.75rem; font-size: 1.15rem; }

/* Canonical call button — identical label, icon, width & radius everywhere
   (header, hero, inline CTA). Rendered only via opp_cta_button(). */
.btn--cta { min-width: var(--cta-min-width); justify-content: center; }
.btn__phone-icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn--white { background: var(--action-primary); color: var(--text-primary); }
.btn--white:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); }

/* Secondary (outline): stroke and label share ONE color. */
.btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover { background: var(--accent); border-color: var(--accent); color: var(--white); text-decoration: none; }

/* =====================================================
   SITE HEADER
   ===================================================== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 68px; }
.site-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.1rem; font-weight: 700; color: var(--dark); text-decoration: none; flex-shrink: 0; }
.site-logo:hover { text-decoration: none; color: var(--dark); }
.site-logo img { height: 60px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; }
.primary-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.primary-nav a:hover { background: var(--light-gray); }

.header-cta { flex-shrink: 0; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: transform 0.2s, opacity 0.2s; }

/* =====================================================
   SITE FOOTER
   ===================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 0;
  padding-bottom: calc(1rem + 60px);
}

@media (min-width: 768px) { .site-footer { padding-bottom: 0; } }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; }

.footer-logo { display: block; font-size: 1.05rem; font-weight: 700; color: var(--white); text-decoration: none; margin-bottom: 0.75rem; }
.footer-logo:hover { color: var(--orange); text-decoration: none; }

.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.footer-col__heading { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 1rem; }

.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav li, .footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-nav a:hover { color: var(--orange); text-decoration: none; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); text-decoration: none; }
.footer-contact__icon { flex-shrink: 0; }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); padding: 1.5rem 0 calc(1.5rem + 60px); border-top: 1px solid rgba(255,255,255,0.1); }

@media (min-width: 768px) { .footer-copy { padding-bottom: 1.5rem; } }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }
}

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

/* =====================================================
   MOBILE STICKY BAR
   ===================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.mobile-sticky-bar:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); }

@media (max-width: 767px) {
  .mobile-sticky-bar { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .header-inner { height: auto; padding: 24px 0; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 0.75rem 1rem; }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero { position: relative; overflow: hidden; color: var(--dark); padding: 0; text-align: left; }
.hero__video-bg { position: absolute; inset: 0; z-index: 0; }
.hero__video-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero__video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FBF7F0 0%, #FBF7F0 45%, rgba(251,247,240,0) 72%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(480px, 55vw, 640px); }
.hero__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 5rem) 2rem clamp(3rem, 6vw, 5rem) 0; }

.hero h1 { color: var(--dark); margin-bottom: 1.25rem; }
.hero .subheadline { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray); max-width: 480px; margin-inline: 0; margin-bottom: 2rem; }

.hero .trust-strip { margin-top: 2rem; justify-content: flex-start; }
.hero .trust-strip__item { color: var(--gray); }

@media (max-width: 767px) {
  .hero { text-align: center; }
  .hero__video-bg::after { background: rgba(255,255,255,0.9); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding: clamp(3rem, 8vw, 5rem) 0; }
  .hero .subheadline { margin-inline: auto; }
  .hero .trust-strip { justify-content: center; }
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.trust-strip__item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* =====================================================
   CARDS / GRIDS
   ===================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card__name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; }
.card__desc { font-size: 0.875rem; color: var(--gray); margin-bottom: 1rem; }
.card__link { display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--orange); }

/* Services-style grid (cards with hero image + title + desc) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.service-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-card__name { font-size: 1.1rem; font-weight: 700; padding: 1rem 1rem 0.5rem; }
.service-card__name a { color: var(--dark); }
.service-card__desc { font-size: 0.9rem; color: var(--gray); padding: 0 1rem 1rem; flex: 1; }

/* =====================================================
   HOW IT WORKS — 3 STEPS
   ===================================================== */
.section--how-it-works {
  background-image: url('/wp-content/uploads/bg_how_it_works.webp');
  background-size: cover;
  background-position: center;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.step { text-align: center; }
.step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1rem;
}
.step__icon { width: 44px; height: 44px; margin: 0 auto 0.75rem; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1rem 0;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  color: var(--dark);
}
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }

.faq-answer { display: none; padding: 0 0 1rem; color: var(--gray); font-size: 0.95rem; }
.faq-item.is-open .faq-answer { display: block; }

/* =====================================================
   INLINE CTA BLOCK
   ===================================================== */
.cta-inline {
  background: url('/wp-content/uploads/bg_how_it_works.webp') center/cover no-repeat;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
}
.cta-inline__left { display: flex; align-items: center; gap: 1.25rem; }
.cta-inline__icon { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.cta-inline__text { color: var(--white); font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; margin-bottom: 0.25rem; }
.cta-inline__sub { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2vw, 1.15rem); margin-top: 0; }

@media (max-width: 767px) {
  .cta-inline { text-align: center; justify-content: center; }
  .cta-inline__icon { display: none; }
  .cta-inline__left { justify-content: center; width: 100%; }
}

/* =====================================================
   BOTTOM CTA SECTION
   ===================================================== */
.cta-bottom { background: var(--orange); padding: var(--section-pad) 0; text-align: center; }
.cta-bottom h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-bottom p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb { font-size: 0.825rem; color: var(--gray); padding-block: 0.75rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: var(--border); }

/* =====================================================
   PAGE HERO (used for non-home pages)
   ===================================================== */
.page-hero {
  --dac-page-hero-bg: none;
  background: var(--light-gray) var(--dac-page-hero-bg) center/cover no-repeat;
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  text-align: center;
  position: relative;
}
.page-hero--has-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.page-hero__inner { position: relative; max-width: 800px; margin: 0 auto; color: var(--white); }
.page-hero--has-bg .page-hero__title,
.page-hero--has-bg .page-hero__subtitle,
.page-hero--has-bg .page-hero__sub { color: var(--white); }
.page-hero__breadcrumb a, .page-hero__breadcrumb { color: rgba(255,255,255,0.85); }

/* =====================================================
   SPECIES / DETAIL PAGE SPECIFIC
   ===================================================== */
.species-hero {
  --dac-hero-bg: none;
  background: var(--light-gray) var(--dac-hero-bg) center/cover no-repeat;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}
.species-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.species-hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray); margin-bottom: 1.5rem; }

@media (max-width: 767px) { .species-hero__grid { grid-template-columns: 1fr; } }

.identifier-block { background: var(--light-gray); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.identifier-block h3 { margin-bottom: 1rem; }
.identifier-list { list-style: none; padding: 0; }
.identifier-list li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 0.5rem; }
.identifier-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; }
.identifier-list li:last-child { border-bottom: none; }

.service-link-block {
  border: 2px solid var(--orange); border-radius: var(--radius);
  padding: 1.25rem; margin: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

/* Process steps */
.process-steps { counter-reset: step-counter; margin-top: 1.5rem; }
.process-step { display: flex; gap: 1rem; margin-bottom: 1.5rem; counter-increment: step-counter; }
.process-step::before {
  content: counter(step-counter);
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 700; flex-shrink: 0;
}

.guarantee-block { background: #fff8f0; border-left: 4px solid var(--orange); padding: 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }

/* =====================================================
   BLOG
   ===================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.blog-card__img { width: 100%; height: 200px; object-fit: cover; }
.blog-card__body { padding: 1.25rem; }
.blog-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--gray); margin-bottom: 1rem; }

.post-content h2 { margin-top: 2rem; }
.post-content h3 { margin-top: 1.5rem; }
.post-content ul, .post-content ol { margin-bottom: 1rem; }
.post-content li { margin-bottom: 0.35rem; }

/* =====================================================
   SERVICE AREA / CITY PAGES
   ===================================================== */
.service-area-block { background: var(--light-gray); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.service-area-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.service-area-cities span { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 0.2rem 0.75rem; font-size: 0.85rem; }

.cities-detail { display: flex; flex-direction: column; gap: 3rem; margin-top: 2rem; }
.city-detail__name { font-size: 1.5rem; margin-bottom: 0.75rem; }
.city-detail__short { font-size: 1.05rem; color: var(--gray); margin-bottom: 1rem; }
.city-detail__long p { margin-bottom: 1rem; }
.city-detail__map { margin-top: 1rem; }

.neighborhoods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.neighborhood-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.neighborhood-card__name { font-size: 1.15rem; margin-bottom: 0.5rem; }
.neighborhood-card__name a { color: var(--dark); }
.neighborhood-card__map { margin-top: 1rem; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-phone-block { text-align: center; padding: 3rem 0; }
.contact-phone-number { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--orange); text-decoration: none; display: block; }
.contact-phone-number:hover { color: var(--orange-dark); text-decoration: none; }

.split-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 767px) { .split-layout { grid-template-columns: 1fr; } }
.split-layout__image img { border-radius: var(--radius); }

.lead-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.lead-form h3 { margin-bottom: 0.25rem; }
.lead-form__sub { color: var(--gray); margin-bottom: 1rem; }
.lead-form input, .lead-form select { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; margin-bottom: 0.75rem; font-family: inherit; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.lead-form__submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 0.95rem; font-weight: 700; font-size: 1rem; border-radius: var(--btn-radius); cursor: pointer; }
.lead-form__submit:hover { background: var(--orange-dark); }
.lead-form__reassurance { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 0.75rem; margin-bottom: 0; }
.lead-form__notice { padding: 0.75rem; border-radius: var(--radius); margin-bottom: 0.75rem; font-size: 0.9rem; }
.lead-form__notice--ok { background: #e7f7ec; color: #1a6e2e; }
.lead-form__notice--err { background: #fdecea; color: #b3261e; }

/* =====================================================
   SHOWCASE (HOME PAGE)
   ===================================================== */
.section-subhead { font-size: 1.05rem; color: var(--gray); max-width: 620px; margin-inline: auto; margin-bottom: 0; }

.species-showcase { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 1.5rem; margin-top: 2.5rem; }
.species-card { flex: 0 0 210px; text-align: center; text-decoration: none; color: inherit; transition: transform 0.2s; }
.species-card:hover { transform: translateY(-4px); text-decoration: none; }
.species-card img { width: 100%; height: 130px; object-fit: contain; margin-bottom: 0.75rem; }
.species-card__name { font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.5rem); color: var(--dark); margin-bottom: 0.35rem; }
.species-card__desc { font-size: 0.875rem; color: var(--gray); line-height: 1.5; }

@media (max-width: 520px) {
  .species-card { flex: 0 0 calc(50% - 0.75rem); }
  .species-card img { height: 100px; }
}

.eyebrow { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.5rem; }

.services-intro { text-align: center; margin-bottom: 2rem; }
.services-intro p { max-width: 720px; margin: 0.5rem auto 0; color: var(--gray); }

.service-area-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 767px) { .service-area-layout { grid-template-columns: 1fr; } }
.service-area-layout__video video { width: 100%; border-radius: var(--radius); }

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =====================================================
   OPP additions — numbered steps, gallery, why-us image, lead-form card
   ===================================================== */
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-dark); color: var(--brand-light);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  margin: 0 auto 1rem;
}
.section--how-it-works .step { text-align: center; }

.service-area-layout__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.gallery-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
@media (max-width: 767px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

.opp-lead-section .opp-lead-card {
  max-width: 640px; margin: 0 auto;
  background: var(--brand-light); border: 1px solid var(--brand-medium);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.opp-lead-card .lead-form h3 { color: var(--brand-dark); margin-bottom: 0.25rem; }
.lead-form textarea {
  width: 100%; padding: 0.85rem 1rem; margin-bottom: 1rem;
  border: 1px solid var(--brand-medium); border-radius: var(--radius);
  font: inherit; color: var(--text-primary); background: #fff; resize: vertical;
}
.section-subhead { max-width: 640px; margin: 0 auto 2rem; color: var(--neutral); }
