:root {
  --plum: #4A2F38;
  --plum-deep: #3A242C;
  --taupe: #C6B6A8;
  --taupe-soft: #E3D9D0;
  --cream: #F7F3EF;
  --ink: #241A1E;
  --muted: #6E5F63;
  --line: rgba(74, 47, 56, 0.14);
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.5rem, 2.6vw, 2.125rem);
  --text-hero: clamp(2.125rem, 5vw, 3.5rem);
  --pad: clamp(1.25rem, 5vw, 5rem);
  --gap: clamp(1.5rem, 3vw, 2.5rem);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Satoshi', -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3 { font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 0.6em; }
h1 { font-size: var(--text-hero); max-width: 18ch; }
h2 { font-size: var(--text-xl); max-width: 26ch; }
h3 { font-size: var(--text-lg); letter-spacing: -0.005em; }
p { margin: 0 0 1em; max-width: 62ch; }

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.lede { font-size: var(--text-lg); line-height: 1.55; color: var(--muted); max-width: 56ch; }
.lede--tight { font-size: var(--text-base); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: var(--plum); color: #fff; padding: .6rem 1rem; z-index: 99; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  background: rgba(247, 243, 239, 0.86);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--plum); }
.brand__mark { width: 26px; height: 30px; }
.brand__word {
  font-size: var(--text-sm); font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.site-nav a { font-size: var(--text-sm); text-decoration: none; color: var(--muted); }
.site-nav a:hover { color: var(--plum); }

.btn {
  display: inline-block;
  background: var(--plum); color: var(--cream);
  padding: .85rem 1.6rem; border-radius: var(--radius);
  font-size: var(--text-sm); letter-spacing: .04em;
  text-decoration: none; transition: background .25s ease, transform .25s ease;
}
.btn:hover { background: var(--plum-deep); transform: translateY(-1px); }
.btn--sm { padding: .55rem 1.1rem; }
.btn--light { background: var(--cream); color: var(--plum); }
.btn--light:hover { background: #fff; }
.link-arrow { font-size: var(--text-sm); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; color: var(--plum); }
.link-arrow::after { content: ' \2192'; }
.link-arrow--light { color: var(--taupe-soft); border-color: rgba(255,255,255,.3); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: var(--gap);
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--pad) clamp(3rem, 7vw, 6rem);
}
.hero__actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__image { margin: 0; overflow: hidden; border-radius: var(--radius); }
.hero__image img { aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center 28%; }

/* Stats strip */
.strip { background: var(--taupe); }
.strip ul {
  list-style: none; margin: 0; padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
.strip li { display: flex; flex-direction: column; gap: .25rem; color: var(--plum); }
.strip strong { font-size: var(--text-lg); font-weight: 500; }
.strip span { font-size: var(--text-xs); letter-spacing: .06em; color: rgba(58,36,44,.75); }

/* Sections */
.section { padding: clamp(3.5rem, 8vw, 7rem) var(--pad); border-bottom: 1px solid var(--line); }
.section__head { margin-bottom: clamp(2rem, 4vw, 3.25rem); max-width: 62ch; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.4vw, 2rem); border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -20px rgba(36,26,30,.5); }
.card p { color: var(--muted); font-size: var(--text-sm); margin-bottom: 0; }
.card--quiet { background: transparent; border: none; border-top: 2px solid var(--plum); padding-left: 0; padding-right: 0; }
.card--quiet:hover { transform: none; box-shadow: none; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split p { color: var(--muted); }
.checklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.checklist li {
  position: relative; padding: 1rem 0 1rem 1.9rem;
  border-bottom: 1px solid var(--line); font-size: var(--text-sm);
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 1.45rem;
  width: 9px; height: 9px; border: 1px solid var(--plum); border-radius: 50%;
}
.note { font-size: var(--text-xs); color: var(--muted); margin-top: 2.5rem; max-width: 70ch; }

/* Contact */
.contact { background: var(--plum); color: var(--cream); padding: clamp(3.5rem, 8vw, 7rem) var(--pad); }
.contact .eyebrow, .contact .lede { color: var(--taupe); }
.contact h2 { color: #fff; }
.details {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem var(--gap); margin: 2.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 2rem;
}
.details dt { font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); margin-bottom: .35rem; }
.details dd { margin: 0; font-size: var(--text-base); }
.details a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.details a:hover { border-color: #fff; }

/* Footer */
.site-footer { padding: clamp(2.5rem, 5vw, 4rem) var(--pad); text-align: center; color: var(--muted); }
.brand__mark--footer { width: 28px; height: 32px; margin: 0 auto 1.25rem; color: var(--plum); }
.site-footer p { margin: 0 auto .4rem; font-size: var(--text-sm); letter-spacing: .04em; }
.fine { font-size: var(--text-xs); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 860px) {
  .hero, .split { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .hero__image img { aspect-ratio: 16 / 10; }
  h1 { max-width: 24ch; }
  .strip ul { grid-template-columns: repeat(2, 1fr); }
  .brand__word { display: none; }
  .site-nav { gap: 1rem; }
  .site-nav a:not(.btn) { font-size: var(--text-xs); }
}
@media (max-width: 420px) {
  .site-nav a:not(.btn) { display: none; }
  .brand__word { display: inline; }
}
