/* ============================================================
   SPREAD YOUR BRAND — Design System
   Primary bg: white  |  Accents: red · ink · light grey
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600;700&family=Bebas+Neue&family=Caveat:wght@600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --red:       #E30613;
  --red-dark:  #A6040E;
  --red-light: #FDE9EA;
  --ink:       #111111;
  --ink-2:     #1B1A19;
  --white:     #ffffff;
  --gray-100:  #f5f5f5;
  --gray-200:  #e8e8e8;
  --gray-400:  #aaaaaa;

  --display: 'Montserrat', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --numbers: 'Bebas Neue', sans-serif;
  --scrawl:  'Caveat', cursive;

  --fs-hero: clamp(2.8rem, 7vw, 6.4rem);
  --fs-h1:   clamp(2.2rem, 4.4vw, 3.8rem);
  --fs-h2:   clamp(1.6rem, 2.8vw, 2.4rem);
  --fs-h3:   clamp(1.3rem, 2vw, 1.8rem);
  --fs-lead: clamp(1.1rem, 1.6vw, 1.4rem);
  --fs-body: 1.05rem;
  --fs-sm:   0.88rem;
  --fs-xs:   0.75rem;

  --space-xs: 0.5rem;
  --space-s:  1rem;
  --space-m:  2rem;
  --space-l:  4rem;
  --space-xl: 6rem;

  --radius:    4px;
  --radius-lg: 18px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);

  --max-w:    1280px;
  --navbar-h: 72px;
  --image-shadow:drop-shadow(12px 7px 8px rgba(0, 0, 0, 0.35));
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }
p   { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ── Layout ────────────────────────────────────────────── */
.wrap,
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-m);
}
@media (max-width: 640px) {
  .wrap, .container { padding: 0 var(--space-s); }
}

/* ── Sections ──────────────────────────────────────────── */
.section,
.section-padding { padding: var(--space-l) 0; background: var(--white); }

@media (max-width: 768px) {
  .section, .section-padding { padding: var(--space-l) 0; }
}

.section--ink   { background: var(--ink);   color: var(--white); }
.section--red   { background: var(--red);   color: var(--white); }
.section--gray  { background: var(--gray-100); color: var(--ink); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0;
}

.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: var(--fs-h1);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: var(--space-s);
}
.section--ink .section-title { color: var(--white); }
.section--red .section-title { color: var(--white); }

.section-sub {
    font-size: var(--fs-lead);
    color: rgba(20, 18, 16, 0.65);
    line-height: 1.65;
    max-width: 52ch;
    margin-bottom: var(--space-l);
}
.section--ink .section-sub { color: rgba(255,255,255,0.6); }
.section--red .section-sub { color: rgba(255,255,255,0.8); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-s);
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: currentColor;
  display: block;
  flex-shrink: 0;
}
.section--ink .section-label { color: var(--white); }
.section--red .section-label { color: var(--white); }

.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, #f47c7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Eyebrow ───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-s);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; }
.section--ink .eyebrow { color: var(--white); }
.section--red .eyebrow { color: var(--white); }

/* ── Logo ──────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.logo:hover img { opacity: 0.85; }

/* Footer logo sits on dark bg — wrap in a white block */
.logo--footer {
  background: var(--white);
  border-radius: var(--radius);
  padding: 5px 10px;
}

/* ── Scribble ──────────────────────────────────────────── */
.scribble { position: relative; white-space: nowrap; }
.scribble svg {
  position: absolute;
  left: -2%; bottom: -0.22em;
  width: 104%; height: 0.3em;
  overflow: visible;
}

/* ── Halftone texture ──────────────────────────────────── */
.halftone { position: relative; }
.halftone::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.05;
}

