/* ===================================================
   BRAND TOKENS
   =================================================== */
:root {
  --teal: #06ab92;
  --teal-deep: #06ab92;
  --teal-shadow: #04806e;
  --teal-light: #87ddbc;
  --gold: #bf9c6c;
  --gold-deep: #8a6e47;
  --cream: #F8F2E4;
  --paper: #F1E8D2;
  --sand: #ECDFC0;
  --ink: #2A322A;
  --ink-soft: #5C6358;
  --hairline: rgba(42, 50, 42, 0.10);
  --hairline-strong: rgba(42, 50, 42, 0.4);
  --sans: 'Poppins', system-ui, sans-serif;
  --hand: 'Caveat', cursive;
  --pad-x: clamp(1.5rem, 5vw, 6rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 18%, rgba(191, 156, 108, 0.10), transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(6, 171, 146, 0.07), transparent 50%),
    var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
body > * { position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }

/* ===================================================
   NAV
   =================================================== */
nav {
  position: sticky; top: 0; z-index: 50;
  padding: 1.75rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 242, 228, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-logo img { height: 30px; display: block; }
.nav-links {
  display: flex; gap: 2.75rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: lowercase;
  color: var(--ink-soft); font-weight: 400;
}
.nav-links a { transition: color 0.2s; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--teal-deep); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--gold); }
@media (max-width: 820px) {
  .nav-logo img { height: 26px; }
  .nav-links { gap: 1.5rem; font-size: 0.7rem; }
}
@media (max-width: 540px) {
  nav { padding: 1.25rem var(--pad-x); }
  .nav-links { gap: 1rem; font-size: 0.65rem; }
}

/* ===================================================
   SHARED TYPOGRAPHY
   =================================================== */
.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.65rem;
  border-top: 1px solid var(--ink);
  display: inline-block;
  align-self: start;
}
.h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 780px;
}
.h2 .strong { font-weight: 600; color: var(--teal-deep); }
.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 600px;
  font-weight: 300;
  margin-top: 1.5rem;
}

/* All editorial sections share this asymmetric grid */
.section {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--hairline);
}
.section:first-of-type { border-top: none; }
@media (max-width: 820px) {
  .section { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===================================================
   HERO (home page only)
   =================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: clamp(640px, 80vh, 900px);
}
.hero-text {
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem) var(--pad-x);
  display: flex; flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--hand);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  transform: rotate(-1.5deg);
  display: inline-block;
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.75rem, 5.4vw, 4.75rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.hero h1 .strong {
  font-weight: 600;
  color: var(--teal-deep);
  position: relative;
  display: inline-block;
}
.hero h1 .strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2%;
  right: -2%;
  height: 0.32em;
  background: var(--gold);
  opacity: 0.45;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  transform: rotate(-0.6deg);
  z-index: -1;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.hero-link {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.2s;
}
.hero-link:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.hero-link::after { content: "  →"; }
.hero-image {
  background-image: url("mascot-cover.jpg");
  background-size: cover;
  background-position: center bottom;
  background-color: var(--sand);
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 60vh; order: -1; }
}

/* ===================================================
   PAGE HEADER (used on About, Our Work, Contact)
   =================================================== */
.page-header {
  padding: clamp(4rem, 7vw, 6rem) var(--pad-x) clamp(3rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.page-header .eyebrow {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--gold-deep);
  display: inline-block;
  transform: rotate(-1.5deg);
  align-self: start;
  padding-top: 0.5rem;
}
.page-header h1 {
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 800px;
}
.page-header h1 .strong {
  font-weight: 600;
  color: var(--teal-deep);
  position: relative;
  display: inline-block;
}
.page-header h1 .strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2%;
  right: -2%;
  height: 0.32em;
  background: var(--gold);
  opacity: 0.45;
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  transform: rotate(-0.6deg);
  z-index: -1;
}
.page-header .lede {
  margin-top: 1.75rem;
  max-width: 640px;
}
@media (max-width: 820px) {
  .page-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===================================================
   TRIO (home page navigation cards)
   =================================================== */
.trio {
  padding: clamp(5rem, 8vw, 7rem) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--hairline);
}
@media (max-width: 820px) { .trio { grid-template-columns: 1fr; } }
.trio-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  display: flex; flex-direction: column;
}
.trio-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.trio-item h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.trio-item h3 .strong { font-weight: 600; color: var(--teal-deep); }
.trio-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  flex: 1;
}
.trio-item .link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.2s;
}
.trio-item .link::after { content: "  →"; }
.trio-item .link:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* ===================================================
   ABOUT
   =================================================== */
