*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f4efe5;
  --bg-soft: #e8ede4;
  --bg-deep: #18342f;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffaf2;
  --surface-dark: rgba(16, 34, 31, 0.82);
  --ink: #17312d;
  --ink-soft: #4d645f;
  --ink-faint: #6f827d;
  --line: rgba(23, 49, 45, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #1f675a;
  --brand-strong: #15473f;
  --accent: #d58a57;
  --accent-soft: rgba(213, 138, 87, 0.18);
  --shadow: 0 24px 60px rgba(21, 34, 32, 0.12);
  --shadow-strong: 0 36px 90px rgba(9, 23, 21, 0.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-height: 92px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213, 138, 87, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(31, 103, 90, 0.14), transparent 22%),
    linear-gradient(180deg, #f6f0e7 0%, #eef1e8 34%, #f6f2ea 100%);
  overflow-x: clip;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(26px);
}

body::before {
  width: 22rem;
  height: 22rem;
  left: -9rem;
  top: 6rem;
  background: rgba(213, 138, 87, 0.18);
}

body::after {
  width: 24rem;
  height: 24rem;
  right: -10rem;
  top: 18rem;
  background: rgba(31, 103, 90, 0.14);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.shell-narrow {
  width: min(48rem, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--bg-deep);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px) saturate(145%);
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0.9), rgba(245, 239, 231, 0.82)),
    rgba(247, 242, 235, 0.86);
  border-bottom: 1px solid rgba(23, 49, 45, 0.06);
  box-shadow: 0 10px 28px rgba(16, 30, 28, 0.06);
}

.topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.7rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.topbar a {
  font-weight: 800;
  color: var(--brand);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(213, 138, 87, 0.9), rgba(31, 103, 90, 0.95)),
    #24463f;
  color: #fff;
  font-family: "Avenir Next", "Manrope", sans-serif;
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(31, 103, 90, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-copy span:last-child {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.nav-links a,
.footer-links a,
.footer-contact a,
.topbar a {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.topbar a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(31, 103, 90, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(31, 103, 90, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(23, 49, 45, 0.08);
  box-shadow: none;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.nav-actions .button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 49, 45, 0.12);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(23, 49, 45, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.24rem auto;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 0 0 3rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hero-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #14302b;
  border-radius: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 28, 26, 0.22) 0%, rgba(10, 24, 22, 0.28) 30%, rgba(7, 18, 17, 0.84) 100%),
    linear-gradient(110deg, rgba(9, 26, 24, 0.78) 0%, rgba(11, 30, 28, 0.32) 44%, rgba(11, 31, 29, 0.16) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
}

.hero-overlay-centered {
  align-items: center;
  text-align: center;
  padding: 6.25rem 0 2rem;
}

.eyebrow,
.panel-label,
.trust-kicker,
.service-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.4rem 0.78rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 251, 245, 0.96);
  font-size: 0.76rem;
}

.hero-title {
  margin-top: 1rem;
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 5.6vw, 5.15rem);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: -0.04em;
  width: 100%;
  text-wrap: pretty;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 251, 245, 0.9);
}

.hero-glass-card p {
  max-width: 42rem;
  color: rgba(244, 241, 235, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-actions-centered {
  justify-content: center;
}

.hero-glass-card {
  padding: 2rem 2rem 1.9rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 35, 32, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 90px rgba(8, 18, 17, 0.2);
  backdrop-filter: blur(18px) saturate(135%);
  color: #f8f6f0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.hero-highlights-overlay {
  width: min(var(--max), calc(100% - 2rem));
}

.mini-stat,
.service-card,
.feature-photo,
.process-card,
.area-card,
.faq-item,
.quote-form,
.contact-cards article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mini-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--line-strong);
  box-shadow: none;
  backdrop-filter: blur(14px);
  text-align: left;
}

.mini-stat strong {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 1.1rem;
  color: #fff;
}

.mini-stat span {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(244, 241, 235, 0.82);
}

.feature-photo img,
.cross-sell-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-copy,
.feature-photo-copy {
  padding: 1.15rem;
}

.panel-label {
  padding: 0.42rem 0.68rem;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 800;
}

.section {
  padding: 2.2rem 0;
}

