:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-alt: #eef2e6;
  --text: #18201e;
  --muted: #5d6864;
  --line: rgba(24, 32, 30, 0.14);
  --brand: #27646b;
  --brand-deep: #14393e;
  --accent: #d5a331;
  --warm: #efe6d5;
  --shadow: 0 22px 60px rgba(24, 32, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.preview-banner {
  padding: 0.8rem 1rem;
  text-align: center;
  background: var(--brand-deep);
  color: #eff8f6;
  font-size: 0.92rem;
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.brand h1 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

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

.hero-grid,
.proof,
.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  max-width: 13ch;
}

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

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

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

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.cta.secondary,
.cta.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero-points,
.proof-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.hero-points li,
.proof-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.7rem;
}

.hero-points li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.proof-image img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 4 / 5;
}

.contact-card,
.service-card,
.intro-grid article,
.area-panel,
.footer-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card {
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
  width: min(18rem, 92%);
  padding: 1.25rem;
  border-radius: 0.5rem;
}

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

.card-label {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.section {
  padding: 2.5rem 0;
}

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

.section-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 17ch;
}

.intro-grid,
.cards {
  display: grid;
  gap: 1rem;
}

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

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

.intro-grid article,
.service-card,
.area-panel,
.footer-card {
  border-radius: 0.5rem;
  padding: 1.3rem;
}

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

.service-card.accent {
  background: linear-gradient(135deg, var(--warm) 0%, var(--surface-alt) 100%);
}

.proof {
  padding: 1rem 0 0;
}

.proof-copy {
  padding-right: 1rem;
}

.proof-image img {
  aspect-ratio: 5 / 4;
}

.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.9rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid rgba(39, 100, 107, 0.16);
  font-weight: 700;
}

.footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.footer-card p {
  overflow-wrap: anywhere;
}

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

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

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

  .proof-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    padding-top: 1rem;
  }

  .topbar {
    margin-bottom: 1.4rem;
  }

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