/* =========================================================
   Icarus Renewables - Design System
   Bold, sharp, geometric. Zero rounding.
   ========================================================= */

:root {
  /* Brand */
  --primary: #4AAB3D;
  --primary-dark: #2F8025;
  --primary-light: #4AAB3D;
  --mint: #C3E7BE;
  --mint-soft: #EAF5E7;
  /* Yellow accent removed. Single bright green throughout. */
  --sun: #4AAB3D;
  --sun-soft: #EAF5E7;

  /* Neutrals */
  --ink: #0B150A;
  --ink-2: #1A2818;
  --text: #1F2A1F;
  --text-muted: #5C6E5E;
  --line: #DEE3DC;
  --line-strong: #0B150A;
  --bg: #FFFFFF;
  --bg-soft: #F4F7F2;
  --bg-cream: #FBFAF5;

  /* Layout */
  --container: 1280px;

  /* Shadows */
  --shadow-sm: 0 2px 0 rgba(11, 21, 10, 1);
  --shadow: 0 4px 0 rgba(11, 21, 10, 1);
  --shadow-lg: 0 10px 0 rgba(11, 21, 10, 1);
  --shadow-soft: 0 12px 30px rgba(11, 21, 10, 0.10);

  /* Type */
  --font-display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 0.98;
  text-transform: none;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sun);
  padding: 10px 18px;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--ink);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 20px;
  font-weight: 900;
}
.section-lede {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  max-width: 660px;
  line-height: 1.55;
}

/* =========================================================
   Buttons - SHARP
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid var(--ink);
  transition: all 0.15s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-primary .arrow { transition: transform 0.2s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }

.btn-sun {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 #fff;
}
.btn-sun:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 6px 6px 0 #fff;
}

.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--primary); }

/* =========================================================
   Header / Nav - DARK, ALWAYS
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: padding 0.2s var(--ease);
}
.site-header.scrolled { padding: 0; }

.nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: auto;
  /* Original logo: white ICARUS + green mark, designed for dark backgrounds */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 18px;
  transition: all 0.15s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--sun); }
.nav-links a.active { color: var(--sun); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 18px; right: 18px;
  height: 3px;
  background: var(--sun);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-phone svg { color: var(--sun); }

.nav-cta .btn-primary {
  padding: 12px 22px;
  font-size: 13px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 3px 3px 0 #fff;
}
.nav-cta .btn-primary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #fff;
}
.nav-cta .btn-primary:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #fff;
}

.burger {
  display: none;
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid var(--primary);
  border-radius: 0;
}
.burger span {
  position: absolute;
  width: 22px; height: 3px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.burger span:nth-child(1) { transform: translateY(-7px); }
.burger span:nth-child(3) { transform: translateY(7px); }
.burger.open span:nth-child(1) { transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 110px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 0; }
.mobile-drawer ul a {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  padding: 18px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.10);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.2s, padding 0.2s;
}
.mobile-drawer ul a:hover { color: var(--sun); padding-left: 8px; }
.mobile-drawer .drawer-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer .drawer-cta .btn { justify-content: center; padding: 20px; font-size: 15px; box-shadow: 4px 4px 0 #fff; }
.mobile-drawer .drawer-info {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}
.mobile-drawer .drawer-info strong {
  color: var(--sun);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}

body.no-scroll { overflow: hidden; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 20% 0%, var(--mint-soft) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 0%, rgba(74, 171, 61, 0.10) 0%, transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(to right, rgba(11, 21, 10, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 21, 10, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 8px 18px 8px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-tag .pill {
  background: var(--ink);
  color: var(--sun);
  padding: 5px 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--primary); display: inline-block; }
.hero h1 .underline {
  position: relative;
  display: inline-block;
  background: var(--sun);
  padding: 0 12px;
  color: #fff;
  margin: 0 -2px;
}
.hero p.lede {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
.hero-meta .stars { color: var(--sun); letter-spacing: 2px; font-size: 16px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: #fff;
}
.hero-stat {
  padding: 24px;
  border-right: 2px solid var(--ink);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat .num small { font-size: 0.7em; color: var(--primary); margin-left: 2px; }
.hero-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--mint-soft);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 21, 10, 0.35));
}
.hero-badge { position: absolute; z-index: 2; }
.hero-badge.tl {
  top: 24px; left: 24px;
  background: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-badge.tl .icon {
  width: 40px; height: 40px;
  background: var(--sun);
  color: var(--ink);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
}
.hero-badge.tl .meta { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; }
.hero-badge.tl .val { font-family: var(--font-display); font-weight: 900; color: var(--ink); font-size: 16px; }

.hero-badge.br {
  bottom: 24px; right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 600;
  max-width: 240px;
  line-height: 1.4;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--sun);
}
.hero-badge.br strong {
  font-family: var(--font-display);
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--sun);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .hero { padding: 130px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; aspect-ratio: 4/4; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 16px 12px; }
  .hero-stat .lbl { font-size: 10px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 16px 24px; font-size: 13px; }
}

