:root {
  --bg: #f5f2eb;
  --paper: #fffdf8;
  --text: #171715;
  --muted: #68645d;
  --line: #d9d4ca;
  --accent: #8b5e3c;
  --accent-dark: #68442b;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand-name {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-role {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  font-size: 0.94rem;
  text-decoration: none;
  color: #36332f;
}

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

.nav-cta {
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 8px 15px;
}

.hero {
  padding: 88px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: #4b4842;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-portrait {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 2px;
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  line-height: 1.35;
}

.portrait-caption strong {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.95rem;
}

.portrait-caption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 600;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  font-weight: 600;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 650;
}

.lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: #4b4842;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
}

.actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

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

.button-dark {
  background: var(--text);
}

.text-link {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.proof-card {
  border-top: 2px solid var(--text);
  padding-top: 20px;
}

.proof-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-stat {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.proof-stat strong {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.1rem;
}

.proof-stat span { color: var(--muted); }

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

.section p {
  font-size: 1.08rem;
  color: #4d4943;
}

.credibility {
  margin-top: 30px;
  color: var(--text) !important;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
}

.credibility span {
  color: var(--accent);
  padding: 0 6px;
}

.section-tint {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.services p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact {
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
}

.contact-inner p {
  max-width: 690px;
}

footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 40px;
    align-items: center;
  }

  .hero-portrait {
    max-width: 220px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services article {
    min-height: 0;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 52px 0 58px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .hero-portrait {
    width: 65%;
    max-width: 280px;
    margin: 0;
  }
}
