/*
Theme Name: Iron & Oak — Roofing
Theme URI: https://seorockstars.io
Author: SEO Rockstars
Author URI: https://seorockstars.io
Description: Child theme of Local Service Parent. Forge Premium — dark-first industrial design with Barlow Condensed typography, zero-radius architecture, and a signature orange trust bar. Built for roofing, construction, and exterior trade businesses.
Template: local-service-parent
Version: 1.1.0
Text Domain: iron-oak
*/

/* ================================================================
   DESIGN TOKENS — Forge Premium
   ================================================================ */
:root {
  /* Core palette */
  --forge-black:    #0C0C0C;
  --forge-dark:     #161616;
  --forge-charcoal: #222222;
  --forge-cream:    #F5EFE8;
  --forge-warm:     #EDE5DB;
  --forge-orange:   #F07820;
  --forge-ember:    #C85E10;
  --forge-white:    #FFFFFF;

  /* Map to parent tokens */
  --color-primary:       var(--forge-dark);
  --color-primary-dark:  var(--forge-black);
  --color-primary-light: var(--forge-charcoal);
  --color-secondary:     var(--forge-orange);
  --color-accent:        var(--forge-ember);

  --color-text:         var(--forge-dark);
  --color-text-light:   #6B635C;
  --color-text-muted:   #998F87;
  --color-text-inverse: var(--forge-white);

  --color-bg:       var(--forge-white);
  --color-bg-alt:   var(--forge-cream);
  --color-bg-dark:  var(--forge-dark);
  --color-border:   #E3D9CF;

  /* Section rhythm — dark / orange / cream / white / dark / cream / dark */
  --color-hero-bg:       var(--forge-black);
  --color-trustbar-bg:   var(--forge-orange);
  --color-services-bg:   var(--forge-cream);
  --color-about-bg:      var(--forge-white);
  --color-reviews-bg:    var(--forge-dark);
  --color-areas-bg:      var(--forge-cream);
  --color-faq-bg:        var(--forge-cream);
  --color-faq-open-bg:   var(--forge-warm);
  --color-blog-bg:       var(--forge-white);
  --color-cta-bg:        var(--forge-black);

  /* Buttons */
  --color-btn-primary:       var(--forge-orange);
  --color-btn-primary-hover: var(--forge-ember);
  --color-btn-text:          var(--forge-white);
  --color-card-bg:           var(--forge-white);
  --color-star:              var(--forge-orange);

  /* Typography */
  --font-heading: "Barlow Condensed", "Oswald", sans-serif;
  --font-body:    "DM Sans", "Inter", sans-serif;

  /* Zero radius — industrial, uncompromising */
  --radius-sm:        0;
  --radius-md:        0;
  --radius-lg:        0;
  --radius-card:      0;
  --radius-btn:       0;
  --radius-img:       0;
  --radius-about-img: 0;

  /* Shadows */
  --shadow-card:  0 2px 12px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.14);

  /* Spacing */
  --section-padding-y: 6rem;
}

/* ================================================================
   GLOBAL
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 1rem;
}

.section-title--light { color: var(--forge-white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forge-orange);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  vertical-align: middle;
}

.section-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  max-width: 46ch;
}

.section-header { margin-bottom: 3.5rem; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.18s ease, transform 0.15s ease,
              box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn--primary {
  background: var(--forge-orange);
  color: var(--forge-white);
}

.btn--primary:hover {
  background: var(--forge-ember);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240,120,32,0.38);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--forge-white);
}

.btn--outline:hover {
  border-color: var(--forge-orange);
  color: var(--forge-orange);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  background: rgba(12,12,12,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: none;
  position: relative;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--forge-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.is-scrolled {
  background: rgba(12,12,12,0.99);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

.site-header.is-scrolled::after { transform: scaleX(1); }

.header__site-name {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forge-white);
  text-decoration: none;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--forge-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.header__nav a:hover { color: var(--forge-white); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__actions .btn--primary {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  background: var(--forge-black);
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 88vh, 860px);
  display: flex;
  align-items: center;
}

/* Fine orange grid — Forge's visual fingerprint */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,120,32,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,120,32,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

