:root {
  --bg: #f6f7f3;
  --bg-deep: #14201c;
  --surface: rgba(255, 255, 255, 0.9);
  --text: #17211e;
  --muted: #5f6a67;
  --line: rgba(23, 33, 30, 0.12);
  --brand: #2f7668;
  --brand-deep: #17493f;
  --brand-pale: #dfece8;
  --accent: #c59a44;
  --accent-soft: rgba(197, 154, 68, 0.18);
  --shadow-lg: 0 28px 80px rgba(20, 32, 28, 0.14);
  --shadow-md: 0 18px 44px rgba(20, 32, 28, 0.1);
  --radius-xl: 1.6rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.7rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8faf6 0%, #eef3ef 52%, #f8faf6 100%);
}

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

a {
  color: inherit;
}

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.8rem 1rem;
  text-align: center;
  background: rgba(20, 32, 28, 0.94);
  color: #eef5f1;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero,
.section,
.footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1.25rem 0 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand h1,
.hero-copy h2,
.section-heading h3,
.footer h3 {
  margin: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.hero-grid,
.proof,
.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-grid {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vw, 2rem);
}

.hero-copy h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: 1;
  max-width: 13ch;
  text-wrap: balance;
}

.lede,
.intro-grid p,
.service-card p,
.proof-copy p,
.area-panel p,
.footer p,
.contact-card p {
  color: var(--muted);
  line-height: 1.68;
}

.lede {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin: 1.75rem 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 0.75rem;
  background: var(--brand-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(23, 73, 63, 0.18);
}

.cta.secondary,
.cta.ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero-points,
.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.proof-list li {
  min-height: 100%;
  padding: 1rem 1rem 1rem 2.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  font-weight: 600;
}

.hero-points li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem var(--accent-soft);
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.proof-image img {
  height: 100%;
  min-height: 28rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.contact-card {
  position: absolute;
  left: -1rem;
  bottom: 1.2rem;
  width: min(19rem, 92%);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(20, 32, 28, 0.93);
}

.contact-card p,
.contact-card a,
.contact-card strong {
  color: #eef5f1;
}

.contact-card p {
  margin: 0 0 0.85rem;
}

.card-label {
  color: #b9d8d1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.section {
  padding: 1rem 0 1.6rem;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.section-heading h3 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  max-width: 16ch;
  text-wrap: balance;
}

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

.intro-grid article,
.service-card,
.area-panel,
.footer-card,
.proof-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.intro-grid article,
.service-card,
.area-panel,
.footer-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
}

.intro-grid h4,
.service-card h4 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.service-card {
  border-top: 0.32rem solid var(--brand);
}

.service-card.accent {
  border-top-color: var(--accent);
  background: linear-gradient(145deg, #ffffff, #f6f0df);
}

.proof {
  padding: 1.5rem;
  margin-top: 1rem;
  background: #15251f;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.proof-copy {
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.proof-copy .eyebrow,
.proof-copy h3,
.proof-copy p,
.proof-copy li {
  color: #f2f6ef;
}

.proof-copy p {
  color: rgba(242, 246, 239, 0.82);
}

.proof-list {
  grid-template-columns: 1fr;
  margin-top: 1.1rem;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.area-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.chips span {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 0.7rem;
  background: var(--brand-pale);
  border: 1px solid rgba(47, 118, 104, 0.16);
  font-weight: 800;
}

.footer {
  padding: 1.5rem;
  margin: 1rem auto 4rem;
  background: #15251f;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.footer .eyebrow,
.footer h3,
.footer p,
.footer a,
.footer strong {
  color: #f2f6ef;
}

.footer p {
  color: rgba(242, 246, 239, 0.8);
}

.footer-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .hero-grid,
  .proof,
  .footer,
  .hero-points,
  .intro-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .topbar,
  .area-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    left: auto;
    right: 1rem;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 1rem, 1160px);
  }

  .preview-banner {
    position: static;
  }

  .topbar,
  .hero-grid,
  .proof,
  .footer {
    padding: 1rem;
  }

  .brand {
    align-items: flex-start;
  }

  .hero-copy {
    padding: 0.2rem;
  }

  .hero-copy h2,
  .section-heading h3 {
    max-width: none;
  }

  .hero-visual img,
  .proof-image img {
    min-height: 20rem;
  }

  .contact-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}
