/* Redgames — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Warm muted palette */
  --cream: #F6EDE0;
  --cream-deep: #EFE3D2;
  --cream-paper: #FBF6EC;
  --red: #B43E2C;
  --red-deep: #8B2E20;
  --red-soft: #E8B0A4;
  --orange: #E18745;
  --orange-soft: #F4C8A1;
  --cocoa: #3D2A1F;
  --cocoa-soft: #6B5448;
  --sage: #7A9B8A;
  --sage-deep: #4F6B5E;
  --butter: #E8C268;
  --ink: #2A1D14;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sticker: 0 1px 0 rgba(61, 42, 31, 0.08), 0 8px 24px -10px rgba(61, 42, 31, 0.18);
  --shadow-deep: 0 2px 0 rgba(61, 42, 31, 0.1), 0 18px 40px -16px rgba(61, 42, 31, 0.28);

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--cocoa);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-image:
    radial-gradient(circle at 12% 8%, rgba(225, 135, 69, 0.06) 0, transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(122, 155, 138, 0.06) 0, transparent 40%);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 95;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.0; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.05; }
h3 { font-size: 1.35rem; line-height: 1.2; }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, var(--cream) 70%, rgba(246, 237, 224, 0));
  backdrop-filter: blur(2px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--cream-paper);
  font-size: 0.8rem;
  font-weight: 800;
  transform: rotate(-6deg);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.12), 0 2px 0 rgba(61,42,31,0.15);
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: var(--cocoa);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active {
  color: var(--red);
  position: relative;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'><path d='M1 4 Q 15 1, 30 3.5 T 59 3' stroke='%23B43E2C' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

@media (max-width: 720px) {
  .nav-links { gap: 14px; font-size: 0.9rem; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { display: inline-flex; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--cream-paper);
  box-shadow: 0 3px 0 var(--red-deep), 0 8px 18px -8px rgba(180, 62, 44, 0.5);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--red-deep), 0 10px 22px -8px rgba(180, 62, 44, 0.55);
  color: var(--cream-paper);
}
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--cocoa);
  border: 2px solid var(--cocoa);
  padding: 12px 20px;
}
.btn-ghost:hover { background: var(--cocoa); color: var(--cream-paper); }
.btn-cream {
  background: var(--cream-paper);
  color: var(--ink);
  box-shadow: 0 3px 0 var(--cream-deep), 0 8px 18px -8px rgba(61, 42, 31, 0.2);
}

/* ========== HERO ========== */
.hero {
  padding: 60px 0 40px;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cocoa-soft);
  background: var(--cream-paper);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px dashed var(--cocoa-soft);
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); display: inline-block;
}
.hero h1 .hl {
  position: relative;
  white-space: nowrap;
  color: var(--red);
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q 50 2, 100 7 T 198 6' stroke='%23E18745' stroke-width='4' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--cocoa-soft);
  max-width: 580px;
  margin: 24px 0 32px;
  text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
}

/* ========== SECTION ========== */
section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 720px; }
.section-head p { color: var(--cocoa-soft); max-width: 460px; margin: 0; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

/* ========== STICKER CARDS ========== */
.sticker {
  background: var(--cream-paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sticker);
  border: 1.5px solid rgba(61, 42, 31, 0.06);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticker:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: var(--shadow-deep);
}

/* ========== FEATURED GAMES ========== */
.games-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 760px) { .games-strip { grid-template-columns: 1fr; } }

.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--cream-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sticker);
  border: 1.5px solid rgba(61, 42, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: var(--shadow-deep);
  color: inherit;
}
.game-card.tilt-r:hover { transform: translateY(-6px) rotate(0.4deg); }
.game-art {
  height: 280px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.game-art .app-icon {
  width: 64%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 22.5%;
  box-shadow:
    0 14px 30px -10px rgba(61, 42, 31, 0.35),
    0 4px 10px -4px rgba(61, 42, 31, 0.18);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.4);
  position: relative;
  z-index: 1;
  display: block;
}
.game-card:hover .game-art .app-icon.pig { transform: rotate(-5deg) scale(1.04); }
.game-card:hover .game-art .app-icon.bunny { transform: translateY(-10px); }
.game-art.pigpen {
  background: linear-gradient(160deg, #F4C8A1 0%, #E8B0A4 100%);
}
.game-art.bunnyburrow {
  background: linear-gradient(160deg, #C9D8C4 0%, #7A9B8A 100%);
}
.game-art.letterweave {
  background: linear-gradient(160deg, #F0D4BC 0%, #C26B3C 100%);
}
.game-art.faultline {
  background: linear-gradient(160deg, #DCCDA9 0%, #C2811F 100%);
}
.game-body { padding: 26px 28px 30px; }
.game-body h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  font-variation-settings: "wdth" 90;
}
.game-body p { color: var(--cocoa-soft); margin: 0 0 16px; }
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--cocoa-soft);
}
.game-meta .arrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--red);
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}
.game-card:hover .arrow { transform: translateX(4px); }

