:root {
  --bg: #fafaf7;
  --bg-alt: #f1f0e8;
  --ink: #0d2615;
  --ink-soft: #3a4f3f;
  --accent: #1f4d2b;
  --accent-warm: #c9a55e;
  --line: #d8d4c2;
  --max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity .15s; }
a:hover { opacity: 0.6; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
}
header .brand img { height: 44px; display: block; }
header nav { display: flex; gap: 36px; }
header nav a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-soft); font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* HERO — different from abandoned.capital: split layout, big SVG ridge silhouette + asymmetric type */
.hero {
  padding: 110px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero .copy {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
.hero h1 {
  font-size: 68px; line-height: 1.05; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic; font-weight: normal;
  color: var(--accent);
}
.hero .lede {
  font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-bottom: 36px;
}
.hero .meta {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-soft); padding-top: 24px; border-top: 1px solid var(--line);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* peak silhouette as the visual anchor */
.hero .ridge {
  position: relative;
  height: 380px;
}
.hero .ridge svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* sections */
section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
section h2 {
  font-size: 40px; line-height: 1.15; letter-spacing: -0.6px;
  margin-bottom: 28px; max-width: 720px;
}
section .intro {
  font-size: 18px; max-width: 720px; color: var(--ink-soft);
}

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px;
}
.card {
  border: 1px solid var(--line); padding: 36px 30px;
  background: var(--bg);
}
.card h3 {
  font-size: 20px; margin-bottom: 14px; color: var(--accent);
}
.card p { font-size: 15px; color: var(--ink-soft); }

.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.metric {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 28px;
}
.metric .v {
  font-size: 36px; letter-spacing: -1px; color: var(--accent);
  display: block; margin-bottom: 6px;
}
.metric .l {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

#contact .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 40px;
}
#contact a { color: var(--accent); }
#contact .label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
#contact address { font-style: normal; }

footer {
  background: var(--bg-alt);
  padding: 56px 0 36px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
footer .wrap {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
  align-items: start;
}
footer img { height: 38px; }
footer p, footer a {
  font-size: 13px; color: var(--ink-soft);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
footer .legal {
  margin-top: 28px; font-size: 11px; color: var(--ink-soft);
  border-top: 1px solid var(--line); padding-top: 20px;
}
footer .nav-col { display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 880px) {
  .hero { padding: 60px 0 80px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .hero .ridge { height: 220px; }
  .cards { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  #contact .row { grid-template-columns: 1fr; }
  footer .wrap { grid-template-columns: 1fr; }
  header nav { display: none; }
}
