/* College Sauce — web theme
   Tokens sourced from claude-design/College Sauce Design System.dc.html
   Fonts: Neue Haas Grotesk Round (same OTF files as the app)
   ------------------------------------------------------------- */
@font-face{font-family:'NHG Disp Round';src:url('fonts/NeueHaasGrotDispRound-55Roman.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Disp Round';src:url('fonts/NeueHaasGrotDispRound-65Medium.otf') format('opentype');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Disp Round';src:url('fonts/NeueHaasGrotDispRound-75Bold.otf') format('opentype');font-weight:600 800;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Disp Round';src:url('fonts/NeueHaasGrotDispRound-95Black.otf') format('opentype');font-weight:900;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Round';src:url('fonts/NeueHaasGrotTextRound-55Roman.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Round';src:url('fonts/NeueHaasGrotTextRound-65Medium.otf') format('opentype');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'NHG Round';src:url('fonts/NeueHaasGrotTextRound-75Bold.otf') format('opentype');font-weight:600 900;font-style:normal;font-display:swap;}

:root {
  /* Foundation */
  --bg:            #e9e6df;    /* warm cream page */
  --surface:      #fffafa;    /* off-white cards */
  --surface-2:    #f2f1ec;    /* subtle band */
  --ink:          #1c1b1e;    /* primary ink */
  --ink-dark:     #323035;    /* dark surfaces */
  --ink-muted:    #5a5a5a;
  --ink-soft:     #888888;
  --ink-faint:    #aaaaaa;
  --line:         rgba(50,48,53,0.10);
  --line-soft:    rgba(50,48,53,0.06);

  /* Brand */
  --red:          #ff5643;    /* primary brand */
  --red-2:        #ff6e4a;
  --red-3:        #e24331;    /* accent */
  --lime:         #c4d94c;
  --lime-deep:    #6a7800;
  --lime-bg:      #f5f7e8;
  --amber:        #ffcb7e;
  --amber-bg:     #fef3e2;
  --amber-ink:    #854f0b;

  /* Type */
  --font-display: 'NHG Disp Round',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
  --font-body:    'NHG Round',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
  --font-mono:    ui-monospace,'SF Mono','Menlo',monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;

  /* Shadow */
  --shadow-1: 0 1px 3px rgba(50,48,53,0.04);
  --shadow-2: 0 8px 24px rgba(50,48,53,0.08);

  --container: 1180px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'cv11' on;
}

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Utilities */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.h-section {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.lede {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 0 48px;
}
.header-block { margin-bottom: 56px; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 16px; z-index: 40;
  margin: 16px auto 0;
  max-width: calc(var(--container) - 8px);
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
  box-shadow: var(--shadow-1);
  backdrop-filter: saturate(1.2);
}
.nav-menu { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-toggle { display: none; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--ink);
}
.nav-brand .dot {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--red);
  display: grid; place-items: center;
  color: white; font-weight: 800; font-size: 13px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.nav-brand .nav-logo {
  width: 28px; height: 28px; border-radius: 8px;
  display: block;
}
.hero-card { padding: 24px; }
.hero-card img {
  max-width: 88%;
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(255,86,67,0.28);
}
.nav-links {
  display: flex; gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--red);
  color: white !important;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08) inset, 0 4px 12px rgba(255,86,67,0.28);
}
.nav-cta:hover { background: var(--red-3); }

/* Hamburger toggle */
.nav-toggle {
  margin-left: auto;
  width: 40px; height: 40px;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-inner.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-inner.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-inner.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-left: 0;
    background: var(--surface);
    border: 0.5px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow-2);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-inner.open .nav-menu { opacity: 1; visibility: visible; transform: none; }
  .nav-links { flex-direction: column; gap: 2px; }
  .nav-links a { padding: 12px 14px; font-size: 15px; border-radius: 12px; }
  .nav-cta { text-align: center; padding: 13px 16px; font-size: 15px; border-radius: 14px; margin-top: 4px; }
}

