:root {
  --ink: #202421;
  --muted: #656a64;
  --line: #e5e0d3;
  --paper: #ffffff;
  --soft: #f8f7f2;
  --emerald: #075c42;
  --emerald-2: #0f7a55;
  --gold: #b6842d;
  --gold-soft: #efe3c8;
  --shadow: 0 24px 70px rgba(32, 36, 33, 0.09);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 172px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #383d38;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--emerald);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--emerald);
}

.header-cta:hover,
.button.primary:hover {
  background: #064936;
}

.button.secondary {
  color: var(--emerald);
  background: #fff;
  border-color: var(--emerald);
}

.button.secondary:hover {
  background: #f3faf6;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section,
.section-band {
  width: 100%;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.section-band {
  padding: 72px 24px 76px;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 64px;
  align-items: end;
  min-height: calc(100vh - 86px);
  max-height: 820px;
  background:
    linear-gradient(90deg, rgba(7, 92, 66, 0.07), rgba(255, 255, 255, 0)),
    #fff;
}

.hero-inner,
.hero-panel {
  max-width: var(--max);
}

.hero-inner {
  justify-self: end;
  width: min(100%, 680px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--emerald);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.hero-panel {
  justify-self: start;
  width: min(100%, 430px);
  padding: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.panel-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--gold);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading p:last-child,
.about-copy p,
.contact-copy p,
.plan-fit,
.service-card p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  grid-column: span 2;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-number {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.featured-service {
  grid-column: span 4;
  display: grid;
  align-content: end;
  color: #fff;
  background: var(--emerald);
  border-color: var(--emerald);
}

.featured-service p,
.featured-service .service-number {
  color: rgba(255, 255, 255, 0.78);
}

.section-soft {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.pricing-heading > div:first-child {
  max-width: 680px;
}

.billing-toggle {
  display: inline-flex;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.billing-option {
  min-width: 96px;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.billing-option.active {
  color: #fff;
  background: var(--emerald);
}

.pricing-note {
  max-width: 760px;
  color: var(--muted);
}

.pricing-note code {
  color: var(--emerald);
  font-weight: 800;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card.emphasized {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.price {
  margin: 14px 0 22px;
  color: var(--ink);
}

.price span,
.custom-price {
  display: block;
  color: var(--emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.price small {
  color: var(--muted);
}

.custom-price {
  margin: 22px 0;
  font-size: 2.1rem;
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.price-card li {
  margin-bottom: 10px;
}

.price-card .button {
  margin-top: auto;
}

.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.about-copy {
  columns: 2 320px;
  column-gap: 42px;
}

.about-copy p {
  break-inside: avoid;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d1bf;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(182, 132, 45, 0.22);
  border-color: var(--gold);
}

.form-submit {
  width: max-content;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 44px 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-nav.open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

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

  .hero {
    min-height: auto;
    max-height: none;
    gap: 36px;
    padding-top: 54px;
  }

  .hero-inner,
  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

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

@media (max-width: 720px) {
  .brand img {
    width: 146px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-band {
    padding: 46px 20px 58px;
  }

  h1 {
    font-size: 3rem;
  }

  .service-grid,
  .pricing-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .featured-service {
    grid-column: auto;
  }

  .pricing-heading {
    display: grid;
    align-items: start;
  }

  .price-card {
    min-height: auto;
  }

  .form-status {
    grid-column: 1;
  }
}
