:root {
  /* Pulled directly from logo */
  --slate:        #8BA5BC;
  --slate-deep:   #4A6F8A;
  --slate-shadow: #2F4A5E;
  --forest:       #3D5C3A;
  --forest-deep:  #2B4128;
  --forest-mid:   #4E7349;
  --moss:         #b8d9b8;
  --cream:        #F2EDE4;
  --cream-warm:   #EAE2D2;
  --paper:        #FAF7F0;
  --ink:          #1A1A1A;
  --ink-soft:     #3a3a3a;
  --gray:         #6b7280;
  --gray-light:   #9ca3af;
  --rule:         #d9d1bf;
  --white:        #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* TYPOGRAPHY */
.serif { font-family: 'Fraunces', Georgia, serif; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow-light { color: var(--moss); }
.eyebrow-slate { color: var(--slate-deep); }
.eyebrow .dot { display: inline-block; width: 6px; height: 6px; background: currentColor; border-radius: 50%; margin: 0 0.6em; vertical-align: middle; opacity: 0.5; }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
em { font-style: italic; font-variation-settings: "opsz" 144; }
/* Force ampersand to render in roman (upright) style, even inside italic
   headings. Fraunces's italic ampersand is a calligraphic et-ligature that
   can look like a lowercase 'e' to readers unfamiliar with it. */
.amp { font-style: normal; font-variation-settings: "opsz" 144; }

p.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); font-weight: 400; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(2rem, 5vw);
  height: 80px;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.2s;
}
.nav-brand { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-mark { width: 48px; height: 48px; object-fit: contain; border-radius: 4px; }
.nav-wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.nav-wordmark .place {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 3px;
}
.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--forest);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  border-radius: 999px;
  letter-spacing: 0.04em !important;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); color: var(--cream) !important; }

.menu-toggle { display: none; background: none; border: none; color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(43,65,40,0.4); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(242,237,228,0.4); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* HOME PAGE */
.hero {
  min-height: 100vh;
  padding: 120px max(2rem, 5vw) 60px;
  background: var(--paper);
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-bg-mark {
  position: absolute;
  right: -120px; top: 80px;
  width: 580px; height: 580px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}
.hero-meta .rule { width: 32px; height: 1px; background: var(--gray-light); }
.hero h1 {
  margin-bottom: 1.8rem;
  font-weight: 600;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-call {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--ink-soft);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  width: fit-content;
}
.hero-call strong {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.hero-side {
  position: relative;
  z-index: 2;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  align-self: stretch;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  overflow: hidden;
}
.hero-side::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--forest-mid) 0%, transparent 70%);
  opacity: 0.6;
}
.hero-side-mark { width: 80px; height: 80px; margin-bottom: 2rem; opacity: 0.95; }
.hero-logo-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-logo-card img { max-width: 100%; height: auto; max-height: 180px; object-fit: contain; mix-blend-mode: multiply; }
.hero-side h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
}
.hero-side-divider { width: 40px; height: 1px; background: var(--moss); margin: 1rem 0; }
.hero-side-attr {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.6);
  position: relative; z-index: 2;
}
.hero-side-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(242,237,228,0.15);
  position: relative; z-index: 2;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.6);
  margin-top: 0.4rem;
}

.chapter {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 5rem max(2rem, 5vw) 0;
  max-width: 1280px; margin: 0 auto;
}
.chapter-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--forest);
}
.chapter-rule { flex: 1; height: 1px; background: var(--rule); }
.chapter-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}

.problem {
  padding: 4rem max(2rem, 5vw) 7rem;
  max-width: 1280px; margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.problem-headline h2 { margin-bottom: 1.5rem; }
.problem-headline h2 .underline {
  background-image: linear-gradient(transparent 60%, var(--moss) 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0.1em;
}
.problem-list { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.problem-item:last-child { border-bottom: none; }
.problem-item-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--slate-deep);
  font-weight: 400;
}
.problem-item h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.problem-item p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.6; }

