/* ────────── Site tokens + base + shared chrome ────────── */
:root {
  --bg: #FAFAF7;
  --bg-elev: #FFFFFF;
  --bg-tint: #F2F1EA;     /* very subtle warm tint */
  --ink: #111111;
  --ink-2: #2B2B29;
  --muted: #6B6B66;
  --muted-2: #9A9A93;
  --rule: #E5E4DD;
  --rule-strong: #C9C7BD;

  /* Forest-green accent — committed */
  --accent: oklch(0.38 0.085 155);
  --accent-ink: #FFFFFF;
  --accent-tint: oklch(0.95 0.025 155);   /* paper-thin background tint */
  --accent-rule: oklch(0.78 0.06 155);

  --field-rule: #D9D7CD;
  --maxw: 1240px;
  --gutter: 32px;
  --section-y: 140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

em.serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ────────── Topbar ────────── */
.topbar { padding: 28px 0 0; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
}
.mark-dot {
  width: 9px; height: 9px;
  background: var(--accent);
  display: inline-block;
  transform: translateY(-1px);
}
.mark-name { font-weight: 500; color: var(--ink); }
.mark-domain { color: var(--muted); font-variant-numeric: tabular-nums; }

/* ────────── Footer ────────── */
.footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.footer-brand .name { color: var(--ink); font-weight: 500; }
.footer-brand .where { color: var(--muted); }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 32px;
  font-size: 14px;
}
.footer-links a {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 120ms ease, color 120ms ease;
}
.footer-links a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.footer-links a.ext::after {
  content: "↗";
  margin-left: 6px;
  color: var(--muted-2);
  font-size: 12px;
  display: inline-block;
  transform: translateY(-1px);
}
.footer-meta {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  color: var(--muted-2);
  font-size: 12px;
}

/* ────────── Shared headings ────────── */
.h1 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 40px;
  color: var(--ink);
  max-width: 14ch;
  text-wrap: balance;
}
.h1 em.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }

.lede {
  max-width: 56ch;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* Section labels (numbered eyebrow) */
.section-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.section-label .num {
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.section-title em.serif { letter-spacing: -0.015em; }

/* ────────── Buttons ────────── */
.btn {
  appearance: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 500; font-size: 15px;
  letter-spacing: -0.005em;
  padding: 16px 24px;
  background: var(--accent); color: var(--accent-ink);
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 120ms ease, transform 120ms ease;
}
.btn:hover { background: var(--ink); }
.btn .arrow { display: inline-block; transition: transform 160ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font: inherit; font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-ghost.accent { border-color: var(--accent); color: var(--accent); }
.btn-ghost.accent:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-ghost .arrow { transition: transform 160ms ease; }
.btn-ghost:hover .arrow { transform: translateX(3px); }
.btn-ghost.ext .arrow { transform: rotate(-45deg); }
.btn-ghost.ext:hover .arrow { transform: rotate(-45deg) translateX(3px); }

/* ────────── Two-path (used on Home + About) ────────── */
.paths {
  border-top: 1px solid var(--ink);
}
.paths-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.paths-meta > div {
  padding: 18px 32px 18px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}
.paths-meta > div + div { padding-left: 32px; border-left: 1px solid var(--rule); }
.paths-meta .num { color: var(--accent); font-weight: 500; }
.paths-meta .stay { color: var(--muted-2); text-transform: none; letter-spacing: 0; font-size: 12px; }

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.path {
  padding: 72px 56px 80px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 460px;
}
.path + .path {
  padding-left: 56px;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}
.path.lite { min-height: 0; padding-bottom: 56px; }

.path-kicker {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.path-kicker .swatch {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--ink);
  transform: translateY(-1px);
}
.path.is-retailer .path-kicker .swatch { background: var(--accent); }

.path h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.path h2 em.serif { color: var(--accent); }
.path p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  max-width: 38ch;
  flex: 1;
}
.path-foot {
  font-size: 13px;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
}
.path-foot b { color: var(--ink-2); font-weight: 500; }

/* ────────── Generic page sections ────────── */
.section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 88px;
  align-items: start;
}

/* ────────── Long-form (legal) ────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px var(--gutter) 130px;
}
.legal-wrap .section-label { margin-bottom: 32px; }
.legal-wrap h1 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.legal-wrap h1 em.serif { color: var(--accent); }
.legal-wrap .lede-sm {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 56px;
  text-wrap: pretty;
}
.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 64px;
}
.legal-meta > div {
  padding: 16px 24px 16px 0;
  font-size: 13px;
  border-right: 1px solid var(--rule);
}
.legal-meta > div + div { padding-left: 24px; }
.legal-meta > div:last-child { border-right: 0; }
.legal-meta dt {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.legal-meta dd { margin: 0; color: var(--ink); font-weight: 500; }

.legal-body h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 14px;
}
.legal-body h2 .num {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.legal-body ul { padding-left: 22px; margin: 0 0 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { font-weight: 500; color: var(--ink); }
.legal-body a { color: var(--accent); border-bottom: 1px solid var(--accent-rule); padding-bottom: 1px; }
.legal-body a:hover { border-bottom-color: var(--accent); }
.legal-body .placeholder {
  background: var(--accent-tint);
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.legal-body .placeholder b { color: var(--ink); font-weight: 500; }

.legal-foot {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.legal-foot a { color: var(--accent); }

/* ────────── Imprint card ────────── */
.imprint-card {
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  margin-bottom: 48px;
}
.imprint-card .imprint-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.imprint-card .imprint-row:last-child { border-bottom: 0; }
.imprint-card dt {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.imprint-card dd {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.imprint-card dd a { color: var(--accent); border-bottom: 1px solid var(--accent-rule); padding-bottom: 1px; }

/* ────────── About: team grid ────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.team-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 28px 32px 0;
  display: flex; flex-direction: column; gap: 18px;
}
.team-card:nth-child(3n) { border-right: 0; padding-right: 0; }
.team-card:nth-child(3n+1) { padding-left: 0; }
.team-card:nth-child(3n+2) { padding-left: 28px; }
.team-card:nth-child(3n) { padding-left: 28px; }

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}
.team-photo .initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 7px,
      rgba(17,17,17,0.025) 7px 8px
    );
}
.team-card .who {
  display: flex; flex-direction: column; gap: 4px;
}
.team-card .name {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.team-card .role {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.team-card .bio {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

/* About — contact line */
.about-contact {
  padding: 96px 0 130px;
  border-top: 1px solid var(--rule);
}
.about-contact .line {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.about-contact .line a {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: opacity 140ms ease;
}
.about-contact .line a:hover { opacity: 0.75; }

/* ────────── Responsive ────────── */
@media (max-width: 960px) {
  :root { --section-y: 96px; --gutter: 24px; }
  .paths-meta { grid-template-columns: 1fr; }
  .paths-meta > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--rule); }
  .paths-grid { grid-template-columns: 1fr; }
  .path { padding: 56px 0 56px; min-height: 0; }
  .path + .path { padding-left: 0; border-left: 0; border-top: 1px solid var(--rule); }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { text-align: left; }
  .legal-meta { grid-template-columns: 1fr; }
  .legal-meta > div { border-right: 0; border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .legal-meta > div + div { padding-left: 0; }
  .legal-meta > div:last-child { border-bottom: 0; }
  .imprint-card .imprint-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { padding: 24px 0 28px !important; border-right: 0 !important; }
  .team-card:nth-child(2n) { padding-left: 24px !important; border-left: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 24px 0 28px !important; border-left: 0 !important; }
}
