/* ============================================================
   Matthias Landscaping Co. — Design System
   Brand: Red #e60510 / White, Luxury Tone, Warm-Trustworthy Vibe
   Fonts: Playfair Display (headings) + Lato (body)
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #e60510;
  --color-primary-dark: #c00410;
  --color-primary-light: #ff2a34;
  --color-secondary: #1a1a1a;
  --color-accent: #b5000c;
  --color-dark: #111111;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-heading: #1a1a1a;
  --color-bg: #ffffff;
  --color-bg-alt: #faf8f6;
  --color-bg-warm: #f5f2ef;
  --color-border: #e5e2dd;
  --color-border-light: #f0ede9;
  --color-success: #1a7a2e;
  --color-error: #d32f2f;
  --color-white: #ffffff;
  --color-overlay: rgba(17, 17, 17, 0.7);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  --section-padding: 80px;
  --section-padding-sm: 56px;
  --container-width: 1140px;
  --container-narrow: 800px;
  --gap: 32px;
  --gap-sm: 20px;

  --radius: 4px;
  --radius-lg: 8px;
  --radius-btn: 4px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.07);
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; font-weight: 600; }
h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h5 { font-size: 1.1rem; margin-bottom: 8px; }
h6 { font-size: 1rem; margin-bottom: 8px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--section-padding) 0;
}
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-dark);
  color: rgba(255,255,255,0.9);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark .section-label { color: var(--color-primary-light); }
.section--dark .muted { color: rgba(255,255,255,0.65); }
.section--primary {
  background: var(--color-primary);
  color: #fff;
}
.section--primary h2,
.section--primary h3 { color: #fff; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 48px;
}
.section-header.text-center { margin-left: auto; margin-right: auto; }
.section-header p { font-size: 1.1rem; color: var(--color-text-muted); margin-top: 12px; }

/* --- Grid --- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-primary-dark);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}
.btn svg { width: 16px; height: 16px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* --- Utility Bar --- */
.utility-bar {
  background: var(--color-secondary);
  padding: 8px 0;
  font-size: 13px;
}
.utility-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.utility-bar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}
.utility-bar a:hover { color: #fff; }
.utility-bar svg { width: 14px; height: 14px; color: var(--color-primary-light); flex-shrink: 0; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  z-index: 100;
  padding: 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo img {
  height: 48px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__nav a {
  color: var(--color-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--color-primary);
  background: rgba(230, 5, 16, 0.05);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 15px;
}
.header__phone svg { color: var(--color-primary); width: 18px; height: 18px; }
.header__phone:hover { color: var(--color-primary); }

/* Dropdown */
.dropdown-parent { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.dropdown-parent:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}
.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 150;
  }
  .header__nav.open { display: flex; right: 0; }
  .header__nav a { width: 100%; padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--color-border-light); }
  .dropdown-parent .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .dropdown-parent.open .dropdown { display: block; }
  .header__phone { display: none; }
  .header__cta .btn { display: none; }
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 140;
  }
  .mobile-overlay.active { display: block; }
}

/* --- Hero --- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.8) 0%, rgba(17,17,17,0.5) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero .section-label { color: rgba(255,255,255,0.85); }

.hero--home {
  padding: 120px 0 100px;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero--home h1 { font-size: 3.25rem; max-width: 700px; }
.hero--home p { font-size: 1.2rem; max-width: 600px; color: rgba(255,255,255,0.9); margin-bottom: 8px; }

.hero--inner {
  padding: 72px 0 56px;
}
.hero--inner h1 { font-size: 2.5rem; margin-bottom: 12px; }
.hero--inner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; }

.hero .breadcrumbs { margin-bottom: 16px; }
.hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.hero .breadcrumbs a:hover { color: #fff; }
.hero .breadcrumbs .current { color: rgba(255,255,255,0.9); }
.hero .breadcrumbs span { color: rgba(255,255,255,0.5); }

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.breadcrumbs a { color: var(--color-text-muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-muted); }
.breadcrumbs .current { color: var(--color-text); font-weight: 600; }

/* --- Cards --- */
.card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__image img { transform: scale(1.03); }
.card__body { padding: 24px; }
.card__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card__body h3 a { color: var(--color-heading); }
.card__body h3 a:hover { color: var(--color-primary); }
.card__body p { font-size: 15px; color: var(--color-text-muted); }

