:root {
  /* Charcoal-ground identity — the ground is the constant */
  --ground: #282d30;           /* dominant surface, full bleed */
  --ground-raised: #31373a;    /* cards, pull-quotes */
  --ground-recessed: #1f2426;  /* full-bleed bands, footer */
  --text: #f2f1ef;             /* headings + body, warm off-white */
  --muted: #a8afb2;            /* labels, eyebrows, captions */
  --rule-strong: #4a5154;      /* section dividers */
  --hairline: #3a4043;         /* row rules, borders */
  /* Single muted greyish-red accent — one field of color per page */
  --accent: #a35c54;
  --accent-dark: #8a4a43;
  --accent-soft: #c58c85;      /* accent type at paragraph size on dark */
  --max-width: 1100px;
  --font-display: "Archivo Black", "Archivo", Helvetica, Arial, sans-serif;
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* legacy aliases */
  --ink: var(--ground-recessed);
  --navy: var(--ground);
  --navy-dark: var(--ground-recessed);
  --accent-light: var(--accent-soft);
  --bg: var(--ground);
  --bg-alt: var(--ground-recessed);
  --border: var(--hairline);
  --font-serif: var(--font-display);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Archivo Black is a single heavy weight */
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

/* Eyebrow: wide-tracked light caps, borrowed from the logo lockup */
.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(40, 45, 48, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo (charcoal-ground PNG lockup blends into the page) */
.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  display: block;
  height: 34px;
  width: auto;
}

.hero-logo {
  display: block;
  width: min(440px, 82%);
  height: auto;
  margin: 0 auto 36px;
}

.footer-logo {
  display: block;
  height: 66px;
  width: auto;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero — centered furniture on the charcoal ground */
.hero {
  background: var(--ground);
  color: var(--text);
  padding: 100px 0 96px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.hero h1 {
  color: var(--text);
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 auto 24px;
  max-width: 20ch;
}

.hero .tagline {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 38px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-radius: 0;
  border: 1.5px solid var(--accent);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--ground);
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: left;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--rule-strong);
  margin: 0 0 36px;
  border: none;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.prose {
  max-width: 720px;
  margin: 0;
}

.prose p {
  margin-bottom: 22px;
}

/* Imperative line promoted to a display statement */
.callout {
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 20ch;
  margin: 52px 0 0;
  padding: 36px 0 0;
  border-top: 2px solid var(--rule-strong);
}

.callout .accent {
  color: var(--accent);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 20px;
  counter-reset: svc;
}

.service-card {
  background: var(--ground-raised);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--rule-strong);
  border-radius: 0;
  padding: 40px;
  transition: border-top-color 0.2s ease;
}

.service-card:hover {
  border-top-color: var(--accent);
}

.service-card h2 {
  font-size: 1.4rem;
  line-height: 1.12;
  margin-bottom: 16px;
}

.service-card h2::before {
  counter-increment: svc;
  content: "0" counter(svc);
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--muted);
}

/* Home highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.highlight {
  text-align: left;
  padding: 26px 0 0;
  border-top: 3px solid var(--rule-strong);
}

.highlight h3 {
  font-size: 1.2rem;
  line-height: 1.12;
  margin-bottom: 12px;
}

.highlight p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* CTA band — recessed full-bleed band */
.cta-band {
  background: var(--ground-recessed);
  color: var(--text);
  text-align: left;
  padding: 84px 0;
  border-top: 1px solid var(--hairline);
}

.cta-band h2 {
  color: var(--text);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 20ch;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}

/* Contact */
.contact-box {
  text-align: left;
  max-width: 640px;
  margin: 0;
}

.contact-box .email {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--ground);
  color: var(--muted);
  padding: 54px 0 32px;
  text-align: center;
  border-top: 2px solid var(--rule-strong);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.copyright {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ground-recessed);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 18px;
    border-top: 1px solid var(--border);
  }

  .hero {
    padding: 100px 0;
  }

  .section {
    padding: 60px 0;
  }
}
