:root {
  --obsidian: #0B0D10;
  --off-white: #F7F7F4;
  --gold: #D1B06E;
  --graphite: #2A2E33;
  --slate: #E6E6E0;
  --white: #ffffff;
  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5rem, 9vw, 8rem);
  --radius: 1.1rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--obsidian);
  background: var(--off-white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 1000;
  transform: translateY(-160%); padding: .75rem 1rem;
  background: var(--gold); color: var(--obsidian); font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-status {
  background: var(--obsidian);
  color: var(--off-white);
  border-bottom: 1px solid rgba(247,247,244,.12);
}
.site-status-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding-block: .55rem;
  text-align: center;
  font-size: .82rem;
  line-height: 1.35;
}
.site-status-label {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-status-label::after {
  content: "·";
  margin-left: .7rem;
  color: rgba(247,247,244,.48);
}
.site-status-message { color: #dedfdb; }
.site-status-message strong { color: var(--off-white); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--off-white) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,13,16,.08);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: clamp(168px, 20vw, 220px); }
.header-contact {
  display: inline-flex; gap: .65rem; align-items: center; text-decoration: none;
  font-weight: 600; font-size: .95rem; border-bottom: 1px solid var(--obsidian); padding-bottom: .2rem;
}
.header-contact:hover, .header-contact:focus-visible { color: #6f5726; border-color: var(--gold); }



.hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(5rem, 9vw, 8rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.hero-heading {
  grid-column: 1 / -1;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #755d2d;
}

h1, h2, h3 {
  font-family: "Outfit", "Inter", sans-serif;
  margin: 0;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  max-width: 19ch;
  font-weight: 600;
}

.hero h1 {
  max-width: none;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1.08;
  max-width: 20ch;
  font-weight: 600;
}

h2 {
  text-wrap: balance;
}


h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.hero-lead {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.55;
  color: var(--graphite);
}

.hero-support {
  margin: 1.2rem 0 0;
  max-width: 48rem;
  color: #4a4e53;
}



.button {
  display: inline-flex; align-items: center; gap: 1rem; margin-top: 2.25rem;
  padding: .95rem 1.25rem; border: 1px solid var(--obsidian); background: var(--obsidian); color: var(--off-white);
  text-decoration: none; font-weight: 600; transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { background: var(--gold); color: var(--obsidian); transform: translateY(-2px); }

.hero-system { border-top: 1px solid var(--obsidian); padding-top: 1.5rem; }
.system-mark { width: 3rem; height: .18rem; background: var(--gold); margin-bottom: 1.5rem; }
.system-label { margin: 0 0 1rem; color: #5b5f64; font-size: .86rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.hero-system ol { list-style: none; margin: 0; padding: 0; }
.hero-system li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--slate); }
.hero-system li span { font-size: .78rem; color: #777b80; }
.hero-system li strong { font-family: "Outfit", sans-serif; font-size: 1.28rem; font-weight: 600; }

.section { padding: var(--section) 0; border-top: 1px solid var(--slate); }
.split-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.prose { font-size: clamp(1.03rem, 1.25vw, 1.18rem); color: var(--graphite); max-width: 48rem; }
.prose p { margin: 0 0 1.3rem; }
.prose p:last-child { margin-bottom: 0; }

.help { background: var(--white); }
.section-heading { margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.section-heading h2 { max-width: none; }
.section-heading > p:last-child { max-width: 42rem; color: #5c6064; margin: 1.2rem 0 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--obsidian); }
.card { position: relative; padding: 2rem clamp(1rem, 2.3vw, 2rem) 2.4rem; border-right: 1px solid var(--slate); }
.card:first-child { padding-left: 0; }
.card:last-child { border-right: 0; }
.card-index { display: block; color: #8b6c2d; font-weight: 700; font-size: .8rem; margin-bottom: 3.5rem; }
.card h3 { margin-bottom: 1rem; }
.card p { margin: 0; color: #4d5155; }

.serve .section-intro { margin: 1.5rem 0 0; max-width: 38rem; color: #55595e; }
.list-label { margin: 0 0 1.25rem; font-weight: 600; }
.signal-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--obsidian); }
.signal-list li { position: relative; padding: 1rem 0 1rem 2rem; border-bottom: 1px solid var(--slate); }
.signal-list li::before { content: ""; position: absolute; left: 0; top: 1.68rem; width: .5rem; height: .5rem; background: var(--gold); }

.development { padding: var(--section) 0; background: var(--obsidian); color: var(--off-white); }
.development-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.development h2 { max-width: 13ch; }
.eyebrow.light { color: var(--gold); }
.light-copy { color: #d3d4d1; }

.contact { padding: var(--section) 0; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.contact-links { border-top: 1px solid var(--obsidian); }
.contact-links a { display: grid; grid-template-columns: 7rem 1fr auto; align-items: center; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--slate); text-decoration: none; }
.contact-links a > span:first-child { color: #65696d; font-size: .88rem; }
.contact-links strong { font-weight: 600; overflow-wrap: anywhere; }
.contact-links a:hover strong, .contact-links a:focus-visible strong { color: #7b612d; }

.site-footer { background: var(--obsidian); color: #b9bbb8; padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-inner img { width: 170px; filter: invert(1) grayscale(1) brightness(2.2); opacity: .94; }
.footer-inner p { margin: 0; font-size: .84rem; text-align: right; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }






@media (min-width: 821px) {
  h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.08;
  }
}

@media (max-width: 820px) {
  h1,
  h2 {
    max-width: 100%;
  }

  .hero-grid,
  .split-grid,
  .development-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-heading {
    grid-column: 1;
  }

  .hero-system {
    max-width: 30rem;
  }

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

  .card {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--slate);
  }

  .card-index {
    margin-bottom: 1.5rem;
  }

  .contact-links a {
    grid-template-columns: 5.5rem 1fr auto;
  }
}




@media (max-width: 560px) {
  .site-status-inner {
    min-height: 0;
    display: block;
    padding-block: .6rem;
    font-size: .78rem;
  }

  .site-status-label {
    display: block;
    margin-bottom: .18rem;
  }

  .site-status-label::after {
    content: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .header-contact {
    font-size: .88rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
  font-size: clamp(1.95rem, 8.4vw, 2.55rem);
  line-height: 1.04;
}

  h2 {
  font-size: clamp(1.6rem, 6.4vw, 2.15rem);
  line-height: 1.1;
}
  
  .contact-links a { grid-template-columns: 1fr auto; gap: .35rem 1rem; }
  .contact-links a > span:first-child { grid-column: 1 / -1; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner p { text-align: left; }
}
