/* Shade & Cherry — Outreach Site
   Palette matches project collateral: cream ground, forest green, terra accent, espresso ink */

:root {
  --cream: #F7F1E8;
  --cream-light: #FBF8F2;
  --cream-dark: #EFE7D8;
  --forest: #1F5B3B;
  --forest-dark: #123B25;
  --terra: #A84B2F;
  --espresso: #3A2A1F;
  --ink: #2A1F17;
  --muted: #7A7368;
  --border: #D9CFC0;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--forest);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--forest-dark);
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a:hover {
  border-bottom-color: var(--forest);
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.02em;
}

.wordmark .amp {
  font-style: italic;
  color: var(--forest);
  padding: 0 2px;
}

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

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--forest);
}

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 120px;
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 232, 0.96) 0%, rgba(247, 241, 232, 0.88) 45%, rgba(247, 241, 232, 0.55) 100%);
}

.hero-content {
  position: relative;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.15rem;
  color: var(--espresso);
  max-width: 780px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-dark);
  border-bottom: none;
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  border-bottom: 1px solid var(--forest);
}

/* Two-column blocks (Who / Why) */
.who, .why {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.why {
  background: var(--cream-light);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.who-body p,
.why-body p {
  font-size: 1.05rem;
}

.who-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.who-image,
.why-image {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
}

.who-image img,
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-layout {
  grid-template-columns: 2fr 1fr;
}

.why-image {
  aspect-ratio: 1 / 1;
}

/* Track sections */
.track {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.track-suppliers {
  background: var(--cream);
}

.track-wholesale {
  background: var(--cream-light);
}

.track-experts {
  background: var(--cream);
}

.track-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 12px;
}

.track-intro {
  font-size: 1.05rem;
  max-width: 780px;
  margin-bottom: 44px;
  color: var(--espresso);
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}

.track-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.track-grid.four {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.card ul li::before {
  content: "·";
  color: var(--terra);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: 2px;
}

.card ul li:last-child {
  margin-bottom: 0;
}

.card p {
  font-size: 0.98rem;
}

/* Track ask block */
.track-ask {
  background: var(--white);
  border-left: 3px solid var(--forest);
  padding: 28px 32px;
  border-radius: 4px;
}

.ask-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 10px;
}

.track-ask p:not(.ask-label) {
  font-size: 1rem;
  margin: 0;
}

.track-ask a {
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}

.contact-lines {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--espresso);
}

.contact-line-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  margin-right: 10px;
}

/* Contact */
.contact {
  padding: 80px 0;
  background: var(--espresso);
  color: var(--cream);
  border-top: 1px solid var(--border);
}

.contact h2 {
  color: var(--cream);
  margin-bottom: 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.contact-card {
  padding: 24px 0;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-email {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(247, 241, 232, 0.3);
  word-break: break-word;
}

.contact-email:hover {
  border-bottom-color: var(--cream);
}

.contact-text {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.contact-sub {
  color: var(--cream-dark);
  opacity: 0.7;
  font-size: 0.82rem;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream-dark);
  padding: 32px 0;
  font-size: 0.9rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 820px) {
  .wrap {
    padding: 0 22px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding: 80px 0 70px;
  }

  .two-col,
  .why-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .track-grid,
  .track-grid.three,
  .track-grid.four {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .who, .why, .track, .contact {
    padding: 56px 0;
  }
}
