/* ═══════════════════════════════════════════════════════
   HEAVE VENTURES — Stylesheet
   Palette: #121212 · #1a1a1a · #1e1e1e · #1b4d27 · #2d7a3a · #4abe5c
   Font   : Inter (Google Fonts)
═══════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #121212;
  --bg-dark:      #0d0d0d;
  --bg-card:      #1a1a1a;
  --bg-charcoal:  #1e1e1e;
  --green-deep:   #1b4d27;
  --green-mid:    #2d7a3a;
  --green-accent: #4abe5c;
  --green-light:  #6ee07e;
  --white:        #ffffff;
  --off-white:    #e8e8e8;
  --muted:        #888888;
  --border:       rgba(255,255,255,0.08);
  --border-green: rgba(74,190,92,0.25);

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;

  --nav-h:        72px;
  --section-py:   112px;
  --container:    1200px;

  --ease:     cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(0,0,.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Only images block-level by default; SVGs flow with text */
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ───────────────────────────────────── */
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
}
h4 { font-size: 0.9375rem; font-weight: 600; }

p { color: rgba(232,232,232,0.72); }

.label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 0.625rem;
}

.body-lg { font-size: 1.0625rem; line-height: 1.72; color: rgba(232,232,232,0.85); }
.body-md { font-size: 0.9375rem; line-height: 1.65; }
.text-green { color: var(--green-accent); }

/* ── Layout helpers ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section--dark      { background: var(--bg); }
.section--charcoal  { background: var(--bg-charcoal); }
.section--dark-green{ background: var(--green-deep); }

section { padding: var(--section-py) 0; }

/* Centred section headline block */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}
.section-header .label { display: inline-block; }
.section-header h2     { margin-top: 0.375rem; }

/* ── Reveal animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--green-accent);
  color: #0c1a0e;
}
.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,190,92,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,0.22);
}
.btn--ghost:hover {
  border-color: var(--green-accent);
  color: var(--green-accent);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 34px; font-size: 0.9375rem; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo strong { font-weight: 700; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(232,232,232,0.72);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--green-accent) !important;
  color: #0c1a0e !important;
  padding: 8px 18px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: var(--green-light) !important;
  color: #0c1a0e !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 32px 28px;
    transform: translateY(-110%);
    transition: transform 0.32s var(--ease-out);
    border-bottom: 1px solid var(--border);
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
  }
  .nav__links a:last-child { border-bottom: none; margin-top: 8px; }
  .nav__cta { display: inline-flex !important; align-self: flex-start; }
  .nav__hamburger { display: flex; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  /* Override the generic section padding so only nav offset + natural flex centering apply */
  padding: var(--nav-h) 0 0;
}

.hero__geo {
  position: absolute;
  top: 0; right: 0;
  width: clamp(360px, 50%, 640px);
  height: 100%;
  pointer-events: none;
  opacity: 0.52;
}
.hero__geo svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero content sits inside .container, left-aligned */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1.25rem;
  display: block;
}
.hero__headline {
  color: var(--white);
  margin-bottom: 1.375rem;
}
.hero__sub {
  font-size: 1.0625rem;
  color: rgba(232,232,232,0.68);
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, var(--green-accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(0.35) translateY(-25%); }
  55%      { opacity: 1; transform: scaleY(1) translateY(0); }
}

.br-lg { display: none; }
@media (min-width: 768px) { .br-lg { display: inline; } }

@media (max-width: 820px) {
  .hero__geo { opacity: 0.22; width: 100%; }
  .hero__content { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero__content { padding: 48px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ── About / Stats ────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__copy .label { color: rgba(255,255,255,0.6); }
.about__copy h2 {
  color: var(--white);
  margin: 0.375rem 0 1.25rem;
}
.about__copy .body-lg {
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.875rem;
}
.about__copy .body-md { color: rgba(255,255,255,0.58); }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-card__number {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card__plus,
.stat-card__suffix {
  font-size: 0.52em;
  font-weight: 700;
  color: var(--green-accent);
  vertical-align: super;
}
.stat-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

/* Location bar spanning both columns */
.stat-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
}
.stat-card__dot-grid {
  width: 72px;
  flex-shrink: 0;
  opacity: 0.65;
}
.stat-card__dot-grid svg { display: block; width: 100%; }
.stat-card__location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.stat-card__location svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 520px) {
  .about__stats { grid-template-columns: 1fr; }
  .stat-card--wide { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Why We Exist ─────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.28s, transform 0.28s var(--ease-out);
}
.why-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}
.why-card__icon { display: block; width: 44px; height: 44px; }
.why-card h3 { color: var(--white); font-size: 0.9375rem; }
.why-card p  { font-size: 0.875rem; flex: 1; }

@media (max-width: 960px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .why__grid { grid-template-columns: 1fr; } }

/* ── Services ─────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--green-deep);
  border: 1px solid rgba(74,190,92,0.16);
  /* clip-path creates the deck's chevron notch — no border-radius needed */
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,190,92,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.45);
}

