/* ============================================================
   SKYSHINE — Brand Identity CSS
   Colors derived directly from logo: black/gold/grit/impact
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-black:        #0a0b0c;
  --color-surface:      #111314;
  --color-surface-2:    #181a1b;
  --color-surface-3:    #1e2122;
  --color-border:       rgba(245,192,0,0.18);
  --color-border-soft:  rgba(255,255,255,0.08);

  /* Gold — the primary brand accent */
  --color-gold:         #f5c000;
  --color-gold-bright:  #ffd100;
  --color-gold-dim:     #c9960a;
  --color-gold-glow:    rgba(245,192,0,0.15);
  --color-gold-glow-lg: rgba(245,192,0,0.08);

  /* Green — hydroseeding only */
  --color-green:        #3dba4e;
  --color-green-dim:    #2d9040;

  /* Text */
  --color-text:         #ffffff;
  --color-text-secondary: rgba(255,255,255,0.72);
  --color-text-muted:   rgba(255,255,255,0.42);

  /* Typography */
  --font-display: 'Clash Display', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Satoshi', 'Arial', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-hero: clamp(3rem, 7vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-xl:   14px;
  --radius-2xl:  20px;
  --radius-full: 9999px;

  /* Layout */
  --content-max: 1280px;
  --content-wide: 1400px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--color-black);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle hex texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-6l22-13V23L28 8 6 21v28l22 13z' fill='%23f5c000' fill-opacity='0.022'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}

/* ── Typography ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: uppercase;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 620px;
}

.section-header { margin-bottom: var(--space-10); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }
.section-header--center .section-eyebrow {
  justify-content: center;
  display: flex;
}
.section-header--center .section-eyebrow::before { display: none; }

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: var(--space-6) 0;
}
.gold-divider--center { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--color-gold), transparent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
  color: #000;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(245,192,0,0.35), 0 4px 12px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ffe040 0%, var(--color-gold-bright) 100%);
  box-shadow: 0 0 32px rgba(245,192,0,0.55), 0 6px 20px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(245,192,0,0.12);
}
.btn--outline:hover {
  background: var(--color-gold-glow);
  box-shadow: 0 0 24px rgba(245,192,0,0.3);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn--lg { padding: 1rem 2rem; font-size: var(--text-base); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,11,12,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav--scrolled {
  background: rgba(10,11,12,0.97);
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 24px rgba(245,192,0,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 3vw, var(--space-8));
  gap: var(--space-3);
}

/* ── Real Logo Image ──────────────────────────────────────────── */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo-sub {
  font-size: 9px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-shrink: 1;
}
.nav__links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: var(--space-2) 6px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-gold);
  background: var(--color-gold-glow);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.nav__actions .btn {
  padding: 0.6rem 1.1rem;
  font-size: 11px;
}
.nav__call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__call:hover { color: var(--color-gold-bright); }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-12));
  padding-bottom: var(--space-6);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  gap: var(--space-1);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,192,0,0.08);
}
.nav__mobile a:hover { color: var(--color-gold); }
.nav__mobile .btn { margin-top: var(--space-3); text-align: center; justify-content: center; }

@media (max-width: 1100px) { .nav__call { display: none; } }
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
}

/* Theme toggle */
.theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: transparent;
}
.theme-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, url('https://acropolis-wp-content-uploads.s3.us-west-1.amazonaws.com/construction-grading-hero.webp'));
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,11,12,0.55) 0%,
    rgba(10,11,12,0.35) 40%,
    rgba(10,11,12,0.75) 75%,
    rgba(10,11,12,0.95) 100%
  );
}
/* Gold edge glow on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold-bright) 50%, var(--color-gold) 70%, transparent 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(245,192,0,0.12);
  border: 1px solid rgba(245,192,0,0.35);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-6);
  max-width: 14ch;
}
.hero__title span { color: var(--color-gold); }
.hero__sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(245,192,0,0.2);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  font-weight: 600;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  min-height: clamp(320px, 45vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 72px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,11,12,0.5) 0%, rgba(10,11,12,0.8) 70%, rgba(10,11,12,1) 100%);
  z-index: 1;
}
.page-hero__overlay { display: none; }
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-4), 5vw, var(--space-12));
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
/* Gold bottom border on page hero */
.page-hero {
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, transparent, var(--color-gold) 30%, var(--color-gold-bright) 50%, var(--color-gold) 70%, transparent) 1;
}
.page-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Sections ─────────────────────────────────────────────── */
section { padding: clamp(var(--space-12), 7vw, var(--space-20)) 0; }
.bg-surface { background: var(--color-surface); }
.bg-surface-2 { background: var(--color-surface-2); }

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid rgba(245,192,0,0.12);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.35s;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,192,0,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(245,192,0,0.12);
}
.service-card__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,12,0.7) 0%, transparent 60%);
}
.service-card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
}
.service-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gold);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-4);
  transition: gap 0.2s;
}
.service-card:hover .service-card__arrow { gap: var(--space-3); }

