/*
 * LAVISH JUNK REMOVAL — styles.css
 * Black, white & gold brand theme — multi-page static site
 *
 * CONTENTS
 *  1. Variables & Reset
 *  2. Base Typography
 *  3. Layout Utilities
 *  4. Buttons
 *  5. Header & Navigation
 *  6. Hero — Home
 *  7. Page Hero — Inner Pages
 *  8. Section Headings
 *  9. Trust Badges
 * 10. How It Works
 * 11. Services Grid
 * 12. What We Remove
 * 13. Why Choose Us
 * 14. Reviews
 * 15. Pricing Cards
 * 16. Estimate Form
 * 17. Areas Served
 * 18. Final CTA Banner
 * 19. Contact Page
 * 20. Footer
 * 21. Mobile Bottom Bar
 * 22. Responsive — Tablet ≤ 1080px
 * 23. Responsive — Mobile ≤ 768px
 * 24. Responsive — Small ≤ 400px
 */

/* ─────────────────────────────────────────────────────────────────
   1. VARIABLES & RESET
   ───────────────────────────────────────────────────────────────── */

:root {
  /* BRAND COLORS — edit here to update sitewide */
  --gold:        #c5a14a;   /* primary gold accent */
  --gold-deep:   #a98735;   /* darker gold for hover */
  --gold-light:  #e0bf6f;   /* lighter gold for gradients */
  --bg:          #0f0f10;   /* near-black background */
  --bg-card:     #1a1a1e;   /* dark card background */
  --bg-input:    #18181c;   /* form input background */
  --surface:     #ffffff;
  --surface-off: #f8f8f9;   /* very light gray sections */
  --text:        #18181b;
  --text-dim:    #52525b;
  --text-light:  #f2f2f2;
  --text-muted:  #a1a1aa;
  --green:       #2e7d32;
  --border:      #e5e7eb;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* LAYOUT */
  --container:   1160px;
  --radius:      14px;
  --radius-sm:   10px;
  --radius-xs:   6px;

  /* SHADOWS */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow:      0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 20px 48px rgba(0, 0, 0, 0.13);

  --transition:  0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img       { max-width: 100%; display: block; height: auto; }
a         { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.2; }
p         { margin: 0; }
ul,ol     { margin: 0; padding: 0; list-style: none; }

/* ─────────────────────────────────────────────────────────────────
   2. BASE TYPOGRAPHY
   ───────────────────────────────────────────────────────────────── */

.serif { font-family: "Playfair Display", Georgia, serif; }

/* ─────────────────────────────────────────────────────────────────
   3. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────────── */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section         { padding: 5.5rem 0; }
.section-dark    { background: var(--bg); color: var(--text-light); }
.section-muted   { background: var(--surface-off); }

/* ─────────────────────────────────────────────────────────────────
   4. BUTTONS
   ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.82rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Gold — primary CTA */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #141410;
  box-shadow: 0 6px 18px rgba(197, 161, 74, 0.32);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 100%);
  box-shadow: 0 8px 22px rgba(197, 161, 74, 0.42);
}

/* Outline on dark backgrounds */
.btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--text-light);
  background: transparent;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }

/* Outline on light backgrounds */
.btn-outline-dark {
  border-color: rgba(24, 24, 27, 0.3);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover { border-color: rgba(24,24,27,0.55); }

/* Size modifiers */
.btn-sm  { padding: 0.62rem 1.15rem; font-size: 0.88rem; }
.btn-lg  { padding: 1rem 2rem;       font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ─────────────────────────────────────────────────────────────────
   5. HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-deep);
}
.logo-sub {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2e2e38;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-xs);
  position: relative;
  transition: color var(--transition), background-color var(--transition);
}
.nav a:hover  { color: var(--gold-deep); background: rgba(197,161,74,0.07); }
.nav a.active { color: var(--gold-deep); font-weight: 600; }
.nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 1px;
}