.process {
  padding: 6rem max(2rem, 5vw);
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.process-header h2 { margin: 1rem 0 1.2rem; }
.process-header p { color: var(--ink-soft); font-size: 1.05rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(43,65,40,0.15);
}
.step-marker {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.step-marker::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--forest);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.process-step p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.65; }
.step-time {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--rule);
  font-size: 0.78rem;
  color: var(--slate-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.difference {
  padding: 7rem max(2rem, 5vw);
  background: var(--paper);
}
.difference-inner { max-width: 1280px; margin: 0 auto; }
.difference-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.difference-header h2 { margin: 1rem 0 1.2rem; }
.compare {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.compare-header {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  background: var(--ink);
  color: var(--cream);
}
.compare-header > div {
  padding: 1.5rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare-header > div:nth-child(2) {
  background: var(--ink-soft);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.compare-header > div:nth-child(3) {
  background: var(--forest);
  border-left: 1px solid rgba(255,255,255,0.1);
  color: var(--moss);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 1.4rem 1.8rem;
  font-size: 0.95rem;
}
.compare-row > div:first-child {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
}
.compare-row > div:nth-child(2) {
  color: var(--gray);
  border-left: 1px solid var(--rule);
}
.compare-row > div:nth-child(3) {
  color: var(--forest-deep);
  font-weight: 600;
  background: rgba(184, 217, 184, 0.15);
  border-left: 1px solid var(--rule);
}

.proof {
  padding: 7rem max(2rem, 5vw);
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.proof-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.proof-text h2 { margin: 1rem 0 1.5rem; }
.proof-text p { color: var(--ink-soft); margin-bottom: 1.2rem; line-height: 1.75; }
.proof-credentials {
  background: var(--paper);
  padding: 2.5rem;
  border-left: 3px solid var(--forest);
  border-radius: 0 4px 4px 0;
}
.cred-item {
  display: flex; flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.cred-item:last-child { border-bottom: none; }
.cred-item:first-child { padding-top: 0; }
.cred-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.cred-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}

.final-cta {
  padding: 8rem max(2rem, 5vw);
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139,165,188,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184,217,184,0.1) 0%, transparent 50%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta .eyebrow { color: var(--moss); margin-bottom: 1.5rem; display: block; }
.final-cta h2 {
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.final-cta p {
  color: rgba(242,237,228,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.final-cta .btn-primary {
  background: var(--cream);
  color: var(--forest-deep);
}
.final-cta .btn-primary:hover { background: var(--white); }

/* SELL PAGE */
.sell-hero {
  padding: 120px max(2rem, 5vw) 60px;
  background: var(--paper);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.sell-hero h1 { margin: 1.5rem 0 1rem; }
.sell-hero p { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

.sell-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 80vh;
}
.sell-form-wrap {
  padding: 5rem max(2rem, 4vw);
  background: var(--paper);
}
.sell-form { max-width: 560px; margin: 0 auto; }
.sell-form h2 { margin-bottom: 0.6rem; font-size: 2rem; }
.sell-form .form-intro { color: var(--ink-soft); margin-bottom: 2.5rem; font-size: 0.98rem; }

.fg { margin-bottom: 1.4rem; }
.fg label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,92,58,0.1);
}
.fg textarea { min-height: 120px; resize: vertical; font-family: 'Inter', sans-serif; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fsub {
  width: 100%;
  padding: 1.2rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.fsub:hover { background: var(--forest-deep); transform: translateY(-1px); }
.fnote {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.sell-side {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem max(2rem, 4vw);
  position: relative;
  overflow: hidden;
}
.sell-side::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(74,111,138,0.4) 0%, transparent 70%);
}
.sell-side-inner { position: relative; z-index: 2; max-width: 480px; }
.sell-side h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin: 1rem 0 2rem;
  font-weight: 600;
}
.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(242,237,228,0.1);
  position: relative;
}
.timeline-step:last-child { border-bottom: none; }
.timeline-time {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--moss);
  font-weight: 400;
  padding-top: 0.2rem;
}
.timeline-content h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.timeline-content p { color: rgba(242,237,228,0.7); font-size: 0.9rem; line-height: 1.6; }

/* BUYERS / INVESTORS PAGE */
.buyers-hero {
  padding: 140px max(2rem, 5vw) 80px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  border-bottom: 4px solid var(--forest);
}
.buyers-hero .eyebrow { color: var(--moss); margin-bottom: 1.5rem; }
.buyers-hero h1 { color: var(--cream); margin-bottom: 1.2rem; font-weight: 400; font-style: italic; }
.buyers-hero p { color: rgba(242,237,228,0.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.buyers-split {
  padding: 6rem max(2rem, 5vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.buyer-card {
  padding: 3rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.buyer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.1);
}
.buyer-card.dark {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
}
.buyer-card .eyebrow { margin-bottom: 1rem; }
.buyer-card.dark .eyebrow { color: var(--moss); }
.buyer-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.buyer-card.dark h3 { color: var(--cream); font-style: italic; font-weight: 400; }
.buyer-card .card-desc {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 0;
}
.buyer-card.dark .card-desc { color: rgba(242,237,228,0.75); }
.bpts { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.bpts li {
  font-size: 0.92rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  padding-left: 1.5rem;
}
.bpts li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0.7rem;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
}
.buyer-card.dark .bpts li { border-color: rgba(242,237,228,0.1); color: rgba(242,237,228,0.85); }
.buyer-card.dark .bpts li::before { color: var(--moss); }

.transparency {
  padding: 5rem max(2rem, 5vw);
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.transparency-inner { max-width: 640px; margin: 0 auto; }
.transparency h2 { margin: 1rem 0 1.2rem; }
.transparency p { color: var(--ink-soft); font-size: 1.05rem; }

/* ABOUT PAGE */
.about-hero {
  padding: 140px max(2rem, 5vw) 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.about-hero-inner { max-width: 1100px; margin: 0 auto; }
.about-meta {
  display: flex; gap: 1.5rem; align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
  font-weight: 600;
}
.about-meta .rule { width: 32px; height: 1px; background: var(--gray-light); }
.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.about-hero h1 em { color: var(--forest); }
.about-hero .lead {
  max-width: 720px;
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.about-body {
  padding: 5rem max(2rem, 5vw);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.about-article p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.about-article p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.1em 0 0;
  color: var(--forest);
}
.about-article p strong { color: var(--ink); font-weight: 600; }
.pullquote {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}
.pullquote::before {
  content: '\201C';
  display: inline;
  font-size: 1.2em;
  color: var(--forest);
  margin-right: 0.1em;
}
.pullquote::after { content: '\201D'; color: var(--forest); }

.about-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--forest);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.sidebar-list { list-style: none; }
.sidebar-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list strong {
  display: block;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* CONTACT PAGE */
.contact-hero {
  padding: 140px max(2rem, 5vw) 80px;
  background: var(--paper);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.contact-hero h1 { font-style: italic; font-weight: 400; margin: 1.5rem 0 1rem; }
.contact-hero p { max-width: 540px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

.contact-grid {
  padding: 5rem max(2rem, 5vw);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { position: sticky; top: 100px; }
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.contact-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-block:first-of-type { padding-top: 0; }
.contact-block:last-child { border-bottom: none; }
.contact-block-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.contact-block p {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.expectations {
  margin-top: 2rem;
  padding: 1.8rem;
  background: var(--cream);
  border-left: 3px solid var(--forest);
  border-radius: 0 4px 4px 0;
}
.expectations h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.expectations p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }

.contact-form-wrap {
  background: var(--paper);
  padding: 3rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 0.6rem; font-weight: 600; }
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 2rem; font-size: 0.95rem; }

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(242,237,228,0.5);
  padding: 5rem max(2rem, 5vw) 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(242,237,228,0.1);
}
.footer-brand-col h4 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-brand-col .footer-tagline {
  font-size: 0.88rem;
  color: rgba(242,237,228,0.4);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(242,237,228,0.08);
  border: 1px solid rgba(242,237,228,0.15);
  color: rgba(242,237,228,0.7);
  transition: all 0.2s ease;
}
.footer-socials a:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--forest-deep);
  transform: translateY(-2px);
}
.footer-socials a svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}
.footer-brand-col .footer-mark {
  width: 64px; height: 64px;
  margin-bottom: 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  padding: 6px;
  object-fit: contain;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(242,237,228,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-col p { font-size: 0.88rem; color: rgba(242,237,228,0.6); line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(242,237,228,0.3);
  flex-wrap: wrap; gap: 1rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; padding: 0.5rem; }
  nav { padding: 0 1.2rem; height: 64px; }
  .nav-mark { width: 36px; height: 36px; }
  .nav-wordmark { font-size: 0.92rem; }

  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 100px 1.5rem 60px; min-height: auto; }
  .hero-side { min-height: 400px; padding: 2rem; }
  .hero-bg-mark { display: none; }

  .problem-grid, .proof-inner, .about-body, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps, .buyers-split { grid-template-columns: 1fr; }
  .sell-split { grid-template-columns: 1fr; }
  .resource-cta { grid-template-columns: 1fr; text-align: center; }

  .compare-header > div, .compare-row > div { padding: 1rem; font-size: 0.85rem; }
  .compare-row > div:first-child { font-size: 0.92rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-sidebar, .contact-info { position: static; }
  .pullquote { font-size: 1.2rem; }
  .about-article p:first-of-type::first-letter { font-size: 3.5rem; }

  .chapter { padding-left: 1.5rem; padding-right: 1.5rem; }
  .problem, .difference, .proof, .process { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.4rem; }
  .fr { grid-template-columns: 1fr; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.78rem; }
  .sell-form-wrap, .sell-side { padding: 3rem 1.5rem; }
  .contact-form-wrap { padding: 1.8rem; }
  .buyer-card { padding: 2rem; }
}
