/* palette: bg=#0C1A11 fg=#F3F7EE accent=#CBF94A */
/* fonts: display="Archivo" body="Archivo" mono="JetBrains Mono" */

:root {
  --bg: #0C1A11;         /* dominant deep forest-green background from reference */
  --bg-alt: #112719;     /* alternating section background */
  --bg-elev: #16301F;    /* elevated card surface */
  --fg: #F3F7EE;         /* primary near-white text */
  --fg-soft: #D5DECF;    /* slightly softer foreground */
  --muted: #8FA090;      /* muted sage secondary text */
  --accent: #CBF94A;     /* lime / chartreuse accent from reference hero + CTA */
  --accent-deep: #AEE022;/* darker accent for hover */
  --border: rgba(243, 247, 238, 0.12);
  --border-strong: rgba(243, 247, 238, 0.22);

  --serif: 'Instrument Serif', ui-serif, Georgia, serif;
  --sans: 'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --pad: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--accent); color: #0C1A11; }

/* ------------------------------------------------------------------ */
/* LAYOUT PRIMITIVES                                                   */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: clamp(72px, 12vw, 160px); position: relative; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }
.eyebrow--muted::before { background: var(--muted); }

.accent-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.005em;
}

h1, h2, h3, h4 { font-weight: 400; margin: 0; letter-spacing: -0.02em; }

.h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 16ch;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.72;
  color: var(--fg-soft);
  max-width: 58ch;
}
.muted { color: var(--muted); }

/* ------------------------------------------------------------------ */
/* BUTTONS                                                             */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #0C1A11; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.arrowlink span { transition: transform 0.4s var(--ease); }
.arrowlink:hover { color: var(--accent); border-color: var(--accent); }
.arrowlink:hover span { transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/* HEADER                                                              */
/* ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 26, 17, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.nav { display: none; }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a.is-active { color: var(--accent); }

.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  align-items: flex-end;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 18px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px var(--pad) 48px;
  display: flex;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg);
}
.mobile-menu a .idx { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.mobile-menu .btn { margin-top: 32px; justify-content: center; }

/* ------------------------------------------------------------------ */
/* HERO                                                                */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 120px 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  animation: heroZoom 9s var(--ease) forwards;
  filter: grayscale(0.2);
}
.hero__glow {
  position: absolute;
  z-index: 1;
  top: 42%;
  left: 50%;
  width: min(1100px, 120vw);
  height: min(1100px, 120vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(203, 249, 74, 0.18) 0%, rgba(203, 249, 74, 0.05) 34%, transparent 62%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.trustbadge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(22, 48, 31, 0.5);
  margin-bottom: 34px;
  font-size: 13px;
}
.trustbadge__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #0C1A11;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; }
.trustbadge__txt { color: var(--fg-soft); }

.hero h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 15ch;
  margin-bottom: 30px;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 54ch;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: var(--pad);
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}

/* ------------------------------------------------------------------ */
/* STATS / MARQUEE STRIP                                               */
/* ------------------------------------------------------------------ */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat {
  padding: 34px 8px 34px 0;
  border-bottom: 1px solid var(--border);
}
.stat:nth-child(odd) { padding-right: 20px; }
.stat:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--border); }
.stat__num {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.stat__num em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.stat__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.01em;
}

/* ------------------------------------------------------------------ */
/* INTRO STATEMENT                                                     */
/* ------------------------------------------------------------------ */
.statement {
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 300;
  max-width: 20ch;
}
.statement em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.intro-grid { display: grid; gap: 40px; }
.intro-grid__aside { max-width: 42ch; }

/* ------------------------------------------------------------------ */
/* SERVICES GRID                                                       */
/* ------------------------------------------------------------------ */
.grid-head {
  display: grid;
  gap: 20px;
  margin-bottom: 56px;
}
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service {
  background: var(--bg);
  padding: 38px 30px 42px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--bg-elev); }
