/* ============================================================
   BLOOM & STONE OUTDOOR DESIGNS — Design System
   Warm-Trustworthy | Beige #DFCFC3 + Sage #6B7F5E + Charcoal #2F2F2F
   Fonts: Lora (headings) + Nunito (body) — professional-serif
   Google Fonts: Lora:wght@400;500;600;700 and Nunito:wght@400;600;700
   ============================================================ */

:root {
  /* Brand Colors */
  --color-primary: #DFCFC3;
  --color-primary-dark: #C9B5A6;
  --color-primary-light: #EDE6E0;
  --color-secondary: #6B7F5E;
  --color-secondary-dark: #566A4B;
  --color-secondary-light: #7E9470;
  --color-tertiary: #2F2F2F;
  --color-accent: #C8963E;
  --color-accent-dark: #B07E2E;
  --color-accent-light: #D4A95A;
  --color-white: #ffffff;
  --color-black: #1a1a1a;

  /* Neutral Palette (warm tint) */
  --color-bg: #FAFAF7;
  --color-bg-alt: #F5F0EB;
  --color-bg-warm: #EDE6E0;
  --color-bg-dark: #2F2F2F;
  --color-text: #2F2F2F;
  --color-text-light: #555555;
  --color-text-muted: #6B6B6B;
  --color-text-on-dark: #FAFAF7;
  --color-border: #E5DDD5;
  --color-border-light: #F0EAE3;

  /* Status */
  --color-success: #6B7F5E;
  --color-error: #C2534D;

  /* Typography */
  --font-heading: 'Lora', 'Georgia', serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(2.25rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.85rem, 4vw, 2.5rem);
  --fs-h2: clamp(1.4rem, 3vw, 1.875rem);
  --fs-h3: clamp(1.1rem, 2.5vw, 1.375rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;
  --lh-heading: 1.3;
  --lh-body: 1.7;

  /* Spacing */
  --spacing-section: 80px;
  --section-padding: clamp(3rem, 6vw, 5rem);
  --container-max: 1200px;
  --max-width: 1200px;
  --gap: 1.5rem;

  /* Design Tokens (warm-trustworthy) */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(47,47,47,0.08);
  --shadow-md: 0 6px 28px rgba(47,47,47,0.1);
  --shadow-lg: 0 10px 40px rgba(47,47,47,0.12);
  --shadow-soft: 0 2px 12px rgba(47,47,47,0.05);
  --transition: 0.3s ease;
  --header-height: 90px;
}


/* ============================================================
   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;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }


/* ============================================================
   ACCESSIBILITY — Skip Link
   ============================================================ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-secondary); color: var(--color-white);
  padding: 0.75rem 1.5rem; z-index: 9999;
  font-weight: 700; border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; color: var(--color-white); }


/* ============================================================
   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-alt { background: var(--color-bg-alt); }
.section-warm { background: var(--color-bg-warm); }
.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 p { color: rgba(250,250,247,0.85); }
.section-dark .section-label { color: var(--color-primary); }
.section-dark .muted { color: rgba(250,250,247,0.6); }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--color-tertiary);
}
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; }
h4 { font-size: var(--fs-h4); margin-bottom: 0.375rem; }
p { margin-bottom: 0.875rem; color: var(--color-text-light); }
strong { font-weight: 700; color: var(--color-text); }
.lead { font-size: var(--fs-lg); color: var(--color-text-light); line-height: 1.8; }
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Spacing Utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }


/* ============================================================
   GRID SYSTEM
   ============================================================ */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

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

.split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(250,250,247,0.98);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-brand { display: flex; align-items: center; gap: 0.75rem; }
.logo { height: 72px; width: auto; }

.nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 0.125rem; align-items: center; }
.nav-link {
  padding: 0.5rem 0.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary);
  background: rgba(107,127,94,0.08);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > .nav-link::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition);
}
.nav-dropdown:hover > .nav-link::after,
.nav-dropdown:focus-within > .nav-link::after {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 1001;
}
.nav-dropdown:hover > .nav-dropdown__menu,
.nav-dropdown:focus-within > .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown__menu a:hover {
  color: var(--color-secondary);
  background: rgba(107,127,94,0.06);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions--mobile { display: none; }
.header-phone {
  font-weight: 700;
  color: var(--color-tertiary);
  font-size: var(--fs-small);
  white-space: nowrap;
}
.header-phone:hover { color: var(--color-secondary); }

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: transparent;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--color-tertiary);
  position: relative;
  transition: background var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute;
  width: 22px; height: 2px;
  background: var(--color-tertiary);
  transition: transform var(--transition), top var(--transition);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 48px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn--primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn--outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-xs); min-height: 40px; }
.btn--lg { padding: 1rem 2.5rem; font-size: var(--fs-body); }
.btn--full { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  background: var(--color-tertiary);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* Gradient overlay for readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47,47,47,0.75) 0%,
    rgba(47,47,47,0.45) 50%,
    rgba(107,127,94,0.25) 100%
  );
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero .breadcrumbs { margin-bottom: 1rem; }
.hero .section-label {
  color: var(--color-primary);
  font-size: var(--fs-xs);
}