/* ── Torn edge ─────────────────────────────────────────── */
.torn-top {
  clip-path: polygon(0 6%,4% 0,9% 5%,14% 0,19% 5%,24% 0,29% 5%,34% 0,39% 5%,44% 0,49% 5%,54% 0,59% 5%,64% 0,69% 5%,74% 0,79% 5%,84% 0,89% 5%,94% 0,100% 6%,100% 100%,0 100%);
}
.torn-bottom {
  clip-path: polygon(0 0,100% 0,100% 94%,96% 100%,91% 95%,86% 100%,81% 95%,76% 100%,71% 95%,66% 100%,61% 95%,56% 100%,51% 95%,46% 100%,41% 95%,36% 100%,31% 95%,26% 100%,21% 95%,16% 100%,11% 95%,6% 100%,0 94%);
}

/* ── Callout ───────────────────────────────────────────── */
.callout {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 0.4em 0.9em;
  font-weight: 700;
  display: inline-block;
  border-radius: 2px;
}

/* ── Tag ───────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.7em;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}
.tag--red    { border-color: var(--red);    color: var(--red); }
.tag--fill   { background: var(--red);      border-color: var(--red); color: var(--white); }
.tag--ink    { background: var(--ink);      border-color: var(--ink);    color: var(--white); }

/* ── Card ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--space-m);
}

/* ── Grid utility ──────────────────────────────────────── */
.grid    { display: grid; gap: var(--space-m); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--solid:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: var(--shadow-sm); }

.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn--ink:hover { background: var(--ink-2); border-color: var(--ink-2); }

.btn--ghost {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--full { width: 100%; justify-content: center; }

/* section overrides */
.section--ink .btn              { border-color: var(--white); color: var(--white); background: transparent; }
.section--ink .btn:hover        { background: var(--white); color: var(--ink); }
.section--red .btn              { border-color: var(--white); color: var(--white); background: transparent; }
.section--red .btn:hover        { background: var(--white); color: var(--red); }

/* legacy aliases */
.btn-primary       { background: var(--red);  border: 2px solid var(--red);  color: var(--white); border-radius: var(--radius); padding: 0.85em 1.6em; font-weight: 700; display: inline-flex; align-items: center; gap: 0.6em; transition: var(--transition); }
.btn-primary:hover { background: var(--red-dark); transform: translate(-2px,-2px); box-shadow: var(--shadow-sm); }
.btn-dark          { background: var(--ink);  border: 2px solid var(--ink);  color: var(--white); border-radius: var(--radius); padding: 0.85em 1.6em; font-weight: 700; display: inline-flex; align-items: center; gap: 0.6em; transition: var(--transition); }
.btn-dark:hover    { background: var(--ink-2); transform: translate(-2px,-2px); box-shadow: var(--shadow-sm); }
.btn-nav           { background: var(--red);  border: 2px solid var(--red);  color: var(--white); border-radius: var(--radius); padding: 0.6em 1.2em; font-size: var(--fs-sm); font-weight: 700; display: inline-flex; align-items: center; gap: 0.5em; transition: var(--transition); }
.btn-nav:hover     { background: var(--red-dark); transform: translate(-2px,-2px); }
.btn-white         { background: var(--white); border: 2px solid var(--white); color: var(--ink); border-radius: var(--radius); padding: 0.85em 1.6em; font-weight: 700; display: inline-flex; align-items: center; gap: 0.6em; transition: var(--transition); }
.btn-white:hover   { background: var(--red); border-color: var(--red); color: var(--white); transform: translate(-2px,-2px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); border-radius: var(--radius); padding: 0.85em 1.6em; font-weight: 700; display: inline-flex; align-items: center; gap: 0.6em; transition: var(--transition); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-full, .btn-outline-white.btn-full { width: 100%; justify-content: center; }
.btn-arrow { width: 18px; height: 18px; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar,
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  transition: box-shadow 0.25s ease;
}
.navbar.scrolled, .nav.scrolled { box-shadow: 0 4px 0 var(--ink); }

.nav-inner,
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  height: var(--navbar-h);
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}
.nav__links {
  display: flex;
  gap: var(--space-m);
  list-style: none;
}
.nav-item { position: relative; }

.nav-link,
.nav__links a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--gray-100); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); padding: 4px 10px 8px; border-bottom: 1px solid var(--gray-200); margin-bottom: 6px; }
.mega-menu a { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); padding: 8px 10px; border-radius: var(--radius); transition: background 0.15s, color 0.15s; }
.mega-menu a:hover { background: var(--gray-100); color: var(--red); }
.mega-icon { width: 26px; height: 26px; border-radius: var(--radius); background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.mega-icon svg { width: 16px; height: 16px; }

.nav__cta { display: flex; align-items: center; gap: var(--space-m); }

/* Hamburger */
.hamburger,
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  width: 42px; height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.hamburger span,
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.hamburger span::before, .hamburger span::after,
.nav__toggle span::before, .nav__toggle span::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: absolute;
}
.hamburger span::before, .nav__toggle span::before { top: -6px; }
.hamburger span::after,  .nav__toggle span::after  { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links, .nav__links { display: none; }
  .nav__cta .btn span.btn-label { display: none; }
  .hamburger, .nav__toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-s) var(--space-m) var(--space-m);
    gap: 4px;
    border-bottom: 2px solid var(--ink);
    z-index: 999;
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto;
  }
  .nav-link { padding: 12px 14px; font-size: 1rem; }
  .btn-nav  { display: none; }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--ink);
    padding: var(--space-s) var(--space-m) var(--space-m);
    gap: var(--space-s);
    z-index: 999;
  }
}

