:root {
  --dark: #1f2933;
  --text: #24313d;
  --muted: #5f6f7a;
  --light: #f5f3ed;
  --accent: #b66a2c;
  --accent-dark: #8f4f1f;
  --white: #ffffff;
  --border: #e0ddd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.phone-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, var(--light), #ffffff);
  padding: 72px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--dark);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-top: 0;
  color: var(--dark);
}

h3 {
  margin-top: 0;
  color: var(--dark);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.quote-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(31, 41, 51, 0.12);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.narrow {
  max-width: 720px;
  text-align: center;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}

@media (max-width: 800px) {
  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
  }
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 700px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-weight: 800;
    text-decoration: none;
    z-index: 20;
  }

  body {
    padding-bottom: 56px;
  }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-style: italic;
}

.review strong {
  display: block;
  margin-top: 10px;
  font-style: normal;
}

.btn.small {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--dark);
}

.faq-list p {
  margin-bottom: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.site-footer a {
  color: var(--white);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.logo img {
  height: 70px;
  width: auto;
}

.header-inner {
  min-height: 70px;
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .logo img {
    height: 55px;
  }
}

.site-header {
  background: #0f0f0f;
}

.phone-link {
  color: var(--accent);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-item {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.work-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.work-item img:hover {
  transform: scale(1.03);
}

.work-item figcaption {
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

@media (max-width: 800px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-item img {
    height: 180px;
  }
}

@media (max-width: 500px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item img {
    height: 230px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  padding: 40px 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox p {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
  max-width: 900px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}