/* ============================================================
   Samkya Collective — style.css
   Palette (from the logo):
     --ink    #231F20  charcoal wordmark
     --red    #D2193D  Samkya red (the Y-glyph)
     --paper  #FAFAF7  background
     --stone  #6E6A6B  secondary text
     --line   #E4E1DC  hairlines
   Type: Archivo (display/utility, echoing the wordmark)
         Newsreader (editorial body serif)
   ============================================================ */

:root {
  --ink:   #231F20;
  --red:   #D2193D;
  --paper: #FAFAF7;
  --stone: #6E6A6B;
  --line:  #E4E1DC;

  --display: "Archivo", system-ui, sans-serif;
  --body:    "Newsreader", Georgia, serif;

  --max: 1080px;
  --pad: clamp(1.25rem, 5vw, 4rem);
}

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad);
}

.brand-logo { height: 44px; width: auto; display: block; }

.hero-mark-svg {
  width: clamp(160px, 24vw, 300px);
  height: auto;
  animation: rise 0.9s 0.15s ease both;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.site-nav a {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible { border-bottom-color: var(--red); }

a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- shared ---------- */

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
}

.eyebrow {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;   /* echoes the "COLLECTIVE" tracking in the logo */
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.eyebrow--light { color: #E88AA0; }

h2 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.section-head { margin-bottom: 2.5rem; }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: clamp(3rem, 8vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 115%;        /* wide, like the wordmark */
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1.75rem;
  animation: rise 0.7s ease both;
}

.accent { color: var(--red); }

.hero-lede {
  max-width: 32em;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--stone);
  margin-bottom: 2.25rem;
  animation: rise 0.7s 0.12s ease both;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  animation: rise 0.7s 0.22s ease both;
  transition: background 0.2s ease;
}

.cta:hover, .cta:focus-visible { background: var(--red); }
.cta-arrow { transition: transform 0.2s ease; }
.cta:hover .cta-arrow { transform: translateX(4px); }

.hero-mark {
  display: flex;
  justify-content: center;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- ventures ---------- */

.venture-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: #FFFFFF;
}

.venture-card + .venture-card { margin-top: 1.5rem; }

.venture-card--muted { background: transparent; }

.venture-tag {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

.venture-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.9rem;
}

.venture-card p { max-width: 46em; color: var(--stone); }

.venture-facts {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  display: grid;
  gap: 0.5rem;
}

.venture-facts li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink);
}

.venture-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(45deg);
}

.venture-link {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.2rem;
}

.venture-link:hover { color: var(--red); }

/* ---------- about ---------- */

.about {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}

.about-inner { max-width: var(--max); margin: 0 auto; }

.about h2 { color: var(--paper); }

.about-body {
  max-width: 42em;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: #D8D4D2;
}

.about-body + .about-body { margin-top: 1.4rem; }

.about-body em { color: var(--paper); }

/* ---------- contact ---------- */

.contact { text-align: left; }

.contact-body { color: var(--stone); max-width: 40em; }

.contact-email {
  display: inline-block;
  margin: 1.4rem 0 0.6rem;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--red);
}

.contact-email:hover { color: var(--red); }

.contact-note {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.8rem;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem var(--pad) 3rem;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--stone);
  font-size: 0.95rem;
}

.footer-mark { height: 30px; width: auto; }

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; }
  .hero-mark { order: -1; justify-content: flex-start; }
  .hero-mark-svg { width: 120px; }
  .brand-logo { height: 36px; }
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: 0.72rem; }
}
