/* ==========================================================================
   Mr. Evergreen — Home & Land Services
   Shared design system: tokens, layout primitives, components
   ========================================================================== */

:root {
  /* Backgrounds */
  --bg-base: #0a0f0c;
  --bg-raised: #10171d;
  --bg-surface: #131e18;
  --bg-surface-2: #182a20;
  --bg-elevated: #1b2f24;

  /* Forest greens (from logo) */
  --forest-950: #081611;
  --forest-900: #0d2318;
  --forest-800: #123420;
  --forest-700: #1a4a2c;
  --forest-600: #256339;
  --forest-500: #327f47;
  --forest-400: #4a9c5c;

  /* Gold / amber accent */
  --gold-300: #f0d38a;
  --gold-400: #e0bb6a;
  --gold-500: #c9a24a;
  --gold-600: #a8823a;

  /* Text */
  --text-primary: #f4f1e8;
  --text-secondary: #cdd3cb;
  --text-muted: #8d988f;
  --text-on-gold: #14201a;

  /* Borders / lines */
  --line-soft: rgba(244, 241, 232, 0.08);
  --line-med: rgba(244, 241, 232, 0.14);
  --line-gold: rgba(201, 162, 74, 0.35);

  /* Shadows */
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-gold-glow: 0 0 0 1px rgba(201, 162, 74, 0.25), 0 12px 40px rgba(201, 162, 74, 0.08);

  /* Type */
  --font-display: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.18;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
}

/* Background texture: subtle radial glow + grain-free vignette */
.bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(50, 127, 71, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(201, 162, 74, 0.08), transparent 60%);
  z-index: 0;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--text-on-gold);
  box-shadow: 0 10px 30px rgba(201, 162, 74, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201, 162, 74, 0.35); }

.btn-outline {
  background: transparent;
  border-color: var(--line-med);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-300); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(244,241,232,0.06);
  color: var(--text-primary);
  border-color: var(--line-soft);
}
.btn-ghost:hover { background: rgba(244,241,232,0.1); }

.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------------- Nav ---------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8, 13, 10, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.is-scrolled {
  background: rgba(8, 13, 10, 0.86);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-word span { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--gold-400); text-transform: uppercase; font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--gold-400); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.92rem;
}
.nav-phone svg { color: var(--gold-400); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-med);
  background: rgba(244,241,232,0.1);
  color: var(--gold-400);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle:hover { background: rgba(244,241,232,0.16); border-color: var(--line-gold); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.4; }

.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(6, 10, 8, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-panel a {
  padding: 16px 4px;
  font-size: 1.15rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
}
.mobile-panel .btn { margin-top: 20px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 110px) 0 120px;
  overflow: hidden;
  background: var(--bg-base);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(244,241,232,0.05);
  border: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-badge svg { color: var(--gold-400); width: 16px; height: 16px; flex-shrink: 0; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero-art-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,12,0) 40%, rgba(8,12,10,0.85) 100%);
}
.hero-art-frame-logo {
  aspect-ratio: 5/6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
.hero-art-frame-logo .hero-art-logo {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
}
.hero-art-badge {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rating-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 16, 13, 0.75);
  border: 1px solid var(--line-med);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
}
.rating-chip .stars { color: var(--gold-400); letter-spacing: 2px; font-size: 0.85rem; }
.rating-chip small { display: block; color: var(--text-muted); font-size: 0.72rem; }
.rating-chip strong { color: var(--text-primary); font-size: 0.9rem; }

.floating-card {
  position: absolute;
  top: -22px; right: -18px;
  background: var(--bg-surface-2);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-gold-glow);
  z-index: 3;
  max-width: 210px;
}
.floating-card .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-400); }
.floating-card .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ---------------- Sections ---------------- */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-alt { background: var(--bg-surface); }
.section-line-top { border-top: 1px solid var(--line-soft); }

