:root {
  --bg: #ffffff;
  --text: #17201b;
  --muted: #617169;
  --line: #dfe7e2;
  --green: #0d6a4d;
  --green-dark: #073d31;
  --gold: #a87727;
  --soft: #f6faf7;
  --shadow: 0 18px 42px rgba(23, 32, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark,
.initials {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--soft);
  color: var(--green-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.home-hero,
.home-reviews,
.inner-page,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100svh - 75px);
  padding: clamp(44px, 8vw, 92px) 0;
}

.home-copy h1,
.page-hero h1,
.section-heading h2,
.feature-panel h2,
.review-form-wrap h2,
.timeline h2,
.info-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.home-copy h1 {
  font-size: clamp(3.8rem, 12vw, 8.5rem);
}

.home-copy p,
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badges,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badges span,
.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--green-dark);
  font-weight: 800;
}

.focus-card,
.review-card,
.info-card,
.feature-panel,
.review-form-wrap,
.contact-grid > * {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.focus-card {
  padding: clamp(24px, 4vw, 34px);
}

.initials {
  width: min(100%, 250px);
  aspect-ratio: 1;
  margin-bottom: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 7rem);
}

.focus-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.focus-card strong {
  display: block;
  font-size: 1.12rem;
}

.home-reviews {
  padding: clamp(42px, 7vw, 84px) 0;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.review-grid,
.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-grid {
  margin-top: 30px;
}

.review-card,
.info-card,
.feature-panel {
  padding: 24px;
}

.review-card h2,
.review-card h3,
.info-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.review-card blockquote,
.info-card p,
.feature-panel p,
.timeline p,
.review-form-wrap p {
  margin: 0;
  color: var(--muted);
}

.review-card span,
.info-card span,
.contact-grid span {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rating {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.page-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.inner-page {
  padding: clamp(46px, 7vw, 86px) 0;
}

.page-hero {
  margin-bottom: clamp(34px, 6vw, 68px);
}

.research-page {
  display: grid;
  gap: 24px;
}

.pill-list {
  margin-top: 0;
}

.feature-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.timeline {
  display: grid;
  gap: 16px;
  width: min(900px, 100%);
}

.timeline article {
  position: relative;
  border-left: 2px solid var(--line);
  padding: 0 0 26px 30px;
}

.timeline article span {
  position: absolute;
  left: -8px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.timeline h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.review-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.review-form {
  display: grid;
  gap: 16px;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
}

.review-form button {
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-grid > * {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.contact-grid strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .home-hero,
  .review-form-wrap {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .initials {
    width: 190px;
  }

  .review-grid,
  .card-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .home-hero,
  .home-reviews,
  .inner-page,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .home-copy h1 {
    font-size: clamp(3.2rem, 20vw, 4.5rem);
  }

  .badges span,
  .pill-list span {
    width: 100%;
  }

  .review-grid,
  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}