/* =========================================================
   Sweet Kebab — Global Skewer Initiative
   Shared stylesheet for all pages
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,400&family=Archivo:wght@400;500;600;700&display=swap");

:root {
  --ink: #1a1410;
  --paper: #faf6ef;
  --paper-2: #f1e8d8;
  --spice: #c4521a;
  --spice-deep: #8f3410;
  --saffron: #e0a430;
  --olive: #4a5233;
  --institutional: #1f3a5f;
  --muted: #6b6256;
  --line: #d9cdb8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', serif; }

/* grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ---------- header / nav ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--saffron), var(--spice) 70%);
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(143,52,16,0.3);
}
.brand-mark span { font-size: 20px; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.brand-name small { display: block; font-family: 'Archivo'; font-weight: 500; font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }
nav ul { display: flex; gap: 34px; list-style: none; }
nav a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
nav a:hover, nav a.active { color: var(--spice); }
.nav-links { display: flex; align-items: center; gap: 36px; }

.btn {
  display: inline-block; text-decoration: none;
  background: var(--institutional); color: var(--paper);
  padding: 11px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .2s, background .2s;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: var(--spice); }
.btn-ghost { color: var(--ink); background: transparent; border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -160px; top: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,164,48,0.18), transparent 65%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 5.5vw, 64px); line-height: 1.04; letter-spacing: -0.03em; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--spice); }
.page-hero p { margin-top: 22px; font-size: 19px; color: var(--muted); max-width: 56ch; }

/* ---------- generic ---------- */
section { padding: 90px 0; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--spice); margin-bottom: 18px; display: block; }
h2.sec { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -0.02em; max-width: 22ch; }
.lead { font-size: 18px; color: var(--muted); max-width: 60ch; margin-top: 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--spice-deep);
  padding: 7px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }

