:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5b6775;
  --line: #d7dee7;
  --paper: #f8fafc;
  --white: #ffffff;
  --green: #196f63;
  --green-dark: #11534a;
  --blue: #274d7f;
  --gold: #b7791f;
  --shadow: 0 24px 60px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(25, 111, 99, 0.10), transparent 38%),
    linear-gradient(315deg, rgba(39, 77, 127, 0.12), transparent 42%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  padding: 34px 0 64px;
  display: flex;
  flex-direction: column;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-content {
  max-width: 760px;
  margin-top: auto;
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lede {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.section,
.contact-section {
  border-top: 1px solid var(--line);
  padding: 52px 0;
}

.section-heading {
  max-width: 640px;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.service-item {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(23, 33, 43, 0.08);
}

.service-item h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.22rem;
  line-height: 1.22;
}

.service-item p,
.contact-section p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 28px;
  padding-bottom: 72px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(183, 121, 31, 0.4);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 64vh;
    padding-bottom: 48px;
  }

  .hero-content {
    padding-top: 56px;
  }

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

  .service-item {
    min-height: auto;
  }
}
