:root {
  --navy: #d8ae49;
  --navy-deep: #050505;
  --gold: #f3c766;
  --gold-deep: #a86f10;
  --cream: #171717;
  --white: #ffffff;
  --ink: #f2f2f2;
  --muted: #cfc7bb;
  --line: rgba(243, 199, 102, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 199, 102, 0.2), transparent 20%),
    radial-gradient(circle at top right, rgba(243, 199, 102, 0.14), transparent 18%),
    linear-gradient(180deg, #070707 0%, #111111 40%, #1a1a1a 100%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(243, 199, 102, 0.14);
}

.topbar {
  background: linear-gradient(90deg, rgba(243, 199, 102, 0.12), rgba(255, 255, 255, 0.03));
  border-bottom: 1px solid rgba(243, 199, 102, 0.12);
}

.topbar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  font-size: 0.92rem;
}

.topbar-grid a {
  color: var(--muted);
}

.compact {
  position: relative;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  height: 78px;
  width: auto;
}

.brand-logo-footer {
  height: 92px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7db 0%, var(--gold) 35%, var(--gold-deep) 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-text {
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
}

.site-nav a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--gold);
}

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section h2,
.detail-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.05;
  color: var(--white);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero h1,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
}

.hero-text,
.section-heading p,
.detail-card p,
.page-hero p,
.review-card p,
.gallery-card p,
.service-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-badges,
.mini-trust,
.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.hero-badges span,
.mini-trust span,
.cta-points li {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(243, 199, 102, 0.16);
  color: var(--white);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4c7 0%, var(--gold) 40%, var(--gold-deep) 100%);
  color: #080808;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(168, 111, 16, 0.32);
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(243, 199, 102, 0.5);
  box-shadow: none;
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  box-shadow: var(--shadow);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.trust-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 199, 102, 0.16);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.hero-card,
.detail-card,
.service-card,
.gallery-card,
.review-card,
.lead-form {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 10, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.hero-photo,
.gallery-photo {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-photo span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 248, 220, 0.92);
  color: #111111;
  font-weight: 700;
}

.photo-home {
  background:
    linear-gradient(135deg, rgba(16, 58, 93, 0.35), rgba(16, 58, 93, 0.1)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80");
}

.photo-living {
  background:
    linear-gradient(135deg, rgba(16, 58, 93, 0.15), rgba(243, 181, 63, 0.2)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=80");
}

.photo-exterior {
  background:
    linear-gradient(135deg, rgba(16, 58, 93, 0.18), rgba(243, 181, 63, 0.15)),
    url("https://images.unsplash.com/photo-1576941089067-2de3c901e126?auto=format&fit=crop&w=1200&q=80");
}

.photo-cabinet {
  background:
    linear-gradient(135deg, rgba(10, 39, 64, 0.12), rgba(243, 181, 63, 0.2)),
    url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1200&q=80");
}

.photo-garage {
  background:
    linear-gradient(135deg, rgba(16, 58, 93, 0.18), rgba(255, 255, 255, 0.1)),
    url("https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1200&q=80");
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 0;
}

.hero-stats article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 199, 102, 0.12);
}

.hero-stats strong,
.steps strong {
  display: block;
  color: var(--gold);
  font-size: 1.4rem;
}

.section {
  padding: 4.5rem 0;
}

.trust-strip {
  padding-top: 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip-grid article,
.feature-card,
.faq-card,
.location-card {
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 199, 102, 0.14);
  box-shadow: var(--shadow);
}

.trust-strip-grid strong,
.feature-card h3,
.faq-card h3 {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.trust-strip-grid span,
.location-card {
  color: var(--muted);
}

.section-accent {
  background: linear-gradient(180deg, rgba(243, 199, 102, 0.04), rgba(243, 199, 102, 0.1));
}

.section-dark {
  background: linear-gradient(135deg, #000000, #171717);
  color: var(--white);
}

.section-dark h2,
.section-dark p,
.section-dark .eyebrow {
  color: var(--white);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.service-area-copy {
  max-width: 920px;
  margin-top: 1.5rem;
}

.service-area-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.card-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.gallery-card,
.review-card,
.detail-card {
  padding: 1.6rem;
}

.feature-stack,
.faq-list,
.location-grid {
  display: grid;
  gap: 1rem;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-stack {
  display: grid;
  gap: 1rem;
}

.stars {
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  color: var(--white);
}

.lead-form.light {
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(243, 199, 102, 0.18);
  border-radius: 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
}

.feature-card p,
.faq-card p {
  margin: 0;
}

.service-card a,
.detail-card a,
.gallery-card a,
.review-card a {
  margin-top: 0.85rem;
}

.lead-form.light input,
.lead-form.light select,
.lead-form.light textarea {
  border-color: rgba(16, 58, 93, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.cta-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 199, 102, 0.14);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #020202;
  color: rgba(255, 255, 255, 0.85);
}

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

.site-footer h3 {
  color: var(--white);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0.4rem 0;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(243, 199, 102, 0.25);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.35);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 56px;
  background: #0b0b0b;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .cta-band,
  .four-up,
  .three-up,
  .two-up,
  .footer-grid,
  .trust-strip-grid,
  .faq-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .topbar-grid {
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0;
    text-align: center;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    height: 58px;
  }

  .brand-logo-footer {
    height: 74px;
  }

  .trust-list,
  .check-list,
  .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section {
    padding: 3.5rem 0;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 56px;
  }
}