.hero h1 {
  color: var(--color-white);
  font-size: var(--fs-hero);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero p {
  color: rgba(250,250,247,0.9);
  font-size: var(--fs-lg);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.8;
}

/* Inner page hero — shorter, left-aligned */
.hero--inner {
  min-height: auto;
  padding: 5rem 0 3.5rem;
}
.hero--inner::after {
  background: linear-gradient(
    135deg,
    rgba(47,47,47,0.8) 0%,
    rgba(47,47,47,0.5) 60%,
    rgba(107,127,94,0.3) 100%
  );
}

/* Hero badges (trust indicators in hero) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: var(--fs-small);
  font-weight: 600;
}
.hero-badge svg { width: 18px; height: 18px; flex-shrink: 0; }


/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--color-secondary); }
.breadcrumbs .current { color: var(--color-text); font-weight: 600; }
.breadcrumbs span { margin: 0 0.4rem; }

/* White breadcrumbs inside hero */
.hero .breadcrumbs { color: rgba(250,250,247,0.7); }
.hero .breadcrumbs a { color: rgba(250,250,247,0.7); }
.hero .breadcrumbs a:hover { color: var(--color-white); }
.hero .breadcrumbs .current { color: var(--color-white); }


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  white-space: nowrap;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.3;
}
.trust-bar__item svg {
  width: 28px; height: 28px;
  color: var(--color-secondary);
  flex-shrink: 0;
}


/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__content {
  padding: 1.5rem;
}
.card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--color-secondary);
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-tertiary);
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Card with link styling */
a.card { text-decoration: none; color: inherit; }
a.card .card__title { transition: color var(--transition); }
a.card:hover .card__title { color: var(--color-secondary); }

/* Team card variant */
.card--team .card-img { height: 280px; }
.card--team .card__content { text-align: center; }
.card--team .card__role {
  font-size: var(--fs-small);
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-primary);
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-card p {
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-card .author {
  font-weight: 700;
  color: var(--color-text);
  font-style: normal;
  font-size: var(--fs-small);
}
.testimonial-card .author span {
  font-weight: 400;
  color: var(--color-text-muted);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.stars svg { width: 18px; height: 18px; fill: currentColor; }


/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}
.process-step + .process-step {
  border-top: 1px solid var(--color-border-light);
}

.process-step__number {
  width: 52px; height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.process-step__content h3 {
  margin-bottom: 0.375rem;
}
.process-step__content p {
  margin-bottom: 0;
}

/* Horizontal process steps (desktop) */
@media (min-width: 768px) {
  .process-steps--horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .process-steps--horizontal .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: none;
    padding: 0;
  }
  .process-steps--horizontal .process-step + .process-step { border-top: none; }
}


/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}
.badge--accent {
  background: rgba(200,150,62,0.1);
  color: var(--color-accent-dark);
  border-color: rgba(200,150,62,0.2);
}


/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(107,127,94,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Checkbox / A2P SMS Consent */
.sms-consent {
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
}
.sms-consent__label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.sms-consent__label input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--color-secondary);
}

/* Thank you message (hidden until form submit) */
.thanks-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}
.thanks-msg h3 { color: var(--color-secondary); margin-bottom: 0.75rem; }
.thanks-msg.visible { display: block; }


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-soft); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-secondary); }

.faq-item__icon {
  width: 24px; height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-secondary);
  transition: transform 0.25s ease;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item__answer p {
  padding-bottom: 1.25rem;
  line-height: 1.8;
}

/* Active / expanded state */
.faq-item.active { box-shadow: var(--shadow); }
.faq-item.active .faq-item__question { color: var(--color-secondary); }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item.active .faq-item__answer {
  max-height: 600px;
  padding: 0 1.5rem;
}


/* ============================================================
   GALLERY / PORTFOLIO GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid img { height: 300px; }
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(86,106,75,0.95) 0%, rgba(107,127,94,0.85) 100%);
  z-index: 1;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 2rem; }
.cta-banner .btn { margin: 0 0.4rem; }

/* CTA banner with background image */
.cta-banner--image { background-size: cover; background-position: center; }
.cta-banner--image::before {
  background: linear-gradient(135deg, rgba(47,47,47,0.85) 0%, rgba(107,127,94,0.7) 100%);
}


/* ============================================================
   IMAGE HANDLING (lazy load / placeholder)
   ============================================================ */
.img-placeholder {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  min-height: 200px;
  border-radius: var(--radius);
}

