/*
Theme Name:  Green Pro Painting
Theme URI:   https://greenpropainting.com
Author:      Green Pro Painting
Description: Custom premium theme for Green Pro Painting — black, lime, editorial layout.
Version:     1.0.0
License:     Private
Text Domain: greenpropainting
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════════ */
:root {
  --black:       #080808;
  --ink:         #0f0f0f;
  --charcoal:    #181818;
  --dark:        #222222;
  --panel:       #2a2a2a;
  --muted:       #666666;
  --light:       #a0a0a0;
  --offwhite:    #e8e8e2;
  --white:       #f5f5f0;
  --lime:        #8DC63F;
  --lime-light:  #a8d45a;
  --lime-dark:   #6ba02e;
  --gray-brand:  #555555;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 160px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(141,198,63,0.12);
  transition: height 0.3s ease;
}
#site-nav.scrolled { height: 120px; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 130px; width: auto; transition: height 0.3s; }
#site-nav.scrolled .nav-logo img { height: 105px; }

.nav-menu-wrap { display: flex; align-items: center; gap: 40px; }
#site-nav .nav-menu { display: flex; align-items: center; gap: 40px; list-style: none; margin: 0; padding: 0; }
#site-nav .nav-menu li a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--light); text-decoration: none;
  transition: color 0.2s;
}
#site-nav .nav-menu li a:hover { color: var(--lime); }
#site-nav .nav-menu .menu-cta a {
  background: var(--lime); color: var(--black);
  padding: 9px 22px; font-weight: 600; letter-spacing: 0.15em;
  transition: background 0.2s;
}
#site-nav .nav-menu .menu-cta a:hover { background: var(--lime-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--offwhite); transition: all 0.3s; }

.mobile-nav {
  display: none; position: fixed; top: 160px; left: 0; right: 0; z-index: 199;
  background: var(--ink); border-bottom: 1px solid rgba(141,198,63,0.15);
  padding: 24px 32px; flex-direction: column; gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); text-decoration: none; }
