:root {
  --forest: #113431;
  --forest-deep: #081f1e;
  --forest-mid: #1c4541;
  --mint: #dceee8;
  --mint-soft: #eef7f3;
  --paper: #f8fbf7;
  --cream: #e8f5dc;
  --ink: #102f2d;
  --muted: #657a75;
  --line: rgba(16, 47, 45, 0.16);
  --line-dark: rgba(248, 251, 247, 0.16);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--mint-soft);
  font-family: var(--sans);
  line-height: 1.55;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--forest);
  background: var(--paper);
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--paper);
  background: rgba(8, 31, 30, 0.82);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav,
.header-phone,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 13px;
}

.brand-dots {
  position: relative;
  display: inline-flex;
  gap: 5px;
}

.brand-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cream);
}

.brand-dots::after {
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  border-radius: 999px;
  background: rgba(232, 245, 220, 0.52);
}

.site-nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(248, 251, 247, 0.76);
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream);
}

.header-phone {
  padding: 10px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--forest);
  background: var(--cream);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: var(--paper);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6.1vw, 60px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  min-height: 92svh;
  padding: 112px clamp(20px, 5vw, 76px) 72px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(8, 31, 30, 0.12), rgba(8, 31, 30, 0.56)),
    radial-gradient(circle at 66% 36%, rgba(232, 245, 220, 0.08), transparent 34%),
    var(--forest);
}

.hero-text p {
  max-width: 610px;
  min-width: 0;
  color: rgba(248, 251, 247, 0.76);
  font-size: clamp(16px, 1.5vw, 19px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
}

.button-primary {
  color: var(--forest);
  background: var(--cream);
}

.button-secondary {
  color: var(--paper);
  border-color: var(--line-dark);
}

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

.hero-panel img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.95);
}

.hero-card {
  display: grid;
  align-content: end;
  min-height: 148px;
  padding: 18px;
  border-radius: 8px;
  color: var(--forest);
  background: var(--mint);
}

.hero-card.muted {
  background: rgba(248, 251, 247, 0.14);
  color: var(--paper);
}

.hero-card strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
}

.hero-card span {
  font-size: 13px;
  line-height: 1.25;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 76px);
  color: var(--paper);
  background: var(--forest);
}

.proof-strip article {
  min-height: 132px;
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 250px;
  color: rgba(248, 251, 247, 0.62);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 10vw, 118px) clamp(20px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 7vw, 92px);
  color: var(--paper);
  background:
    radial-gradient(circle, rgba(248, 251, 247, 0.13) 1px, transparent 1.5px) center / 12px 12px,
    var(--forest);
}

.intro p {
  align-self: end;
  color: rgba(248, 251, 247, 0.72);
  font-size: 18px;
}

.services,
.benefits,
.contact {
  background: var(--mint-soft);
}

.section-head {
  max-width: 720px;
  min-width: 0;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

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

.service-list article,
.benefit-grid article,
.lead-form,
.contact-card {
  border-radius: 8px;
  background: var(--paper);
}

.service-list article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
}

.service-list span {
  display: block;
  margin-bottom: 28px;
  color: rgba(16, 47, 45, 0.38);
  font-size: 13px;
}

.service-list p,
.benefit-grid p,
.timeline p,
.contact p {
  color: var(--muted);
}

.benefits {
  padding-top: 88px;
}

.benefit-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
}

.benefit-grid img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
}

.benefit-grid h3,
.benefit-grid p {
  padding-inline: 20px;
}

.benefit-grid h3 {
  margin-top: 20px;
  font-size: 24px;
}

.benefit-grid p {
  padding-bottom: 22px;
  font-size: 14px;
}

.process {
  color: var(--paper);
  background: var(--forest);
}

.process .section-head p,
.process p {
  color: rgba(248, 251, 247, 0.65);
}

.timeline {
  max-width: 860px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
}

.timeline li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.timeline span {
  font-family: var(--serif);
  color: rgba(248, 251, 247, 0.42);
  font-size: 58px;
  line-height: 1;
}

