/* ============================================================
   HOUND DOG LANDSCAPING — Design System
   Industrial-Rugged | Dark Navy (#1A222F) + Orange (#FB7A38)
   Fonts: Oswald (headings) + Lato (body)
   Friendlier tone with rugged visual aesthetic
   ============================================================ */

:root {
  /* Brand Colors */
  --color-primary: #1A222F;
  --color-primary-dark: #111821;
  --color-primary-light: #e8eaed;
  --color-accent: #FB7A38;
  --color-accent-dark: #e06420;
  --color-accent-light: #fff3eb;
  --color-secondary: #27312F;
  --color-white: #ffffff;
  --color-black: #111111;

  /* Neutral Palette */
  --color-bg: #ffffff;
  --color-bg-alt: #F6F6F6;
  --color-bg-dark: #1A222F;
  --color-bg-darker: #111821;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-text-muted: #888888;
  --color-text-on-dark: #ffffff;
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;

  /* Status */
  --color-success: #28a745;
  --color-error: #dc3545;

  /* Typography */
  --font-heading: 'Oswald', system-ui, -apple-system, sans-serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(2.5rem, 6vw, 4rem);
  --fs-h1: clamp(2rem, 4.5vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2rem);
  --fs-h3: clamp(1.1rem, 2.5vw, 1.375rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;
  --lh-heading: 1.2;
  --lh-body: 1.7;

  /* Spacing */
  --section-padding: clamp(2.5rem, 5vw, 4rem);
  --container-max: 1200px;
  --gap: 1.25rem;

  /* Design Tokens — Industrial-Rugged */
  --radius: 2px;
  --radius-lg: 4px;
  --shadow: none;
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--color-accent); color: #fff;
  padding: 0.75rem 1.5rem; z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-padding) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark .card h3, .section-dark .card h4 { color: var(--color-text); }
.section-dark .color-muted { color: #aaa; }
.section-dark a { color: var(--color-accent); }
.section-accent { background: var(--color-accent); color: var(--color-white); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: var(--fs-h1); margin-bottom: 0.75rem; }
h2 { font-size: var(--fs-h2); margin-bottom: 0.5rem; }
h3 { font-size: var(--fs-h3); margin-bottom: 0.375rem; }
p { margin-bottom: 0.75rem; }
.lead { font-size: 1.125rem; color: var(--color-text-light); line-height: 1.7; }
.color-primary { color: var(--color-primary); }
.color-accent { color: var(--color-accent); }
.color-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}
.section-dark .section-label { color: var(--color-accent); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-bg-darker);
  color: var(--color-text-on-dark);
  font-size: var(--fs-xs);
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: var(--color-text-on-dark); }
.top-bar a:hover { color: var(--color-accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar-right a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
.top-bar-right svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo img { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 0.125rem; }
.nav a {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: inline-flex; align-items: center; gap: 0.25rem;
  min-height: 48px;
}
.nav a:hover, .nav a.active {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: 0.625rem 1.25rem !important;
}
.nav-cta:hover { background: var(--color-accent-dark) !important; }
.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--fs-small);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.header-phone:hover { color: var(--color-accent); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 100;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 0;
  min-height: 44px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--color-bg-alt); }