.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--cocoa-soft);
  border: 1px solid rgba(61, 42, 31, 0.12);
}
.tag-free {
  background: var(--sage);
  color: var(--cream-paper);
  border-color: transparent;
}

/* ========== FRIENDS OF OURS ========== */
.friends {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .friends { grid-template-columns: 1fr; } }
.friend-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  background: var(--cream-paper);
  border-radius: var(--radius);
  padding: 28px 30px;
  border: 1.5px solid rgba(61, 42, 31, 0.08);
  box-shadow: var(--shadow-sticker);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.friend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  color: inherit;
}
.friend-card h3 {
  font-size: 1.4rem;
  font-variation-settings: "wdth" 90;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.friend-card h3 .arrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--red);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.friend-card:hover h3 .arrow { transform: translateX(4px); }
.friend-card p { color: var(--cocoa-soft); margin: 0; }

/* ========== DIFFERENT TILES ========== */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  background: var(--cream-paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid rgba(61, 42, 31, 0.06);
  position: relative;
  overflow: hidden;
}
.tile-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.95;
  margin-bottom: 14px;
  font-variation-settings: "wdth" 75;
}
.tile h3 { font-size: 1.3rem; margin-bottom: 10px; }
.tile p { color: var(--cocoa-soft); font-size: 1rem; margin: 0; }
.tile:nth-child(2) .tile-num { color: var(--orange); }
.tile:nth-child(3) .tile-num { color: var(--sage-deep); }

/* ========== QUOTE / ABOUT ==========*/
.quote-block {
  background: var(--red);
  color: var(--cream-paper);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "“";
  position: absolute;
  top: -20px; left: 30px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12rem;
  line-height: 1;
  color: rgba(255,255,255,0.13);
  pointer-events: none;
}
.quote-block p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  max-width: 760px;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.quote-block a {
  color: var(--cream-paper);
  font-weight: 600;
}
.quote-block a:hover { color: var(--orange-soft); }
/* Cream buttons inside a quote block keep their dark ink — otherwise the
   higher-specificity `.quote-block a` rule above paints cream-on-cream. */
.quote-block .btn-cream { color: var(--ink); }
.quote-block .btn-cream:hover { color: var(--ink); }

@media (max-width: 640px) { .quote-block { padding: 40px 28px; } }

/* ========== STAMP ==========*/
.stamp {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--cocoa);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
  transform: rotate(-12deg);
  box-shadow: 0 6px 0 rgba(61,42,31,0.12), 0 14px 30px -10px rgba(61,42,31,0.3);
  border: 3px dashed rgba(61,42,31,0.25);
  padding: 14px;
}

/* ========== HERO ART (decorative) ========== */
.hero-art-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.hero-art-stack .blob {
  position: absolute;
  inset: 4% 4% 4% 4%;
  background: var(--orange-soft);
  border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%;
  z-index: 0;
}
.hero-art-stack .pig-card,
.hero-art-stack .bunny-card {
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  background: var(--cream-paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1.5px solid rgba(61,42,31,0.08);
}
.hero-art-stack .pig-card img,
.hero-art-stack .bunny-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art-stack .pig-card {
  top: 8%; left: 4%;
  transform: rotate(-7deg);
}
.hero-art-stack .bunny-card {
  bottom: 6%; right: 4%;
  transform: rotate(6deg);
}
.hero-art-stack .pig-card:hover { animation: wiggle 0.6s ease; }
.hero-art-stack .bunny-card:hover { animation: hop 0.6s ease; }

@keyframes wiggle {
  0%, 100% { transform: rotate(-7deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(-3deg); }
}
@keyframes hop {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-18px); }
}

.hero-art-stack .stamp {
  top: 38%; right: -4%;
  z-index: 3;
}

