/* Wolk Invest — wolkinvest.com
   Design: "Blockface" (handoff option 2a). Cream brutalist grid, hard 2px rules,
   no radius, no shadows. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/archivo-black.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jetbrains-mono.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #F0EAE0;
  --ink: #131210;
  --green: #1F5B3F;
  --green-on-dark: #7FBF9B;
  --muted: #4A463E;
  --muted-on-dark: #B9B3A6;
  --hairline-on-dark: #3A362E;
  --display: 'Archivo Black', 'Archivo', sans-serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Full-bleed bands separated by hard rules; content capped at 1040px */
.band { border-bottom: 2px solid var(--ink); }
.wrap { max-width: 1040px; margin: 0 auto; }

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

/* ---------- Nav ---------- */
.nav { display: flex; align-items: stretch; }

.nav-logo {
  padding: 18px 24px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-logo sup { font-size: 11px; vertical-align: super; }

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 0 28px;
  border-left: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 2px solid var(--ink);
  white-space: nowrap;
}

.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  border: none;
  border-left: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
}
.nav-burger i { display: block; width: 18px; height: 2px; background: var(--ink); }

.nav-menu { display: none; }
.nav-menu a {
  display: block;
  padding: 14px 24px;
  border-top: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu.open { display: block; }

/* ---------- Meta strip ---------- */
.meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero { padding: 56px 24px 48px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 94px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 44px;
}
.hero-row p { max-width: 560px; font-size: 18px; line-height: 1.55; font-weight: 500; }
.hero-mark { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero-mark .square { width: 112px; height: 112px; background: var(--green); }
.hero-mark .caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

/* ---------- Figure bands ---------- */
.fig-hero img { width: 100%; height: 430px; object-fit: cover; }
.fig-caption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding: 10px 24px;
  border-top: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}

/* ---------- Section label ---------- */
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 24px;
}
.section-label h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.section-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Focus cards ---------- */
.focus-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.card { display: flex; flex-direction: column; border-right: 2px solid var(--ink); }
.card:last-child { border-right: none; }
.card img { width: 100%; height: 190px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.card-body { padding: 24px 24px 36px; }
.card-head { display: flex; justify-content: space-between; align-items: baseline; }
.card-index { font-family: var(--display); font-size: 15px; color: var(--green); }
.card-arrow { font-size: 20px; transition: color 150ms; }
.card:hover .card-arrow { color: var(--green); }
.card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  margin-top: 34px;
  line-height: 1;
}
.card p { margin-top: 14px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.card-criteria {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 2;
}

/* ---------- Method band (inverted) ---------- */
.method { background: var(--ink); color: var(--cream); }
.method-head { padding: 56px 24px 8px; }
.method-head .eyebrow { color: var(--green-on-dark); }
.method-head h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 860px;
}
.method-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; padding-top: 40px; }
.method-col { padding: 24px; border-top: 1px solid var(--hairline-on-dark); }
.method-col:first-child { margin-left: 24px; }
.method-col:last-child { margin-right: 24px; }
.method-col h3 { font-family: var(--display); font-weight: 400; font-size: 14px; color: var(--green-on-dark); }
.method-col p { margin: 12px 0 40px; font-size: 14px; line-height: 1.6; color: var(--muted-on-dark); }

/* ---------- About split ---------- */
.about { display: grid; grid-template-columns: 42% 58%; }
.about-fig { border-right: 2px solid var(--ink); display: flex; flex-direction: column; }
.about-fig img { flex: 1; width: 100%; min-height: 420px; object-fit: cover; }
.about-fig .fig-caption { justify-content: flex-start; }
.about-text { padding: 44px 28px 36px; }
.about-text h2 {
  margin-top: 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}
.about-text p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.about-text p:first-of-type { margin-top: 20px; }

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border: 2px solid var(--ink);
}
.facts > div { padding: 12px 16px; }
.facts > div:nth-child(odd) { border-right: 2px solid var(--ink); }
.facts > div:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
.facts dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--green);
  text-transform: uppercase;
}
.facts dd { font-size: 13px; font-weight: 600; margin-top: 4px; }

/* ---------- Contact / footer ---------- */
.contact { padding: 48px 24px 20px; }
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.contact-email {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(21px, 5vw, 52px);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  white-space: nowrap;
  transition: color 150ms;
}
.contact-email:hover { color: var(--green); }
.contact-note { width: 300px; flex-shrink: 1; min-width: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 24px;
  margin-top: 44px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; margin-left: auto; }

  .fig-hero img { height: 300px; }

  .focus-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 2px solid var(--ink); }
  .card:last-child { border-bottom: none; }

  .method-cols { grid-template-columns: 1fr; padding-top: 24px; }
  .method-col { margin: 0 24px; padding: 24px 0; }
  .method-col:first-child { margin-left: 24px; }
  .method-col:last-child { margin-right: 24px; }
  .method-col p { margin-bottom: 24px; }

  .about { grid-template-columns: 1fr; }
  .about-fig { border-right: none; border-bottom: 2px solid var(--ink); }
  .about-fig img { min-height: 300px; max-height: 380px; }

  .hero-row { flex-direction: column; align-items: flex-start; }
  .hero-mark { align-items: flex-start; }
  .hero-mark .square { width: 88px; height: 88px; }

  .contact-row { flex-direction: column; align-items: flex-start; }
  .contact-note { width: auto; max-width: 560px; }
}

@media (max-width: 560px) {
  .nav-logo { padding: 14px 16px; font-size: 17px; }
  .nav-cta { padding: 0 14px; font-size: 11px; letter-spacing: .1em; }
  .nav-burger { width: 46px; }
  .hero { padding: 40px 16px 36px; }
  .hero-row { margin-top: 32px; }
  .hero-row p { font-size: 16px; }
  .meta, .fig-caption, .section-label, .footer-row { padding-left: 16px; padding-right: 16px; }
  .card-body, .method-head, .contact { padding-left: 16px; padding-right: 16px; }
  .method-col { margin: 0 16px !important; }
  .about-text { padding: 32px 16px 28px; }
  .nav-menu a { padding: 14px 16px; }
}