/* =========================================================
   Trust strip / Marquee
   ========================================================= */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.trust-track {
  display: flex;
  gap: 56px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.trust-track span { display: inline-flex; align-items: center; gap: 20px; }
.trust-track .dot { width: 8px; height: 8px; background: var(--sun); }
.trust-track .accent { color: var(--sun); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   About / Approach
   ========================================================= */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--mint-soft);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .quote-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.about-image .quote-card .name { font-family: var(--font-display); font-weight: 900; color: var(--ink); display: block; }
.about-image .quote-card .title { font-size: 12px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em; display: block; margin-bottom: 12px; }

.about h2 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 24px;
  line-height: 1.15;
  text-transform: uppercase;
}
.about h2 em {
  font-style: normal;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px 6px;
  display: inline-block;
  line-height: 1;
  margin-top: 8px;
}
.about p { color: var(--text); font-size: 1.0625rem; font-weight: 500; margin-bottom: 16px; }
.about ul.checks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about ul.checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 2px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about ul.checks .check {
  width: 26px; height: 26px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about ul.checks .check svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 460px; margin: 0 auto; }
  .about ul.checks { grid-template-columns: 1fr; }
}

/* =========================================================
   Services / How it works
   ========================================================= */
.services {
  background: var(--bg-soft);
  position: relative;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.services-head .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
}
.step {
  background: #fff;
  padding: 36px 32px;
  border-right: 3px solid var(--ink);
  transition: all 0.2s var(--ease);
  position: relative;
}
.step:last-child { border-right: 0; }
.step:hover { background: var(--mint-soft); }
.step .num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: var(--ink);
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step .icon {
  width: 64px; height: 64px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
}
.step .icon svg { width: 30px; height: 30px; }
.step h3 {
  font-size: 1.375rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 3px solid var(--ink); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 3px solid var(--ink); }
  .step:last-child { border-bottom: 0; }
  .services-head { grid-template-columns: 1fr; }
}

/* =========================================================
   Why us / Feature grid
   ========================================================= */