/* ---------- footer ---------- */
footer { background: var(--ink); color: #b3a896; padding: 70px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
footer .brand-name { color: var(--paper); }
footer p.blurb { font-size: 14px; max-width: 36ch; margin-top: 20px; }
footer h5 { color: var(--paper); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: #b3a896; text-decoration: none; font-size: 14px; }
footer ul a:hover { color: var(--saffron); }
.foot-bottom { border-top: 1px solid #3a3128; margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #756c5e; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   HOME PAGE
   ========================================================= */
.hero { position: relative; padding: 120px 0 130px; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -180px; top: -120px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,164,48,0.22), transparent 65%); z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
h1.hero-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(40px, 6.6vw, 86px); line-height: 1.02; letter-spacing: -0.03em; max-width: 17ch; }
h1.hero-title em { font-style: italic; color: var(--spice); }
.hero-sub { margin-top: 30px; max-width: 56ch; font-size: 19px; color: var(--muted); }
.hero-cta { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust .wrap { display: flex; align-items: center; gap: 50px; padding: 26px 40px; flex-wrap: wrap; }
.trust p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust-logos { display: flex; gap: 38px; flex-wrap: wrap; flex: 1; }
.trust-logos span { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; color: var(--ink); opacity: 0.55; }

.mission { background: var(--ink); color: var(--paper); }
.mission .kicker { color: var(--saffron); }
.mission-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px; align-items: center; }
.mission h2 { color: var(--paper); }
.mission .quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 23px; line-height: 1.5; border-left: 3px solid var(--saffron); padding-left: 26px; color: #ece4d6; }
.mission .quote span { color: var(--saffron); }
.mission small { display: block; margin-top: 20px; font-size: 13px; letter-spacing: 0.04em; color: #9a8f7e; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 38px 32px; transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--spice), var(--saffron)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(143,52,16,0.12); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num { font-family: 'Fraunces', serif; font-size: 14px; color: var(--spice); font-weight: 600; }
.pillar-ico { font-size: 32px; margin: 16px 0 18px; }
.pillar h3 { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 600; letter-spacing: -0.01em; }
.pillar p { margin-top: 12px; font-size: 15px; color: var(--muted); }

/* =========================================================
   IMPACT / METRICS
   ========================================================= */
.impact { background: var(--institutional); color: var(--paper); text-align: center; }
.impact .kicker { color: var(--saffron); }
.impact h2 { color: var(--paper); margin: 0 auto; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 64px; }
.metric { padding: 10px; }
.metric .num { font-family: 'Fraunces', serif; font-size: clamp(40px, 5vw, 60px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.metric .num em { font-style: normal; color: var(--saffron); }
.metric .lbl { margin-top: 14px; font-size: 13px; color: #b9c6d6; letter-spacing: 0.04em; }
.impact .foot { margin-top: 56px; font-size: 12px; color: #7e93ab; font-style: italic; }

/* theory of change */
.toc-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; }
.toc-step { position: relative; padding: 0 22px; }
.toc-step:not(:last-child)::after { content: "→"; position: absolute; right: -10px; top: 30px; font-size: 24px; color: var(--saffron); font-family: 'Fraunces'; }
.toc-dot { width: 60px; height: 60px; border-radius: 50%; background: var(--paper-2); border: 2px solid var(--spice); display: grid; place-items: center; font-size: 26px; margin-bottom: 22px; }
.toc-step h4 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; }
.toc-step p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* =========================================================
   ABOUT — governance + team
   ========================================================= */
.gov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.gov-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 32px 28px; }
.gov-card .ico { font-size: 28px; }
.gov-card h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin: 14px 0 10px; }
.gov-card p { font-size: 15px; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.member { text-align: center; }
.member .ph { width: 100%; aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center; font-size: 52px; margin-bottom: 18px; }
.member h4 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; }
.member .role { font-size: 13px; color: var(--spice); font-weight: 600; margin-top: 4px; }
.member p { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi { background: var(--paper-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 34px 30px; }
.card .mark { font-family: 'Fraunces', serif; font-size: 56px; line-height: 0.5; color: var(--saffron); }
.card blockquote { font-size: 16px; color: var(--ink); margin: 18px 0 26px; font-style: italic; }
.card .who { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; color: #fff; }
.who strong { display: block; font-size: 14px; }
.who small { font-size: 12px; color: var(--muted); }

/* =========================================================
   PARTNER / CONTACT
   ========================================================= */
.cta-band { background: linear-gradient(135deg, var(--spice-deep), var(--spice) 55%, var(--saffron)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 54ch; margin: 22px auto 0; font-size: 18px; }
.cta-band .btn { background: var(--ink); margin-top: 38px; padding: 15px 34px; font-size: 15px; }
.cta-band .btn:hover { background: #fff; color: var(--spice-deep); }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 38px 32px; display: flex; flex-direction: column; }
.tier.featured { border-color: var(--spice); box-shadow: 0 18px 40px rgba(143,52,16,0.12); position: relative; }
.tier.featured::before { content: "Most Synergistic"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--spice); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.tier h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; }
.tier .price { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 500; margin: 16px 0 4px; }
.tier .price small { font-size: 15px; color: var(--muted); font-family: 'Archivo'; }
.tier ul { list-style: none; margin: 24px 0; flex: 1; }
.tier ul li { font-size: 14px; padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid var(--line); }
.tier ul li::before { content: "🥙"; position: absolute; left: 0; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-family: 'Archivo'; font-size: 15px; background: #fff; color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.info-block { padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-block strong { display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--spice); margin-bottom: 4px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  nav ul, .trust p { display: none; }
  .mission-grid, .pillars-grid, .metrics, .toc-flow, .testi-grid, .foot-grid,
  .gov-grid, .team-grid, .tiers, .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { gap: 44px; }
  .toc-step:not(:last-child)::after { content: "↓"; right: auto; left: 18px; top: auto; bottom: -8px; }
  .toc-step { padding: 0 0 40px; }
  .wrap { padding: 0 24px; }
}