/* Header CTA buttons */
.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.header-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.site-header .btn-outline {
  border-color: rgba(24, 24, 27, 0.28);
  color: var(--text);
}
.site-header .btn-outline:hover { border-color: rgba(24,24,27,0.5); }

/* Hamburger */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────────
   6. HERO — HOME PAGE
   ───────────────────────────────────────────────────────────────── */

.hero-home {
  background: var(--bg);
  color: var(--text-light);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow in background */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 70% at 70% 50%, rgba(197,161,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero-home h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.15rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #c0c0c8;
  max-width: 56ch;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

/* Hero image */
.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
  border: 1px solid rgba(197,161,74,0.2);
}

/* Image placeholder when no real photo */
.hero-media-placeholder {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1e1e24 0%, #141418 100%);
  border: 1px solid rgba(197,161,74,0.18);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.hero-media-placeholder svg { color: var(--gold); opacity: 0.6; }
.hero-media-placeholder strong { color: var(--gold-light); font-size: 1rem; }

/* ─────────────────────────────────────────────────────────────────
   7. PAGE HERO — INNER PAGES
   ───────────────────────────────────────────────────────────────── */

.page-hero {
  background: var(--bg);
  color: var(--text-light);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(197,161,74,0.18);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: #b0b0b8;
  max-width: 60ch;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────
   8. SECTION HEADINGS
   ───────────────────────────────────────────────────────────────── */

.section-label {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.2;
  margin-bottom: 0;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-dim);
  max-width: 60ch;
  margin-top: 0.75rem;
  line-height: 1.7;
}

.section-head { margin-bottom: 2.5rem; }
.section-head-center { text-align: center; margin-bottom: 2.5rem; }
.section-head-center .section-lead { margin-inline: auto; }

/* Dark section variants */
.section-dark .section-title { color: #fff; }
.section-dark .section-lead  { color: #b0b0b8; }

/* ─────────────────────────────────────────────────────────────────
   9. TRUST BADGES
   ───────────────────────────────────────────────────────────────── */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197,161,74,0.35);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
}

.trust-badge-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────────
   10. HOW IT WORKS
   ───────────────────────────────────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 2px solid rgba(197,161,74,0.3);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.93rem;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────────────────────────
   11. SERVICES GRID
   ───────────────────────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Preview grid — 3-col with "See all" link */
.services-preview { grid-template-columns: repeat(3, 1fr); }

.services-cta-row {
  text-align: center;
  margin-top: 2rem;
}

/* ─────────────────────────────────────────────────────────────────
   12. WHAT WE REMOVE
   ───────────────────────────────────────────────────────────────── */

.items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.item-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.section-muted .item-tag { background: #fff; }

.item-tag:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.items-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ─────────────────────────────────────────────────────────────────
   13. WHY CHOOSE US
   ───────────────────────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(197,161,74,0.1);
  border: 1px solid rgba(197,161,74,0.25);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--gold);
}

.why-icon svg { width: 20px; height: 20px; }

.why-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────────
   14. REVIEWS
   ───────────────────────────────────────────────────────────────── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────
   15. PRICING CARDS
   ───────────────────────────────────────────────────────────────── */

/* How pricing works — text block */
.pricing-intro-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,161,74,0.2);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
  font-size: 1rem;
  color: #c8c8d0;
  line-height: 1.75;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(197,161,74,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card:hover {
  border-color: rgba(197,161,74,0.5);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--gold);
  background: #1d1b13;
  box-shadow: 0 0 0 1px rgba(197,161,74,0.35), 0 20px 40px rgba(0,0,0,0.25);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(197,161,74,0.12);
  color: var(--gold);
  border: 1px solid rgba(197,161,74,0.35);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.pricing-card-featured .pricing-card-badge {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.pricing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #fff;
  margin-top: 0.15rem;
}

.pricing-card-for {
  font-size: 0.82rem;
  color: #888898;
  margin: 0;
}

.pricing-price {
  margin: 0.25rem 0;
}

.pricing-price .amount {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.pricing-price .label {
  font-size: 0.82rem;
  color: #888898;
}

.pricing-examples {
  font-size: 0.87rem;
  color: #9898a8;
  line-height: 1.55;
  flex: 1;
}

.pricing-examples strong { color: #c8c8d0; }

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
  border-radius: var(--radius-sm);
}

/* "Not Sure?" — full-width strip */
.pricing-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.65rem 2rem;
  flex-direction: unset;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}

.pricing-card-wide:hover {
  border-color: rgba(197,161,74,0.35);
}

.pricing-card-wide-copy h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pricing-card-wide-copy p {
  font-size: 0.92rem;
  color: #9898a8;
  margin: 0;
}

.pricing-card-wide .btn { margin-top: 0; width: auto; }

/* Guarantee note */
.pricing-guarantee {
  text-align: center;
  color: #9dd49d;
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.22);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.5rem;
  font-size: 0.93rem;
  font-weight: 500;
  margin: 0 0 2.5rem;
}