/* ── Marquee / Clients ──────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.clients {
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.marquee__track,
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 26s linear infinite;
}
.marquee-track--rev { animation: marqueeRight 26s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 0.9em 1.4em;
  white-space: nowrap;
}
.marquee__track span::after { content: '\2022'; margin-left: 1.4em; color: var(--red); }
@keyframes marqueeLeft  { to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.marquee-wrap { overflow: hidden; }
.marquee-row  { margin-bottom: 12px; overflow: hidden; }
.marquee-row:last-child { margin-bottom: 0; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px; height: 100px;
  margin: 8px 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.14);
  font-family: var(--display); font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-chip:hover { border-color: var(--red); color: var(--red); background: rgba(226,32,43,0.08); }

.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px; height: 150px;
  margin: 8px 14px;
  padding: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo-card:hover { transform: translateY(-3px); }

.clients .marquee-track { animation-duration: 70s; }

.clients-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.45);
  margin-bottom: var(--space-m);
  padding-top: var(--space-m);
}

/* ── Float Orbs (disabled) ─────────────────────────────── */
.float-orbs { display: none !important; }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible,
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }


/* ── Stats (dark strip) ─────────────────────────────────── */
.stats {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-inner { padding: var(--space-xl) 0 var(--space-l); position: relative; z-index: 1; }
.stats-top   { margin-bottom: var(--space-l); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-m);
}
.stat-item {
  padding: var(--space-l) var(--space-m);
  border-right: 2px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }

.stat-num-wrap { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.stat-num {
  font-family: var(--numbers);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.stat-suffix {
  font-family: var(--numbers);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stats-industries span {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  padding: 0.4em 1em;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stats-industries span:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(2) { border-right: none; } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } .stat-item { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.1); } .stat-item:last-child { border-bottom: none; } }

/* ── Team ───────────────────────────────────────────────── */
.team { background: var(--white); }

.founder-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-l);
  align-items: center;
  margin-bottom: var(--space-l);
}
.founder-visual { position: relative; }
.founder-avatar {
  width: 100%; max-width: 440px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.founder-initials {
  font-family: var(--display); font-weight: 800;
  font-size: 8rem;
  color: rgba(20,18,16,0.1);
  letter-spacing: -0.06em;
  user-select: none;
  text-transform: uppercase;
}
.founder-badge {
  position: absolute;
  bottom: var(--space-m); right: calc(-1 * var(--space-m));
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--space-s) var(--space-m);
  box-shadow: var(--shadow-md);
  min-width: 160px;
}
.founder-badge strong {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: 2.4rem;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.founder-badge span { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(20,18,16,0.55); }

.founder-name  { font-family: var(--display); font-weight: 800; font-size: 2rem; text-transform: uppercase; margin-bottom: 6px; }
.founder-role  { font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: var(--space-s); }
.founder-bio   { font-size: 1rem; color: rgba(20,18,16,0.68); line-height: 1.7; margin-bottom: var(--space-m); }
.founder-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-m); }
.founder-tag   {
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); background: var(--white); border: 2px solid var(--ink);
  padding: 0.3em 0.7em; border-radius: var(--radius); transition: var(--transition);
}
.founder-tag:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.founder-actions { display: flex; gap: var(--space-s); align-items: center; flex-wrap: wrap; }

