/* ==========================================================================
   Kristopher Ateman · The Housing Mentors — Site Stylesheet (v2)
   Extracted to an external, cacheable file for faster repeat page loads.
   ========================================================================== */

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

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --lavender: #B497D6;
  --lavender-light: #E6DAF5;
  --lavender-dark: #8B6BB5;
  --gray: #6B6B6B;
  --gray-light: #F4F4F4;
  --border: #E0E0E0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--lavender);
  color: var(--black);
  padding: 10px 18px;
  z-index: 1000;
  font-size: 0.85rem;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--lavender-dark); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--lavender-dark); }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  border: none;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--lavender-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
}

/* LEFT: Copy */
.hero-left {
  background: var(--black);
  padding: 80px 64px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.10;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--lavender);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.hero-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lavender);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}
.hero-cta {
  display: inline-block;
  background: var(--lavender);
  color: var(--black);
  padding: 16px 36px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.hero-cta:hover { background: var(--lavender-dark); color: var(--white); transform: translateY(-2px); }
.hero-cta-outline {
  background: transparent;
  color: var(--lavender);
  border: 2px solid var(--lavender);
  margin-top: 12px;
}
.hero-cta-outline:hover { background: var(--lavender); color: var(--black); transform: translateY(-2px); }

/* ── LEAD MAGNET STRIP ── */
.guide-strip {
  background: var(--black);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid rgba(180,151,214,0.15);
}
.guide-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}
.guide-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.guide-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}
.guide-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.guide-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(180,151,214,0.2);
  border: 1px solid rgba(180,151,214,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.guide-check svg {
  width: 9px; height: 9px;
  stroke: var(--lavender);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guide-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(180,151,214,0.15);
  border-radius: 4px;
  padding: 36px;
}
.guide-form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 8px;
}
.guide-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.guide-form-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.55;
}
.guide-form-wrapper { width: 100%; overflow: hidden; }
.guide-privacy {
  margin-top: 14px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* RIGHT: Photo */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Gradient mask: fade to black on the left so it blends with hero-left */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
/* Bottom fade so photo blends into next section */
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* ── ABOUT ── */
.about {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}
.about-body p + p { margin-top: 16px; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.service-card {
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 4px 20px rgba(180,151,214,0.15);
}
.service-icon {
  width: 40px; height: 40px;
  background: var(--lavender-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.service-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.service-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── SIGNATURE STRIP ── */
.signature-strip {
  background: var(--black);
  padding: 60px 48px;
  text-align: center;
}
.signature-strip p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}
.signature-strip p span { color: var(--lavender); }
.signature-name {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 48px;
  background: var(--gray-light);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--lavender);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 28px;
  margin-bottom: 28px;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--lavender-dark);
  font-weight: 500;
  margin-top: 2px;
}
.stars { color: #F4C430; font-size: 0.85rem; margin-bottom: 4px; }

/* ── AREA ── */
.area {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.area-headline { margin-bottom: 48px; }
.area-locations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.location-tag {
  background: var(--lavender-light);
  color: var(--lavender-dark);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--lavender-dark);
  padding: 100px 48px;
  text-align: center;
}
.cta-section .section-eyebrow { color: var(--lavender-light); }
.cta-section .section-headline { color: var(--white); }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-big {
  display: inline-block;
  background: var(--white);
  color: var(--lavender-dark);
  padding: 20px 52px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-big:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.cta-contact {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.cta-contact a { color: var(--white); font-weight: 600; text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ── RECENT BLOG STRIP (homepage) ── */
.blog-strip {
  padding: 100px 48px;
  background: var(--white);
}
.blog-strip-inner { max-width: 1100px; margin: 0 auto; }
.blog-strip-header { text-align: center; margin-bottom: 56px; }
.blog-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--lavender);
  box-shadow: 0 4px 20px rgba(180,151,214,0.15);
}
.blog-card-icon {
  height: 120px;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}
.blog-card-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender-dark);
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.blog-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lavender-dark);
  margin-top: 4px;
}
.blog-strip-cta-wrap { text-align: center; }
.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ── BLOG LISTING PAGE ── */
.blog-hero {
  background: var(--black);
  padding: 160px 48px 80px;
  text-align: center;
}
.blog-hero .hero-eyebrow { justify-content: center; display: flex; }
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.blog-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.blog-list {
  padding: 90px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── BLOG POST PAGE ── */
.post-hero {
  background: var(--black);
  padding: 160px 48px 70px;
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-hero .hero-eyebrow { margin-bottom: 18px; }
.post-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.post-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.post-meta a { color: var(--lavender); text-decoration: none; }
.post-hero-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 48px 40px;
  font-size: 1.02rem;
  color: var(--gray);
  line-height: 1.9;
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 40px 0 18px;
  line-height: 1.3;
}
.post-body h2:first-child { margin-top: 0; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; }
.post-body li { margin-bottom: 10px; }
.post-body a { color: var(--lavender-dark); font-weight: 600; text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-figure { margin: 36px 0; }
.post-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.post-figure figcaption {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* TL;DR callout, right under the hero */
.post-tldr {
  background: var(--lavender-light);
  border-left: 4px solid var(--lavender);
  padding: 22px 26px;
  margin-bottom: 8px;
}
.post-tldr-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 10px;
}
.post-tldr ul { margin: 0 0 0 20px; }
.post-tldr li {
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 6px;
}
.post-tldr li:last-child { margin-bottom: 0; }

/* FAQ section */
.post-faq-item { margin-bottom: 26px; }
.post-faq-item:last-child { margin-bottom: 0; }
.post-faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.post-faq-item p { margin-bottom: 0; }

/* Secondary CTA (lead-magnet download) alongside the primary Book-a-Call CTA */
.post-cta-alt {
  background: var(--lavender-light);
  border: 1px solid rgba(180, 151, 214, 0.4);
  padding: 32px 36px;
  text-align: center;
  margin-top: 20px;
}
.post-cta-alt h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.post-cta-alt p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.btn-lavender {
  display: inline-block;
  background: var(--lavender);
  color: var(--black);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-lavender:hover { background: var(--lavender-dark); color: var(--white); }
.post-cta {
  max-width: 760px;
  margin: 0 auto 90px;
  padding: 0 48px;
}
.post-cta-box {
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 36px 40px;
  text-align: center;
}
.post-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.post-cta-box p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.7;
}
.post-related {
  max-width: 760px;
  margin: 0 auto 100px;
  padding: 0 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.post-related h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 18px;
}
.post-related ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.post-related a { font-size: 0.95rem; font-weight: 600; color: var(--black); text-decoration: none; }
.post-related a:hover { color: var(--lavender-dark); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--lavender); }
.footer-info {
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.7;
}
.footer-info a { color: var(--lavender); text-decoration: none; }
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-nav a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-nav a:hover { color: var(--lavender); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-menu.open { max-height: 70vh; overflow-y: auto; }
  .nav-menu a {
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu a.nav-cta {
    text-align: center;
    margin: 12px 20px 16px;
    width: auto;
    border-bottom: none;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-logo { font-size: 0.85rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  /* On mobile, photo comes first */
  .hero-right {
    order: -1;
    height: 60vw;
    min-height: 260px;
    max-height: 380px;
  }
  .hero-photo {
    object-position: center 15%;
    /* Fade bottom only on mobile */
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .hero-right::after {
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--black));
  }

  .hero-left {
    padding: 40px 24px 60px;
  }
  .hero-headline { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-stats-row { gap: 16px; margin-bottom: 32px; }
  .stat-number { font-size: 1.8rem; }
  .hero-cta { padding: 14px 28px; font-size: 0.85rem; }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .testimonials { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 28px 24px; }

  .signature-strip { padding: 48px 24px; }

  .area { padding: 60px 24px; }
  .area-locations { gap: 10px; }
  .location-tag { padding: 8px 16px; font-size: 0.78rem; }

  .guide-strip { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .guide-right { padding: 24px 20px; }

  .cta-section { padding: 60px 24px; }
  .cta-big { padding: 16px 32px; font-size: 0.9rem; }

  .blog-strip { padding: 60px 20px; }
  .blog-strip-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-list { padding: 60px 20px; }
  .blog-list-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-hero { padding: 140px 24px 60px; }

  .post-hero { padding: 140px 24px 50px; }
  .post-body, .post-cta, .post-related { padding-left: 24px; padding-right: 24px; }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }
  .footer-info { text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-right { height: 70vw; }
  .hero-headline { font-size: 1.75rem; }
  .hero-stats-row { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