/* ---- HERO ---- */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--red-3); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.hero h1 .accent { color: var(--red); }
.hero p.sub {
  font-size: 19px;
  color: var(--ink-muted);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  border-radius: 16px;
  background: var(--red);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  box-shadow: 0 8px 20px rgba(255,86,67,0.30), inset 0 -2px 0 rgba(0,0,0,0.10);
  transition: transform .12s, background .15s;
}
.btn-primary:hover { background: var(--red-3); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.btn-ghost:hover { background: var(--surface); }

/* Hero art — floating app icon, glow, feature pills */
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  justify-self: center;
  width: 100%;
  display: grid;
  place-items: center;
}
.hero-glow {
  position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,86,67,0.28), rgba(255,86,67,0) 68%);
  filter: blur(6px);
  z-index: 0;
}
.hero-icon {
  position: relative;
  z-index: 2;
  width: 52%;
  height: auto;
  border-radius: 28%;
  box-shadow: 0 26px 60px rgba(226,67,49,0.34), 0 8px 20px rgba(50,48,53,0.12);
  transform: rotate(-4deg);
  transition: transform .3s ease;
}
.hero-icon:hover { transform: rotate(0deg) scale(1.02); }

/* Hero mascots — hidden at rest, pop out from behind the icon on hover */
.hero-mascot {
  position: absolute;
  z-index: 1;
  height: auto;
  opacity: 0;
  transform: translateY(16px) scale(0.6) rotate(0deg);
  transform-origin: bottom center;
  transition: opacity .35s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(50,48,53,0.18));
}
.mascot-happy { width: 20%; bottom: 2%;  left: 4%; }
.mascot-lime  { width: 26%; top: -2%;    right: 2%; }
.mascot-hot   { width: 22%; bottom: 4%;  right: -2%; }
/* Reveal + bob when the logo area is hovered */
.hero-art:hover .mascot-happy { opacity: 1; transform: translate(-8px,0) rotate(-10deg) scale(1); animation: mascotBob 1.6s ease-in-out .10s infinite; }
.hero-art:hover .mascot-lime  { opacity: 1; transform: translate(8px,0)  rotate(10deg) scale(1); animation: mascotBob 1.8s ease-in-out .00s infinite; }
.hero-art:hover .mascot-hot   { opacity: 1; transform: translate(8px,0)  rotate(7deg)  scale(1); animation: mascotBob 1.5s ease-in-out .20s infinite; }
@keyframes mascotBob { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@media (prefers-reduced-motion: reduce){
  .hero-art:hover .hero-mascot { animation: none; }
}
.hero-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px) saturate(180%);
  border: 0.5px solid rgba(255,255,255,0.85);
  box-shadow: 0 6px 18px rgba(50,48,53,0.10);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.hero-pill .pdot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.pdot.red { background: var(--red); }
.pdot.lime { background: var(--lime); }
.pdot.amber { background: var(--amber); }
.pdot.coral { background: var(--red-2); }
.hp-1 { top: 12%; left: -4%; }
.hp-2 { top: 30%; right: -6%; }
.hp-3 { bottom: 26%; left: -8%; }
.hp-4 { bottom: 9%; right: 2%; }
@media (max-width: 560px){
  .hero-pill { font-size: 11.5px; padding: 6px 11px; }
  .hp-1 { left: 2%; } .hp-2 { right: 0; } .hp-3 { left: 0; } .hp-4 { right: 4%; }
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}
.blob-1 {
  width: 220px; height: 220px;
  background: var(--red);
  border-radius: 47% 53% 70% 30% / 42% 45% 55% 58%;
  top: -30px; right: -40px;
  opacity: 0.85;
  filter: none;
}
.blob-2 {
  width: 180px; height: 180px;
  background: var(--lime);
  border-radius: 63% 37% 41% 59% / 43% 58% 42% 57%;
  bottom: -30px; left: -30px;
  opacity: 0.9;
  filter: none;
}
.blob-3 {
  width: 120px; height: 120px;
  background: var(--amber);
  border-radius: 59% 41% 47% 53% / 38% 56% 44% 62%;
  top: 40%; left: -50px;
  opacity: 0.85;
  filter: none;
}
@media (max-width: 900px){
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; }
}

/* ---- VALUES ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: left;
  box-shadow: var(--shadow-1);
  transition: transform .15s, box-shadow .15s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.value-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff0ed;
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 0.5px solid rgba(255,86,67,0.18);
}
.value-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.value-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ---- ABOUT ---- */
.about {
  background: var(--surface);
  padding: 96px 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow-2);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px){ .about .container { grid-template-columns: 1fr; } }