/* Radial orange glow — top-right warmth */
.hero-section::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 65%;
  height: 90%;
  background: radial-gradient(ellipse at 60% 30%,
    rgba(240,120,32,0.13) 0%,
    rgba(240,120,32,0.04) 50%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forge-orange);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.55s ease both 0.1s;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* The loudest element on the page */
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--forge-white);
  margin-bottom: 1.75rem;
  max-width: 14ch;
  animation: fadeUp 0.55s ease both 0.25s;
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.52);
  max-width: 40ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.55s ease both 0.4s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.55s ease both 0.55s;
}

.hero__actions .btn { padding: 1rem 2.25rem; font-size: 1rem; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.55s ease both 0.7s;
}

.hero__trust .star-rating { display: flex; gap: 1px; }

.hero__trust .star--filled {
  fill: var(--forge-orange);
  width: 15px;
  height: 15px;
}

.hero__trust-count {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}

.hero__right .hero__form,
.hero__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--forge-orange);
  padding: 2.5rem;
  border-radius: 0;
}

/* ================================================================
   TRUST BAR — The signature: full-bleed orange
   ================================================================ */
.trustbar-section {
  background: var(--forge-orange);
  border-top: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal hatching over orange */
.trustbar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.04) 24px,
    rgba(255,255,255,0.04) 25px
  );
  pointer-events: none;
}

