﻿:root {
  --ink: #141414;
  --muted: #667085;
  --line: #e7e2d8;
  --paper: #fbfaf7;
  --soft: #f3efe6;
  --brand: #9b6a2f;
  --brand-dark: #6f451b;
  --forest: #163832;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(20, 20, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.navbar {
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 226, 216, .9);
}
.navbar-brand {
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--forest);
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  margin-right: .65rem;
  background: var(--white);
}
.brand-text {
  line-height: 1;
}
.nav-link {
  color: #2f332f;
  font-weight: 650;
  font-size: .95rem;
}
.nav-link:hover,
.nav-link.active { color: var(--brand-dark); }

.btn {
  border-radius: 6px;
  font-weight: 750;
  padding: .82rem 1.1rem;
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}
.btn-outline-dark {
  border-color: #2c2c2c;
  color: #1f1f1f;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 24, 22, .9), rgba(12, 24, 22, .55), rgba(12, 24, 22, .16)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 8.5rem 0 4rem;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}
.hero p,
.page-hero p {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, .88);
}
.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, .24);
  margin-top: 2rem;
  padding-top: 1.25rem;
}
.hero-proof strong {
  display: block;
  font-size: 1.35rem;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 24, 22, .9), rgba(12, 24, 22, .48)),
    var(--hero-image, url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=80")) center/cover;
  padding: 9rem 0 5rem;
}

.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.eyebrow {
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
}
.lead-tight {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.service-card,
.process-step,
.project-card,
.quote-panel,
.calc-panel,
.contact-panel,
.trust-badge,
.review-card,
.before-after-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(20, 20, 20, .05);
}
.service-card {
  height: 100%;
  overflow: hidden;
}
.service-card img,
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-card .icon {
  color: var(--brand);
  font-size: 1.55rem;
}
.card-body { padding: 1.35rem; }

.feature-band {
  color: var(--white);
  background: var(--forest);
}
.feature-band .lead-tight,
.feature-band .text-muted { color: rgba(255, 255, 255, .72) !important; }
.stat {
  border-left: 1px solid rgba(255, 255, 255, .22);
  padding-left: 1.2rem;
}
.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
}

.process-step {
  padding: 1.4rem;
  height: 100%;
}
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 800;
}

.portfolio-filter .btn {
  padding: .55rem .9rem;
  border-color: var(--line);
}
.portfolio-filter .active {
  background: var(--forest);
  color: var(--white);
}
.project-card {
  overflow: hidden;
  height: 100%;
}
.project-meta {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.quote-panel,
.calc-panel,
.contact-panel { padding: clamp(1.25rem, 3vw, 2rem); }
.form-control,
.form-select {
  border-radius: 6px;
  border-color: #d8d1c3;
  padding: .82rem .95rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(155, 106, 47, .18);
}
.result-box {
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  padding: 1.4rem;
}
.result-price {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 850;
}
.sticky-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(20, 20, 20, .25);
  font-weight: 850;
}
.sticky-call:hover {
  background: var(--brand-dark);
  color: var(--white);
}
.sticky-call i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}
.conversion-modal .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.conversion-modal .modal-header,
.conversion-modal .modal-footer {
  border-color: var(--line);
  padding: 1.25rem 1.5rem;
}
.conversion-modal .modal-body {
  padding: 1.5rem;
}
.trust-badge {
  height: 100%;
  padding: 1.15rem;
}
.trust-badge i {
  color: var(--brand);
  font-size: 1.35rem;
}
.review-card {
  height: 100%;
  padding: 1.4rem;
}
.review-stars {
  color: var(--brand);
  letter-spacing: .06em;
}
.before-after-card {
  overflow: hidden;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.before-after-grid figure {
  position: relative;
  margin: 0;
}
.before-after-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.before-after-grid figcaption {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .35rem .55rem;
  border-radius: 4px;
  background: rgba(16, 22, 21, .82);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.inline-lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
}
.calculator-tabs {
  gap: .6rem;
}
.calculator-tabs .nav-link {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}
.calculator-tabs .nav-link.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.estimate-grid {
  display: grid;
  gap: .8rem;
}
.estimate-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: .8rem;
}
.estimate-grid span {
  color: rgba(255, 255, 255, .72);
}
.estimate-grid strong {
  font-size: 1.15rem;
  text-align: right;
}

.cta {
  background:
    linear-gradient(90deg, rgba(22, 56, 50, .94), rgba(22, 56, 50, .78)),
    url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}
.footer {
  background: #101615;
  color: rgba(255, 255, 255, .78);
  padding: 4rem 0 1.5rem;
}
.footer h2,
.footer h3,
.footer h4 { color: var(--white); }
.footer a { color: rgba(255, 255, 255, .78); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 2rem;
  padding-top: 1.2rem;
}

.breadcrumb-item a { color: rgba(255, 255, 255, .82); }
.breadcrumb-item.active { color: rgba(255, 255, 255, .62); }
.service-detail-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  gap: .7rem;
  margin-bottom: .75rem;
}
.check-list i {
  color: var(--brand);
  margin-top: .28rem;
}

@media (max-width: 991.98px) {
  .hero { min-height: 82vh; padding-top: 7rem; }
  .navbar .btn { margin-top: .75rem; width: 100%; }
  .section { padding: 4rem 0; }
  .stat { border-left: 0; padding-left: 0; }
}

@media (max-width: 575.98px) {
  .hero,
  .page-hero { padding-bottom: 3rem; }
  .service-card img,
  .project-card img { height: 210px; }
  .btn { width: 100%; }
  .portfolio-filter .btn { width: auto; }
  .sticky-call {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
  .before-after-grid img { height: 190px; }
}

