:root {
  --ink: #14201c;
  --muted: #5d6b65;
  --paper: #f4f1e9;
  --paper-deep: #e9e3d6;
  --white: #fffdf8;
  --green: #174a3a;
  --green-bright: #2c745c;
  --line: rgba(20, 32, 28, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #d5a846;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 24px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus { top: 0; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border-radius: 50% 50% 50% 12%;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: -0.08em;
  transform: rotate(-5deg);
}

.brand-mark span { transform: rotate(5deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.nav-links a:not(.button):hover::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 100px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-bright);
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.secondary:hover { background: rgba(23, 74, 58, 0.07); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 74, 58, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  right: -180px;
  top: -240px;
}

.hero::after {
  width: 340px;
  height: 340px;
  right: 7%;
  bottom: -255px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 96px;
  padding: 104px 0 112px;
}

h1, h2, h3, p { margin-top: 0; }

h1,
.page-title {
  max-width: 860px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-note {
  padding-left: 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section { padding: 120px 0; }

.section + .section { border-top: 1px solid var(--line); }

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 510px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green);
  color: white;
  box-shadow: 0 30px 80px rgba(20, 32, 28, 0.14);
}

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 7vw, 88px);
}

.product-copy .eyebrow { color: #a9d3bd; }

.product-copy h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.product-copy p {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.product-copy .button {
  border-color: white;
  background: white;
  color: var(--green);
}

.product-art {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  background: #d9c78f;
}

.product-art::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: 50%;
  bottom: -350px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f6f0de;
  box-shadow: 0 0 0 26px rgba(246, 240, 222, 0.25), 0 0 0 52px rgba(246, 240, 222, 0.1);
}

.flag {
  position: absolute;
  left: 50%;
  bottom: 190px;
  width: 5px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: var(--green);
}

.flag::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 5px;
  width: 104px;
  height: 66px;
  background: #c44e37;
  clip-path: polygon(0 0, 100% 22%, 0 100%);
}

.flag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 48px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(20, 32, 28, 0.15);
}

.pill {
  position: absolute;
  top: 34px;
  right: 34px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 32, 28, 0.16);
  border-radius: 100px;
  background: rgba(255, 253, 248, 0.65);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.principle {
  min-height: 270px;
  padding: 38px;
  background: var(--paper);
}

.principle .number {
  margin-bottom: 68px;
  color: var(--green-bright);
  font-family: var(--serif);
  font-size: 20px;
}

.principle h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-monogram {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(110px, 18vw, 230px);
  letter-spacing: -0.12em;
}

.founder-monogram::after {
  content: "Founder-led · Maryland";
  position: absolute;
  left: 28px;
  bottom: 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.founder-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-band {
  padding: 100px 0;
  background: var(--ink);
  color: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.contact-band .eyebrow { color: #8ec0a8; }

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.contact-band .button {
  border-color: white;
  background: white;
  color: var(--ink);
}

.page-hero {
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--line);
}

.page-title {
  margin-bottom: 24px;
  font-size: clamp(50px, 7vw, 88px);
}

.page-hero .lede { margin-bottom: 0; }

.prose {
  max-width: 780px;
  padding: 80px 0 120px;
}

.prose h2 {
  margin: 54px 0 16px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.prose ul { padding-left: 22px; }
.prose a { color: var(--green); font-weight: 700; }
.prose .updated { font-size: 13px; }

.support-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 42px 0;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.support-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.support-card span { color: var(--muted); font-size: 14px; }

.site-footer {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .nav { min-height: 72px; }
  .nav-links li:not(:last-child) { display: none; }
  .brand { font-size: 12px; letter-spacing: 0.1em; }
  .brand-mark { width: 29px; height: 29px; }
  .hero { min-height: auto; }
  .hero-grid,
  .section-heading,
  .founder-grid,
  .contact-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 52px; padding: 84px 0; }
  h1 { font-size: clamp(50px, 16vw, 76px); }
  .hero-note { max-width: 420px; }
  .section { padding: 80px 0; }
  .section-heading { gap: 24px; margin-bottom: 42px; }
  .product-card { grid-template-columns: 1fr; }
  .product-art { min-height: 360px; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: auto; }
  .principle .number { margin-bottom: 38px; }
  .founder-grid { gap: 42px; }
  .founder-monogram { min-height: 340px; }
  .contact-inner { align-items: start; }
  .contact-inner .button { justify-self: start; }
  .support-options { grid-template-columns: 1fr; }
  .footer-grid { align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