.trustbar__items {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.trustbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.trustbar__item + .trustbar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.trustbar__icon { display: none; }

.trustbar__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--forge-white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trustbar__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.trustbar__desc {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section {
  background: var(--forge-cream);
  padding: var(--section-padding-y) 0;
}

/* Grid with hairline dividers between cards */
.services-grid {
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.service-card {
  background: var(--forge-white);
  border: none;
  border-radius: 0;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Orange top bar — sweeps left to right on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forge-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  z-index: 1;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-card__title a:hover,
.service-card:hover .service-card__title { color: var(--forge-orange); }

.service-card__description {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forge-orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-card:hover .service-card__link { gap: 0.875rem; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  background: var(--forge-white);
  padding: var(--section-padding-y) 0;
}

.about__inner { align-items: center; gap: 5rem; }

.about__image-wrap {
  position: relative;
  overflow: hidden;
}

/* Orange accent line at bottom of image */
.about__image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 4px;
  background: var(--forge-orange);
  z-index: 1;
}

.about__image { display: block; width: 100%; height: auto; object-fit: cover; }

.about__description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 2.25rem;
}

.about__description p { margin: 0 0 1rem; }

.about__stats {
  display: flex;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.about__stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.about__stat + .about__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}

.about__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forge-orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about__signature {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

/* ================================================================
   REVIEWS — Dark editorial
   ================================================================ */
.reviews-section {
  background: var(--forge-dark);
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle dot grid on charcoal */
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.reviews-section > .container { position: relative; z-index: 1; }

.reviews-section .section-title        { color: var(--forge-white); }
.reviews-section .section-eyebrow      { color: var(--forge-orange); }
.reviews-section .section-eyebrow::before { background: var(--forge-orange); }
.reviews-section .section-description  { color: rgba(255,255,255,0.45); }

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid transparent;
  border-radius: 0;
  padding: 2rem;
  position: relative;
  transition: border-top-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.review-card:hover {
  border-top-color: var(--forge-orange);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

/* Large decorative quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(240,120,32,0.1);
  line-height: 1;
  pointer-events: none;
}

.review-card__stars { margin-bottom: 1rem; }

.review-card__stars .star-rating { display: flex; gap: 2px; }

.review-card__stars .star--filled {
  fill: var(--forge-orange);
  width: 14px;
  height: 14px;
}

.review-card__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  font-style: normal;
}

.review-card__text p { margin: 0; }

.review-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: normal;
  color: var(--forge-white);
}

.review-card__source {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forge-orange);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(240,120,32,0.3);
}

.review-card__date {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  margin-left: auto;
}

.reviews-section .section-cta { text-align: center; margin-top: 3rem; }

/* ================================================================
   SERVICE AREAS
   ================================================================ */
.service-areas-section {
  background: var(--forge-cream);
  padding: var(--section-padding-y) 0;
}

.areas-grid .area-item {
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 0.875rem 0;
  transition: border-bottom-color 0.2s ease, padding-left 0.2s ease;
}

.areas-grid .area-item:hover {
  border-bottom-color: var(--forge-orange);
  padding-left: 0.5rem;
}

.area-item__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forge-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.area-item__link:hover { color: var(--forge-orange); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  background: var(--forge-cream);
  padding: var(--section-padding-y) 0;
}

.faq-list { max-width: 56rem; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-item__question { margin: 0; }

.faq-item__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.375rem 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forge-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-item__toggle:hover,
.faq-item__toggle[aria-expanded="true"] { color: var(--forge-orange); }

/* Circular plus/minus icon */
.faq-item__icon {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-item__icon::before { width: 9px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 9px; }

.faq-item__toggle[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer-inner {
  padding: 0 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--forge-black);
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

/* Orange radial warmth from below + diagonal lines */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%,
      rgba(240,120,32,0.16) 0%,
      transparent 70%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 32px,
      rgba(255,255,255,0.015) 32px,
      rgba(255,255,255,0.015) 33px
    );
  pointer-events: none;
}

.cta__inner { position: relative; z-index: 1; text-align: center; }
.cta__content { max-width: 52rem; margin: 0 auto; }

.cta-section .section-eyebrow { color: var(--forge-orange); justify-content: center; }
.cta-section .section-eyebrow::before { background: var(--forge-orange); }

.cta-section .section-title {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  color: var(--forge-white);
  margin-bottom: 1.25rem;
}

.cta__description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  max-width: 44ch;
  margin: 0 auto 2.5rem;
}

.cta__form-wrap {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 3px solid var(--forge-orange);
  padding: 2.5rem;
}

.cta__trust {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================================================================
   BLOG FEED
   ================================================================ */
.blog-feed-section {
  background: var(--forge-white);
  padding: var(--section-padding-y) 0;
}

.post-card {
  background: var(--forge-white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 3px solid transparent;
  transition: border-top-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  border-top-color: var(--forge-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forge-dark);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.post-card:hover .post-card__title { color: var(--forge-orange); }

.post-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forge-orange);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-light);
}

.post-card__read-more {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forge-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease;
}

.post-card:hover .post-card__read-more { gap: 0.75rem; }

/* ================================================================
   INNER HERO (service pages, area pages)
   ================================================================ */
.hero-section--inner {
  min-height: 42vh;
  border-bottom: none;
  padding-bottom: 4rem;
}

.hero-section--inner::after { display: none; }

.hero-section--inner .hero__headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

/* ================================================================
   SIDEBAR
   ================================================================ */
.sidebar__cta-box {
  background: var(--forge-dark);
  border-top: 3px solid var(--forge-orange);
  border-radius: 0;
  padding: 2rem;
}

.sidebar__cta-box .section-title {
  color: var(--forge-white);
  font-size: 1.5rem;
}

/* ================================================================
   CONTACT FORM 7
   ================================================================ */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: var(--forge-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--forge-orange);
  background: rgba(255,255,255,0.08);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(255,255,255,0.3); }

.wpcf7-form .wpcf7-submit {
  background: var(--forge-orange);
  color: var(--forge-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s ease, transform 0.15s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--forge-ember);
  transform: translateY(-1px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--forge-black);
  border-top: 3px solid var(--forge-orange);
}

.site-footer a { transition: color 0.2s ease; }
.site-footer a:hover { color: var(--forge-orange); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  :root { --section-padding-y: 4.5rem; }
}

@media (max-width: 768px) {
  :root { --section-padding-y: 3.75rem; }

  .hero-section { min-height: auto; }

  .hero__container {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .trustbar__items { flex-wrap: wrap; }
  .trustbar__item  { flex: 1 1 50%; }

  .trustbar__item + .trustbar__item::before { display: none; }

  .about__inner { gap: 3rem; }

  .services-grid { gap: 1px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2.75rem, 12vw, 3.5rem); }
  .trustbar__item { flex: 1 1 100%; }
}

/* ================================================================
   IMAGE PLACEHOLDERS
   ================================================================ */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--forge-cream);
  border: 2px dashed #C5B9AC;
  position: relative;
  overflow: hidden;
  text-align: center;
  gap: 0.375rem;
}

.img-placeholder--feature {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin-bottom: 2rem;
}

.img-placeholder--city { aspect-ratio: 16 / 7; }

.img-placeholder--before-after {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.img-placeholder--after { background: var(--forge-warm); }

.img-placeholder--badge {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.img-placeholder--map {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.img-placeholder__text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A7E74;
}

.img-placeholder__sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A89E94;
}

.img-placeholder__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forge-charcoal);
  color: var(--forge-white);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
}

.img-placeholder__badge--after {
  background: var(--forge-orange);
}

.img-placeholder__map-icon {
  width: 4rem;
  height: 4rem;
  color: #B5A89E;
  margin-bottom: 0.5rem;
}

/* ================================================================
   BREADCRUMB BAR
   ================================================================ */
.breadcrumb-bar {
  background: var(--forge-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--forge-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--forge-ember); }

.breadcrumb__sep { color: var(--color-border); }

.breadcrumb__current { color: var(--forge-dark); font-weight: 500; }

/* ================================================================
   SERVICE PAGE LAYOUT (shared by service + area pages)
   ================================================================ */
.service-page-wrap {
  padding: 4rem 0;
  background: var(--forge-white);
}

.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

/* Feature image */
.service-feature-image { margin: 0 0 2.5rem; }
.service-feature-image__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Entry content typography */
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin: 2.5rem 0 0.875rem;
}

.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin: 2rem 0 0.625rem;
}

