/* ==========================================================================
   Catch22 Ventures — catch22.vc
   Palette + type from brand guide:
   coral #D97F6D · sage #94B48A · navy #28415A · teal #5F91A5 · taupe #A28A83
   Bebas Neue (display) · Roboto Serif (body)
   Dark theme — near-black base, coral gradient glow, marquee ticker.
   ========================================================================== */

:root {
  --black: #0B0D10;
  --surface: #14171C;
  --line: rgba(255, 255, 255, 0.1);
  --navy: #28415A;
  --coral: #D97F6D;
  --coral-dark: #C96A57;
  --teal: #5F91A5;
  --sage: #94B48A;
  --white: #FFFFFF;
  --text: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.5);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Roboto Serif", Georgia, serif;

  --container: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-soft);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--coral); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Brand three-bar motif (from logo) --------------------------------- */
.bars {
  display: grid;
  gap: 7px;
  width: 72px;
}
.bars span { height: 5px; }
.bars span:nth-child(1) { background: var(--teal);  width: 72px; justify-self: end; }
.bars span:nth-child(2) { background: var(--coral); width: 100%; }
.bars span:nth-child(3) { background: var(--white); width: 100%; }

/* --- Header ------------------------------------------------------------ */
.site-header {
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}

.brand img { height: 94px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--coral); }
.site-nav a.active { color: var(--coral); }

.site-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 0.4rem 1.1rem;
  border-radius: 3px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-nav .nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: calc(100svh - 116px); /* hero + header fill the viewport; marquee sits at the fold */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: var(--black);
}

/* coral glow — slow drifting blobs */
.hero-glow {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(48% 44% at 82% 18%, rgba(217, 127, 109, 0.95) 0%, rgba(217, 127, 109, 0) 72%),
    radial-gradient(56% 50% at 10% 88%, rgba(217, 127, 109, 0.85) 0%, rgba(217, 127, 109, 0) 72%),
    radial-gradient(34% 30% at 55% 105%, rgba(217, 127, 109, 0.6) 0%, rgba(217, 127, 109, 0) 70%),
    radial-gradient(28% 26% at 62% 72%, rgba(95, 145, 165, 0.4) 0%, rgba(95, 145, 165, 0) 70%);
  filter: blur(70px);
  animation: drift 24s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(18deg) scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .marquee-track { animation: none !important; }
}

.hero .container { position: relative; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--white);
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero .lede {
  font-size: 1.1875rem;
  max-width: 38rem;
  margin: 0 auto 3rem;
  color: var(--text);
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  padding: 0.75rem 2.5rem;
  border-radius: 3px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-1px); }

/* --- Marquee ------------------------------------------------------------ */
.marquee {
  overflow: hidden;
  background: var(--coral);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Sections ---------------------------------------------------------- */
section { padding: 5.5rem 0; }

.kicker {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-intro { max-width: 44rem; }

/* What we do cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); }
.card:nth-child(2) { border-top-color: var(--coral); }
.card:nth-child(3) { border-top-color: var(--sage); }

.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card p { font-size: 1rem; }

/* Who we work with */
.audience { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.audience-item {
  background: var(--black);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  padding: 2rem 1.75rem;
}
.audience-item:nth-child(2) { border-left-color: var(--teal); }

.audience-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* Founder strip */
.founder-strip { padding: 4rem 0; }

.founder-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  background: var(--surface);
  padding: 2rem 2.25rem;
  max-width: calc(var(--container) - 3rem);
}

.founder-strip h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.founder-strip p { font-size: 1rem; margin: 0; }

.founder-strip .btn { font-size: 1.0625rem; padding: 0.55rem 1.5rem; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6.5rem 0;
}

.cta-band .hero-glow { opacity: 0.65; }

.cta-band .container { position: relative; }

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

/* --- Page hero (interior pages) ---------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
.page-hero .hero-glow { opacity: 0.55; }
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-top: 1.5rem;
}

/* --- Prose (about) ------------------------------------------------------ */
.prose { max-width: 44rem; }
.prose p + p { margin-top: 1.25rem; }
.prose h2 { margin-top: 3rem; }
.prose h2:first-child { margin-top: 0; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
  max-width: 44rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 2rem 1.75rem;
}
.contact-card:nth-child(2) { border-top-color: var(--coral); }

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card a { font-size: 1.0625rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: #08090C;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9375rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer img { height: 94px; width: auto; margin-bottom: 1rem; }

.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--coral); }

.footer-contact p { margin: 0.15rem 0; }

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
}

/* --- Mobile ------------------------------------------------------------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 116px;
    left: 0;
    right: 0;
    background: #0E1014;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.75rem 1.5rem; width: 100%; }
  .site-nav .nav-cta { margin: 0.5rem 1.5rem 0; width: auto; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: calc(100svh - 116px); padding: 4rem 0; }

  .marquee-track span { font-size: 1.875rem; }

  section { padding: 3.75rem 0; }

  .cards { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