.team-grid-section { padding-top: var(--space-l); border-top: 2px solid var(--ink); margin-top: var(--space-l); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-s);
  margin-top: var(--space-m);
}
.team-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: var(--space-m);
  text-align: center;
  transition: background var(--transition);
}
.team-card:hover { background: var(--gray-100); }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-s);
  font-family: var(--display); font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  position: relative;
}
.avatar-ring { position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--red); opacity: 0.25; }
.avatar-initials { position: relative; z-index: 1; }
.team-card h3  { font-family: var(--display); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 4px; }
.team-role     { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: 8px; }
.team-bio      { font-size: var(--fs-sm); color: rgba(20,18,16,0.6); line-height: 1.5; margin-bottom: var(--space-s); }
.team-linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 2px solid var(--ink); border-radius: var(--radius);
  color: var(--ink); transition: var(--transition);
}
.team-linkedin:hover { background: var(--ink); color: var(--white); }

@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } .team-card { border-right: none; border-bottom: 2px solid var(--ink); } .team-card:last-child { border-bottom: none; } }
@media (max-width: 860px) { .founder-wrap { grid-template-columns: 1fr; } .founder-badge { right: 0; } .founder-avatar { max-width: 340px; } }


/* ── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.8fr; gap: var(--space-xl); align-items: start; }
.faq-left-img {
  width: 100%; height: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: scaleX(-1);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item:first-child { border-top: 2px solid var(--ink); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-s);
  padding: var(--space-s) 0; font-family: var(--body); font-size: 1rem; font-weight: 700;
  color: var(--ink); text-align: left; cursor: pointer; transition: color 0.2s;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--red); }
.faq-icon {
  width: 26px; height: 26px; border: 2px solid var(--ink); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; color: var(--ink); flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s; }
.faq-a.open { max-height: 500px; padding-bottom: var(--space-s); }
.faq-a p { font-size: 0.95rem; color: rgba(20,18,16,0.68); line-height: 1.75; }

@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; gap: var(--space-l); } }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.cta-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0 var(--space-l);
}
.cta-left { position: relative; }
.cta-eyebrow { color: var(--red); margin-bottom: var(--space-s); }
.cta-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.92;
}
.cta-title em { font-style: normal; color: var(--red); }
.cta-stamp {
  position: absolute;
  top: 0; right: 0;
  width: 104px; height: 104px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
  color: var(--red);
  font-family: var(--display); font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
}
.cta-right {
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: var(--space-m);
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.cta-sub { font-size: var(--fs-lead); color: rgba(255,255,255,0.72); line-height: 1.65; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }

@media (max-width: 860px) {
  .cta-body { grid-template-columns: 1fr; gap: var(--space-l); }
  .cta-stamp { display: none; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ── Contact ────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-l);
}
.contact-card {
  background: var(--white);
  border-right: 2px solid var(--ink);
  padding: var(--space-m);
  text-align: center;
  transition: background var(--transition);
}
.contact-card:last-child { border-right: none; }
.contact-card:hover      { background: var(--gray-100); }
.cc-icon {
  width: 52px; height: 52px; border: 2px solid var(--ink); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-s); font-size: 1.3rem;
}
.contact-card h3 { font-family: var(--display); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.contact-card p  { font-size: 0.9rem; color: rgba(20,18,16,0.6); line-height: 1.55; margin-bottom: 10px; }
.cc-link { font-size: 0.9rem; font-weight: 700; color: var(--red); transition: color 0.2s; }
.cc-link:hover { text-decoration: underline; }

.contact-full-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-l);
  align-items: start;
}
.contact-trust { color: var(--red); display: flex; flex-direction: column; gap: 12px; margin-top: var(--space-m); }
.trust-item    { display: flex; gap: 12px; align-items: center; font-size: 0.95rem; font-weight: 600; }

.contact-form-wrap {
  background: var(--gray-100);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--space-l);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-s); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-s); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 0.8em 1em; outline: none; width: 100%; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 3px 3px 0 var(--red); }
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { min-height: 130px; }

.contact-details { display: flex; flex-direction: column; gap: var(--space-s); margin-top: var(--space-m); }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon {
  width: 42px; height: 42px; background: var(--white); border: 2px solid var(--ink);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; transition: var(--transition);
}
.cd-item:hover .cd-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.cd-item strong { display: block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.cd-item a, .cd-item span { font-size: 0.95rem; color: rgba(20,18,16,0.65); transition: color 0.2s; }
.cd-item a:hover { color: var(--red); }

.form-success { text-align: center; padding: var(--space-l); }
.success-icon { width: 64px; height: 64px; background: var(--gray-100); border: 2px solid var(--ink); border-radius: 50%; font-size: 1.6rem; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-s); }
.form-success h3 { font-family: var(--display); font-weight: 800; font-size: 1.6rem; text-transform: uppercase; margin-bottom: 8px; }
.form-success p  { color: rgba(20,18,16,0.6); }
.success-note    { background: var(--ink); color: var(--white); padding: var(--space-s) var(--space-m); border-radius: var(--radius); margin-bottom: var(--space-m); font-weight: 700; }

@media (max-width: 980px) { .contact-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .contact-full-grid, .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .contact-form-wrap { padding: var(--space-m); } }
@media (max-width: 560px) { .contact-cards-grid { grid-template-columns: 1fr; } .contact-card { border-right: none; border-bottom: 2px solid var(--ink); } .contact-card:last-child { border-bottom: none; } }

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-m); }
.newsletter-form  { display: flex; gap: var(--space-s); width: 100%; max-width: 500px; }
.newsletter-form input {
  flex: 1; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 0.8em 1em; outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-note { font-size: var(--fs-xs); color: rgba(20,18,16,0.45); font-weight: 600; }
@media (max-width: 560px) { .newsletter-form { flex-direction: column; } .newsletter-form .btn { width: 100%; justify-content: center; } }

/* ── Footer — minimal: big logo left, socials + nav right ── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-l) 0 var(--space-m);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-l);
  padding-bottom: var(--space-l);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.logo--footer img { height: 72px; }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-m);
  margin-left: auto;
}
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-link svg  { width: 16px; height: 16px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: var(--space-m); }
.footer-nav a {
  position: relative;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:hover::after { width: 100%; }
.footer-bottom { padding-top: var(--space-m); font-size: var(--fs-sm); color: rgba(255,255,255,0.35); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-s);
}
.footer-bottom-links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }
@media (max-width: 860px) {
  .footer-main { flex-direction: column; align-items: center; }
  .footer-right { align-items: center; margin-left: 0; }
  .footer-nav { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--white); border: 2px solid var(--ink); color: var(--ink);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(16px);
  transition: var(--transition); z-index: 999; cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--ink); color: var(--white); transform: translate(-2px,-2px); }
.back-to-top svg     { width: 18px; height: 18px; }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  padding: 120px 0 var(--space-l);
  overflow: hidden;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}
.page-hero-inner  { position: relative; z-index: 1; }
.page-hero-content { max-width: 760px; }
.page-hero-title  {
  font-family: var(--display); font-weight: 800;
  font-size: var(--fs-h1);
  line-height: 0.95; text-transform: uppercase; color: var(--ink);
  margin-bottom: var(--space-s);
}
.page-hero-sub {
  font-size: var(--fs-lead); color: rgba(20,18,16,0.65);
  line-height: 1.65; max-width: 54ch;
}
.page-hero-badges { display: flex; gap: var(--space-s); flex-wrap: wrap; margin-top: var(--space-m); }
.hero-badge {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: var(--space-s) var(--space-m); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hero-badge:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-sm); }
.hero-badge strong {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--red);
  text-transform: uppercase; line-height: 1;
}
.hero-badge span { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(20,18,16,0.55); }

.page-hero-chips { display: flex; gap: 0.6em; flex-wrap: wrap; margin-top: var(--space-s); }
.chip-nav {
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--white); border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.35em 0.9em; color: var(--ink); cursor: pointer; transition: var(--transition);
}
.chip-nav:hover, .chip-nav.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Home Services Grid ─────────────────────────────────── */
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-m); flex-wrap: wrap;
  padding-bottom: var(--space-s); border-bottom: 2px solid var(--ink);
  margin-bottom: var(--space-s);
}
.services-head .section-title { margin-bottom: 0; }