.trust-strip {
  padding-top: 0;
  margin-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article {
  padding: 1.2rem 1.2rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
}

.trust-kicker {
  padding: 0.34rem 0.56rem;
  background: rgba(31, 103, 90, 0.1);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.section-heading,
.feature-grid,
.area-layout,
.cross-sell-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.section-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.feature-copy h2,
.area-copy h2,
.contact-copy h2,
.cross-sell-copy h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  max-width: 14ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.45rem;
  background: rgba(255, 251, 245, 0.72);
}

.service-index {
  padding: 0.4rem 0.64rem;
  background: rgba(23, 49, 45, 0.08);
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3,
.process-card h3,
.area-card h3 {
  margin-top: 1rem;
  font-size: 1.7rem;
}

.service-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.service-card li,
.feature-list span,
.area-chips span,
.tag-cloud span {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.service-card li::before,
.feature-list span::before,
.area-chips span::before,
.tag-cloud span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.feature-band {
  padding: 2.8rem 0;
}

.feature-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(232, 237, 228, 0.86)),
    #fff;
  border: 1px solid rgba(23, 49, 45, 0.08);
  box-shadow: var(--shadow);
}

.feature-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.feature-photo {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.feature-photo img {
  height: 26rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 49, 45, 0.08);
  box-shadow: var(--shadow);
}

.tag-cloud span {
  width: fit-content;
  padding: 0.85rem 1rem 0.85rem 1.6rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(23, 49, 45, 0.07);
}

.process-section {
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 65%;
  background: linear-gradient(180deg, transparent, rgba(31, 103, 90, 0.06));
  z-index: 0;
}

.process-grid,
.faq-list {
  display: grid;
  gap: 1rem;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  position: relative;
  padding: 1.4rem;
  background: rgba(255, 251, 245, 0.76);
}

.process-card span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #fff;
  font-weight: 800;
}

.area-layout,
.cross-sell-grid,
.contact-grid,
.footer-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.95fr);
  align-items: start;
}

.area-chips,
.area-cards {
  display: grid;
  gap: 0.9rem;
}

.area-chips {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.area-cards {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.area-card {
  padding: 1.25rem;
  background: rgba(255, 251, 245, 0.76);
}

.cross-sell-grid {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, rgba(20, 51, 47, 0.96), rgba(31, 103, 90, 0.94));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cross-sell-copy p,
.cross-sell-copy a {
  color: rgba(255, 248, 240, 0.86);
}

.cross-sell-copy .button {
  margin-top: 1.25rem;
}

.cross-sell-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cross-sell-photo img {
  height: 100%;
  min-height: 19rem;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 251, 245, 0.76);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.35rem 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.25rem;
}

.contact-grid {
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.contact-cards article {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.52);
}

.contact-cards a {
  font-weight: 800;
  color: var(--brand);
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  background: rgba(255, 251, 245, 0.78);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(23, 49, 45, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(31, 103, 90, 0.16);
  border-color: rgba(31, 103, 90, 0.36);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-grid {
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(23, 49, 45, 0.08);
}

.brand-footer .brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  align-items: flex-start;
}

.footer-contact {
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .faq-answer,
  .button,
  .nav-links a,
  .footer-links a,
  .footer-contact a,
  .topbar a {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .nav-actions {
    display: none;
  }

  .hero-grid,
  .section-heading,
  .feature-grid,
  .area-layout,
  .cross-sell-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .site-header {
    background: rgba(247, 242, 235, 0.9);
  }

  .nav-shell {
    min-height: 4.6rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.2rem 0 0.8rem;
    gap: 0.9rem;
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .hero {
    padding-top: 0;
  }

  .hero-panel {
    min-height: 42rem;
  }

  .hero-overlay-centered {
    padding-top: 4.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .service-grid,
  .process-grid,
  .trust-grid,
  .field-grid,
  .feature-list,
  .area-chips,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .cross-sell-grid,
  .quote-form,
  .tag-cloud {
    padding: 1.15rem;
  }

  .section {
    padding: 1.7rem 0;
  }

  .hero-glass-card {
    padding: 1.5rem 1.2rem;
  }

  .faq-question {
    font-size: 1.2rem;
  }

  .brand-copy span:last-child {
    display: none;
  }
}
