:root {
  --ink: #16211e;
  --muted: #5c6b66;
  --forest: #19342f;
  --forest-2: #254f45;
  --sage: #dbe7de;
  --cream: #fbf6ec;
  --sand: #efe2cb;
  --white: #fffdf8;
  --line: rgba(25, 52, 47, 0.16);
  --shadow: 0 24px 70px rgba(26, 39, 35, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #f7efe2 58%, #f3eadc);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 246, 236, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--forest); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--forest);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px) 54px;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  color: var(--forest);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 880px;
  font-size: clamp(3.2rem, 8vw, 7.3rem);
}

.section h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--forest-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.hero-lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: #3f514c;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 16px 34px rgba(25, 52, 47, 0.25);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  color: var(--forest);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(219, 231, 222, 0.82);
  color: var(--forest);
  font-weight: 800;
  font-size: 0.92rem;
}

.form-card,
.service-grid article,
.steps article,
.faq details {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-gallery {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(25, 52, 47, 0.08), rgba(25, 52, 47, 0)),
    rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(25, 52, 47, 0.92);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.gallery-scroll {
  height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 2%, #000 91%, transparent);
}

.gallery-track {
  display: grid;
  gap: 16px;
  padding: 72px 18px 18px;
  animation: hero-scroll 26s linear infinite;
}

.hero-gallery:hover .gallery-track { animation-play-state: paused; }

.gallery-photo {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--forest);
  box-shadow: 0 18px 45px rgba(22, 33, 30, 0.22);
}

.gallery-photo.large { min-height: 360px; }
.gallery-photo.wide { min-height: 220px; }

.gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.gallery-photo.wide img { object-position: center; }
.gallery-photo.large img { object-position: center 42%; }

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
}

.gallery-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.9);
  color: var(--forest);
  font-weight: 900;
  font-size: 0.82rem;
}

@keyframes hero-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 8px)); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

.section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(20px, 5vw, 72px);
}

.split,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  padding: 24px;
  border-radius: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-weight: 900;
}

.steps h3,
.service-grid h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 1.25rem;
}

.steps p,
.service-grid p { margin: 0; }

.feature-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  background: var(--forest);
  color: var(--cream);
}

.feature-band .eyebrow,
.feature-band h2 { color: var(--cream); }

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-grid div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.18);
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.45;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-grid article { padding: 26px; border-radius: 26px; }

.quote-section { align-items: stretch; }

.quote-copy {
  position: sticky;
  top: 100px;
  align-self: start;
}

.service-area {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--sage);
  color: var(--forest) !important;
  font-weight: 800;
}

.form-card {
  overflow: hidden;
  min-height: 840px;
  padding: 10px;
  border-radius: 28px;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
}

.faq details {
  padding: 22px 24px;
  margin-top: 14px;
  border-radius: 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
  font-size: 1.08rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero,
  .split,
  .feature-band,
  .quote-section,
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .hero-gallery,
  .gallery-scroll { min-height: 420px; height: 420px; }
  .gallery-track { animation-duration: 30s; }
  .fit-grid { grid-template-columns: 1fr; }
  .quote-copy { position: static; }
  footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: 3.1rem; }
  .button { width: 100%; }
  .mini-grid { grid-template-columns: 1fr; }
  .form-card { min-height: 900px; padding: 4px; border-radius: 20px; }
}