.timeline h3 {
  color: var(--paper);
}

.quote-section {
  display: grid;
  place-items: center;
  min-height: clamp(340px, 42vw, 520px);
  padding: clamp(76px, 10vw, 122px) clamp(20px, 5vw, 76px);
  color: var(--paper);
  background:
    radial-gradient(circle, rgba(248, 251, 247, 0.16) 1px, transparent 1.5px) center / 12px 12px,
    linear-gradient(180deg, rgba(17, 52, 49, 0.96), rgba(8, 31, 30, 0.98)),
    var(--forest);
}

.quote-section blockquote {
  max-width: 860px;
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(31px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  min-height: clamp(560px, 72vw, 760px);
  padding: clamp(84px, 10vw, 132px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(238, 247, 243, 0.96), rgba(248, 251, 247, 0.98)),
    var(--mint-soft);
}

.reviews-heading {
  max-width: 460px;
}

.reviews-heading span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.reviews-slider {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.review-track {
  position: relative;
  display: grid;
  min-height: 380px;
}

.review-slide {
  grid-area: 1 / 1;
  display: grid;
  align-content: space-between;
  min-height: 380px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(16, 47, 45, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(220, 238, 232, 0.78), transparent 28%),
    var(--paper);
  box-shadow: 0 28px 90px rgba(8, 31, 30, 0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.review-slide[hidden] {
  display: none;
}

.review-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.review-slide p {
  max-width: 740px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.1;
}

.review-slide footer {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-slide strong {
  color: var(--ink);
  font-size: 15px;
}

.review-slide span {
  color: var(--muted);
  font-size: 13px;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: var(--forest);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.review-arrow:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

.review-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 47, 45, 0.22);
  cursor: pointer;
}

.review-dots button.is-active {
  width: 28px;
  background: var(--forest);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.82fr);
  gap: clamp(20px, 4vw, 64px);
}

.contact-card {
  display: grid;
  align-content: space-between;
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--paper);
  background: var(--forest);
}

.direct-contact {
  display: grid;
  gap: 12px;
}

.direct-contact a,
.direct-contact span {
  width: fit-content;
  color: rgba(248, 251, 247, 0.84);
  text-decoration: none;
}

.direct-contact a {
  border-bottom: 1px solid currentColor;
  color: var(--cream);
  font-weight: 750;
}

.lead-form {
  width: 100%;
  justify-self: stretch;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(16, 47, 45, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 247, 0.96)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(8, 31, 30, 0.11);
}

.form-head {
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-head h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 36px);
}

.form-head p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

label {
  margin-top: 4px;
  color: rgba(16, 47, 45, 0.72);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 47, 45, 0.17);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 52px;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(16, 47, 45, 0.42);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(220, 238, 232, 0.9);
}

.lead-form .button {
  width: 100%;
  margin-top: 2px;
  min-height: 50px;
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(8, 31, 30, 0.18);
}

.lead-form .button:hover {
  background: var(--forest-mid);
}

.form-message {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

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

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

@media (max-width: 1040px) {
  .menu-button {
    display: block;
    grid-column: 2;
  }

  .header-phone {
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: var(--forest-deep);
  }

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

  .site-nav a {
    padding: 14px 10px;
  }

  .hero,
  .intro,
  .contact,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .service-list,
  .benefit-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 14px 16px;
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .hero-panel,
  .service-list,
  .benefit-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel img {
    min-height: 0;
    aspect-ratio: 1.05;
  }

  .hero-text,
  .hero-panel,
  .section-head,
  .contact-card,
  .lead-form {
    min-width: 0;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .quote-section {
    min-height: 360px;
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .quote-section blockquote {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
    text-align: left;
  }

  .reviews-section {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .review-track,
  .review-slide {
    min-height: 420px;
  }

  .review-slide {
    padding: 26px;
  }

  .review-slide p {
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .timeline li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .timeline span {
    font-size: 42px;
  }

  .contact-card {
    min-height: 0;
    gap: 50px;
  }
}
