:root {
  --bg: #fbfaf7;
  --bg-soft: #fffdf9;
  --line: #e8e3da;
  --text: #111111;
  --muted: #625b53;
  --accent: #f2682a;
  --accent-deep: #db5720;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 8px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: auto;
  height: 44px;
  max-width: 100%;
  object-fit: contain;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav a {
  color: #202020;
}

.nav a:hover {
  color: var(--accent-deep);
}

.intro-strip {
  padding: 24px 0 0;
  text-align: center;
}

.intro-strip p {
  margin: 0;
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  line-height: 1.45;
  color: #2d2b28;
}

.hero {
  display: block;
  padding: 92px 0 108px;
}

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

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.hero h1 {
  font-size: clamp(3rem, 5.7vw, 5rem);
  max-width: 9.5ch;
}

.lead,
.section-copy,
.card p,
.footer {
  line-height: 1.7;
}

.lead {
  margin: 26px 0 0;
  max-width: 54ch;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: #bfb9ae;
}

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

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  max-width: 18ch;
}

.intro .section-copy {
  max-width: 68ch;
}

.grid {
  display: grid;
  gap: 0;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

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

.card {
  padding: 16px 0 0;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.card p,
.section-copy,
.footer {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.grid-two .card,
.grid-three .card,
.grid-four .card {
  border-top: 1px solid var(--line);
}

.grid-four .card,
.grid-three .card,
.grid-two .card {
  min-height: 0;
}

.contact-panel {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .hero h1,
  .section h2 {
    max-width: none;
  }

  .grid-four,
  .grid-three,
  .grid-two {
    grid-template-columns: 1fr;
  }

  .grid-two .card:not(:first-child),
  .grid-three .card:not(:first-child),
  .grid-four .card:not(:first-child) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
}

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

  .brand img {
    height: 36px;
  }

  .topbar-links,
  .nav,
  .contact-panel,
  .footer,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 16px;
  }

  .intro-strip {
    text-align: left;
  }

  .hero {
    padding: 56px 0 64px;
  }
}