.service__idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 26px;
}
.service h3 {
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.service p { font-size: 15.5px; line-height: 1.68; color: var(--muted); margin: 0 0 26px; }
.service__foot { margin-top: auto; }
.service .arrowlink { border-color: var(--border); font-size: 13px; }

/* ------------------------------------------------------------------ */
/* TIMELINE / PROGRESSION                                              */
/* ------------------------------------------------------------------ */
.timeline { display: grid; gap: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child { border-bottom: 1px solid var(--border); }
.tl-item__step {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.tl-item__step .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none;
}
.tl-item h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 300;
}
.tl-item p { font-size: 15.5px; line-height: 1.7; color: var(--muted); max-width: 62ch; margin: 6px 0 0; }
.tl-item__meta { font-family: var(--mono); font-size: 12px; color: var(--fg-soft); letter-spacing: 0.04em; }

/* ------------------------------------------------------------------ */
/* MANIFESTO (inverted band)                                          */
/* ------------------------------------------------------------------ */
.manifesto {
  background: var(--accent);
  color: #0C1A11;
  text-align: center;
}
.manifesto__quote {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 300;
  max-width: 20ch;
  margin: 0 auto;
}
.manifesto__quote em { font-family: var(--serif); font-style: italic; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 0.6;
  display: block;
  margin-bottom: 6px;
}
.manifesto__by {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 40px;
  color: rgba(12, 26, 17, 0.7);
}

/* ------------------------------------------------------------------ */
/* TESTIMONIALS (masonry)                                              */
/* ------------------------------------------------------------------ */
.reviews { columns: 1; column-gap: 20px; }
.review {
  break-inside: avoid;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px 24px;
  margin-bottom: 20px;
}
.review__stars { color: var(--accent); letter-spacing: 2px; font-size: 13px; margin-bottom: 16px; }
.review p { font-size: 15.5px; line-height: 1.7; color: var(--fg-soft); margin: 0 0 22px; }
.review__who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600; font-size: 14px; color: #0C1A11;
  flex: none;
}
.review__name { font-size: 14px; font-weight: 500; }
.review__role { font-size: 12px; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 48px 26px 0;
  position: relative;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: -0.015em;
  font-weight: 400;
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__body { padding: 0 48px 28px 0; }
.faq-item__body p { font-size: 16px; line-height: 1.72; color: var(--muted); margin: 0; max-width: 68ch; }

/* ------------------------------------------------------------------ */
/* CTA BLOCK                                                           */
/* ------------------------------------------------------------------ */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(203, 249, 74, 0.14), transparent 55%);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta h1, .cta h2 {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 26px;
}
.cta h1 em, .cta h2 em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.cta p { color: var(--fg-soft); max-width: 48ch; margin: 0 auto 38px; font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------------------------------------------------------------------ */
/* FORM (contact)                                                      */
/* ------------------------------------------------------------------ */
.form-grid { display: grid; gap: 0; }
.field { display: flex; flex-direction: column; margin-bottom: 4px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 16px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 12px 0 16px;
  transition: border-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(143, 160, 144, 0.6); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field select option { background: var(--bg); color: var(--fg); }
.field { padding: 20px 0; border-bottom: 1px solid var(--border); }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  padding: 24px 0;
  line-height: 1.6;
}
.form-consent input { margin-top: 3px; accent-color: var(--accent); }
.form-consent a { color: var(--accent); border-bottom: 1px solid var(--border); }

.contact-grid { display: grid; gap: 48px; }
.contact-block { border-top: 1px solid var(--border); padding-top: 22px; }
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-block a, .contact-block p { font-size: 1.1rem; color: var(--fg); margin: 0; line-height: 1.6; }
.contact-block a:hover { color: var(--accent); }

/* ------------------------------------------------------------------ */
/* GENERIC PAGE HEADER (inner pages)                                  */
/* ------------------------------------------------------------------ */
.page-hero {
  padding-block: clamp(120px, 18vw, 200px) clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(203, 249, 74, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 300;
  max-width: 16ch;
  position: relative;
}
.page-hero h1 em { font-family: var(--serif); font-style: italic; color: var(--accent); }
.page-hero p { position: relative; max-width: 56ch; margin-top: 28px; color: var(--fg-soft); font-size: 1.15rem; }

/* PROSE (legal pages) */
.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 52px 0 18px;
  font-weight: 400;
}
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; font-weight: 500; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.78; color: var(--fg-soft); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--border); }
.prose strong { color: var(--fg); font-weight: 600; }
.prose__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 8px; }

/* ------------------------------------------------------------------ */
/* VALUES / ABOUT                                                      */
/* ------------------------------------------------------------------ */
.values { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value { background: var(--bg); padding: 34px 28px; }
.value__num { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 18px; }
.value h3 { font-size: 1.3rem; margin-bottom: 10px; letter-spacing: -0.015em; }
.value p { font-size: 15px; line-height: 1.68; color: var(--muted); margin: 0; }

.split { display: grid; gap: 40px; align-items: start; }
.split__media { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__body h2 { margin-bottom: 24px; }
.split__body p { color: var(--fg-soft); margin: 0 0 20px; }

/* TEAM (text-only, monogram) */
.team { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.member { background: var(--bg); padding: 30px 26px; display: flex; flex-direction: column; }
.member__avatar {
  width: 52px; height: 52px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 700; font-size: 18px; color: #0C1A11;
  margin-bottom: 22px; font-family: var(--sans);
}
.member h3 { font-size: 1.2rem; margin-bottom: 4px; }
.member__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 14px; }
.member p { font-size: 14.5px; line-height: 1.66; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------------ */
/* FOOTER                                                              */
/* ------------------------------------------------------------------ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-block: clamp(56px, 8vw, 96px) 40px; }
.footer__top { display: grid; gap: 44px; margin-bottom: 56px; }
.footer__brand { max-width: 34ch; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: var(--fg-soft); margin-bottom: 12px; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ------------------------------------------------------------------ */
/* COOKIE POPUP                                                        */
/* ------------------------------------------------------------------ */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 30px 32px;
  max-width: 460px;
  border-radius: 8px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -0.015em; }
.cookie-popup__card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.cookie-popup__card p a { color: var(--accent); border-bottom: 1px solid var(--border); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 24px; }
.cookie-popup__actions button {
  padding: 11px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #0C1A11; border-color: var(--accent); }

/* ------------------------------------------------------------------ */
/* REVEAL                                                              */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  * { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------ */
/* RESPONSIVE                                                          */
/* ------------------------------------------------------------------ */
@media (min-width: 680px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat, .stat:nth-child(even) { border-left: 1px solid var(--border); padding: 40px 24px; }
  .stat:first-child { border-left: 0; }
  .reviews { columns: 2; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  :root { --pad: 32px; }
  .hero__scroll { display: block; }
  .tl-item { grid-template-columns: 260px 1fr; gap: 40px; align-items: baseline; }
  .tl-item__head { display: flex; flex-direction: column; gap: 14px; }
  .intro-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
  .split { grid-template-columns: 1fr 1.1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 72px; }
  .contact-blocks { display: grid; gap: 34px; }
}
@media (min-width: 1024px) {
  .nav { display: flex; gap: 34px; }
  .header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .reviews { columns: 3; }
  .values { grid-template-columns: repeat(4, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1.3fr 2fr; gap: 80px; }
  .grid-head { grid-template-columns: 1fr 1fr; align-items: end; }
}
