:root {
  --charcoal: #221d1a;
  --charcoal-dark: #16120f;
  --amber: #d9822b;
  --amber-light: #f2b866;
  --cream: #faf6f0;
  --stone-50: #f7f4ef;
  --stone-100: #efe9e0;
  --stone-400: #a89a89;
  --stone-500: #766a5c;
  --stone-700: #453c33;
  --radius: 4px;
  --shadow: 0 14px 34px rgba(34, 29, 26, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--stone-700);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", "Inter", sans-serif;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 28px;
  }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--charcoal-dark);
  color: var(--stone-400);
  font-size: 0.78rem;
  letter-spacing: 0.2px;
}
.topbar .container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px;
}
@media (min-width: 640px) {
  .topbar {
    font-size: 0.83rem;
  }
  .topbar .container {
    justify-content: space-between;
    text-align: left;
  }
}
.topbar .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--amber-light);
}
.status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(217, 130, 43, 0.25);
}
.topbar .top-phone {
  display: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}

/* ---------- Header ---------- */
header.main {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--stone-100);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-text .sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--stone-500);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.nav-links {
  display: none;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--stone-700);
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover {
  color: var(--amber);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  order: 3;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 640px) {
  .nav {
    padding: 18px 12px;
  }
  .brand {
    gap: 12px;
    font-size: 1.18rem;
  }
  .brand-mark {
    width: 46px;
    height: 46px;
  }
  .brand-text .sub {
    font-size: 0.68rem;
  }
}
@media (max-width: 959px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    box-shadow: 0 8px 20px rgba(34, 29, 26, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open {
    display: flex;
    max-height: 400px;
  }
  .nav-links a {
    padding: 14px 20px;
    border-top: 1px solid var(--stone-100);
  }
}
@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }
  .nav-burger {
    display: none;
  }
  .nav-cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 380px) {
  .btn {
    white-space: normal;
  }
}
@media (min-width: 640px) {
  .btn {
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.98rem;
  }
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 130, 43, 0.3);
}
.btn-primary:hover {
  background: #c4741f;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover {
  background: var(--charcoal-dark);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* ---------- Hero (split, image right) ---------- */
.hero {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.hero-copy {
  padding: 44px 0 40px;
  position: relative;
  z-index: 2;
}
.hero-figure {
  position: relative;
  margin: 0 -18px;
}
.hero-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 18, 15, 0) 40%,
    var(--charcoal) 100%
  );
}
@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 0;
  }
  .hero-copy {
    padding: 92px 56px 92px 0;
  }
  .hero-figure {
    margin: 0;
    position: relative;
  }
  .hero-figure img {
    height: 100%;
    min-height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
  }
  .hero-figure::after {
    background: linear-gradient(
      90deg,
      var(--charcoal) 0%,
      rgba(22, 18, 15, 0.05) 30%,
      rgba(22, 18, 15, 0) 60%
    );
  }
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-light);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tagline::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
  border-bottom: 3px solid var(--amber);
}
.hero p.lead {
  font-size: 1rem;
  color: #d7cfc4;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-ctas .btn {
  width: 100%;
}
.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .hero p.lead {
    font-size: 1.08rem;
  }
  .hero-ctas {
    flex-direction: row;
    gap: 14px;
  }
  .hero-ctas .btn {
    width: auto;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}
.hero-stats .stat b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}
.hero-stats .stat span {
  font-size: 0.76rem;
  color: var(--stone-400);
}

/* ---------- Sections generic ---------- */
section {
  padding: 56px 0;
}
.section-head {
  max-width: 620px;
  margin: 0 auto 34px;
}
.section-head.center {
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--amber);
}
.section-head.center .eyebrow::before {
  display: none;
}
.section-head h2 {
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--stone-500);
  font-size: 0.96rem;
}

.bg-alt {
  background: var(--stone-50);
}
.bg-dark {
  background: var(--charcoal);
  color: var(--stone-400);
}
.bg-dark .eyebrow {
  color: var(--amber-light);
}
.bg-dark .section-head h2 {
  color: #fff;
}

@media (min-width: 640px) {
  section {
    padding: 82px 0;
  }
  .section-head {
    margin-bottom: 48px;
  }
  .section-head h2 {
    margin-bottom: 14px;
  }
  .section-head p {
    font-size: 1.02rem;
  }
}

/* ---------- Services: list rows ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--stone-100);
}
.service-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--stone-100);
  align-items: start;
  transition: background 0.15s ease;
}
.service-row:hover {
  background: var(--stone-50);
}
.service-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amber);
  border: 1.5px solid var(--stone-100);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-row h3 {
  color: var(--charcoal);
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.service-row p {
  color: var(--stone-500);
  font-size: 0.94rem;
  max-width: 620px;
}

@media (min-width: 640px) {
  .services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: none;
  }
  .service-row {
    border: 1px solid var(--stone-100);
    padding: 28px 24px;
    background: #fff;
  }
}

/* ---------- Why us: timeline ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 26px;
  border-left: 2px solid var(--stone-100);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--stone-50);
}
.timeline-item h4 {
  color: var(--charcoal);
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.timeline-item p {
  color: var(--stone-500);
  font-size: 0.95rem;
}

/* ---------- Process: horizontal with connector ---------- */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 720px) {
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .process-track::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--stone-100),
      var(--stone-100) 6px,
      transparent 6px,
      transparent 12px
    );
    z-index: 0;
  }
}
.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--amber);
  color: var(--charcoal);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-item h4 {
  color: var(--charcoal);
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 600;
}
.process-item p {
  color: var(--stone-500);
  font-size: 0.88rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--amber), #b8641c);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}
.cta-banner .btn {
  background: var(--charcoal);
  color: #fff;
  width: 100%;
}
.cta-banner .btn:hover {
  background: var(--charcoal-dark);
}

@media (min-width: 640px) {
  .cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 46px 48px;
    gap: 30px;
    flex-wrap: wrap;
  }
  .cta-banner h3 {
    font-size: 1.55rem;
  }
  .cta-banner p {
    font-size: 0.98rem;
  }
  .cta-banner .btn {
    width: auto;
  }
}

/* ---------- Service area: chips + map ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.area-chip {
  border: 1.5px solid var(--stone-100);
  color: var(--stone-700);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: #fff;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--stone-100);
}
.map-box iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
.map-box .map-footer {
  background: #fff;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.map-box .map-footer .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .map-box iframe {
    height: 340px;
  }
  .map-box .map-footer {
    padding: 18px 22px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .map-box .map-footer .btn {
    width: auto;
  }
}
.map-box .map-footer .addr {
  font-size: 0.92rem;
  color: var(--stone-700);
}
.map-box .map-footer .addr strong {
  display: block;
  color: var(--charcoal);
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--charcoal);
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--amber);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--stone-500);
  margin-top: 14px;
  font-size: 0.94rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal-dark);
  color: var(--stone-400);
  padding: 48px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.footer-grid .brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid p.desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #6b6157;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
  }
}
@media (min-width: 960px) {
  footer {
    padding: 58px 0 26px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.82rem;
  }
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--amber);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}
body {
  padding-bottom: 60px;
}

@media (min-width: 640px) {
  .mobile-call-bar {
    display: none;
  }
  .topbar .top-phone {
    display: inline;
  }
  body {
    padding-bottom: 0;
  }
}
