:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe3ee;
  --brand: #b45309;
  --brand-dark: #92400e;
  --dark: #111827;
  --dark-soft: #1f2937;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180, 83, 9, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.07), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  background-attachment: fixed;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 16px; top: 16px; background: #fff; padding: 10px 12px; z-index: 9999;
}
.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 56px; height: 56px; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--ink); }
.menu-toggle { display: none; }
.hero {
  padding: 64px 0 46px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero-small { padding: 56px 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }
.eyebrow {
  display: inline-block; margin: 0 0 10px; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-dark); font-weight: 700;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.hero-copy, .section-heading p, p { color: var(--muted); }
.hero-card, .thank-you-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 18px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.check-list li::before { content: "✓ "; color: var(--brand-dark); font-weight: 700; }
.light-list li::before { color: #fde68a; }
.hero-cta, .area-links { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 18px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-full { width: 100%; }
.trust-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px;
}
.trust-bar span, .area-link {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 600;
}
.section { padding: 72px 0; }
.section-light { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: #fff; }
.heading-light, .text-light, .section-dark p { color: #e5e7eb; }
.section-heading { margin-bottom: 28px; max-width: 760px; }
.card-grid { display: grid; gap: 18px; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.info-card, .review-card, .stat-card, .price-box, .ba-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.dark-card { background: var(--dark-soft); color: #fff; border-color: rgba(255,255,255,0.12); box-shadow: none; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat-card { display: grid; gap: 8px; }
.stat-card strong { font-size: 1.06rem; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba-label-row { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-band { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; align-items: center; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: start; }
.lead-form {
  background: #fff; color: var(--ink); padding: 22px; border-radius: 22px; border: 1px solid rgba(255,255,255,0.14);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.lead-form label { display: grid; gap: 7px; font-weight: 700; font-size: 0.95rem; }
.lead-form label:nth-last-child(3),
.lead-form label:nth-last-child(2),
.lead-form .btn,
.form-note { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%; min-height: 48px; border-radius: 12px; border: 1px solid var(--line); padding: 12px 14px; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.hidden { display: none; }
.form-note { font-size: 0.9rem; color: var(--muted); margin: 0; }
.site-footer { padding: 42px 0 90px; background: #0b1220; color: #dbe3ee; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-logo { width: 72px; height: 72px; margin-bottom: 8px; }
.thank-you-page { min-height: 100vh; display: grid; place-items: center; background: var(--bg-soft); padding: 24px 0; }
.thank-you-card { max-width: 640px; text-align: center; }
.thank-you-card img { width: 96px; margin: 0 auto 16px; }
.sticky-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 40; background: var(--brand); color: #fff; font-weight: 800;
  border-radius: 999px; padding: 14px 18px; box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}
.inline-nav { margin-left: auto; }
code { background: #eef2f7; padding: 2px 6px; border-radius: 6px; }
@media (max-width: 960px) {
  .hero-grid, .pricing-band, .form-wrap, .four-up, .three-up, .review-grid, .stats-grid, .ba-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  }
  .site-nav {
    position: absolute; left: 16px; right: 16px; top: 76px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 14px; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .inline-nav { position: static; display: flex; border: 0; padding: 0; box-shadow: none; }
  .hero-grid, .pricing-band, .form-wrap, .four-up, .three-up, .review-grid, .stats-grid, .ba-grid, .footer-grid,
  .lead-form, .ba-images {
    grid-template-columns: 1fr;
  }
  .lead-form label, .lead-form .btn, .form-note { grid-column: auto; }
  .sticky-call { left: 12px; right: 12px; text-align: center; }
}


.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.text-light { color: rgba(255,255,255,0.82); }
@media (max-width: 900px) {
  .project-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .project-gallery { grid-template-columns: 1fr; }
  .gallery-card img { height: auto; }
}


.hero {
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(248,250,252,0.92));
  pointer-events: none;
}
.hero > .container,
.section > .container,
.section-light > .container,
.section-dark > .container,
.site-footer > .container {
  position: relative;
  z-index: 1;
}
.section,
.section-light,
.section-dark {
  position: relative;
}
.section .container,
.section-light .container,
.section-dark .container {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(219, 227, 238, 0.75);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}
.section-dark .container {
  background: linear-gradient(180deg, rgba(17,24,39,0.95), rgba(31,41,55,0.94));
  border-color: rgba(255,255,255,0.08);
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  margin: 0;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery-card-feature {
  grid-column: span 2;
}
.gallery-card-feature img {
  height: 360px;
}
.hero-card {
  overflow: hidden;
}
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}
.site-footer {
  padding-bottom: 90px;
}
@media (max-width: 900px) {
  .project-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card-feature { grid-column: span 2; }
  .section .container,
  .section-light .container,
  .section-dark .container { padding: 22px; }
}
@media (max-width: 640px) {
  .project-gallery { grid-template-columns: 1fr; }
  .gallery-card-feature { grid-column: span 1; }
  .gallery-card img,
  .gallery-card-feature img,
  .hero-card img { height: auto; min-height: 0; }
  .section .container,
  .section-light .container,
  .section-dark .container { padding: 18px; }
}
