:root {
  --forest: #050505;
  --leaf: #c9a227;
  --teal: #8a6a18;
  --mint: #f4efe2;
  --sage: #fbfaf5;
  --navy: #111111;
  --gold: #d6ad3a;
  --ink: #191814;
  --muted: #6f6756;
  --line: #e4dccb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(5, 5, 5, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--sage);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 .75rem; line-height: 1.15; letter-spacing: 0; color: var(--navy); }
h1 { font-size: clamp(2.55rem, 7vw, 5.6rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
h4 { font-size: 1.05rem; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: clamp(58px, 8vw, 104px) 0; }
.section.alt { background: var(--white); }
.eyebrow { color: var(--teal); text-transform: uppercase; font-size: .82rem; font-weight: 800; letter-spacing: .08em; margin-bottom: .55rem; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.2rem); max-width: 820px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { background: var(--teal); transform: translateY(-1px); }
.btn.secondary { background: var(--navy); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 22px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}
.brand-mark {
  width: 22px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.brand-text {
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .94rem; font-weight: 800; color: var(--navy); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 5px; padding: 10px 12px; font-weight: 800; }
.hero-slider, .page-hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  overflow: hidden;
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  background-size: cover;
  background-position: center;
}
.slide.is-active { opacity: 1; }
.slide::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.9), rgba(25,24,20,.66), rgba(201,162,39,.28));
}
.hero-content, .page-hero .container {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding: 70px 0;
}
.hero-content p, .page-hero p { max-width: 720px; color: #f6f0df; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.slider-controls { position: absolute; z-index: 2; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.slider-dot { width: 12px; height: 12px; border-radius: 999px; border: 2px solid var(--white); background: transparent; cursor: pointer; }
.slider-dot.is-active { background: var(--white); }
.page-hero { min-height: 430px; background-size: cover; background-position: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 54px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.image-frame { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid var(--white); }
.image-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.service-feature {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(251,250,245,.88)),
    var(--white);
}
.service-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,.42));
  pointer-events: none;
}
.feature-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.feature-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 44px);
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(17,17,17,.86);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(5,5,5,.22);
}
.feature-badge strong {
  font-size: 1.05rem;
  line-height: 1.2;
}
.feature-badge span {
  color: #efe5c9;
  font-size: .9rem;
}
.feature-content h2 {
  margin-bottom: 1rem;
}
.feature-content .lead {
  max-width: none;
}
.feature-points {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}
.feature-points > div {
  padding-left: 20px;
  border-left: 4px solid var(--gold);
}
.feature-points h3 {
  margin-bottom: .45rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.feature-points p {
  color: var(--muted);
}
.feature-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.call-card {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.call-card span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.call-card strong {
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.2;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(5,5,5,.08);
}
.service-card { padding: 0; overflow: hidden; }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card .card-body { padding: 22px; }
.icon-card { border-left: 5px solid var(--leaf); }
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.process-card { position: relative; padding-top: 56px; }
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--leaf);
  font-size: 1.8rem;
  font-weight: 900;
}
.cta-band {
  background: linear-gradient(120deg, var(--forest), var(--teal));
  color: var(--white);
  padding: clamp(42px, 6vw, 72px) 0;
}
.cta-band h2, .cta-band p { color: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.testimonial {
  position: relative;
  min-height: 0;
  padding: 30px 30px 24px 74px;
  background: linear-gradient(135deg, var(--white), #fffdf7);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 14px 38px rgba(5,5,5,.09);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 26px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: .85;
}
.testimonial-quote {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.72;
}
.testimonial-author {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .94rem;
}
.testimonial-author strong {
  color: var(--navy);
  font-size: 1rem;
}
.testimonial-author span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 0 10px 4px 0;
  background: var(--gold);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.map-card {
  padding: 0;
  overflow: hidden;
}
.map-card h3,
.map-card p {
  padding: 0 20px;
}
.map-card h3 {
  margin-top: 20px;
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  margin-top: 16px;
  border: 0;
}
label { font-weight: 800; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8cfbb;
  border-radius: 5px;
  padding: 13px 14px;
  min-height: 48px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { display: none; padding: 14px 16px; border-radius: 5px; margin-bottom: 18px; font-weight: 800; }
.form-status.success { display: block; background: #f5edcf; color: #4d3908; }
.form-status.error { display: block; background: #fde3dc; color: #88341f; }
.legal-content { background: var(--white); border-radius: 8px; padding: clamp(26px, 4vw, 52px); box-shadow: var(--shadow); }
.legal-content h2 { font-size: 1.7rem; margin-top: 2rem; }
.legal-content h2:first-child { margin-top: 0; }
.site-footer {
  background: var(--navy);
  color: #efe5c9;
  padding: 58px 0 24px;
}
.site-footer h3, .site-footer h4 { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 11px 0; }
  .grid-2, .grid-3, .grid-4, .process, .footer-grid, .form-grid, .testimonial-grid, .service-feature-grid, .map-grid { grid-template-columns: 1fr; }
  .feature-media img { min-height: 340px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-slider, .page-hero { min-height: 520px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav-wrap { min-height: 68px; }
  .nav-links { top: 68px; }
  .brand-mark { width: 20px; height: 25px; }
  .brand-text { font-size: 1.28rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .gallery img { height: 145px; }
  .card { padding: 20px; }
  .feature-media { border-width: 6px; }
  .feature-media img { min-height: 280px; }
  .feature-badge { left: 16px; bottom: 16px; }
  .feature-action { align-items: stretch; }
  .call-card { text-align: center; }
  .testimonial { padding: 56px 20px 20px; }
  .testimonial::before { top: 16px; left: 20px; font-size: 3.5rem; }
  .testimonial-author { display: block; }
  .testimonial-author span { display: block; margin-top: 3px; }
  .testimonial-author span::before { display: none; }
}