/* ── Why Section ──────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-img { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.why-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245,192,0,0.2);
  pointer-events: none;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.why-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.why-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-gold-glow);
  border: 1px solid rgba(245,192,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.why-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.why-feature__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Reviews ──────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.review-card {
  background: var(--color-surface-2);
  border: 1px solid rgba(245,192,0,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(245,192,0,0.12);
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.review-stars span { color: var(--color-gold); font-size: var(--text-base); }
.review-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
}
.review-author {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.review-location {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-10);
}
.faq-item {
  background: var(--color-surface-2);
  border: 1px solid rgba(245,192,0,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.is-open {
  border-color: rgba(245,192,0,0.4);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
}
.faq-item.is-open .faq-question { color: var(--color-gold); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid rgba(245,192,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-gold-glow);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  padding: 0 var(--space-6) 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer-inner { padding-bottom: var(--space-6); }

/* ── Estimate Form ────────────────────────────────────────── */
.form-bg {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, #161810 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.form-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,192,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.estimate-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (max-width: 640px) { .estimate-form { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,192,0,0.2);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245,192,0,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-text-muted); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f5c000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-select option { background: var(--color-surface-2); color: var(--color-text); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Content Split ────────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
}
.content-split--reverse { direction: rtl; }
.content-split--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .content-split, .content-split--reverse { grid-template-columns: 1fr; direction: ltr; }
}
.content-split__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.content-split__img-wrap img {
  width: 100%;
  height: clamp(260px, 35vw, 440px);
  object-fit: cover;
  display: block;
}
.content-split__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245,192,0,0.18);
  pointer-events: none;
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid rgba(245,192,0,0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23f5c000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Contact Bar ──────────────────────────────────────────── */
.contact-bar {
  background: linear-gradient(135deg, #0f1000 0%, #191a00 50%, #0f1000 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-8), 5vw, var(--space-12)) 0;
  position: relative;
  overflow: hidden;
}
.contact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(245,192,0,0.06) 50%, transparent 100%);
}
.contact-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.contact-bar__text {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  max-width: 500px;
  line-height: 1.2;
}
.contact-bar__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ── Area Tags ────────────────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.area-tag {
  padding: var(--space-2) var(--space-4);
  background: rgba(245,192,0,0.08);
  border: 1px solid rgba(245,192,0,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(var(--space-12), 7vw, var(--space-20)) 0 var(--space-8);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 30%, var(--color-gold-bright) 50%, var(--color-gold) 70%, transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-10));
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 30%, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}
.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer__phone:hover { color: var(--color-gold-bright); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer__links a:hover { color: var(--color-gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(245,192,0,0.1);
}
.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ── Sticky CTA (mobile) ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: rgba(10,11,12,0.95);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}
.sticky-cta .btn { flex: 1; justify-content: center; font-size: var(--text-xs); }
@media (max-width: 768px) { .sticky-cta { display: flex; } }

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-img:hover img { transform: scale(1.06); }
.gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245,192,0,0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Gold Badge (inline callout) ──────────────────────────── */
.gold-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

/* ── Feature Grid (why/process cards) ────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.feature-card {
  background: var(--color-surface-2);
  border: 1px solid rgba(245,192,0,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: rgba(245,192,0,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(245,192,0,0.06);
}
.feature-card__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: rgba(245,192,0,0.25);
  line-height: 1;
  letter-spacing: -0.02em;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Dark callout band ────────────────────────────────────── */
.callout-band {
  background: linear-gradient(135deg, #0d0f00 0%, #111400 50%, #0d0f00 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(var(--space-12), 6vw, var(--space-16)) 0;
  position: relative;
  overflow: hidden;
}
.callout-band::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,192,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Process Step Marker ──────────────────────────────────── */
.step-num {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,192,0,0.35);
}

/* ── Light mode overrides ─────────────────────────────────── */
[data-theme="light"] {
  --color-black:        #f5f0e8;
  --color-surface:      #ede8df;
  --color-surface-2:    #e5dfd4;
  --color-surface-3:    #ddd6c8;
  --color-border:       rgba(180,130,0,0.25);
  --color-border-soft:  rgba(0,0,0,0.08);
  --color-gold:         #9a7200;
  --color-gold-bright:  #b38a00;
  --color-gold-dim:     #7a5c00;
  --color-gold-glow:    rgba(180,130,0,0.12);
  --color-gold-glow-lg: rgba(180,130,0,0.06);
  --color-text:         #1a1500;
  --color-text-secondary: rgba(26,21,0,0.72);
  --color-text-muted:   rgba(26,21,0,0.42);
}
[data-theme="light"] body::before { opacity: 0.4; }
[data-theme="light"] .nav__logo-text {
  background: linear-gradient(135deg, #1a1500 30%, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .hero__bg::after {
  background: linear-gradient(to bottom, rgba(245,240,232,0.45) 0%, rgba(245,240,232,0.25) 40%, rgba(245,240,232,0.65) 75%, rgba(245,240,232,0.92) 100%);
}
[data-theme="light"] .hero__title { color: #1a1500; }
[data-theme="light"] .hero__sub { color: rgba(26,21,0,0.75); }
[data-theme="light"] .page-hero__title { color: #fff; }
[data-theme="light"] .callout-band { background: linear-gradient(135deg, #ece7de 0%, #e8e2d5 100%); }
[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: rgba(0,0,0,0.04);
  color: var(--color-text);
  border-color: rgba(180,130,0,0.3);
}
[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder { color: var(--color-text-muted); }
[data-theme="light"] .form-select option { background: var(--color-surface-2); color: var(--color-text); }

/* ── Wall Photo Gallery ──────────────────────────────────────── */
.wall-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 220px;
  gap: var(--space-3);
}
.wall-gallery__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-2);
}
.wall-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wall-gallery__item:hover img {
  transform: scale(1.04);
}
.wall-gallery__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, rgba(10,11,12,0.88) 0%, transparent 100%);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}
@media (max-width: 768px) {
  .wall-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .wall-gallery__item[style*="grid-column:1/3"] {
    grid-column: 1 / 3 !important;
    height: 240px;
  }
  .wall-gallery__item[style*="grid-row:1/3"] {
    grid-row: auto !important;
    height: 220px;
  }
  .wall-gallery__item {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .wall-gallery {
    grid-template-columns: 1fr;
  }
  .wall-gallery__item[style*="grid-column:1/3"],
  .wall-gallery__item[style*="grid-row:1/3"],
  .wall-gallery__item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px !important;
  }
}
