:root {
  --ink: #0e1b2c;
  --ink-2: #1b2b40;
  --paper: #faf8f4;
  --surface: #ffffff;
  --line: #e6e1d8;
  --text: #1c2531;
  --muted: #5b6675;
  --accent: #0f7a55;
  --accent-hover: #0a5c40;
  --gold: #d4ae3c;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  --radius: 12px;
  --shadow: 0 1px 2px rgba(14, 27, 44, 0.06), 0 8px 24px rgba(14, 27, 44, 0.08);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

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

.narrow { max-width: 760px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

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

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper); }

.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-block { display: block; width: 100%; }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
}

.logo-text small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a:not(.btn):hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { content: ""; left: 0; top: -7px; }
.nav-toggle-bar::after { content: ""; left: 0; top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(15, 122, 85, 0.35), transparent 55%),
    var(--ink);
  color: #d7deea;
  padding: 88px 0 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--gold); }

.lead {
  font-size: 1.15rem;
  max-width: 40ch;
  margin-bottom: 2em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.hero-card h2 { font-size: 1.4rem; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 16px;
  height: 9px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* Value strip */
.values {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.values-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value {
  padding: 28px 20px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value:first-child { border-left: 0; padding-left: 0; }
.value strong { color: var(--ink); }
.value span { color: var(--muted); font-size: 0.92rem; }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head p:last-child { color: var(--muted); }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--accent);
}

.card p { color: var(--muted); margin: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.founder-card {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(15, 122, 85, 0.35), transparent 60%),
    var(--ink);
  color: #d7deea;
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow);
}

.founder-monogram {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}

.founder-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 24px;
}

.founder-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.founder-facts li {
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.founder-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.double-rule {
  width: 80px;
  height: 8px;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 4px 0 28px;
}

.about-copy p:not(.eyebrow) { color: var(--muted); }

.about-copy p.about-motto {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.5em 0 0;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: none;
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.step p { color: var(--muted); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  position: relative;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
}

.faq details[open] summary::after { content: "\2212"; }

.faq details p {
  color: var(--muted);
  padding-bottom: 12px;
}

/* CTA band */
.cta {
  background: var(--accent);
  color: #e6f4ee;
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta h2 { color: #fff; margin-bottom: 0.25em; }
.cta p { margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-grid p { color: var(--muted); }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 8px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.contact-list li:last-child { border-bottom: 0; }

.contact-label {
  font-weight: 600;
  color: var(--ink);
}

.contact-list a {
  text-decoration: none;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #9aa6b6;
  padding: 64px 0 0;
  font-size: 0.9rem;
}

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

.logo-footer .logo-mark { background: var(--ink-2); }
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text small { color: #9aa6b6; }

.disclaimer {
  max-width: 520px;
  margin-top: 20px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #d7deea;
  text-decoration: none;
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--ink-2);
  margin-top: 48px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom p { margin: 0; font-size: 0.82rem; }

/* Legal page */
.legal {
  padding: 72px 0 96px;
}

.legal h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
.legal h2 { font-size: 1.4rem; margin-top: 2em; }
.legal .updated { color: var(--muted); }
.legal ul { padding-left: 1.25em; margin: 0 0 1em; }
.legal li { margin-bottom: 0.5em; }

.legal-footer {
  margin-top: 0;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  flex-wrap: wrap;
}

.legal-footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.legal-footer-nav a { color: #d7deea; text-decoration: none; }
.legal-footer-nav a:hover { color: #fff; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .values-inner { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3) { border-left: 0; padding-left: 0; }
  .value:nth-child(n+3) { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { order: -1; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 16px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }

  .hero { padding: 56px 0 64px; }
  .hero-card { padding: 24px; }
  .hero-actions .btn { flex: 1 1 100%; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }

  .card-grid,
  .steps { grid-template-columns: 1fr; }
  .steps { gap: 32px; }

  .values-inner { grid-template-columns: 1fr; }
  .value,
  .value:first-child,
  .value:nth-child(3) { border-left: 0; padding: 18px 0; }
  .value + .value { border-top: 1px solid var(--line); }

  .cta-inner .btn { width: 100%; }
  .contact-list { padding: 4px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