.entry-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 1.25rem 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }

/* ================================================================
   SERVICE BENEFITS
   ================================================================ */
.service-benefits {
  margin: 3.5rem 0;
  padding: 3rem;
  background: var(--forge-cream);
  border-left: 4px solid var(--forge-orange);
}

.service-benefits__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 2rem;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-benefit-item { display: flex; flex-direction: column; gap: 0.625rem; }

.service-benefit-item__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forge-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-benefit-item__icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--forge-white);
  stroke: var(--forge-white);
}

.service-benefit-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin: 0;
}

.service-benefit-item__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

/* ================================================================
   SERVICE PROCESS
   ================================================================ */
.service-process { margin: 3.5rem 0; }

.service-process__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 2rem;
}

.service-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--color-border);
  margin-left: 1.5rem;
}

.service-process__step {
  display: flex;
  gap: 1.5rem;
  padding: 0 0 2.5rem 2rem;
  position: relative;
}

/* Connector dot */
.service-process__step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.25rem;
  width: 8px;
  height: 8px;
  background: var(--forge-orange);
  border-radius: 50%;
}

.service-process__step:last-child { padding-bottom: 0; }

.service-process__num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--forge-orange);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.service-process__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin: 0 0 0.5rem;
}

.service-process__body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin: 0;
}

/* ================================================================
   RELATED SERVICES
   ================================================================ */
.related-services { margin: 3.5rem 0; }

.related-services__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 1.25rem;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.related-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--forge-cream);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.related-service-card:hover {
  background: var(--forge-orange);
}

.related-service-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forge-dark);
  transition: color 0.2s ease;
}

.related-service-card:hover .related-service-card__title,
.related-service-card:hover .related-service-card__arrow {
  color: var(--forge-white);
}

.related-service-card__arrow {
  font-size: 1.25rem;
  color: var(--forge-orange);
  transition: transform 0.2s ease, color 0.2s ease;
}

.related-service-card:hover .related-service-card__arrow { transform: translateX(4px); }

/* ================================================================
   SERVICE SIDEBAR
   ================================================================ */
.service-sidebar__inner {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-form-box {
  background: var(--forge-dark);
  border-top: 3px solid var(--forge-orange);
  padding: 2rem;
}

.sidebar-form-box__eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forge-orange);
  margin-bottom: 0.5rem;
}

.sidebar-form-box__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-white);
  margin-bottom: 0.375rem;
}

.sidebar-form-box__sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.sidebar-form-box__phone {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1rem;
}