/* ---- PRODUCT / FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: transform .15s, box-shadow .15s;
}
.feature-card { position: relative; overflow: hidden; }
.feature-card::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-color: rgba(255,86,67,0.25); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card .feature-icon { transition: background .22s ease, transform .3s cubic-bezier(.34,1.56,.64,1); }
.feature-card .feature-icon svg { transition: stroke .22s ease; }
.feature-card:hover .feature-icon { background: var(--red); transform: rotate(-6deg) scale(1.06); border-color: var(--red); }
.feature-card:hover .feature-icon svg { stroke: #fff; }
.feature-card h3 { transition: color .2s ease; }
.feature-card:hover h3 { color: var(--red-3); }

/* Club-category chip cloud (visual breadth of clubs) */
.cat-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 40px;
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 0.5px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: transform .15s, box-shadow .15s;
}
.cat-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.cat-chip .cdot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff0ed;
  display: grid; place-items: center;
  margin-bottom: 18px;
  border: 0.5px solid rgba(255,86,67,0.18);
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.feature-card p { margin: 0; color: var(--ink-muted); font-size: 15px; }

/* ---- OUR MISSION ---- */
.mission-panel { padding: 84px 56px; }
@media (max-width: 620px){ .mission-panel { padding: 56px 26px; } }
.mission-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.mission .eyebrow { color: var(--amber); }
.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
  color: #fff;
}
.mission-headline .hl {
  position: relative;
  color: var(--red-2);
  white-space: nowrap;
}
.mission-headline .hl::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 0.06em; height: 0.16em;
  background: var(--red);
  border-radius: 999px;
  opacity: 0.55;
  z-index: -1;
}
.mission-body {
  font-size: 19px;
  line-height: 1.62;
  color: rgba(255,255,255,0.74);
  max-width: 700px;
  margin: 0 auto;
}
.mission-body em { color: var(--amber); font-style: normal; font-weight: 600; }
.mission-marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  text-align: left;
}
.mission-mark {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform .18s ease, background .18s ease;
}
.mission-mark:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.mm-ic {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.mm-ic svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mm-ic.red { background: var(--red); }
.mm-ic.lime { background: var(--lime); }
.mm-ic.lime svg { stroke: #2c3a00; }
.mm-ic.amber { background: var(--amber); }
.mm-ic.amber svg { stroke: #6b4300; }
.mission-mark-k {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  color: #fff;
}
.mission-mark-v { display: block; font-size: 14px; color: rgba(255,255,255,0.6); }
@media (max-width: 720px){ .mission-marks { grid-template-columns: 1fr; } }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 0.5px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  opacity: 0; transition: opacity .2s;
}
.gallery-item:hover .caption { opacity: 1; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 820px){
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* ---- SHARED DARK PANEL (mission · testimonials · contact) ---- */
.dark-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink-dark);
  color: #fff;
  border-radius: 34px;
  padding: 72px 56px;
  box-shadow: var(--shadow-2);
}
.dark-panel .eyebrow { color: var(--amber); }
.dark-panel .h-section { color: #fff; }
.dark-panel .lede { color: rgba(255,255,255,0.72); }
@media (max-width: 620px){ .dark-panel { padding: 48px 26px; border-radius: 26px; } }

/* ---- TESTIMONIALS ---- */
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.t-card {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  color: white;
  transition: transform .18s ease, background .18s ease;
}
.t-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.t-quote {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 400;
}
.t-quote::before { content:'"'; color: var(--red); font-size: 32px; line-height: 0; margin-right: 4px; vertical-align: -8px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: 14px; font-weight: 600; }

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 760px){ .team-grid-3 { grid-template-columns: 1fr; max-width: 380px; } }
.team-card {
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.team-photo {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.team-bio {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}

/* ---- CONTACT ---- */
.contact-section { padding: 96px 0; }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--ink-dark);
  border-radius: 34px;
  box-shadow: var(--shadow-2);
}
.contact-intro {
  position: relative;
  padding: 52px 48px;
  color: #fff;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255,86,67,0.22), transparent 60%),
    radial-gradient(90% 90% at 0% 100%, rgba(196,217,76,0.14), transparent 55%);
}
.contact-intro .eyebrow { color: var(--amber); }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1;
}
.contact-sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
  margin: 0 0 34px;
}
.contact-rows { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: background .15s, transform .15s;
}
a.contact-row:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.contact-row-ic {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: var(--red); display: grid; place-items: center;
}
.contact-row-ic svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-row-tx { display: flex; flex-direction: column; }
.crk { font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.crv { font-size: 15.5px; font-weight: 500; color: #fff; }
.contact-mascot {
  position: absolute;
  width: 78px; height: auto;
  right: 18px; bottom: -10px;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.28));
  z-index: 0;
  opacity: 0.96;
  animation: mascotIdle 4s ease-in-out infinite;
}
.contact-form {
  background: var(--surface);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 0.5px solid var(--line);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .12s, background .12s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--red); background: var(--surface); }
