:root {
  --brown: #5b2b16;
  --brown-dark: #32170d;
  --brown-soft: #8d624d;
  --cream: #faf7f2;
  --sand: #efe4d7;
  --white: #ffffff;
  --ink: #1e1713;
  --muted: #77665c;
  --line: rgba(91, 43, 22, 0.16);
  --shadow: 0 24px 70px rgba(50, 23, 13, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(141, 98, 77, 0.24), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f4eadf 56%, #e8d6c8 100%);
  overflow: hidden;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: min(390px, 64vw); height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; color: var(--brown-dark); }
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--brown); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--brown);
  border-radius: 999px;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; color: var(--brown); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 56px;
  align-items: center;
  padding-bottom: 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--brown-dark); }
h1 { font-size: clamp(46px, 8vw, 92px); letter-spacing: -0.065em; max-width: 870px; }
h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.045em; }
h3 { font-size: 22px; letter-spacing: -0.025em; }
.hero-text { max-width: 720px; font-size: 20px; color: var(--muted); margin: 26px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--brown); color: var(--white); box-shadow: 0 14px 34px rgba(91, 43, 22, 0.24); }
.btn.secondary { color: var(--brown); border: 1px solid var(--line); background: rgba(255,255,255,0.55); }

.hero-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.card-label { display: inline-block; color: var(--brown); font-weight: 800; margin-bottom: 18px; }
.hero-card h2 { font-size: 34px; }
.hero-card ul { padding-left: 20px; margin: 24px 0 0; color: var(--muted); }
.hero-card li { margin-bottom: 12px; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  border-bottom: 1px solid var(--line);
}
.intro > p { font-size: 20px; color: var(--muted); margin: 38px 0 0; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 295px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(50, 23, 13, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card span { color: var(--brown-soft); font-weight: 900; }
.service-card h3 { margin: 28px 0 14px; }
.service-card p, .coverage-grid p, .step p, .panel p, .footer p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}
.panel, .step, .coverage-grid > div, .contact-box {
  border-radius: 30px;
  padding: 34px;
  border: 1px solid var(--line);
}
.dark-panel { background: var(--brown-dark); }
.dark-panel h2, .dark-panel .eyebrow { color: var(--white); }
.dark-panel p { color: rgba(255,255,255,0.72); }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.step { background: var(--white); }
.step strong { color: var(--brown); }
.step h3 { margin: 18px 0 10px; }

.coverage { border-top: 1px solid var(--line); }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.coverage-grid > div { background: #fffaf5; }
.coverage-grid h3 { margin-bottom: 14px; }

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  border-radius: 36px;
  padding: 72px 32px;
  margin-bottom: 90px;
}
.cta-section .eyebrow, .cta-section h2 { color: var(--white); }
.cta-section h2 { max-width: 860px; margin: 0 auto 30px; }
.cta-section .btn.primary { background: var(--white); color: var(--brown); }

.footer { background: var(--brown-dark); color: var(--white); padding: 70px 0 24px; }
.footer-main, .footer-bottom { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.footer-logo { width: min(360px, 80vw); background: var(--white); border-radius: 16px; padding: 12px; margin-bottom: 24px; }
.footer h2 { color: var(--white); }
.contact-box { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.footer-bottom { margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,0.68); font-size: 14px; }

@media (max-width: 980px) {
  .hero, .intro, .split, .footer-main { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .navbar { align-items: flex-start; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
  }
  .nav-links.open { display: flex; }
  .hero { margin-top: 18px; gap: 28px; }
  .hero-card { padding: 26px; }
  .service-grid, .steps, .coverage-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-bottom { flex-direction: column; }
}
