/* ===================================================================
   Lifecycle Outdoor Services — Design System
   Vibe: premium-luxury | Colors: forest green + red accent
   Fonts: Outfit (headings) + Inter (body)
   =================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #2E5E3F;
  --color-primary-dark: #1D3D29;
  --color-primary-light: #3A7A52;
  --color-secondary: #C4392D;
  --color-secondary-dark: #9E2E24;
  --color-accent: #C4955A;
  --color-bg: #FAFAF7;
  --color-bg-dark: #0F1A13;
  --color-bg-card: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #FFFFFF;
  --color-text-muted: #6B7280;
  --color-border: #E2E2DD;
  --color-border-dark: #2A2A2A;
  --color-success: #16A34A;
  --color-error: #DC2626;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --spacing-section: 80px;
  --spacing-section-sm: 56px;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s 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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--color-text-light); }
.lead { font-size: 1.125rem; line-height: 1.8; color: var(--color-text-muted); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }
section { padding: var(--spacing-section) 0; }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-text-light); }
.section--dark .section-label { color: var(--color-accent); }
.section--dark .section-subtitle, .section--dark .muted, .section--dark .lead { color: rgba(255,255,255,0.7); }
.section--alt { background: #F3F3EE; }
.section--primary {
  background: var(--color-primary);
  color: var(--color-text-light);
}
.section--primary h2, .section--primary h3 { color: var(--color-text-light); }
.section--primary .section-label { color: var(--color-accent); }

/* --- Grid System --- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }
.grid--1-2 { grid-template-columns: 1fr 2fr; }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
}
.btn--primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--header-height);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
}
.header__logo img { height: 44px; width: auto; }
.header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: 48px; }
.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.header__logo-text span { display: block; font-weight: 400; font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav a {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.header__nav a:hover, .header__nav a.active { color: var(--color-primary); background: rgba(46,94,63,0.06); }
.header__actions { display: flex; align-items: center; gap: 24px; }
.header__phone {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__phone:hover { color: var(--color-primary); }
.header__phone svg { width: 16px; height: 16px; }
.header__cta { padding: 10px 24px; }
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  padding: 80px 0 64px;
  background: var(--color-bg-dark);
}
.hero--home {
  min-height: 640px;
  align-items: center;
  padding: 100px 0 80px;
}
.hero--inner {
  min-height: 340px;
  padding: 60px 0 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,19,0.88) 0%, rgba(15,26,19,0.55) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 700;
  max-width: 720px;
  margin-bottom: 20px;
}
.hero--inner h1 { font-size: 2.5rem; margin-bottom: 16px; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero .section-label { color: var(--color-accent); }
.hero .btn-group { margin-top: 8px; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: rgba(255,255,255,0.8); }
/* breadcrumbs on light backgrounds (blog articles, legal pages) */
.breadcrumbs--light { margin: 24px 0; }
.breadcrumbs--light a { color: var(--color-primary); }
.breadcrumbs--light a:hover { color: var(--color-primary-dark); }
.breadcrumbs--light span { color: var(--color-text-muted); }
.breadcrumbs--light .current { color: var(--color-text); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-primary);
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}
.trust-bar__item svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-bar__item strong { color: #fff; }

/* --- Cards --- */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 24px; }
.card__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card__body p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: 16px; }
.card__link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link:hover { gap: 10px; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }

/* --- Service Cards (flat style) --- */
.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); }
.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,94,63,0.08);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--color-primary);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.service-card p { color: var(--color-text-muted); font-size: 0.9375rem; }

/* --- Stats --- */
.stats { display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; text-align: center; }
.stat { flex: 1; min-width: 160px; }
.stat__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
.section--alt .stat__label { color: var(--color-text-muted); }
.section--alt .stat__number { color: var(--color-primary); }