.services-swiper { overflow: visible; }
.services-swiper .swiper-wrapper { align-items: stretch; }
.services-swiper .swiper-slide { height: auto; }
.services-pagination { margin-top: var(--space-m) !important; }
.services-pagination .swiper-pagination-bullet { background: var(--ink); opacity: 0.25; }
.services-pagination .swiper-pagination-bullet-active { background: var(--red); opacity: 1; }
@media (min-width: 861px) { .services-pagination { display: none !important; } }

.service-col {
  padding: var(--space-m);
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--white); display: flex; flex-direction: column;
}
.service-col--ink {
  background: var(--ink);
}

.svc-col-top { margin-bottom: var(--space-m); }
.service-col--ink .svc-col-tag::after { content: ' \2014'; color: var(--red); opacity: 0.7; }
.svc-col-tag {
  display: inline-block; font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3em 0.8em; border: 2px solid var(--ink);
  border-radius: var(--radius); margin-bottom: var(--space-s);
}
.svc-col-tag--red    { background: var(--red-light); color: var(--red); }
.svc-col-tag--ink    { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.25); }

.svc-col-title {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.05rem, 1.4vw, 1.45rem);
  text-transform: uppercase; line-height: 1.05; color: var(--ink);
}
.service-col--ink .svc-col-title    { color: var(--white); }

.service-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-s); flex: 1; margin: 0 0 var(--space-m); padding: 0; }
.service-item { display: flex; gap: 14px; align-items: flex-start; }

.svc-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border: 2px solid var(--ink); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.svc-icon svg { width: 18px; height: 18px; }
.svc-icon--red  { background: var(--red-light); border-color: var(--red); color: var(--red); }
.svc-icon--white { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--white); }
.svc-icon--ink  { background: var(--gray-100); border-color: var(--ink); color: var(--ink); }

.svc-text strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; color: var(--ink); }
.svc-text p      { font-size: 0.82rem; color: rgba(20,18,16,0.6); line-height: 1.5; margin: 0; }
.service-col--ink .svc-text strong { color: var(--white); }
.service-col--ink .svc-text p     { color: rgba(255,255,255,0.55); }

.svc-col-link {
  display: inline-flex; align-items: center; gap: 0.4em; margin-top: auto;
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--red); border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.svc-col-link:hover { border-color: var(--red); }

@media (max-width: 860px) {
  .services-head { flex-direction: column; align-items: flex-start; }
  .services-swiper { overflow: hidden; }
}