.dropdown-arrow { font-size: 0.65em; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
/* Areas dropdown — narrower since city names are shorter */
.nav-dropdown + .nav-dropdown .nav-dropdown-menu { min-width: 170px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  transition: var(--transition);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: var(--fs-xs);
  color: #999;
  margin-bottom: 0.75rem;
}
.breadcrumbs a { color: #ccc; }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .current { color: #bbb; }
.hero .breadcrumbs { color: rgba(255,255,255,0.6); }
.hero .breadcrumbs a { color: rgba(255,255,255,0.8); }
.hero .breadcrumbs a:hover { color: var(--color-accent); }
.hero .breadcrumbs .current { color: rgba(255,255,255,0.5); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--dark:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-small); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-white);
  max-width: 720px;
  text-transform: uppercase;
}
.hero .lead { color: #ccc; max-width: 600px; margin-bottom: 1.5rem; font-size: 1.125rem; }
.hero .btn-group { margin-top: 1.25rem; }

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-accent); }
.hero-stat .stat-label { font-size: var(--fs-xs); color: #aaa; text-transform: uppercase; letter-spacing: 0.08em; }

/* Inner page hero */
.hero--inner {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.hero--inner h1 { margin-bottom: 0.5rem; }
.hero--inner .lead { margin-bottom: 1rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.card-body { padding: 1.25rem; }
.card-img {
  aspect-ratio: 16/10;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }

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

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card .card-body h3 { margin-bottom: 0.375rem; }
.service-card .card-body p { color: var(--color-text-light); font-size: var(--fs-small); margin-bottom: 0.625rem; }
.service-card .card-link {
  font-family: var(--font-heading);
  font-weight: 600; font-size: var(--fs-small);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.service-card .card-link:hover { gap: 0.6rem; }

/* ============================================================
   TWO-COLUMN LAYOUTS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.split--reverse .split-img { order: -1; }
.split-content { max-width: 540px; }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
  padding: 1.5rem 2.5rem;
  border: 1px solid var(--color-border);
  flex: 1;
  min-width: 200px;
}
.stat-box .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}
.stat-box .stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.section-dark .stat-box { border-color: rgba(255,255,255,0.15); }
.section-dark .stat-box .stat-label { color: #aaa; }

/* ============================================================
   CHECKLIST (service details)
   ============================================================ */
.checklist { margin: 1rem 0; }
.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-text);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}
.checklist li strong { font-weight: 700; color: var(--color-primary); }
.section-dark .checklist li { color: #ccc; }
.section-dark .checklist li strong { color: var(--color-white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
}
.testimonial-stars { color: #f59e0b; font-size: 1.125rem; margin-bottom: 0.5rem; }
.testimonial-text { font-style: italic; color: var(--color-text-light); margin-bottom: 0.75rem; line-height: 1.7; }
.testimonial-author { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-small); text-transform: uppercase; }
.testimonial-meta { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  min-height: 48px;
  gap: 1rem;
}
.faq-item__question:hover { color: var(--color-accent); }
.faq-item__icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
  color: var(--color-accent);
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer-inner {
  padding-bottom: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
  color: var(--color-primary);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--fs-body);
  transition: border-color var(--transition);
  min-height: 48px;
  background: var(--color-white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-textarea { min-height: 120px; resize: vertical; }
.contact-form {
  background: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
}
.thanks-msg {
  text-align: center;
  padding: 2rem;
}
.thanks-msg h2 { color: var(--color-accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--color-white); }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.25rem; }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  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); }

/* ============================================================
   REVIEW AGGREGATE
   ============================================================ */
.review-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-accent);
  margin-bottom: 2rem;
}
.review-summary .rating-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.review-summary .rating-stars { color: #f59e0b; font-size: 1.5rem; }
.review-summary .rating-count { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ============================================================
   IMAGE PLACEHOLDER SYSTEM
   ============================================================ */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.img-placeholder span { padding: 1rem; text-align: center; }
.img-real {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card .card-body { padding: 1.25rem; }
.blog-card .blog-date { font-size: var(--fs-xs); color: var(--color-text-muted); margin-bottom: 0.375rem; }
.blog-card h3 { font-size: var(--fs-h3); }
.blog-card h3 a { color: var(--color-primary); }
.blog-card h3 a:hover { color: var(--color-accent); }
.blog-card .blog-excerpt { font-size: var(--fs-small); color: var(--color-text-light); }

.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { margin-top: 2rem; }
.article-content h3 { margin-top: 1.5rem; }
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin: 0.75rem 0 1rem 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.375rem; color: var(--color-text-light); }
.article-meta { font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: 1.5rem; }
.article-meta strong { color: var(--color-text); }
.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  border: 1px solid var(--color-border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-secondary);
  color: #ccc;
  padding: 2.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.footer__brand p { font-size: var(--fs-small); margin-bottom: 0.5rem; }
.footer__brand .logo img { height: 48px; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.footer__social { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  color: #ccc;
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--color-accent); }
.footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.footer ul li { margin-bottom: 0; }
.footer a {
  color: #ccc;
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.footer a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1.5rem;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: #888;
}
.footer__legal { display: flex; gap: 1rem; }
.footer__legal a { font-size: var(--fs-xs); min-height: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); border-bottom: 2px solid var(--color-border); padding: 0.5rem 1rem; z-index: 999; }
  .nav.open { display: flex; }
  .nav a { width: 100%; justify-content: flex-start; border-radius: 0; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    min-width: auto;
  }
  .nav-dropdown-menu a { padding: 0.5rem 0.75rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-img { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.25rem; }
  .stats-bar { flex-direction: column; }
  .stat-box { border-bottom: 1px solid var(--color-border); }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

/* ============================================================
   UTILITY — PHONE BAR (mobile sticky)
   ============================================================ */
.phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 0.75rem;
  z-index: 999;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-bar a { color: var(--color-white); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.phone-bar svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 768px) { .phone-bar { display: block; } body { padding-bottom: 56px; } }