.card--service { text-align: center; }
.card--service .card__body { padding: 28px 20px; }
.card--service .card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 5, 16, 0.08);
  border-radius: 50%;
  color: var(--color-primary);
}
.card--service .card__icon svg { width: 28px; height: 28px; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.trust-item span { white-space: nowrap; }

/* --- Stats --- */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.section--dark .stat__number { color: var(--color-primary-light); }
.stat__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section--dark .stat__label { color: rgba(255,255,255,0.65); }

/* --- Testimonials --- */
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.testimonial__stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial__author {
  font-weight: 700;
  color: var(--color-heading);
  font-size: 15px;
}
.testimonial__service {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.4;
  gap: 16px;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item__answer.open { display: block; }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,0.3); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.gallery-filter button {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition);
}
.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 5, 16, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

/* SMS Consent */
.sms-consent { margin: 20px 0; }
.sms-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 12px;
}
.sms-consent__label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}
.sms-consent__label a { color: var(--color-primary); text-decoration: underline; }

/* Thanks Message */
.thanks-msg {
  text-align: center;
  padding: 48px 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.thanks-msg h2 { color: var(--color-success); }
.thanks-msg p { font-size: 1.1rem; color: var(--color-text-muted); }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-text-muted); }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* --- Two-Column Content --- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
.content-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-split__text h2 { margin-bottom: 16px; }
.content-split__text p { margin-bottom: 16px; }
.content-split__text ul {
  margin-bottom: 16px;
}
.content-split__text ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 15px;
}
.content-split__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}

@media (max-width: 768px) {
  .content-split,
  .content-split--reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}

/* --- Service List (for area pages) --- */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-list li {
  padding: 12px 16px 12px 44px;
  position: relative;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}
@media (max-width: 768px) {
  .service-list { grid-template-columns: 1fr; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; }

/* --- Blog --- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.blog-meta time { font-weight: 600; }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { margin-top: 40px; margin-bottom: 16px; }
.blog-content h3 { margin-top: 32px; margin-bottom: 12px; }
.blog-content ul, .blog-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { margin-bottom: 8px; font-size: 15px; }
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.blog-content table th,
.blog-content table td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
}
.blog-content table th {
  background: var(--color-bg-alt);
  font-weight: 700;
}
.blog-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-bg-alt);
  font-style: italic;
  color: var(--color-text-muted);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}
.blog-author__name { font-weight: 700; color: var(--color-heading); }
.blog-author__role { font-size: 13px; color: var(--color-text-muted); }

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--color-primary);
  color: #fff;
}
.footer__social svg { width: 16px; height: 16px; }

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer ul a:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__legal {
  display: flex;
  gap: 16px;
}
.footer__legal a { color: rgba(255,255,255,0.45); }
.footer__legal a:hover { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* --- Image Placeholders --- */
.img-placeholder {
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 600;
  min-height: 200px;
}
.img-real { opacity: 1; }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  z-index: 90;
}
.scroll-top:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.scroll-top.visible { display: flex; }
.scroll-top svg { width: 20px; height: 20px; }

/* --- Responsive Typography --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }
  .hero--home { padding: 80px 0 64px; min-height: auto; }
  .hero--home h1 { font-size: 2.25rem; }
  .hero--inner { padding: 56px 0 40px; }
  .hero--inner h1 { font-size: 1.875rem; }
  .section { padding: var(--section-padding-sm) 0; }
  .stats { gap: 24px; }
  .stat__number { font-size: 2.25rem; }
  .trust-bar .container { gap: 20px; }
  .trust-item { font-size: 13px; }
}

/* --- Print Styles --- */
@media print {
  .header, .footer, .utility-bar, .scroll-top, .nav-toggle, .mobile-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .hero { padding: 20px 0; background: none !important; color: #000; }
  .hero::before { display: none; }
  .section { padding: 20px 0; }
}

/* --- Area/Team Cards --- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.area-link {
  display: block;
  padding: 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-heading);
  transition: all var(--transition);
}
.area-link:hover { border-color: var(--color-primary); color: var(--color-primary); background: #fff; }

.team-card {
  text-align: center;
}
.team-card__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--color-border-light);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { font-size: 14px; color: var(--color-primary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--color-text-muted); }

/* --- Misc Utilities --- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