.about-body p { margin-bottom: 1.25rem; max-width: 640px; font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.about-body p:first-of-type { color: var(--ink); font-weight: 400; font-size: 1.18rem; line-height: 1.55; }
.about-name {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 2rem;
  max-width: 580px;
}
.about-name dt {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding-top: 0.2rem;
}
.about-name dd { color: var(--ink); font-weight: 400; font-size: 1rem; }
.about-name .name-meaning {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--hairline);
  color: var(--teal-deep);
  font-weight: 500;
  font-style: italic;
  font-size: 1rem;
}
.frameworks { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.framework-pill {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
}

/* ===================================================
   FOUNDER
   =================================================== */
.founder-body p { margin-bottom: 1.4rem; max-width: 640px; font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); }
.founder-body p:first-of-type { color: var(--ink); font-weight: 400; }
.founder-credential {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ===================================================
   PILLARS
   =================================================== */
.pillars-list { margin-top: 3rem; }
.pillar-row {
  padding: 2.5rem 0;
  border-top: 1px solid var(--hairline);
}
.pillar-row:last-child { border-bottom: 1px solid var(--hairline); }
.pillar-content h3 { font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.015em; }
.pillar-content p { font-size: 1.02rem; line-height: 1.7; color: var(--ink-soft); max-width: 640px; font-weight: 300; }

/* ===================================================
   METHOD
   =================================================== */
.method-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
@media (max-width: 820px) { .method-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .method-list { grid-template-columns: 1fr; } }
.method-step {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
.method-step-num { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.method-step h3 { font-size: 1.15rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.method-step p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); font-weight: 300; }

/* ===================================================
   OUTCOMES
   =================================================== */
.outcomes-list { margin-top: 3rem; }
.outcome-row {
  padding: 2rem 0;
  border-top: 1px solid var(--hairline);
}
.outcome-row:last-child { border-bottom: 1px solid var(--hairline); }
.outcome-row h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.outcome-row p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
  font-weight: 300;
}
.outcomes-alignment {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 620px;
}

/* ===================================================
   PARTNERS
   =================================================== */
.partners-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 720px) { .partners-list { grid-template-columns: 1fr; } }
.partner-row { padding-top: 1.75rem; border-top: 1px solid var(--hairline-strong); }
.partner-name { font-size: 1.4rem; font-weight: 500; color: var(--ink); margin-bottom: 0.85rem; letter-spacing: -0.015em; }
.partner-row p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); font-weight: 300; }

/* ===================================================
   MASCOTS
   =================================================== */
.mascots { border-top: 1px solid var(--hairline); }
.mascots-image {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background-image: url("mascot-scene.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.mascots-content {
  padding: clamp(5rem, 9vw, 8rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 820px) { .mascots-content { grid-template-columns: 1fr; gap: 2rem; } }
.mascots-body p { margin-bottom: 1.4rem; max-width: 640px; font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.mascots-body p:first-of-type { font-size: 1.18rem; color: var(--ink); font-weight: 400; line-height: 1.55; }
.mascots-why { margin: 2.5rem 0; padding: 2rem 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.mascots-why h4 { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 1rem; }
.mascots-why p { color: var(--ink) !important; font-weight: 300 !important; font-size: 1.08rem !important; line-height: 1.7; max-width: 640px; margin-bottom: 0; }
.mascots-pair { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (max-width: 540px) { .mascots-pair { grid-template-columns: 1fr; } }
.mascot-card { padding-top: 1rem; }
.mascot-circle { width: 170px; height: 170px; border-radius: 50%; overflow: hidden; margin-bottom: 1.25rem; background: var(--sand); }
.mascot-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mascot-circle--top img { object-position: center top; }
.mascot-circle--bottom img { object-position: center bottom; }
.mascot-card h5 { font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.mascot-traits { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 0.85rem; }
.mascot-blurb { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); font-weight: 300; max-width: 280px; }
.mascots-closing {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--teal-deep);
  font-weight: 400;
  max-width: 720px;
  letter-spacing: -0.005em;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  transition: all 0.2s;
}
.contact-cta:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.contact-cta::after { content: "→"; font-size: 1.05rem; }
.social-row { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--hairline); display: flex; gap: 1.25rem; align-items: center; }
.social-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.social-row a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%; color: var(--ink);
  transition: all 0.2s;
}
.social-row a:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.social-row svg { width: 16px; height: 16px; }

/* ===================================================
   FOOTER
   =================================================== */
footer {
  border-top: 1px solid var(--hairline);
  padding: 2.5rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===================================================
   NEXT-UP (closing CTA on About and Our Work pages)
   =================================================== */
.next-up {
  padding: clamp(4rem, 7vw, 6rem) var(--pad-x);
  border-top: 1px solid var(--hairline);
  background: rgba(236, 223, 192, 0.4);
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (max-width: 820px) { .next-up { grid-template-columns: 1fr; gap: 2rem; } }
.next-up .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.65rem;
  border-top: 1px solid var(--ink);
  align-self: start;
  display: inline-block;
}
.next-up h3 {
  font-family: var(--sans);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.next-up h3 .strong { font-weight: 600; color: var(--teal-deep); }
.next-up p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.next-up .link {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  display: inline-block;
  transition: all 0.2s;
}
.next-up .link::after { content: "  →"; }
.next-up .link:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* ===================================================
   VISION PULL-QUOTE
   =================================================== */
.vision-quote {
  display: block;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  text-align: center;
  border-top: none;
}
.vision-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.vision-quote::before,
.vision-quote::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0 auto;
}
.vision-quote::before { margin-bottom: 2rem; }
.vision-quote::after { margin-top: 2rem; }
.vision-quote blockquote {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
}
.vision-quote blockquote p {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.005em;
}