/* Included / Extra Costs detail grid */
.pricing-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.pricing-meta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.pricing-meta-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-meta-card h3 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-gold { background: var(--gold); }
.dot-amber { background: #e0a030; }

/* ─────────────────────────────────────────────────────────────────
   16. ESTIMATE FORM
   ───────────────────────────────────────────────────────────────── */

.estimate-form-section {
  max-width: 720px;
  margin-inline: auto;
}

.estimate-form {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #e0e0e8;
}

.req { color: var(--gold); font-weight: 700; margin-left: 1px; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea,
select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  color: #f2f2f2;
  font-family: inherit;
  font-size: 1rem;   /* ≥16px prevents iOS zoom */
  padding: 0.82rem 0.95rem;
  transition: border-color var(--transition), outline var(--transition);
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(197,161,74,0.65);
  outline-offset: 1px;
  border-color: transparent;
}

input::placeholder,
textarea::placeholder { color: #55555f; }

select {
  appearance: none;
  -webkit-appearance: none;
  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='%23c5a14a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: var(--bg-card); color: #f2f2f2; }

textarea { resize: vertical; min-height: 96px; }

/* File input */
input[type="file"] {
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.2);
  color: #8888a0;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
}

input[type="file"]::file-selector-button {
  background: rgba(197,161,74,0.15);
  border: 1px solid rgba(197,161,74,0.35);
  color: var(--gold);
  border-radius: var(--radius-xs);
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  margin-right: 0.75rem;
}

.field-note {
  font-size: 0.8rem;
  color: #66667a;
  margin-top: 0.2rem;
}

.field-optional { font-weight: 400; color: #66667a; font-size: 0.8rem; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

/* Success message (shown by JS after submit) */
.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(197,161,74,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.form-success h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p  { color: #9898a8; font-size: 0.93rem; }

/* Check lists inside dark sections */
.check-list { list-style: none; }

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.93rem;
  color: #c0c0cc;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.check-list-amber li::before { content: "•"; color: #e0a030; font-size: 1.2rem; top: -0.1rem; }

/* ─────────────────────────────────────────────────────────────────
   17. AREAS SERVED
   ───────────────────────────────────────────────────────────────── */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  background: var(--surface);
  transition: border-color var(--transition), color var(--transition);
}

.area-tag-primary {
  background: rgba(197,161,74,0.08);
  border-color: rgba(197,161,74,0.45);
  color: var(--gold-deep);
  font-weight: 600;
}

.area-tag:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ─────────────────────────────────────────────────────────────────
   18. FINAL CTA BANNER
   ───────────────────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, #0d0d10 0%, #171510 100%);
  border-top: 1px solid rgba(197,161,74,0.18);
  border-bottom: 1px solid rgba(197,161,74,0.18);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: #b0b0b8;
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────────
   19. CONTACT PAGE
   ───────────────────────────────────────────────────────────────── */

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(197,161,74,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover { transform: translateY(-2px); border-color: var(--gold); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197,161,74,0.12);
  border: 1px solid rgba(197,161,74,0.28);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card strong { font-size: 1rem; color: #fff; }
.contact-card span   { font-size: 0.87rem; color: #9898a8; }

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 2rem auto 0;
}

.contact-info-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.contact-info-block p, .contact-info-block li {
  font-size: 0.92rem;
  color: #9898a8;
  margin-bottom: 0.35rem;
}

.contact-info-block a { color: var(--gold); }
.contact-info-block a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────────
   20. FOOTER
   ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: #090909;
  color: #d0d0d8;
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: #888898;
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 1.1rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-links a {
  font-size: 0.9rem;
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer-contact-links a:hover { color: var(--gold); }

.footer-contact-links span {
  font-size: 0.85rem;
  color: #666678;
}

.site-footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.9rem;
}

.site-footer li {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: #888898;
}

.site-footer li a {
  color: #888898;
  transition: color var(--transition);
}

.site-footer li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2.5rem;
  padding: 1.1rem 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  color: #55555f;
}

/* ─────────────────────────────────────────────────────────────────
   21. MOBILE BOTTOM BAR
   ───────────────────────────────────────────────────────────────── */

.mobile-bar {
  display: none; /* shown via media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #0a0a0c;
  border-top: 1px solid rgba(197,161,74,0.28);
  padding: 0.65rem 1rem;
  gap: 0.7rem;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  font-family: inherit;
  min-height: 48px;
  transition: opacity var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.mobile-bar-btn:active { opacity: 0.72; }

.mobile-bar-call {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.17) !important;
  color: #fff;
}

.mobile-bar-estimate {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #141410;
  border: none !important;
}

/* ─────────────────────────────────────────────────────────────────
   22. RESPONSIVE — TABLET ≤ 1080px
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .mobile-bar  { display: flex; }
  body         { padding-bottom: 74px; }

  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 1rem;
    left: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.15rem;
    z-index: 1002;
  }

  .nav.open { display: flex; }

  .nav a {
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .header-actions .btn-outline-dark { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-home { padding: 4.5rem 0 4rem; }
  /* hero-media is now a stats card — keep it visible, just stack below copy */

  .steps-grid       { grid-template-columns: 1fr; gap: 1rem; }
  .steps-grid::before { display: none; }

  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-preview { grid-template-columns: repeat(2, 1fr); }

  .why-grid         { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid     { grid-template-columns: repeat(2, 1fr); }

  .pricing-cards    { grid-template-columns: 1fr 1fr; }
  .pricing-card-wide { grid-column: auto; grid-template-columns: 1fr; text-align: center; }
  .pricing-card-wide .btn { width: 100%; }

  .pricing-meta-grid { grid-template-columns: 1fr; }

  .contact-options-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .contact-info-row     { grid-template-columns: 1fr; max-width: 400px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────────
   23. RESPONSIVE — MOBILE ≤ 768px
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .section { padding: 3.75rem 0; }

  /* Header stays compact — no wrapping */
  .header-inner  { min-height: 64px; }
  .header-actions { display: none; } /* bottom bar handles CTAs */

  /* Hero */
  .hero-home { padding: 3.5rem 0 3rem; }

  .trust-badges { grid-template-columns: 1fr; }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids → single column */
  .services-grid,
  .services-preview,
  .why-grid,
  .reviews-grid,
  .pricing-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-wide { grid-column: auto; }

  .pricing-cards .pricing-card-wide {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pricing-meta-grid { grid-template-columns: 1fr; }

  /* Form rows → single column on mobile */
  .form-row { grid-template-columns: 1fr; }

  .estimate-form { padding: 1.65rem 1.25rem; }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  textarea, select { font-size: 16px; } /* prevent iOS zoom */

  /* CTA actions stack */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 2.5rem 0 2rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-options-grid { grid-template-columns: 1fr; max-width: none; }
  .contact-info-row { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   24. RESPONSIVE — SMALL ≤ 400px
   ───────────────────────────────────────────────────────────────── */

@media (max-width: 400px) {
  .logo-sub { display: none; }
  .mobile-bar-btn { font-size: 0.87rem; }
}

/* ─────────────────────────────────────────────────────────────────
   25. ANIMATIONS & TRANSITIONS
   ───────────────────────────────────────────────────────────────── */

/* ── Header scroll shadow ──────────────────────────────────────── */
.site-header {
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.13);
}

/* ── Why-Choose-Us card hover ──────────────────────────────────── */
.why-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(197, 161, 74, 0.28);
}
.why-icon {
  transition: background 0.22s ease, border-color 0.22s ease;
}
.why-card:hover .why-icon {
  background: rgba(197, 161, 74, 0.18);
  border-color: rgba(197, 161, 74, 0.5);
}

/* ── How-It-Works step card hover ─────────────────────────────── */
.step-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(197, 161, 74, 0.2);
}
.step-num {
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.step-card:hover .step-num {
  border-color: rgba(197, 161, 74, 0.6);
  box-shadow: 0 0 0 5px rgba(197, 161, 74, 0.08);
}

/* ── Review card hover ─────────────────────────────────────────── */
.review-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ── Trust badge hover ─────────────────────────────────────────── */
.trust-badge {
  transition: border-color 0.22s ease, transform 0.22s ease,
              background 0.22s ease;
}
.trust-badge:hover {
  border-color: rgba(197, 161, 74, 0.65);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Pricing meta card hover ───────────────────────────────────── */
.pricing-meta-card {
  transition: border-color 0.22s ease;
}
.pricing-meta-card:hover {
  border-color: rgba(197, 161, 74, 0.3);
}

/* ── Button gold — lift a little more ─────────────────────────── */
.btn-gold:hover {
  transform: translateY(-2px);
}

/* ── Contact card icon hover glow ──────────────────────────────── */
.contact-card-icon {
  transition: background 0.22s ease, border-color 0.22s ease;
}
.contact-card:hover .contact-card-icon {
  background: rgba(197, 161, 74, 0.2);
  border-color: rgba(197, 161, 74, 0.5);
}

/* ── Hero stats card (replaces placeholder logo on desktop) ───── */
.hero-stats-card {
  background: linear-gradient(160deg, #1a1a1f 0%, #111114 100%);
  border: 1px solid rgba(197, 161, 74, 0.22);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(197, 161, 74, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%,
              rgba(197, 161, 74, 0.08), transparent 65%);
  pointer-events: none;
}

.hero-stats-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-plus {
  font-size: 1.3rem;
  color: var(--gold);
  font-family: inherit;
}

.hero-stat-star {
  font-size: 1.4rem;
  color: var(--gold);
  font-family: inherit;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #8a8a9a;
  font-weight: 500;
}

.hero-stats-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 161, 74, 0.3), transparent);
  margin-bottom: 1.25rem;
}

.hero-stats-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.hero-stats-checklist li {
  font-size: 0.88rem;
  color: #b8b8c8;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}

.hero-stats-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}

.hero-stats-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #141410;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(197, 161, 74, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  justify-content: center;
}
.hero-stats-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 161, 74, 0.45);
  color: #141410;
}

/* ── Scroll-reveal ─────────────────────────────────────────────── */
/*
 * Elements get .reveal added by JS (initReveal).
 * body.anim-ready enables the effect; ensures no FOUC if JS is slow.
 * @media wrapper honours prefers-reduced-motion.
 */
@media (prefers-reduced-motion: no-preference) {
  body.anim-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease,
                transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  body.anim-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