.service-card--accent {
  background: var(--green-accent);
  border-color: transparent;
}
.service-card--accent::before { display: none; }
.service-card--accent h3 { color: #0c1a0e; }
.service-card--accent p  { color: rgba(12,26,14,0.78); }

.service-card__icon {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.service-card h3 { color: var(--white); }
.service-card p  { font-size: 0.875rem; flex: 1; }
.service-card__arrow {
  display: block;
  font-size: 1.1rem;
  color: var(--green-accent);
  font-weight: 700;
  margin-top: auto;
  transition: transform 0.2s;
  line-height: 1;
}
.service-card:hover .service-card__arrow { transform: translateX(5px); }
.service-card__arrow--dark { color: #0c1a0e; }

@media (max-width: 960px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services__grid { grid-template-columns: 1fr; } }

/* ── Approach ─────────────────────────────────────── */
.approach__steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 56px 2px 1fr;
  column-gap: 28px;
  align-items: stretch;
  min-height: 112px;
}
.step__number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-accent);
  text-align: right;
  padding-top: 2px;
  align-self: flex-start;
}
.step__connector {
  width: 2px;
  background: linear-gradient(to bottom, var(--green-mid) 0%, rgba(27,77,39,0.3) 100%);
  position: relative;
  align-self: stretch;
}
.step__connector::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--green-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74,190,92,0.18);
}
.step__body {
  padding-bottom: 48px;
  align-self: flex-start;
}
.step--last .step__body { padding-bottom: 0; }
.step__body h3 {
  color: var(--white);
  margin-bottom: 6px;
}
.step__body p { font-size: 0.875rem; }

@media (max-width: 580px) {
  .step { grid-template-columns: 40px 2px 1fr; column-gap: 18px; }
  .approach__steps { max-width: none; }
}

/* ── Clients ──────────────────────────────────────── */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.28s, transform 0.28s var(--ease-out);
}
.client-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}
.client-card__icon {
  display: block;
  width: 32px;
  height: 32px;
}
.client-card h3 {
  color: var(--white);
  font-size: 0.9375rem;
}
.client-card p { font-size: 0.8125rem; }

@media (max-width: 1060px) { .clients__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px)  { .clients__grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Case Studies ─────────────────────────────────── */
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.28s;
}
.case-card:hover { border-color: var(--border-green); }

.case-card__type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(74,190,92,0.09);
  border: 1px solid rgba(74,190,92,0.2);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}
.case-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.case-card__body  { font-size: 0.875rem; }
.case-card__list  {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.case-card__list li {
  font-size: 0.8125rem;
  color: rgba(232,232,232,0.62);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.case-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-accent);
  font-weight: 700;
}
.case-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-accent);
  transition: opacity 0.2s;
  margin-top: auto;
}
.case-card__link:hover { opacity: 0.75; }

@media (max-width: 760px) { .work__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .case-card { padding: 28px 24px; }
}

/* ── Proprietary Software ─────────────────────────── */
.software__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: start;
}
.software__label h2 {
  color: var(--white);
  margin-top: 0.375rem;
}

.software__card {
  background: #0f2318;
  border: 1px solid rgba(74,190,92,0.2);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zimara__header {
  border-bottom: 1px solid rgba(74,190,92,0.15);
  padding-bottom: 24px;
}
.zimara__name {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--green-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.zimara__tagline {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.zimara__sub {
  display: block;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.48);
  margin-top: 4px;
}

.zimara__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.zimara__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.zimara__feature-icon {
  flex-shrink: 0;
  margin-top: 1px;
  display: block;
  width: 24px;
  height: 24px;
}
.zimara__feature h4 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 0.875rem;
}
.zimara__feature p { font-size: 0.8125rem; }

.zimara__cta { align-self: flex-start; }

@media (max-width: 960px) {
  .software__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .zimara__features { grid-template-columns: 1fr; }
  .software__card { padding: 28px 24px; }
}

/* ── Why Heave Ventures ───────────────────────────── */
.why-heave__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.differentiator {
  padding: 32px 24px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.28s, border-color 0.28s;
}
.differentiator:hover {
  background: rgba(0,0,0,0.36);
  border-color: rgba(255,255,255,0.18);
}
.differentiator__num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.04em;
  line-height: 1;
}
.differentiator h3 { color: var(--white); font-size: 0.9375rem; }
.differentiator p  { font-size: 0.8125rem; color: rgba(255,255,255,0.62); }

@media (max-width: 1060px) { .why-heave__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why-heave__grid { grid-template-columns: 1fr; } }

/* ── Contact ──────────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
}
.contact__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__geo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.contact__inner {
  position: relative;
  z-index: 2;
}
.contact__inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 14px;
}
.contact__inner > p {
  font-size: 1.0625rem;
  color: rgba(232,232,232,0.68);
  max-width: 460px;
  margin: 0 auto 44px;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}
.contact__url {
  font-size: 0.8125rem;
  color: rgba(232,232,232,0.38);
}

@media (max-width: 480px) {
  .contact { padding: 96px 0; }
  .contact__actions { flex-direction: column; align-items: center; }
  .contact__actions .btn { width: 100%; max-width: 340px; }
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--off-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav   { grid-template-columns: repeat(4, 1fr); }
  .footer__brand p { max-width: none; }
}
@media (max-width: 760px) {
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── Global responsive ────────────────────────────── */
@media (max-width: 820px) {
  :root { --section-py: 80px; }
  .section-header { margin-bottom: 52px; }
}
@media (max-width: 480px) {
  :root { --section-py: 64px; }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0 20px; }
}

/* ── Custom scrollbar ─────────────────────────────── */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-deep); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-mid); }

/* ── Selection ────────────────────────────────────── */
::selection { background: var(--green-accent); color: #0c1a0e; }