.mobile-nav a:last-child { color: var(--lime); }

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
  margin-top: 0;
}
.slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.3) 55%, rgba(8,8,8,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 64px 80px; max-width: 820px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(141,198,63,0.12); border: 1px solid rgba(141,198,63,0.3);
  padding: 6px 16px; margin-bottom: 32px;
}
.hero-tag span { font-size: 9px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--lime); }
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px); line-height: 0.9;
  color: var(--white); margin-bottom: 28px; letter-spacing: 0.02em;
}
.hero-headline .accent { color: var(--lime); }
.hero-sub { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(232,232,226,0.75); max-width: 460px; margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.slider-dots { position: absolute; bottom: 36px; right: 64px; z-index: 4; display: flex; gap: 10px; align-items: center; }
.dot { width: 28px; height: 2px; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.dot.active { background: var(--lime); width: 48px; }
.slider-counter { position: absolute; bottom: 40px; left: 64px; z-index: 4; font-size: 10px; font-weight: 500; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); user-select: none; }
.slider-counter .current { color: var(--lime); font-size: 14px; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-lime {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--black);
  padding: 15px 36px; font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer;
}
.btn-lime:hover { background: var(--lime-light); transform: translateY(-2px); color: var(--black); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(141,198,63,0.4); color: var(--offwhite);
  padding: 14px 32px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.btn-black {
  background: var(--black); color: var(--lime);
  padding: 15px 36px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-black:hover { background: rgba(0,0,0,0.85); color: var(--lime); }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; padding: 0; overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 32px; position: relative;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 13px; color: rgba(0,0,0,0.6); }
.trust-text { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); white-space: nowrap; }

/* ═══════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--lime); }
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before { display: none; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px); line-height: 0.95;
  color: var(--white); letter-spacing: 0.02em;
}
.section-title .accent { color: var(--lime); }
.section-header { margin-bottom: 56px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   INTRO
═══════════════════════════════════════ */
.intro-section { background: var(--ink); padding: 80px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.intro-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--lime); }
.intro-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 4vw, 60px); line-height: 0.95; color: var(--white); letter-spacing: 0.02em; margin-bottom: 24px; }
.intro-body { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--light); }
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-box { background: var(--charcoal); padding: 32px 28px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; color: var(--lime); letter-spacing: 0.02em; margin-bottom: 6px; }
.stat-label { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.stat-desc { font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--light); }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section { background: var(--black); padding: 80px 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--charcoal); padding: 44px 36px; position: relative; overflow: hidden; cursor: default; transition: background 0.3s; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: var(--dark); }
.service-card:hover::after { transform: scaleX(1); }
.s-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; color: rgba(141,198,63,0.1); margin-bottom: 16px; }
.s-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.s-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 12px; }
.s-body { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--muted); }
.s-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.s-list li { font-size: 11px; font-weight: 400; color: var(--light); display: flex; align-items: center; gap: 10px; }
.s-list li::before { content: ''; width: 14px; height: 1px; background: var(--lime); flex-shrink: 0; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-section { background: var(--ink); padding: 80px 64px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.process-step { background: var(--charcoal); padding: 40px 28px; }
.p-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 1; color: rgba(141,198,63,0.1); margin-bottom: 20px; }
.p-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 12px; }
.p-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-section { background: var(--black); padding: 80px 64px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.why-point { display: flex; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(141,198,63,0.08); }
.why-point:last-child { border: none; margin: 0; padding: 0; }
.why-icon { width: 44px; height: 44px; background: rgba(141,198,63,0.08); border: 1px solid rgba(141,198,63,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.why-pt-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 6px; }
.why-pt-body { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.why-panel { background: var(--charcoal); padding: 52px 44px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section { background: var(--charcoal); padding: 80px 64px; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.t-card { background: var(--dark); padding: 44px 36px; }
.t-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.t-stars span { color: var(--lime); font-size: 12px; }
.t-quote { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--offwhite); margin-bottom: 28px; font-style: italic; }
.t-quote::before { content: '\201C'; color: var(--lime); font-size: 24px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.t-author { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.t-role { font-size: 11px; font-weight: 300; color: var(--muted); margin-top: 4px; }

/* ═══════════════════════════════════════
   SERVICE AREA
═══════════════════════════════════════ */
.area-section { background: var(--ink); padding: 72px 64px; text-align: center; }
.area-sub { font-size: 14px; font-weight: 300; color: var(--light); max-width: 480px; margin: 16px auto 48px; line-height: 1.7; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 720px; margin: 0 auto; }
.area-tag { background: transparent; border: 1px solid rgba(141,198,63,0.2); padding: 9px 18px; font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: var(--light); transition: all 0.2s; }
.area-tag:hover { border-color: var(--lime); color: var(--lime); }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner { background: var(--lime); padding: 80px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px); pointer-events: none; }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-bottom: 16px; }
.cta-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 68px); line-height: 0.95; color: var(--black); letter-spacing: 0.02em; margin-bottom: 16px; }
.cta-sub { font-size: 14px; font-weight: 300; color: rgba(0,0,0,0.65); max-width: 400px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-phone { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.05em; color: rgba(0,0,0,0.75); text-decoration: none; transition: color 0.2s; }
.cta-phone:hover { color: var(--black); }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--charcoal); padding: 80px 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; margin-top: 56px; align-items: start; }
.contact-info-head { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 16px; line-height: 1; }
.contact-info-body { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 36px; }
.c-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.c-detail-icon { width: 36px; height: 36px; background: rgba(141,198,63,0.08); border: 1px solid rgba(141,198,63,0.15); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.c-label { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lime); margin-bottom: 3px; }
.c-value { font-size: 13px; font-weight: 300; color: var(--offwhite); }
.c-value a { color: var(--offwhite); text-decoration: none; transition: color 0.2s; }
.c-value a:hover { color: var(--lime); }

/* Contact form */
.contact-form-wrap { background: var(--dark); padding: 48px; }
.form-head { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 32px; }
.wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; background: var(--charcoal);
  border: 1px solid rgba(141,198,63,0.12); color: var(--offwhite);
  padding: 13px 15px; font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 300; outline: none;
  transition: border-color 0.2s; appearance: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--lime); }
.wpcf7 input::placeholder, .wpcf7 textarea::placeholder { color: rgba(102,102,102,0.6); }
.wpcf7 textarea { resize: vertical; min-height: 100px; }
.wpcf7 input[type="submit"] {
  width: 100%; background: var(--lime); color: var(--black);
  border: none; padding: 16px; font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; cursor: pointer; transition: background 0.25s;
  margin-top: 6px;
}
.wpcf7 input[type="submit"]:hover { background: var(--lime-light); }

