:root {
  --ink: #13201c;
  --muted: #5f6f68;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --line: #dde3db;
  --green: #1d8f70;
  --green-dark: #0f5f4c;
  --coral: #ec6c55;
  --gold: #e6ad3a;
  --blue: #276fc2;
  --shadow: 0 24px 70px rgba(35, 49, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(247, 244, 236, 0.88);
  border-bottom: 1px solid rgba(19, 32, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.logo-band,
.result-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-photo-logo {
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
}

.brand-photo-logo img {
  position: absolute;
  width: 300px;
  height: auto;
  max-width: none;
  left: -56px;
  top: -104px;
}

.brand-name {
  color: var(--ink);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 64px) 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.35vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: var(--green-dark);
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.hero-stats div {
  min-width: 128px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  margin-top: 38px;
  border: 1px solid rgba(19, 32, 28, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.logo-band {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 64px);
  border-block: 1px solid rgba(19, 32, 28, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.logo-band span {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section,
.feature-band,
.contact {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 64px);
}

.intro,
.feature-band,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.intro p:last-child,
.feature-band p,
.contact p,
.service-card p,
.timeline p,
.price-card p {
  color: var(--muted);
}

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

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

.service-card,
.price-card,
.timeline article {
  border: 1px solid rgba(19, 32, 28, 0.1);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  min-height: 236px;
  padding: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 95, 76, 0.96), rgba(19, 32, 28, 0.96)),
    var(--green-dark);
}

.feature-band .eyebrow,
.feature-band p {
  color: rgba(255, 255, 255, 0.76);
}

.result-list {
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.result-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.result-list strong {
  font-size: 2rem;
}

.result-list span {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

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

.timeline article {
  padding: 22px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing {
  background: #fff;
}

.price-card {
  padding: 26px;
}

.price-card.highlighted {
  color: #fff;
  background: var(--ink);
}

.price-card.highlighted p {
  color: rgba(255, 255, 255, 0.76);
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
}

.price-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-dark);
  font-weight: 800;
}

.price-card.highlighted a {
  color: var(--gold);
}

.contact {
  background: #e8efe8;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(19, 32, 28, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(35, 49, 43, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  color: #fff;
  background: var(--green-dark);
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 64px);
  color: var(--muted);
  background: var(--ink);
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .feature-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand-photo-logo {
    width: 44px;
    height: 44px;
  }

  .brand-photo-logo img {
    width: 262px;
    left: -49px;
    top: -91px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    margin-top: 0;
  }

  h1 {
    font-size: 2.8rem;
  }

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

  .hero-stats {
    align-items: stretch;
  }

  .hero-stats div {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
  }

  .result-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-list span {
    text-align: left;
  }
}