/* --- Testimonials --- */
.testimonial {
  padding: 40px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
}
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 16px; color: #F59E0B; }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial__name { font-weight: 600; font-size: 0.9375rem; }
.testimonial__source { font-size: 0.8125rem; color: var(--color-text-muted); }

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__answer.open { max-height: 600px; }
.faq-item__answer-inner {
  padding: 0 0 24px;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
}
.faq-item__answer-inner p { margin-bottom: 12px; }
.faq-item__answer-inner p:last-child { margin-bottom: 0; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  font-size: 0.9375rem;
  transition: border-color 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(46,94,63,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

/* --- Image Placeholders --- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8E8E3 0%, #D4D4CF 100%);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.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; }

/* --- Gallery / Project Tabs --- */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.gallery-filter {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.gallery-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gallery-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(15,26,19,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  z-index: 2;
}
.project-card__body { padding: 24px; }
.project-card__body h3 { font-size: 1.125rem; margin-bottom: 6px; color: var(--color-text); }
.project-card__location {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.project-card__location svg { width: 14px; height: 14px; }
.project-card__scope {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-card__meta { display: flex; gap: 16px; flex-wrap: wrap; }
.project-card__tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(46,94,63,0.08);
  color: var(--color-primary);
  font-weight: 500;
}

/* --- Project Detail Modal / Lightbox --- */
.project-detail {
  display: none;
  padding: 48px 0;
}
.project-detail.active { display: block; }
.project-detail__header { margin-bottom: 32px; }
.project-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.project-detail__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition);
}
.project-detail__grid img:hover { transform: scale(1.02); }
.project-detail__info { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.project-detail__info-item h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 8px; }
.project-detail__info-item p { font-size: 0.9375rem; }

/* --- Content Sections --- */
.content-section { padding: var(--spacing-section) 0; }
.content-section h2 { margin-bottom: 24px; }
.content-section h3 { margin-top: 32px; margin-bottom: 12px; }
.content-section p { margin-bottom: 16px; max-width: 800px; }
.content-section ul, .content-section ol {
  margin: 16px 0;
  padding-left: 24px;
}
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section li {
  margin-bottom: 8px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Two Column Content --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--color-bg-dark);
  padding: var(--spacing-section) 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 32px; font-size: 1.125rem; }

/* --- Area Page Map Grid --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.area-card {
  padding: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
}
.area-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}
.area-card h3 { font-size: 1rem; margin-bottom: 4px; }
.area-card p { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }

/* --- Blog --- */
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card:hover { color: inherit; }
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--color-primary); }
.blog-card__excerpt { font-size: 0.9375rem; color: var(--color-text-muted); }

/* blog article body */
.article-header { margin-bottom: 40px; }
.article-header h1 { font-size: 2.25rem; margin-bottom: 16px; }
.article-meta { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 24px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-body h2 { margin-top: 40px; margin-bottom: 16px; }
.article-body h3 { margin-top: 32px; margin-bottom: 12px; }
.article-body p { max-width: none; }
.article-body img { border-radius: var(--radius-lg); margin: 24px 0; }

/* --- Process Steps --- */
.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 48px;
  line-height: 1;
}
.process-step h3 { font-size: 1.125rem; margin-bottom: 8px; }
.process-step p { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0; }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; margin: 24px 0; }
.checklist li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--color-text);
  font-size: 0.9375rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' 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/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* --- Thanks Message (form success) --- */
.thanks-msg {
  text-align: center;
  padding: 48px 24px;
  background: rgba(46,94,63,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46,94,63,0.15);
}
.thanks-msg h2 { color: var(--color-primary); margin-bottom: 12px; }
.thanks-msg p { color: var(--color-text-muted); }

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { font-size: 0.9375rem; line-height: 1.7; margin: 16px 0; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.footer__social a svg { width: 18px; height: 18px; }
.footer h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; transition: color var(--transition); }
.footer ul a:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent); }
.footer__contact-item a { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* --- Mobile Navigation Overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,26,19,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 24px;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

/* --- Floating Phone Button --- */
.float-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform var(--transition), background var(--transition);
}
.float-phone:hover { transform: scale(1.08); background: var(--color-secondary-dark); color: #fff; }
.float-phone svg { width: 24px; height: 24px; }

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Print --- */
@media print {
  .header, .footer, .float-phone, .mobile-nav, .trust-bar { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  section { padding: 16px 0; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
  :root { --spacing-section: 64px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero--inner h1 { font-size: 2rem; }
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2-1, .grid--1-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__toggle { display: flex; }
  .project-detail__info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --spacing-section: 48px; --header-height: 64px; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  .hero { min-height: 400px; padding: 48px 0; }
  .hero--home { min-height: 480px; padding: 64px 0; }
  .hero--inner { min-height: 260px; }
  .hero h1 { font-size: 2rem; }
  .hero--inner h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; font-size: 0.875rem; }
  .btn--lg { padding: 14px 28px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .trust-bar .container { gap: 16px; justify-content: center; }
  .trust-bar__item { font-size: 0.8125rem; }
  .stats { gap: 24px; }
  .stat__number { font-size: 2.25rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .project-detail__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  h1 { font-size: 1.625rem; }
  .hero h1 { font-size: 1.625rem; }
  .hero--inner h1 { font-size: 1.5rem; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .project-detail__grid { grid-template-columns: 1fr; }
}