.sidebar-certs {
  background: var(--forge-cream);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

.sidebar-certs__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 1rem;
}

.sidebar-certs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-certs__list li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-certs__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--forge-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-certs__list li:last-child { border-bottom: none; }

.sidebar-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

/* ================================================================
   AREA SERVICES GRID (on service area pages)
   ================================================================ */
.area-services { margin: 3.5rem 0; }

.area-services__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 0.75rem;
}

.area-services__intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.area-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.area-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.25rem;
  background: var(--forge-cream);
  text-decoration: none;
  transition: background 0.2s ease;
}

.area-service-item:hover { background: var(--forge-orange); }

.area-service-item__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forge-dark);
  transition: color 0.2s ease;
}

.area-service-item__arrow {
  color: var(--forge-orange);
  font-size: 1.125rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.area-service-item:hover .area-service-item__name,
.area-service-item:hover .area-service-item__arrow { color: var(--forge-white); }
.area-service-item:hover .area-service-item__arrow { transform: translateX(3px); }

/* ================================================================
   WHY CHOOSE (on area pages)
   ================================================================ */
.area-why { margin: 3.5rem 0; }

.area-why__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 2rem;
}

.area-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.area-why__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.area-why__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forge-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-why__icon {
  width: 1.125rem;
  height: 1.125rem;
  stroke: var(--forge-white);
}

.area-why__item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin: 0;
}

.area-why__item p {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-light);
  margin: 0;
}

/* ================================================================
   BEFORE / AFTER SECTION
   ================================================================ */
.before-after-section {
  background: var(--forge-cream);
  padding: var(--section-padding-y) 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.before-after-item__caption {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ================================================================
   NEARBY AREAS SECTION
   ================================================================ */
.nearby-areas-section {
  background: var(--forge-white);
  padding: var(--section-padding-y) 0;
}

.nearby-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nearby-area-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--forge-cream);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forge-dark);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nearby-area-item:hover {
  background: var(--forge-orange);
  border-color: var(--forge-orange);
  color: var(--forge-white);
}

.nearby-area-item__icon {
  width: 14px;
  height: 14px;
  fill: var(--forge-orange);
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

.nearby-area-item:hover .nearby-area-item__icon { fill: var(--forge-white); }

/* ================================================================
   SERVICE AREAS ARCHIVE PAGE
   ================================================================ */

/* Intro split: map + copy */
.areas-archive-intro {
  background: var(--forge-white);
  padding: 5rem 0;
}

.areas-archive-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.areas-archive-intro__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.areas-archive-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 2.5rem;
}

.areas-archive-stat {
  flex: 1;
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
}

.areas-archive-stat + .areas-archive-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}

.areas-archive-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--forge-orange);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.areas-archive-stat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Counties grid */
.areas-by-county {
  background: var(--forge-cream);
  padding: var(--section-padding-y) 0;
}

.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.county-block {
  background: var(--forge-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--forge-orange);
  padding: 1.5rem;
}

.county-block__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forge-dark);
  margin-bottom: 1rem;
}

.county-block__cities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.county-block__city {
  border-bottom: 1px solid var(--color-border);
}

.county-block__city:last-child { border-bottom: none; }

.county-block__city-link,
.county-block__city-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forge-dark);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.county-block__city-link:hover {
  color: var(--forge-orange);
  padding-left: 0.375rem;
}

.county-block__pin {
  width: 10px;
  height: 10px;
  color: var(--forge-orange);
  flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE — SERVICE PAGES
   ================================================================ */
@media (max-width: 1024px) {
  .service-page-layout {
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .service-page-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar__inner { position: static; }

  .service-benefits__grid,
  .area-why__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .area-services__grid { grid-template-columns: 1fr; }

  .before-after-grid { grid-template-columns: 1fr; }

  .areas-archive-intro__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .counties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-process__steps { margin-left: 0.75rem; }
  .service-process__step { padding-left: 1.5rem; }
}

@media (max-width: 480px) {
  .counties-grid { grid-template-columns: 1fr; }
  .sidebar-badges { grid-template-columns: repeat(3, 1fr); }
  .service-page-wrap { padding: 2.5rem 0; }
}