.features { padding: 120px 0; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.features-list { display: grid; gap: 0; border: 3px solid var(--ink); background: var(--ink); }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border-bottom: 3px solid var(--ink);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.feature:last-child { border-bottom: 0; }
.feature:hover { background: var(--sun-soft); }
.feature .icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--sun);
  display: grid; place-items: center;
  border: 2px solid var(--ink);
}
.feature .icon svg { width: 24px; height: 24px; }
.feature h4 {
  font-size: 1.1875rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 171, 61, 0.18), transparent 70%);
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(95, 189, 116, 0.12), transparent 70%);
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .eyebrow { background: var(--primary); color: var(--ink); border-color: var(--primary); box-shadow: 4px 4px 0 #fff; }
.testimonials h2 { color: #fff; }
.testimonials .section-lede { color: rgba(255, 255, 255, 0.7); }

.t-headrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.t-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.t-nav button {
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  display: grid; place-items: center;
  transition: all 0.15s var(--ease);
  box-shadow: 4px 4px 0 #fff;
}
.t-nav button:hover:not(:disabled) {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #fff;
}
.t-nav button:active:not(:disabled) {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #fff;
}
.t-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.t-nav button svg { width: 22px; height: 22px; }

.t-carousel {
  position: relative;
  margin: 0 -24px;
}
.t-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 24px;
  cursor: grab;
}
.t-track::-webkit-scrollbar { display: none; }
.t-track:active { cursor: grabbing; }

.t-card {
  flex: 0 0 calc((100% - 40px - 48px) / 3);
  scroll-snap-align: start;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.18);
  padding: 36px;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  background: rgba(74, 171, 61, 0.15);
  border-color: var(--sun);
}
.t-card .stars {
  color: var(--sun);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 16px;
}
.t-card blockquote {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 28px;
  flex-grow: 1;
}
.t-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.10);
}
.t-card .avatar {
  width: 44px; height: 44px;
  background: var(--primary);
  border: 2px solid #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}
.t-card .who .name { font-family: var(--font-display); font-weight: 900; font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; }
.t-card .who .where { font-size: 12px; color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

@media (max-width: 1024px) {
  .t-card { flex: 0 0 calc((100% - 20px - 48px) / 2); }
}
@media (max-width: 700px) {
  .t-card { flex: 0 0 calc(100% - 48px); }
  .t-headrow { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Founder
   ========================================================= */
.founder {
  background: var(--mint);
  padding: 120px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.founder-card {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 56px;
  align-items: center;
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}
.founder-photo {
  aspect-ratio: 4/5;
  background: var(--mint-soft);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--ink);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .signature {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--font-display);
  border: 2px solid var(--ink);
}
.founder-photo .signature .name { font-weight: 900; color: #fff; text-transform: uppercase; }
.founder-photo .signature .role { font-size: 11px; color: var(--sun); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.founder-content .eyebrow { background: var(--ink); color: var(--sun); border-color: var(--ink); }
.founder-content .eyebrow::before { background: var(--sun); }
.founder-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.founder-content p { color: var(--text); margin-bottom: 32px; font-size: 1.0625rem; font-weight: 500; }
.founder-content .actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .founder-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .founder-photo { max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   CTA Strip
   ========================================================= */
.cta-strip {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(74, 171, 61, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-content .eyebrow { background: var(--primary); color: var(--ink); border-color: var(--primary); box-shadow: 4px 4px 0 #fff; }
.cta-content h2 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; text-transform: uppercase; }
.cta-content p { color: rgba(255, 255, 255, 0.75); font-size: 1.1875rem; font-weight: 500; margin-bottom: 36px; }
.cta-content .actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-strip .btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 #fff;
}
.cta-strip .btn-primary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 6px 6px 0 #fff;
}
.cta-strip .btn-ghost {
  color: #fff;
  background: transparent;
  border-color: #fff;
  box-shadow: 4px 4px 0 #fff;
}
.cta-strip .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 6px 6px 0 #fff;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #050905;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  font-size: 14.5px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 56px; margin-bottom: 24px; }
.footer-brand p { line-height: 1.6; margin-bottom: 24px; max-width: 320px; }
.footer-brand .socials { display: flex; gap: 8px; }
.footer-brand .socials a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.10);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.footer-brand .socials a:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--sun);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-weight: 600; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--sun); }

.footer-newsletter form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.footer-newsletter button {
  background: var(--sun);
  color: var(--ink);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 2px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-bottom .legal { display: flex; gap: 24px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Page hero (About / Contact / etc.)
   ========================================================= */
.page-hero {
  padding: 180px 0 100px;
  background:
    radial-gradient(80% 60% at 20% 0%, var(--mint-soft) 0%, transparent 60%),
    var(--bg);
  text-align: center;
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.25rem);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.page-hero p {
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
  max-width: 660px;
  margin: 0 auto;
}

/* =========================================================
   Values grid (About page)
   ========================================================= */
.values { padding: 120px 0; background: var(--bg-soft); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.values-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.values-head .eyebrow { background: var(--ink); color: #fff; border-color: var(--ink); }
.values-head .eyebrow::before { background: var(--primary); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 3px solid var(--ink);
  background: var(--ink);
}
.value {
  background: #fff;
  padding: 40px 32px;
  border-right: 3px solid var(--ink);
  transition: all 0.2s var(--ease);
}
.value:last-child { border-right: 0; }
.value:hover { background: var(--mint-soft); }
.value .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}
.value .icon {
  width: 56px; height: 56px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
}
.value .icon svg { width: 26px; height: 26px; }
.value h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.value p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2) { border-right: 0; }
  .value:nth-child(1), .value:nth-child(2) { border-bottom: 3px solid var(--ink); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 3px solid var(--ink); }
  .value:last-child { border-bottom: 0; }
}

/* =========================================================
   Milestones (numbered horizontal strip)
   ========================================================= */
.milestones {
  background: var(--ink);
  color: #fff;
  padding: 60px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.milestone { padding: 0 24px; border-right: 2px solid rgba(255, 255, 255, 0.12); }
.milestone:last-child { border-right: 0; }
.milestone .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.milestone .num small { font-size: 0.6em; color: var(--primary-light); margin-left: 4px; }
.milestone .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 700px) {
  .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .milestone { border-right: 0; }
  .milestone:nth-child(odd) { border-right: 2px solid rgba(255, 255, 255, 0.12); }
}

/* =========================================================
   Contact form & info
   ========================================================= */
.contact-section { padding: 100px 0 120px; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border: 3px solid var(--ink);
  padding: 48px;
  box-shadow: 12px 12px 0 var(--ink);
}
.contact-form-wrap h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-form-wrap > p {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  border: 2px solid var(--ink);
  padding: 14px 16px;
  border-radius: 0;
  outline: 0;
  transition: all 0.15s var(--ease);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: #fff;
  box-shadow: 4px 4px 0 var(--primary);
  transform: translate(-2px, -2px);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B150A' stroke-width='3' stroke-linecap='square'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.contact-form .submit-row { display: flex; justify-content: flex-end; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.contact-form .submit-row small { color: var(--text-muted); font-weight: 500; }
.form-success {
  display: none;
  padding: 22px 24px;
  background: var(--mint-soft);
  border: 2px solid var(--primary);
  font-weight: 600;
  color: var(--ink);
  margin-top: 16px;
}
.form-success.show { display: block; }
.form-success strong { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 6px; }

/* Sidebar */
.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--ink);
  color: #fff;
  padding: 36px 32px;
  border: 3px solid var(--ink);
}
.contact-info-card h3 {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-info-card .item {
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-card .item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info-card .item:first-child { padding-top: 0; }
.contact-info-card .item .icon {
  width: 40px; height: 40px;
  background: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px solid #fff;
}
.contact-info-card .item .icon svg { width: 18px; height: 18px; }
.contact-info-card .item .lbl {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.contact-info-card .item a, .contact-info-card .item .val {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.contact-info-card .item a:hover { color: var(--primary-light); }

.contact-area-card {
  background: var(--mint-soft);
  border: 3px solid var(--ink);
  padding: 32px;
}
.contact-area-card h3 {
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-area-card p { font-size: 14.5px; font-weight: 500; line-height: 1.6; color: var(--text); }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ (Contact page)
   ========================================================= */
.faq { padding: 100px 0; background: var(--bg-soft); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: #fff;
}
.faq-item {
  border-bottom: 2px solid var(--ink);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--mint-soft); }
.faq-item summary .toggle {
  width: 32px; height: 32px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary .toggle { transform: rotate(45deg); background: var(--primary); }
.faq-item .answer {
  padding: 0 28px 28px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.0625rem;
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
