/* =============================================
   GROWTH MANTRA SOLUTIONS — MASTER STYLESHEET
   ============================================= */

/* ---- TOKENS ---- */
:root {
  --ink: #17231f;
  --paper: #f6f3ec;
  --lime: #d9f25b;
  --orange: #ff8b48;
  --line: #d8d7cf;
  --muted: #59645f;
  --mono: "DM Mono", monospace;
  --radius: 6px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.07em; }
h1 em, h2 em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: italic;
}
img { max-width: 100%; display: block; }
ul { padding-left: 0; list-style: none; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  height: 84px;
  max-width: 1280px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.inner-header {
  max-width: none;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(20px, 4vw, 64px);
}
.brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #05060d url("assets/growth-mantra-logo.png") center / 100% 100% no-repeat;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  flex: none;
}
.brand-mark span { display: none; }
.brand-dot { color: #8fb40b; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}
.main-nav > a { text-decoration: none; transition: color var(--transition); }
.main-nav > a:hover { color: #7f9f08; }
.main-nav .active { color: #7f9f08; }
.nav-cta {
  padding: 11px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--ink); color: #fff; }
.nav-toggle { display: none; }

/* =============================================
   PAGE GLOW
   ============================================= */
.page-glow {
  position: fixed;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .18;
  pointer-events: none;
}
.glow-one { top: 200px; right: -180px; background: #d8f661; }
.glow-two { top: 1200px; left: -200px; background: #ffb47c; }

/* =============================================
   UTILITIES
   ============================================= */
.section-pad {
  max-width: 1280px;
  margin: auto;
  padding: 120px 32px;
}
.section-label, .eyebrow {
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-label { margin: 0; color: #738078; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: #95b700; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: opacity var(--transition), transform var(--transition);
}
.button:hover { opacity: .85; transform: translateY(-1px); }
.button-dark { background: var(--ink); color: #fff; }
.text-link, .arrow-link {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition);
}
.text-link:hover, .arrow-link:hover { color: #7f9f08; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 660px;
  max-width: 1280px;
  margin: auto;
  padding: 65px 32px 32px;
  overflow: hidden;
}
.hero h1 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: 1.03;
}
.hero-text {
  max-width: 460px;
  margin: 25px 0 30px;
  color: #53605a;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  height: 460px;
  margin: 3px 0 0 25px;
}
.core-shape {
  position: absolute;
  top: 65px;
  left: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 255px;
  border-radius: 47% 53% 53% 47% / 53% 44% 56% 47%;
  background: var(--lime);
  box-shadow: 14px 16px 0 rgba(23,35,31,.09);
  transform: rotate(-13deg);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.065em;
}
.core-shape span:nth-child(2) {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(23,35,31,.25);
  border-radius: 50%;
  transform: rotate(-30deg);
}
.orbit-a { top: 102px; left: 33px; width: 420px; height: 190px; }
.orbit-b { top: -2px; left: 85px; width: 305px; height: 405px; }
.spark { position: absolute; color: var(--orange); font-size: 29px; }
.spark-one { top: 40px; left: 47px; }
.spark-two { top: 320px; right: 20px; font-size: 23px; }
.growth-card {
  position: absolute;
  min-width: 145px;
  padding: 13px 15px;
  border: 1px solid rgba(23,35,31,.16);
  border-radius: 5px;
  background: rgba(246,243,236,.88);
  box-shadow: 7px 9px 17px rgba(23,35,31,.09);
  backdrop-filter: blur(4px);
}
.growth-card strong, .growth-card small { display: block; }
.growth-card strong { font-size: 19px; }
.growth-card small { margin-top: 2px; color: #65716b; font-size: 10px; }
.card-one { top: 12px; right: 12px; }
.card-two { bottom: 40px; left: 5px; }
.mini-dot {
  position: absolute;
  top: 15px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.line-icon { position: absolute; top: 12px; right: 13px; color: #779500; font-size: 22px; }
.hero-foot {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  font: 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-foot p { display: flex; gap: 10px; }
.hero-foot i { width: 3px; height: 3px; border-radius: 50%; background: var(--ink); align-self: center; }
.hero-foot a { text-decoration: none; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 32px clamp(20px, 4vw, 64px);
}
.stats-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 40px;
  text-align: center;
}
.stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--lime);
}
.stat-label {
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a9b8b0;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.15);
}

/* =============================================
   INTRO / APPROACH
   ============================================= */
.intro { border-top: 1px solid var(--line); }
.intro-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  margin-top: 29px;
}
.intro h2, .process h2, .team h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4vw, 53px);
  line-height: 1.15;
}
.intro-side { max-width: 350px; }
.intro-side p, .team-copy > p:last-child {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}
.service-heading > p:last-child {
  max-width: 400px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 420px;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23,35,31,.12); }
.product-card { background: var(--ink); color: #fff; }
.growth-card-service { background: var(--lime); }
.partner-card { background: var(--orange); }
.service-number { font: 12px var(--mono); opacity: .7; }
.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 30px 0 26px;
  border-radius: 50%;
  place-items: center;
  font-size: 27px;
  font-weight: 800;
}
.icon-code { background: var(--lime); color: var(--ink); font: 21px var(--mono); }
.icon-arrow { background: var(--ink); color: var(--lime); font-size: 40px; }
.icon-spark { background: #ffd4a1; font-size: 34px; }
.service-card h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.1; }
.service-card p { margin-bottom: 0; font-size: 13px; line-height: 1.65; opacity: .8; }
.service-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  font: 11px / 2 var(--mono);
}
.service-card li::before { content: "— "; opacity: .6; }
.services-cta { margin-top: 40px; display: flex; justify-content: center; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  position: relative;
  max-width: none;
  padding: 120px max(32px, calc((100% - 1216px) / 2));
  background: var(--ink);
  color: var(--paper);
}
.process::after {
  position: absolute;
  top: 67px;
  right: 7%;
  width: 82px;
  height: 82px;
  border: 15px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(217,242,91,.13);
  content: "";
}
.process .section-label { color: #a9b8b0; }
.process h2 { margin-top: 28px; }
.process-list {
  padding: 0;
  margin: 70px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}
.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.process-list > li > span, .process-list b {
  color: #a9b8b0;
  font: 11px var(--mono);
  text-transform: uppercase;
}
.process-list h3 { margin-bottom: 6px; font-size: 22px; }
.process-list p { margin-bottom: 0; color: #abb5b0; font-size: 13px; line-height: 1.65; }
.process-list b { text-align: right; font-weight: 400; }

/* =============================================
   WHY US
   ============================================= */
.why-us { border-top: 1px solid var(--line); }
.why-us-layout > h2 {
  font-size: clamp(31px, 4vw, 53px);
  line-height: 1.15;
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: #95b700;
  box-shadow: 0 8px 24px rgba(23,35,31,.06);
  transform: translateY(-2px);
}
.why-icon { font-size: 28px; display: block; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* =============================================
   TEAM
   ============================================= */
.team {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}
.team-copy > p:last-child { max-width: 390px; margin-top: 27px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.person-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  margin-bottom: 18px;
  overflow: hidden;
}
.person-art span {
  margin-left: -.14em;
  font: 700 150px "Playfair Display", serif;
  letter-spacing: -.16em;
}
.founder .person-art { background: #e3d9cf; color: #d88045; }
.cto .person-art { background: #cbdcb1; color: #507467; }
.person-card p { margin-bottom: 6px; color: #708077; font: 10px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.person-card h3 { margin-bottom: 8px; font-size: 22px; }
.person-card small { color: #68726d; font-size: 13px; line-height: 1.65; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { border-top: 1px solid var(--line); }
.testi-heading {
  font-size: clamp(31px, 4vw, 53px);
  line-height: 1.15;
  margin: 16px 0 48px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi-card {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(23,35,31,.08);
}
.testi-accent { background: var(--ink); color: #fff; border-color: var(--ink); }
.testi-card p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-accent p { color: #c8d4ce; }
.testi-card footer { border-top: 1px solid var(--line); padding-top: 18px; }
.testi-accent footer { border-color: rgba(255,255,255,.2); }
.testi-card footer strong { display: block; font-size: 15px; margin-bottom: 2px; }
.testi-card footer span { font: 11px var(--mono); color: var(--muted); text-transform: uppercase; }
.testi-accent footer span { color: #a9b8b0; }

/* =============================================
   CONTACT SECTION (HOME + INNER)
   ============================================= */
.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 100px 32px;
  overflow: hidden;
  background: #a9c936;
  text-align: center;
}
.contact > * { position: relative; z-index: 1; }
.contact .light { margin-bottom: 22px; }
.contact .light span { background: var(--ink); }
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 6vw, 79px);
  line-height: 1.03;
}
.contact > p:not(.eyebrow) { margin: 25px 0; color: #394232; font-size: 15px; }
.contact-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-email {
  padding: 17px 26px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition);
}
.contact-email:hover { opacity: .8; }
.contact-email-secondary {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.contact-orb {
  position: absolute;
  top: -400px;
  right: -225px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(23,35,31,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255,255,255,.05), 0 0 0 150px rgba(255,255,255,.04);
}
.compact-contact { min-height: 420px; }
.compact-contact h2 { font-size: clamp(44px, 5.5vw, 70px); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  padding: 34px 32px;
  margin: auto;
  color: #667069;
  font-size: 11px;
}
footer p { margin: 0; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  font-size: 10px;
}
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: #7f9f08; }

/* =============================================
   INNER HERO (ALL INNER PAGES)
   ============================================= */
.inner-hero {
  position: relative;
  min-height: 480px;
  max-width: 1280px;
  padding: 105px 32px 115px;
  margin: auto;
  overflow: hidden;
}
.inner-hero::after {
  position: absolute;
  top: 45px;
  right: 6%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23,35,31,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(217,242,91,.18), 0 0 0 80px rgba(217,242,91,.08);
  content: "";
}
.about-hero::after {
  top: 65px;
  right: 8%;
  border: 0;
  border-radius: 45% 55% 58% 42% / 52% 47% 53% 48%;
  background: var(--lime);
  box-shadow: none;
  opacity: .65;
  transform: rotate(17deg);
}
.contact-hero::after {
  top: 72px;
  right: 12%;
  width: 340px;
  height: 340px;
  border: 0;
  background: var(--orange);
  box-shadow: 0 0 0 28px rgba(255,139,72,.15);
}
.work-hero::after {
  border: 0;
  border-radius: 42% 58% 50% 50% / 55% 45% 55% 45%;
  background: linear-gradient(135deg, var(--lime), #73cbd4);
  box-shadow: none;
  transform: rotate(-13deg);
}
.services-hero::after {
  border: 0;
  background: var(--ink);
  border-radius: 50%;
  opacity: .06;
}
.inner-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: clamp(50px, 6.1vw, 82px);
  line-height: 1.02;
}
.inner-hero > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 28px 0 0;
  color: #57625d;
  font-size: 16px;
  line-height: 1.75;
}

/* =============================================
   CAPABILITY (SERVICES PAGE)
   ============================================= */
.capability {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.capability h2, .split-banner h2, .manifesto h2, .leadership h2, .email-panel h2, .testi-heading {
  margin: 26px 0 0;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1.1;
}
.capability-body > p {
  max-width: 510px;
  margin-bottom: 40px;
  color: #53605a;
  font-size: 16px;
  line-height: 1.7;
}
.capability-list { border-top: 1px solid var(--line); }
.capability-list > div {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.capability-list b { font-size: 15px; }
.capability-list span { color: #627069; font-size: 13px; line-height: 1.6; }

/* SPLIT BANNER */
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  padding: 100px max(32px, calc((100% - 1216px) / 2));
  background: var(--ink);
  color: var(--paper);
}
.split-copy > p:last-child {
  max-width: 410px;
  margin: 27px 0 0;
  color: #b9c4be;
  font-size: 15px;
  line-height: 1.7;
}
.split-banner .section-label { color: #a9b8b0; }
.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}
.channel-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.channel-grid span { margin-bottom: auto; color: var(--lime); font: 10px var(--mono); }
.channel-grid b { font-size: 14px; margin-top: 8px; }
.channel-grid small { margin-top: 5px; color: #a9b8b0; font-size: 11px; line-height: 1.5; }

/* ENGAGEMENT */
.engagement .section-label { margin-bottom: 32px; }
.engagement-grid, .values-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.engagement-grid article, .values-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.engagement-grid article:hover, .values-grid article:hover { border-color: #95b700; }
.engagement-grid span, .values-grid span { color: #91ab16; font: 11px var(--mono); }
.engagement-grid h3, .values-grid h3 { margin: 60px 0 12px; font-size: 22px; line-height: 1.1; }
.engagement-grid p, .values-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.values-grid h3 { margin-top: 54px; }

/* TECH STACK */
.tech-stack { border-top: 1px solid var(--line); }
.tech-intro { margin-bottom: 50px; }
.tech-intro h2 { font-size: clamp(31px, 4vw, 52px); line-height: 1.1; margin-bottom: 14px; }
.tech-intro p { color: var(--muted); font-size: 15px; max-width: 480px; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tech-category {
  padding: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}
.tech-category h4 {
  font: 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.tech-category ul { margin: 0; padding: 0; list-style: none; }
.tech-category li {
  font-size: 13px;
  line-height: 2;
  color: #a9b8b0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tech-category li:last-child { border: 0; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.our-story { border-top: 1px solid var(--line); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 28px;
}
.story-layout h2 { font-size: clamp(31px, 4vw, 53px); line-height: 1.15; }
.story-body p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  max-width: none;
  padding: 120px max(32px, calc((100% - 1216px) / 2));
  background: #ece8dd;
}
.manifesto > div { max-width: 560px; padding-top: 28px; }
.manifesto > div p { margin-bottom: 19px; color: #49554f; font-size: 17px; line-height: 1.75; }
.manifesto h2 { margin: 26px 0 0; }

.leadership {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.leadership-heading > p:not(.section-label) {
  max-width: 380px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.leaders { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.leader-card { padding: 28px; background: #e6ddd2; border-radius: var(--radius); }
.leader-card.vansh { background: #cbdcb1; }
.leader-monogram {
  display: grid;
  height: 220px;
  padding-right: .15em;
  background: rgba(255,255,255,.3);
  color: #d7773e;
  place-items: center;
  font: 700 130px "Playfair Display", serif;
  letter-spacing: -.17em;
  border-radius: 3px;
}
.vansh .leader-monogram { color: #547e6e; }
.leader-card > p { margin: 20px 0 7px; color: #68726d; font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.leader-card h3 { margin-bottom: 4px; font-size: 25px; }
.leader-card > span { color: #53605a; font-size: 12px; }
.leader-rule { height: 1px; margin: 24px 0 16px; background: rgba(23,35,31,.2); }
.leader-card small { color: #556159; font-size: 13px; line-height: 1.7; }

/* =============================================
   WORK PAGE
   ============================================= */
.showcase-intro { display: flex; justify-content: space-between; align-items: end; margin-bottom: 34px; }
.showcase-intro > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-card {
  min-height: 490px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23,35,31,.12); }
.case-lime { background: #dff66b; }
.case-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.case-orange { background: #ffc097; }
.case-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 3px;
}
.case-visual > span { position: absolute; top: 15px; left: 15px; font: 11px var(--mono); }
.case-visual > b { font-size: 120px; line-height: 1; letter-spacing: -.13em; }
.visual-platform { background: #9fc94a; }
.visual-platform b { font-size: 160px; transform: rotate(-19deg); }
.visual-growth { background: linear-gradient(140deg, #261452, #071d4a); color: var(--lime); }
.visual-growth b { font-size: 84px; }
.visual-growth i { font-family: "Playfair Display", serif; font-style: italic; }
.visual-website { background: #f28b5a; color: var(--ink); }
.visual-website b { font: 61px var(--mono); letter-spacing: -.2em; }
.case-card > p { margin-bottom: 9px; font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.case-card h2 { min-height: 80px; margin-bottom: 17px; font-size: 24px; line-height: 1.1; }
.case-card > span {
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(23,35,31,.22);
  font-size: 11px;
  line-height: 1.6;
}
.case-dark > span { border-color: rgba(255,255,255,.22); }

/* Built Types Grid */
.built-types { border-top: 1px solid var(--line); }
.built-types > .section-label { margin-bottom: 40px; display: block; }
.built-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.built-item {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.built-item:hover { border-color: #95b700; transform: translateY(-2px); }
.built-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.built-item h3 { font-size: 16px; margin-bottom: 8px; }
.built-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Results */
.results {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  background: #ece8dd;
  max-width: none;
  padding: 120px max(32px, calc((100% - 1216px) / 2));
}
.results h2 { margin: 26px 0 0; font-size: clamp(36px, 4.3vw, 58px); line-height: 1.1; }
.results > div > p { max-width: 350px; margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.results-list { border-top: 1px solid #cfcac0; }
.results-list > div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid #cfcac0;
}
.results-list b { font-size: 16px; }
.results-list span { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-options {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}
.email-panel > p:not(.section-label) {
  max-width: 440px;
  margin: 27px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.contact-details { padding-left: 58px; border-left: 1px solid var(--line); }
.contact-details > div { padding-bottom: 27px; margin-bottom: 27px; border-bottom: 1px solid var(--line); }
.contact-details > div:last-child { margin: 0; border: 0; }
.contact-details p { margin-bottom: 11px; color: #718078; font: 10px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.contact-details a { color: var(--ink); font-size: 19px; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-details a:hover { color: #7f9f08; }
.contact-details ul { padding: 0; margin: 0; list-style: none; }
.contact-details li, .contact-details span { color: var(--muted); font-size: 13px; line-height: 1.8; }
.contact-details li::before { color: #90ab13; content: "— "; }

/* ENQUIRY FORM */
.enquiry {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.enquiry h2 { margin: 26px 0 0; font-size: clamp(36px, 4.3vw, 58px); line-height: 1.1; }
.enquiry > div > p:not(.section-label) {
  max-width: 350px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.project-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.project-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #53605a;
  font: 600 10px var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1.5px solid #aeb4aa;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 14px Manrope, Arial, sans-serif;
  outline: none;
  transition: border-color var(--transition);
}
.project-form select { appearance: auto; cursor: pointer; }
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: #7f9f08; }
.project-form input::placeholder,
.project-form textarea::placeholder { color: #a0a8a3; }
.form-wide { grid-column: 1 / -1; }
.form-submit { justify-self: start; border: 0; cursor: pointer; }
.form-note { align-self: center; margin: 0; color: #708077; font-size: 11px; line-height: 1.5; }

/* FAQ */
.faq {
  max-width: none;
  padding: 120px max(32px, calc((100% - 1216px) / 2));
  background: #ece8dd;
}
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid #cfcac0;
  border-left: 1px solid #cfcac0;
}
.faq-grid article {
  min-height: 165px;
  padding: 28px;
  border-right: 1px solid #cfcac0;
  border-bottom: 1px solid #cfcac0;
}
.faq-grid h3 { margin-bottom: 12px; font-size: 18px; }
.faq-grid p { margin-bottom: 0; color: #5c6661; font-size: 14px; line-height: 1.65; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page { max-width: 920px; margin: auto; padding: 0 32px 100px; }
.legal-hero { padding: 100px 0 68px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 16px; font-size: clamp(48px, 6vw, 74px); line-height: 1; }
.legal-hero > p:last-child { margin: 0; color: #637068; font: 11px var(--mono); text-transform: uppercase; }
.legal-copy { max-width: 680px; padding-top: 56px; }
.legal-copy > p:first-child { color: #415049; font-size: 18px; line-height: 1.75; }
.legal-copy h2 { margin: 42px 0 10px; font-size: 25px; line-height: 1.1; }
.legal-copy p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-copy a { color: var(--ink); font-weight: 700; }

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal { animation: rise .7s ease both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .25s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* =============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .built-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .testi-card:last-child { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — MOBILE (max-width: 750px)
   ============================================= */
@media (max-width: 750px) {
  /* HEADER */
  .site-header { height: 70px; padding: 0 20px; }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 15px;
    left: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 12px 24px rgba(23,35,31,.1);
    border-radius: var(--radius);
    z-index: 200;
  }
  .main-nav.open { display: flex; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: 0;
    background: none;
    cursor: pointer;
    gap: 5px;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s;
  }

  /* HERO */
  .hero { display: block; min-height: auto; padding: 54px 20px 80px; }
  .hero h1 { font-size: 46px; }
  .hero-text { font-size: 15px; }
  .hero-art { height: 320px; margin: 28px 0 0; transform: scale(.82); transform-origin: center top; }
  .hero-foot { right: 20px; bottom: 18px; left: 20px; }
  .hero-foot p { display: none; }

  /* STATS */
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-item { padding: 14px 20px; }

  /* SECTIONS */
  .section-pad { padding: 75px 20px; }
  .intro-layout, .team, .capability, .manifesto, .leadership, .contact-options, .story-layout { grid-template-columns: 1fr; gap: 32px; }
  .service-heading { display: block; }
  .service-heading > p:last-child { margin-top: 16px; }
  .service-grid, .engagement-grid, .values-grid, .leaders, .testi-grid, .why-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }

  /* PROCESS */
  .process { padding: 75px 20px; }
  .process::after { top: 25px; right: -12px; transform: scale(.6); }
  .process-list { margin-top: 48px; }
  .process-list li { grid-template-columns: 43px 1fr; padding: 22px 0; }
  .process-list b { display: none; }

  /* TEAM */
  .team { gap: 45px; }
  .person-art { height: 200px; }

  /* TESTIMONIALS */
  .testi-grid .testi-card:last-child { grid-column: auto; }

  /* WHY GRID */
  .why-grid { gap: 10px; }

  /* CONTACT */
  .contact { min-height: 460px; padding: 80px 20px; }
  .contact-email { padding: 14px 20px; font-size: 12px; }
  .contact-cta-row { flex-direction: column; gap: 16px; }
  .compact-contact { min-height: 380px; }
  .compact-contact h2 { font-size: 46px; }

  /* FOOTER */
  footer { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 25px 20px; }
  footer p:nth-child(2) { display: none; }
  footer p:last-child { text-align: right; font-size: 9px; }
  .footer-nav { grid-column: 1 / -1; justify-content: flex-start; order: 3; font-size: 9px; }

  /* INNER HERO */
  .inner-hero { min-height: auto; padding: 72px 20px 85px; }
  .inner-hero::after { top: 190px; right: -45px; width: 220px; height: 220px; box-shadow: 0 0 0 25px rgba(217,242,91,.16), 0 0 0 50px rgba(217,242,91,.06); }
  .about-hero::after { top: 214px; right: -32px; }
  .contact-hero::after { top: 220px; right: -25px; width: 200px; height: 200px; box-shadow: 0 0 0 18px rgba(255,139,72,.14); }
  .inner-hero h1 { font-size: 44px; }
  .inner-hero > p:last-child { font-size: 14px; }

  /* CAPABILITY */
  .capability-list > div { grid-template-columns: 1fr; gap: 6px; }

  /* SPLIT BANNER */
  .split-banner { grid-template-columns: 1fr; gap: 45px; padding: 75px 20px; }

  /* CHANNEL GRID */
  .channel-grid { grid-template-columns: 1fr; }
  .channel-grid > div { min-height: auto; }

  /* TECH GRID */
  .tech-grid { grid-template-columns: 1fr 1fr; }

  /* BUILT GRID */
  .built-grid { grid-template-columns: 1fr 1fr; }

  /* MANIFESTO */
  .manifesto { grid-template-columns: 1fr; gap: 24px; padding: 75px 20px; }
  .manifesto > div { padding-top: 0; }
  .manifesto > div p { font-size: 15px; }

  /* LEADERS */
  .leader-monogram { height: 170px; }

  /* WORK PAGE */
  .showcase-intro { display: block; }
  .showcase-intro > p:last-child { margin-top: 16px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: auto; }
  .case-visual { height: 180px; }
  .case-card h2 { min-height: auto; }
  .results { grid-template-columns: 1fr; gap: 36px; padding: 75px 20px; }
  .results-list > div { grid-template-columns: 1fr; gap: 6px; }

  /* CONTACT PAGE */
  .enquiry { grid-template-columns: 1fr; gap: 36px; padding: 75px 20px; }
  .project-form { grid-template-columns: 1fr; gap: 22px; }
  .form-wide { grid-column: auto; }
  .form-note { grid-row: auto; }
  .contact-details { padding: 30px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .faq { padding: 75px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid article { min-height: auto; padding: 24px; }

  /* LEGAL */
  .legal-page { padding: 0 20px 70px; }
  .legal-hero { padding: 70px 0 48px; }
  .legal-copy { padding-top: 40px; }
  .legal-copy > p:first-child { font-size: 16px; }
}

@media (max-width: 420px) {
  .tech-grid { grid-template-columns: 1fr; }
  .built-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}