/* ---------------- Cards / Grids ---------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
  background: var(--bg-elevated);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--forest-700), var(--forest-900));
  border: 1px solid var(--line-gold);
  margin-bottom: 22px;
  color: var(--gold-400);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 0.85rem; font-weight: 600; color: var(--gold-400);
}

/* Bio / About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.stat .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--text-primary); }
.stat .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.quote-block {
  border-left: 2px solid var(--gold-500);
  padding-left: 22px;
  margin: 26px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); font-size: 0.96rem; }
.check-list svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }

/* Service summary tiles (home) */
.service-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
}
.service-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-tile:hover img { transform: scale(1.06); }
.service-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,10,0.05) 30%, rgba(6,10,8,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px;
}
.service-tile .eyebrow { margin-bottom: 10px; }
.service-tile h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-tile p { color: var(--text-secondary); font-size: 0.92rem; max-width: 380px; }
.service-tile .card-link { color: var(--gold-300); }

/* Process / steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-gold);
  display: block;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* Testimonial */
.testimonial-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-card .stars { color: var(--gold-400); letter-spacing: 4px; font-size: 1rem; margin-bottom: 22px; }
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.testimonial-card .attrib { margin-top: 26px; font-size: 0.85rem; color: var(--text-muted); }
.testimonial-card .attrib strong { color: var(--text-primary); }

/* CTA banner */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 72px 60px;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700) 60%, var(--forest-800));
  border: 1px solid var(--line-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 90% 0%, rgba(201,162,74,0.18), transparent 60%);
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--text-secondary); margin: 0 auto; max-width: 460px; }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-content .eyebrow { justify-content: center; }
.cta-banner .btn-row { position: relative; z-index: 1; justify-content: center; }

/* Quote request form */
.quote-form-wrap {
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--bg-surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.quote-form-head { margin-bottom: 28px; text-align: center; }
.quote-form-head .eyebrow { justify-content: center; }
.quote-form-head h3 { margin-bottom: 0; }
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-field input,
.form-field select,
.form-field textarea {
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-surface);
  border: 1px solid var(--line-med);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-primary);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-surface) inset;
  box-shadow: 0 0 0 1000px var(--bg-surface) inset;
  transition: background-color 9999s ease-in-out 0s;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a24a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field select option { background: var(--bg-surface); color: var(--text-primary); }
.cf-turnstile { margin: 6px 0 24px; display: flex; justify-content: center; }
.consent-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin: -6px 0 18px; }
.form-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.form-note { font-size: 0.88rem; }
.form-note-success { color: #7ecb96; }
.form-note-error { color: #e08a7d; }

/* Gallery (service detail pages) */
.filter-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(244,241,232,0.04);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--line-gold); color: var(--text-primary); }
.filter-btn.is-active {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--text-on-gold);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--line-soft);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(8,12,10,0.75);
  border: 1px solid var(--line-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(6,10,8,0.92));
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
.gallery-item[hidden] { display: none; }

/* Service detail block */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}
.service-detail:first-of-type { border-top: none; }
.service-detail.reverse .service-detail-media { order: 2; }
.service-detail-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-num {
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px var(--line-gold);
  font-size: 3rem;
  margin-bottom: 6px;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--gold-400); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}
.faq-q h3 { margin: 0; font-size: 1.08rem; }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  color: var(--gold-400);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: rgba(201,162,74,0.12); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.faq-item.is-open .faq-a { max-height: 240px; margin-top: 16px; }

/* Footer */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--line-soft);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand img { height: 58px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.footer-col a, .footer-col li {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { color: var(--gold-400); width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  min-height: 38px;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  max-width: 100%;
}
.footer-social a svg { flex-shrink: 0; }
@media (max-width: 360px) {
  .footer-social a { white-space: normal; border-radius: var(--radius-sm); align-items: flex-start; }
}
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold-400); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px 16px;
  background: rgba(8,13,10,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-soft);
  gap: 10px;
}
.mobile-call-bar .btn { flex: 1; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: 100%; max-width: 420px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; padding: 60px 0; }
  .service-detail.reverse .service-detail-media { order: 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-bar { display: flex; }
  .brand-word span { display: none; }
  body { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-banner { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
  .floating-card { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-word { font-size: 1rem; }
  .brand img { height: 42px; }
  .hero-art-badge { flex-direction: column; align-items: center; }
  .quote-form-wrap { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 12px; }
  .stat .num { font-size: 1.6rem; }
  .stat .lbl { font-size: 0.74rem; }
  .form-actions { justify-content: center; text-align: center; }
  .form-actions .btn { width: 100%; }
}