.form-textarea { min-height: 130px; resize: vertical; margin-bottom: 18px; }
@media (max-width: 860px){
  .contact-panel { grid-template-columns: 1fr; border-radius: 26px; }
  .contact-intro { padding: 40px 32px 56px; }
  .contact-form { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-mascot { right: 24px; bottom: -4px; width: 76px; }
}

/* ---- SCROLL REVEAL (consistent motion across sections) ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
/* stagger children within a grid */
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }
.reveal.d5 { transition-delay: .30s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- FOOTER ---- */
.footer {
  padding: 40px 0 48px;
  border-top: 0.5px solid var(--line);
  background: var(--bg);
  color: var(--ink-muted);
  font-size: 13.5px;
}
.footer .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer a { color: var(--ink-muted); }
.footer a:hover { color: var(--red); }

/* ---- PRIVACY PAGE ---- */
.legal { padding: 80px 0 100px; }
.legal .container { max-width: 780px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.legal .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 44px 0 12px;
}
.legal h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal p, .legal li { color: var(--ink-muted); font-size: 16px; line-height: 1.65; }
.legal ul { padding-left: 22px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--red); border-bottom: 1px solid rgba(255,86,67,0.3); }

/* =========================================================
   RESPONSIVE — tablet & mobile
   ========================================================= */
@media (max-width: 1024px){
  .container, .section-inner { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 900px){
  .section { padding: 72px 0; }
  .about { padding: 72px 0; }
  .contact-section { padding: 72px 0; }
  .hero { padding: 48px 0 64px; }
}

@media (max-width: 700px){
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .about { padding: 56px 0; }
  .contact-section { padding: 56px 0; }
  .section-inner, .container { padding-left: 18px; padding-right: 18px; }

  .nav { top: 10px; }
  .header-block { margin-bottom: 36px; }
  .h-section { font-size: clamp(27px, 8vw, 34px); }
  .lede { font-size: 16px; margin-bottom: 34px; }

  /* Hero */
  .hero .container { gap: 28px; }
  .hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .hero p.sub { font-size: 17px; }
  .cta-row { width: 100%; }
  .cta-row .btn-primary, .cta-row .btn-ghost { flex: 1; justify-content: center; }
  .hero-art { max-width: 300px; }
  .hero-pill { font-size: 11px; padding: 6px 10px; }

  /* Dark panels */
  .dark-panel { padding: 44px 22px; border-radius: 24px; }
  .mission-panel { padding: 48px 22px; }
  .mission-headline { font-size: clamp(30px, 9vw, 40px); }
  .mission-body { font-size: 16.5px; }

  /* Contact panel stacks (already 1col ≤860) */
  .contact-intro { padding: 34px 24px 48px; }
  .contact-title { font-size: clamp(32px, 10vw, 44px); }
  .contact-form { padding: 26px 22px; }

  /* Category chips */
  .cat-cloud { gap: 8px; margin-bottom: 30px; }
  .cat-chip { font-size: 13px; padding: 7px 12px; }

  /* Cards a touch tighter */
  .value-card, .feature-card { padding: 24px 22px; }

  /* Footer stacks + centers */
  .footer .container { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 400px){
  .hero-art { max-width: 250px; }
  .h-section { font-size: 26px; }
}