/* ========== LIST STYLES ========== */
.checklist, .nolist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.checklist li, .nolist li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1.5px dashed rgba(61, 42, 31, 0.12);
  align-items: flex-start;
  font-size: 1.05rem;
}
.checklist li:last-child, .nolist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--sage);
  color: var(--cream-paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 2px;
}
.nolist li::before {
  content: "×";
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--cream-deep);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ========== EMAIL CAPTURE ========== */
.email-capture {
  display: flex;
  gap: 10px;
  background: var(--cream-paper);
  padding: 8px;
  border-radius: 999px;
  border: 1.5px solid rgba(61,42,31,0.1);
  max-width: 480px;
  box-shadow: var(--shadow-sticker);
}
.email-capture input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
.email-capture input::placeholder { color: var(--cocoa-soft); }

/* ========== FORM ========== */
.form {
  display: grid;
  gap: 16px;
  max-width: 540px;
}
.form label {
  display: grid;
  gap: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}
.form input, .form textarea {
  font: inherit;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(61,42,31,0.15);
  background: var(--cream-paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.form input:focus, .form textarea:focus { border-color: var(--red); }
.form textarea { min-height: 140px; resize: vertical; }

/* ========== FAQ ========== */
.faq { display: grid; gap: 14px; }
.faq details {
  background: var(--cream-paper);
  border-radius: var(--radius);
  padding: 18px 24px;
  border: 1.5px solid rgba(61,42,31,0.06);
  cursor: pointer;
}
.faq summary {
  list-style: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 4px; color: var(--cocoa-soft); }

/* ========== FOOTER ========== */
.footer {
  margin-top: 80px;
  padding: 56px 0 40px;
  background: var(--ink);
  color: var(--cream-paper);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.6;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.footer .brand { color: var(--cream-paper); }
.footer .brand-mark { background: var(--red); }
.footer-tagline {
  color: rgba(246,237,224,0.65);
  font-size: 0.95rem;
  margin: 14px 0 0;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 580px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-soft);
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  color: var(--cream-paper);
  text-decoration: none;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--orange); }
.footer-col .game-mark {
  width: 22px;
  height: 22px;
  border-radius: 22.5%;
  flex-shrink: 0;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,237,224,0.12);
  color: rgba(246,237,224,0.55);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  z-index: 1;
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 48px 0 40px;
  text-align: left;
}
.page-header .eyebrow { color: var(--red); }
.page-header h1 { margin-bottom: 18px; }
.page-header p {
  font-size: 1.2rem;
  color: var(--cocoa-soft);
  max-width: 640px;
}

/* ========== TWO COL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

.col-card {
  background: var(--cream-paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid rgba(61,42,31,0.06);
  box-shadow: var(--shadow-sticker);
}
.col-card.yes { border-top: 6px solid var(--sage); }
.col-card.no { border-top: 6px solid var(--red); }
.col-card h3 { margin-bottom: 18px; font-size: 1.5rem; }

/* ========== TEAM ========== */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 720px) { .team { grid-template-columns: 1fr; } }
.team-card {
  background: var(--cream-paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid rgba(61,42,31,0.06);
  box-shadow: var(--shadow-sticker);
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.team-photo {
  width: 92px; height: 92px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--cream-paper);
}
.team-photo.rod { background: var(--red); }
.team-photo.ed { background: var(--sage-deep); }
.team-card h3 { margin-bottom: 4px; font-size: 1.25rem; }
.team-card .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cocoa-soft);
  margin-bottom: 10px;
}
.team-card p { margin: 0; color: var(--cocoa-soft); }

/* ========== TEASER (coming soon) ========== */
.teaser {
  background: var(--cream-paper);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 2px dashed rgba(61,42,31,0.2);
  text-align: center;
}
.teaser .egg {
  font-size: 3rem;
  display: inline-block;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}
.teaser h3 { font-size: 1.6rem; margin: 14px 0 8px; }
.teaser p { color: var(--cocoa-soft); max-width: 460px; margin: 0 auto 22px; }
.teaser .email-capture { margin: 0 auto; }

/* ========== UTILS ========== */
.sage-bg { background: var(--sage) !important; }
.red-bg { background: var(--red); color: var(--cream-paper); }
.center { text-align: center; }
.muted { color: var(--cocoa-soft); }
.spaced { margin: 32px 0; }

.divider-wave {
  height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'><path d='M0 12 Q 25 2, 50 12 T 100 12 T 150 12 T 200 12' stroke='%23B43E2C' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.4'/></svg>") center/100% 100% repeat-x;
  margin: 24px 0;
}