.img-real {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.img-real.loaded {
  opacity: 1;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer__brand p {
  color: rgba(250,250,247,0.7);
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 320px;
}
.footer__brand .logo { height: 48px; margin-bottom: 1rem; }

.footer h4 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a {
  color: rgba(250,250,247,0.7);
  font-size: var(--fs-small);
  transition: color var(--transition), padding-left var(--transition);
}
.footer ul li a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--color-text-on-dark);
  transition: background var(--transition), transform 0.2s;
}
.footer__social a:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  color: var(--color-white);
}
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: var(--fs-xs);
  color: rgba(250,250,247,0.5);
}
.footer__legal a {
  color: rgba(250,250,247,0.5);
}
.footer__legal a:hover {
  color: var(--color-primary);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   MISCELLANEOUS COMPONENTS
   ============================================================ */

/* Feature list with checkmarks */
.feature-list { margin: 1rem 0; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  font-size: var(--fs-body);
  color: var(--color-text-light);
}
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: var(--color-secondary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23fff' fill='none' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Content section with image beside text */
.content-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.content-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .content-media { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .content-media--reverse > :first-child { order: 2; }
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

/* Blog post meta */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.post-meta svg { width: 16px; height: 16px; margin-right: 0.25rem; }

/* Blockquote */
blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-text);
  font-size: var(--fs-lg);
  line-height: 1.6;
}
blockquote p { color: var(--color-text); margin-bottom: 0; }

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-small);
}
th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
th {
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-bg-alt);
  font-family: var(--font-body);
}
td { color: var(--color-text-light); }
tr:hover td { background: var(--color-bg-alt); }

/* Ordered/Unordered lists in content */
.content-body ul, .content-body ol { margin: 1rem 0 1rem 1.5rem; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  line-height: 1.7;
}


/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */

/* --- Mobile (< 768px) --- */
@media (max-width: 767px) {
  .header-inner { height: 72px; }
  .logo { height: 56px; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .nav-link {
    font-size: 1.125rem;
    padding: 0.85rem 1.5rem;
  }

  /* Flatten dropdown on mobile */
  .nav-dropdown > .nav-link::after { display: none; }
  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: auto;
  }
  .nav-dropdown__menu a {
    font-size: 1rem;
    padding: 0.6rem 2rem;
    color: var(--color-text-muted);
  }

  .header-actions { display: none; }
  .header-actions--mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero {
    padding: 5rem 0 3.5rem;
    min-height: auto;
  }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .hero--inner { padding: 4rem 0 2.5rem; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  .trust-bar .container { gap: 1.25rem; justify-content: center; }

  .gallery-grid img { height: 220px; }

  .footer__grid { gap: 2rem; }
  .footer__legal {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Stack process steps vertically */
  .process-steps--horizontal .process-step {
    flex-direction: row;
    text-align: left;
  }
}


/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .hero { padding: 8rem 0 6rem; }
  .hero--inner { padding: 5.5rem 0 3.5rem; }
}


/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }

  .nav-toggle { display: none; }
  .nav { display: flex; }
  .header-actions { display: flex; }
}


/* --- Large (1200px+) --- */
@media (min-width: 1200px) {
  .container { padding: 0 1.5rem; }
}


/* ============================================================
   LIGHTBOX OVERLAY
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-overlay__close:hover { background: rgba(255,255,255,0.3); }


/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat { padding: 1.5rem; }
.stat__value {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: 600;
}
.section-dark .stat__value { color: var(--color-primary); }
.section-dark .stat__label { color: rgba(250,250,247,0.7); }


/* ============================================================
   AREA CARDS
   ============================================================ */
.area-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  text-decoration: none;
  color: var(--color-text);
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-secondary);
}
.area-card h3 { font-size: var(--fs-h3); margin-bottom: 0.25rem; transition: color var(--transition); }
.area-card:hover h3 { color: var(--color-secondary); }
.area-card p { font-size: var(--fs-small); margin-bottom: 0; color: var(--color-text-muted); }


/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; }
.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.blog-card__body h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.blog-card__body h3 a { color: var(--color-text); text-decoration: none; }
.blog-card__body h3 a:hover { color: var(--color-secondary); }
.blog-card__body p { font-size: var(--fs-small); margin-bottom: 0; }


/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  margin-top: 3rem;
}
.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}
.author-box__name { font-weight: 700; margin-bottom: 0.25rem; }
.author-box__bio { font-size: var(--fs-small); color: var(--color-text-muted); margin-bottom: 0; }


/* ============================================================
   MAP CONTAINER
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 400px; border: 0; }


/* ============================================================
   CONTACT GRID
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}


/* ============================================================
   ARTICLE BODY (blog posts)
   ============================================================ */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { margin-top: 2.5rem; font-size: var(--fs-h2); }
.article-body h3 { margin-top: 2rem; font-size: var(--fs-h3); }
.article-body p { font-size: var(--fs-lg); line-height: 1.8; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.25rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5rem; font-size: var(--fs-lg); color: var(--color-text-light); }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; }


/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .header, .footer, .skip-link, .btn, .nav-toggle,
  .cta-banner, .trust-bar { display: none !important; }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .hero {
    background: #fff !important;
    color: #000;
    padding: 2rem 0;
    min-height: auto;
  }
  .hero::after { display: none; }
  .hero h1, .hero p { color: #000; }
  .hero-bg { display: none; }

  .section { padding: 1.5rem 0; }
  .card { box-shadow: none; border: 1px solid #ddd; page-break-inside: avoid; }
  a { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