/* ═══════════════════════════════════════
   BLOG — INDEX / ARCHIVE
═══════════════════════════════════════ */
.blog-wrap { background: var(--black); padding: 120px 64px 80px; }
.blog-hero-bar {
  background: var(--ink); padding: 80px 64px 60px;
  border-bottom: 1px solid rgba(141,198,63,0.08);
  margin-bottom: 0;
}
.blog-hero-bar .section-eyebrow { margin-bottom: 12px; }
.blog-hero-bar .section-title { margin-bottom: 16px; }
.blog-hero-bar p { font-size: 14px; font-weight: 300; color: var(--light); max-width: 480px; line-height: 1.7; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.post-card { background: var(--charcoal); transition: background 0.3s; }
.post-card:hover { background: var(--dark); }
.post-card a { text-decoration: none; display: block; }
.post-card-img { width: 100%; height: 220px; overflow: hidden; background: var(--dark); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-img-placeholder { width: 100%; height: 100%; background: var(--panel); display: flex; align-items: center; justify-content: center; }
.post-card-body { padding: 32px 28px; }
.post-card-cat { font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--lime); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.post-card-cat::before { content: ''; width: 20px; height: 1px; background: var(--lime); }
.post-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; margin-bottom: 12px; transition: color 0.2s; }
.post-card:hover .post-card-title { color: var(--lime); }
.post-card-excerpt { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.post-card-meta { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; color: rgba(102,102,102,0.7); text-transform: uppercase; }
.post-card-link { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 64px; }
.blog-pagination a, .blog-pagination span {
  padding: 10px 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-decoration: none; border: 1px solid rgba(141,198,63,0.2); color: var(--light);
  transition: all 0.2s;
}
.blog-pagination a:hover, .blog-pagination .current { background: var(--lime); color: var(--black); border-color: var(--lime); }

/* ═══════════════════════════════════════
   BLOG — SINGLE POST
═══════════════════════════════════════ */
.single-post-hero { background: var(--ink); padding: 160px 64px 60px; border-bottom: 1px solid rgba(141,198,63,0.08); }
.single-post-hero .post-card-cat { margin-bottom: 16px; }
.single-post-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; color: var(--white); letter-spacing: 0.02em; margin-bottom: 20px; max-width: 900px; }
.single-post-meta { font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.single-post-meta span { color: var(--lime); margin: 0 8px; }

.single-post-featured { width: 100%; max-height: 520px; overflow: hidden; }
.single-post-featured img { width: 100%; height: 100%; object-fit: cover; }

.single-post-body { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding: 64px 64px 80px; background: var(--black); align-items: start; }
.post-content { max-width: 720px; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; color: var(--white);
  margin: 36px 0 16px; line-height: 1;
}
.post-content h2 { font-size: 36px; }
.post-content h3 { font-size: 28px; }
.post-content p { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--light); margin-bottom: 20px; }
.post-content a { color: var(--lime); text-decoration: none; border-bottom: 1px solid rgba(141,198,63,0.3); transition: border-color 0.2s; }
.post-content a:hover { border-color: var(--lime); }
.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 20px; }
.post-content li { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--light); margin-bottom: 8px; }
.post-content blockquote { border-left: 3px solid var(--lime); padding: 16px 24px; margin: 32px 0; background: var(--charcoal); }
.post-content blockquote p { color: var(--offwhite); font-style: italic; margin: 0; }
.post-content img { max-width: 100%; height: auto; margin: 24px 0; }

/* Sidebar */
.post-sidebar { position: sticky; top: 180px; }
.sidebar-widget { background: var(--charcoal); padding: 28px; margin-bottom: 2px; }
.sidebar-widget-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(141,198,63,0.15); }
.sidebar-post { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(141,198,63,0.06); }
.sidebar-post:last-child { margin: 0; padding: 0; border: none; }
.sidebar-post-img { width: 60px; height: 60px; flex-shrink: 0; overflow: hidden; background: var(--dark); }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-size: 12px; font-weight: 500; color: var(--offwhite); line-height: 1.4; text-decoration: none; transition: color 0.2s; }
.sidebar-post-title:hover { color: var(--lime); }
.sidebar-post-date { font-size: 10px; color: var(--muted); margin-top: 4px; }
.sidebar-cta-text { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }

/* Post navigation */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 0 64px 80px; background: var(--black); }
.post-nav-item { background: var(--charcoal); padding: 28px 32px; text-decoration: none; transition: background 0.3s; }
.post-nav-item:hover { background: var(--dark); }
.post-nav-label { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.post-nav-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; transition: color 0.2s; }
.post-nav-item:hover .post-nav-title { color: var(--lime); }
.post-nav-item.next { text-align: right; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer { background: var(--ink); padding: 60px 64px 28px; border-top: 1px solid rgba(141,198,63,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(141,198,63,0.06); margin-bottom: 28px; }
.footer-logo img { height: 154px; margin-bottom: 16px; }
.footer-desc { font-size: 12px; font-weight: 300; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.footer-badges { display: flex; flex-direction: column; gap: 7px; }
.footer-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; color: var(--lime); display: flex; align-items: center; gap: 7px; }
.footer-col-title { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.footer-menu li a { font-size: 12px; font-weight: 300; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-menu li a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 10px; font-weight: 300; color: rgba(102,102,102,0.7); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #site-nav { padding: 0 24px; }
  #site-nav .nav-menu-wrap { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 28px 64px; }
  .slider-counter, .slider-dots { display: none; }
  .intro-section { padding: 60px 28px; grid-template-columns: 1fr; gap: 40px; }
  .services-section, .process-section, .why-section,
  .testimonials-section, .area-section, .cta-banner,
  .contact-section, .blog-wrap, .blog-hero-bar, .single-post-body, .post-nav { padding-left: 28px; padding-right: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .t-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(n+4) { display: none; }
  .post-grid { grid-template-columns: 1fr; }
  .single-post-body { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .single-post-hero { padding: 140px 28px 48px; }
  .post-nav { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .wpcf7 .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
