/* ═══════════════════════════════════════════════════════════
   Desert Ridge Garage Door — Scottsdale, AZ
   Bold / Premium / Editorial
   Palette: Charcoal #1A1A1A · Gold #C9A84C · Cream #FAF8F3 · White #FFFFFF
   Type: Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  --black:    #111111;
  --charcoal: #1A1A1A;
  --dark:     #242424;
  --mid-dark: #2E2E2E;
  --gold:     #C9A84C;
  --gold-lt:  #DFC070;
  --gold-dk:  #A8883A;
  --cream:    #FAF8F3;
  --off-white:#F0EDE6;
  --white:    #FFFFFF;
  --text:     #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light:#7A7A7A;
  --border:   #E0D9CE;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 60px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(.98); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

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

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Section labels & headers ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.7); }
.section-header.light .section-label { color: var(--gold-lt); }


/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.wordmark a {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.wordmark img {
  display: block;
  height: 48px;
  width: auto;
}
.wordmark-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.wordmark-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--black);
  background: var(--gold);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background .2s;
  white-space: nowrap;
  margin-left: 8px;
}
.header-phone:hover { background: var(--gold-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,.92) 40%, rgba(17,17,17,.5) 100%);
}

/* Gold accent bar on left */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hero-content > * {
  grid-column: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.badge {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(201,168,76,.2);
  text-align: center;
  min-width: 0;
}
.badge:last-child { border-right: none; }
.badge strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.badge span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
  white-space: nowrap;
}


/* ════════════════════════════════════════════
   WIDGET SECTION
════════════════════════════════════════════ */
.widget-section {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.widget-section .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.widget-intro {
  padding-top: 8px;
}
.widget-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.widget-intro p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

.widget-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}


/* ════════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════ */
.trust-strip {
  background: var(--charcoal);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-strip-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201,168,76,.2);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-section {
  background: var(--cream);
  padding: 88px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dk);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dk);
  letter-spacing: .02em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}


/* ════════════════════════════════════════════
   AREAS (compact)
════════════════════════════════════════════ */
.areas-inline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.areas-line {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   WHY US
════════════════════════════════════════════ */
.why-section {
  background: var(--charcoal);
  padding: 88px 0;
}

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

.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.12);
  padding: 36px 28px;
  position: relative;
  transition: background .25s;
}
.why-card:hover { background: rgba(255,255,255,.06); }

.why-number {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 900;
  color: rgba(201,168,76,.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,.2);
  margin-bottom: 16px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process-section {
  background: var(--off-white);
  padding: 88px 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.step-content a { color: var(--gold-dk); font-weight: 600; }
.step-content a:hover { text-decoration: underline; }

.process-connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2));
  margin-top: 32px;
  align-self: flex-start;
}


/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.reviews-section {
  background: var(--dark);
  padding: 88px 0;
}

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

.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  position: relative;
  transition: background .25s;
}
.review-card:hover { background: rgba(255,255,255,.07); }

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: 16px;
  left: 28px;
  pointer-events: none;
  user-select: none;
}

.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 18px;
}
.reviewer-info {
  display: flex;
  flex-direction: column;
}
.reviewer-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.reviewer-info span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}


/* ════════════════════════════════════════════
   SERVICE AREAS
════════════════════════════════════════════ */
.areas-section {
  background: var(--cream);
  padding: 88px 0;
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.areas-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.areas-text > p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.areas-list ul { display: flex; flex-direction: column; gap: 0; }
.areas-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.areas-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.callout-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.callout-icon {
  width: 72px;
  height: 72px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.callout-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.callout-card p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 24px;
}


/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-section {
  background: var(--off-white);
  padding: 88px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: var(--border);
  display: block;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.about-stat strong {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-dk);
  line-height: 1.1;
}
.about-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

.about-license {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px !important;
}


/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  background: var(--charcoal);
  padding: 88px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.25);
}

.faq-item summary {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-lt); }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after {
  content: '–';
}

.faq-body {
  padding: 0 24px 22px;
  border-top: 1px solid rgba(201,168,76,.1);
}
.faq-body p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  padding-top: 16px;
}


/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: 88px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-item svg {
  color: var(--gold-dk);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail-item strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-detail-item a {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
}
.contact-detail-item a:hover { color: var(--gold-dk); }
.contact-detail-item span {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 20px; }

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group input.error,
.form-group select.error {
  border-color: #CC3333;
  box-shadow: 0 0 0 3px rgba(204,51,51,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--gold-dk);
}
.form-success:not([hidden]) {
  display: flex;
}
.form-success svg { flex-shrink: 0; }
.form-success p { font-size: 14px; line-height: 1.4; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-wordmark .wordmark-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.footer-wordmark .wordmark-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-phone {
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-phone:hover { color: var(--gold-lt); }

.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col li, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}


/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (≤900px)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }

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

  .widget-section .container {
    grid-template-columns: 1fr;
  }
  .widget-intro { padding-top: 0; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap img { height: 320px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .areas-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — Mobile (≤600px)
════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Nav */
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,.12);
    padding: 12px 0;
    z-index: 99;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero-badges {
    flex-wrap: wrap;
  }
  .badge {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,.2);
  }
  .badge:nth-child(odd) { border-right: 1px solid rgba(201,168,76,.2); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Trust strip */
  .trust-strip-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .trust-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; flex: 0 0 40px; align-self: center; margin-top: 0; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.2)); }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Contact form row */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Areas list */
  .areas-list { grid-template-columns: 1fr; }

  /* Hero mobile fixes */
  .hero-content h1 { font-size: clamp(32px, 8vw, 52px); }
  .hero-sub { font-size: 15px; }
  .badge span { white-space: normal; font-size: 10px; }

  /* Widget section */
  .widget-section .container { grid-template-columns: 1fr; gap: 28px; }

  /* Overflow guard */
  .trust-strip-inner { gap: 16px; }
  .trust-item { font-size: 12px; }
}

/* ════════════════════════════════════════════
   GLOBAL OVERFLOW GUARD
════════════════════════════════════════════ */
html { overflow-x: clip; }
body { max-width: 100vw; overflow-x: clip; }

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-lt);
}
