/* ==========================================================
   Experience Cafe — Dark mode landing page
   Builds on assets/colors_and_type.css tokens, but flips the
   stage to ink with paper text. The signature offset shadow
   becomes paper-colored on dark surfaces.
   ========================================================== */

:root {
  /* dark-stage semantic overrides */
  --d-bg:        #161616;          /* page — slightly deeper than ec-ink for contrast */
  --d-bg-2:      #1F1F1F;          /* card / panel */
  --d-bg-3:      #262626;          /* hover / tier 3 */
  --d-line:      rgba(250, 246, 238, 0.14);
  --d-line-soft: rgba(250, 246, 238, 0.07);
  --d-fg-1:      #FAF6EE;
  --d-fg-2:      rgba(250, 246, 238, 0.72);
  --d-fg-3:      rgba(250, 246, 238, 0.50);
  --d-coral:     #EE5A36;
  --d-honey:     #F4A93C;
  --d-sage:      #7BA092;          /* sage lifts on dark */

  --d-sh-1: 2px 2px 0 var(--d-fg-1);
  --d-sh-2: 3px 3px 0 var(--d-fg-1);
  --d-sh-3: 4px 4px 0 var(--d-fg-1);
  --d-sh-4: 6px 6px 0 var(--d-fg-1);

  --maxw: 1240px;
}

html, body {
  background: var(--d-bg);
  color: var(--d-fg-1);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* subtle radial wash — three quiet pools of warmth */
body {
  background-image:
    radial-gradient(circle at 88% 12%, rgba(238, 90, 54, 0.06) 0, transparent 38%),
    radial-gradient(circle at 8% 70%,  rgba(244, 169, 60, 0.05) 0, transparent 42%),
    radial-gradient(circle at 50% 102%, rgba(123, 160, 146, 0.06) 0, transparent 35%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

::selection { background: var(--d-honey); color: var(--d-bg); }

/* ---------- LAYOUT ---------- */
.page { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  background: rgba(22, 22, 22, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--d-line-soft);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand .name {
  font-family: var(--f-display); font-weight: 600; font-size: 26px;
  line-height: 1; letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--d-fg-2);
  padding: 6px 2px; transition: color .15s;
}
.nav-links a:hover { color: var(--d-fg-1); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-socials { display: flex; gap: 6px; align-items: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 12px;
  border: 2px solid var(--d-fg-1);
  background: var(--d-fg-1); color: var(--d-bg);
  box-shadow: var(--d-sh-2);
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover  { transform: translate(-1px,-1px); box-shadow: var(--d-sh-3); }
.btn:active { transform: translate(1px, 1px); box-shadow: var(--d-sh-1); }

.btn--primary { background: var(--d-coral); color: var(--d-fg-1); border-color: var(--d-fg-1); }
.btn--honey   { background: var(--d-honey); color: var(--d-bg); border-color: var(--d-fg-1); }
.btn--ghost {
  background: transparent; color: var(--d-fg-1);
  border-color: var(--d-fg-1); box-shadow: var(--d-sh-2);
}
.btn--ghost:hover { background: rgba(250,246,238,0.05); }
.btn--small { padding: 10px 16px; font-size: 13px; border-radius: 10px; }
.btn--icon {
  width: 38px; height: 38px; padding: 0; border-radius: 10px;
  background: transparent; color: var(--d-fg-1);
  border: 1.5px solid var(--d-line); box-shadow: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn--icon:hover { background: rgba(250,246,238,0.06); border-color: var(--d-fg-2); transform: none; box-shadow: none; }

/* =========================================================
   PILLS / CHIPS
   ========================================================= */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; padding: 4px 11px;
  border-radius: 999px; border: 1.5px solid var(--d-line);
  color: var(--d-fg-2); background: transparent;
}
.pill--coral  { background: var(--d-coral);  color: var(--d-fg-1); border-color: var(--d-coral); }
.pill--honey  { background: var(--d-honey);  color: var(--d-bg);   border-color: var(--d-honey); }
.pill--sage   { background: var(--d-sage);   color: var(--d-bg);   border-color: var(--d-sage); }
.pill--ghost  { background: transparent;     color: var(--d-fg-2); }

.pill .dot {
  width: 6px; height: 6px; border-radius: 999px; background: currentColor;
  display: inline-block;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center; padding: 72px 0 88px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sketch); font-size: 16px;
  color: var(--d-coral); margin-bottom: 22px;
  transform: rotate(-1deg); transform-origin: left center;
}
.hero-eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: var(--d-coral); border-radius: 2px;
  display: inline-block;
}
/* The visible hero headline. Lives on an <h2> so the SEO <h1> can be the
   keyword-loaded brand sentence (hidden via .sr-only above this section). */
.hero-headline {
  font-family: var(--f-body); font-weight: 800;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.02; letter-spacing: -2.5px;
  margin: 0 0 22px; max-width: 14ch;
  text-wrap: pretty;
}
.hero-headline .accent {
  font-family: var(--f-display); font-weight: 600;
  font-style: normal; color: var(--d-honey);
  letter-spacing: -0.5px;
}
.hero-headline .accent .underline {
  display: inline-block; position: relative;
}
.hero-headline .accent .underline::after {
  content: ""; position: absolute; left: -2%; right: -2%;
  bottom: 4px; height: 8px;
  background: var(--d-coral); opacity: .35; z-index: -1;
  border-radius: 6px;
}

/* Screen-reader-only utility — visually hidden, available to assistive
   tech and crawlers. Used by the hero's SEO <h1>. */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: var(--d-fg-2);
  margin: 0 0 30px; max-width: 50ch;
}
.hero-sub strong { color: var(--d-fg-1); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-family: var(--f-sketch); font-size: 16px;
  color: var(--d-sage); margin: 28px 0 0;
  display: inline-flex; align-items: center; gap: 8px;
  transform: rotate(-0.5deg);
}

/* hero stats */
.hero-stats {
  display: flex; gap: 36px; margin-top: 42px;
  padding-top: 28px;
  border-top: 1px dashed var(--d-line);
}
.hero-stat .num {
  font-family: var(--f-display); font-weight: 600;
  font-size: 40px; line-height: 1; color: var(--d-fg-1);
  letter-spacing: -1px;
}
.hero-stat .num.coral { color: var(--d-coral); }
.hero-stat .num.honey { color: var(--d-honey); }
.hero-stat .num.sage  { color: var(--d-sage); }
.hero-stat .lbl {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-fg-3); letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 6px;
}

/* hero visual — the photo card */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border: 2px solid var(--d-fg-1);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--d-sh-4);
  background: var(--d-bg-2);
  aspect-ratio: 4/5;
  transform: rotate(0.6deg);
}
.hero-photo img,
.hero-photo .placeholder {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* placeholder fill */
.hero-photo .placeholder {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244,169,60,0.35), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(238,90,54,0.30), transparent 55%),
    linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex; align-items: center; justify-content: center;
  color: var(--d-fg-2); font-family: var(--f-sketch);
  font-size: 18px; text-align: center; padding: 32px;
}

/* hero photo overlay caption */
.hero-photo .photo-caption {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px; pointer-events: none;
}
.photo-caption .tag {
  background: var(--d-bg); color: var(--d-fg-1);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 6px;
  border: 1.5px solid var(--d-fg-1);
}
.photo-caption .meta {
  background: var(--d-coral); color: var(--d-fg-1);
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: 6px;
  border: 1.5px solid var(--d-fg-1);
}

/* sticker on hero */
.hero-sticker {
  position: absolute; top: -18px; left: -22px;
  background: var(--d-honey); color: var(--d-bg);
  border: 2px solid var(--d-fg-1); border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 600;
  text-align: center; line-height: 1;
  transform: rotate(-12deg);
  box-shadow: var(--d-sh-3);
  padding: 10px; z-index: 2;
}
.hero-sticker .big { font-size: 28px; }
.hero-sticker .lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; margin-top: 2px; text-transform: uppercase; }

.hero-arrow {
  position: absolute; bottom: -36px; right: 60px;
  font-family: var(--f-sketch); font-size: 16px;
  color: var(--d-sage); transform: rotate(-6deg);
  display: flex; align-items: center; gap: 8px;
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding: 80px 0 80px; border-top: 1px dashed var(--d-line); }
.section > .section-head { margin-bottom: 56px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.section-head > div { min-width: 0; flex: 1 1 auto; }
.section-head > .section-sub { flex: 0 1 420px; }
.section-num { font-family: var(--f-mono); font-size: 12px; color: var(--d-sage); letter-spacing: 0.08em; margin: 0 0 10px; }
.section-title {
  font-family: var(--f-body); font-weight: 800;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -1.5px; margin: 0; max-width: 22ch;
  overflow: visible; padding-bottom: 6px;
}
.section-title em {
  font-family: var(--f-display); font-weight: 600; font-style: normal;
  color: var(--d-honey); letter-spacing: -0.5px;
  display: inline-block; line-height: 1.1; padding-bottom: 4px;
}
.section-sub { font-size: 17px; color: var(--d-fg-2); max-width: 56ch; margin: 16px 0 0; line-height: 1.55; }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners-block { display: flex; flex-direction: column; gap: 32px; }
.partners-row {
  background: var(--d-bg-2);
  border: 2px solid var(--d-fg-1);
  border-radius: 18px;
  padding: 22px 28px 26px;
  box-shadow: var(--d-sh-3);
}
.partners-row:nth-child(1) { transform: rotate(-0.3deg); }
.partners-row:nth-child(2) { transform: rotate(0.25deg); }
.partners-row-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.partners-row-head .lbl {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--d-fg-2); white-space: nowrap;
}
.partners-row-head svg { flex: 1; }
.partners-logos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.partner-logo {
  background: var(--d-fg-1); border-radius: 12px;
  border: 1.5px solid var(--d-fg-1);
  padding: 16px 18px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, box-shadow .15s;
}
.partner-logo:hover { transform: translate(-1px, -1px); box-shadow: var(--d-sh-2); }
.partner-logo img { max-height: 56px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.partners-foot {
  font-family: var(--f-sketch); font-size: 16px;
  color: var(--d-sage); margin: 8px 0 0; text-align: center;
}
.partners-foot a {
  text-decoration: underline; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px; color: var(--d-honey);
}

/* =========================================================
   PAST EVENTS — horizontal scroller
   ========================================================= */
.past-scroll-wrap { position: relative; }
.past-scroller {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 36px;
  padding: 8px 36px 24px;
  margin: 0 -36px;
  scrollbar-width: thin;
  scrollbar-color: var(--d-line) transparent;
}
.past-scroller::-webkit-scrollbar { height: 6px; }
.past-scroller::-webkit-scrollbar-track { background: transparent; }
.past-scroller::-webkit-scrollbar-thumb { background: var(--d-line); border-radius: 6px; }

.past-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--d-bg-2);
  border: 2px solid var(--d-fg-1);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--d-sh-3);
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .15s, box-shadow .15s;
}
.past-card:hover { transform: translate(-2px, -2px); box-shadow: var(--d-sh-4); }
.past-card:nth-child(odd)  { transform: rotate(-0.3deg); }
.past-card:nth-child(even) { transform: rotate(0.3deg); }
.past-card:nth-child(odd):hover  { transform: translate(-2px, -2px) rotate(-0.3deg); }
.past-card:nth-child(even):hover { transform: translate(-2px, -2px) rotate(0.3deg); }

.past-date {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--f-display);
  border-bottom: 1px dashed var(--d-line);
  padding-bottom: 12px;
}
.past-date .day {
  font-size: 56px; font-weight: 600; line-height: 1;
  letter-spacing: -2px;
}
.past-date .my {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-fg-3); letter-spacing: 0.08em;
  line-height: 1.3;
}
.past-card--coral .past-date .day { color: var(--d-coral); }
.past-card--honey .past-date .day { color: var(--d-honey); }
.past-card--sage  .past-date .day { color: var(--d-sage); }

.past-divider { display: none; }
.past-body { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.past-body h4 {
  font-family: var(--f-body); font-weight: 700;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.3px;
  margin: 0;
}
.past-meta {
  font-family: var(--f-sketch); font-size: 14px;
  color: var(--d-sage); margin-top: auto;
  cursor: pointer;
  align-self: flex-start;
}
.past-meta:hover { color: var(--d-honey); }

.past-card--cta {
  background: var(--d-honey); color: var(--d-bg);
  border-color: var(--d-fg-1);
  display: flex; align-items: center; justify-content: center;
}
.past-card--cta .past-cta-inner { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.past-card--cta .past-cta-eyebrow {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.7;
}
.past-card--cta h4 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px; line-height: 1.05; letter-spacing: -0.5px;
  margin: 0;
}
.past-card--cta p { font-size: 14px; margin: 0; line-height: 1.4; opacity: 0.85; }
.past-cta-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  margin-top: 4px;
}

.past-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--d-bg-2); color: var(--d-fg-1);
  border: 2px solid var(--d-fg-1);
  box-shadow: var(--d-sh-2);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: transform .15s, box-shadow .15s;
}
.past-arrow:hover { transform: translateY(calc(-50% - 1px)); box-shadow: var(--d-sh-3); }
.past-arrow:active { transform: translateY(calc(-50% + 1px)); box-shadow: var(--d-sh-1); }
.past-arrow--l { left: -28px; }
.past-arrow--r { right: -28px; }

.past-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-top: 4px;
  border-top: 1px dashed var(--d-line);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-fg-3); letter-spacing: 0.06em;
}
.past-foot b { color: var(--d-honey); font-weight: 500; }
.past-hint { font-family: var(--f-sketch); font-size: 13px; color: var(--d-sage); letter-spacing: 0; }

@media (max-width: 540px) {
  .past-arrow--l { left: -8px; }
  .past-arrow--r { right: -8px; }
  .past-scroller { padding-left: 24px; padding-right: 24px; margin: 0 -24px; scroll-padding-left: 24px; }
  .past-card { flex: 0 0 260px; }
}

/* =========================================================
   (legacy) EVENT + NEWS — kept for any leftover refs
   ========================================================= */
.events-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px;
}

.event-feature {
  background: var(--d-bg-2);
  border: 2px solid var(--d-fg-1);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--d-sh-4);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.event-feature::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(238,90,54,0.10), transparent 50%);
  pointer-events: none;
}
.event-feature > * { position: relative; }
.event-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.event-tag-row .live {
  background: var(--d-coral); color: var(--d-fg-1);
  border-color: var(--d-coral);
}
.event-tag-row .live .dot { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.event-when {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--f-display); color: var(--d-fg-1);
  border-bottom: 1px dashed var(--d-line); padding-bottom: 16px;
}
.event-when .day { font-size: 64px; font-weight: 600; line-height: 1; color: var(--d-honey); letter-spacing: -2px; }
.event-when .month { font-size: 28px; line-height: 1; }
.event-when .meta {
  font-family: var(--f-mono); font-size: 12px; color: var(--d-fg-3);
  letter-spacing: 0.06em; margin-left: auto; text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
.event-when .meta b { color: var(--d-fg-1); font-weight: 500; }

.event-title { font-family: var(--f-body); font-weight: 700; font-size: 26px; line-height: 1.15; margin: 0; letter-spacing: -0.5px; }
.event-desc { font-size: 15px; color: var(--d-fg-2); margin: 0; line-height: 1.55; }

.event-stats { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.chairs-bar { flex: 1; min-width: 180px; }
.chairs-bar .head { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; color: var(--d-fg-3); letter-spacing: 0.06em; margin-bottom: 6px; text-transform: uppercase; }
.chairs-bar .head b { color: var(--d-coral); font-weight: 500; }
.chairs-bar .track { height: 8px; border-radius: 6px; background: var(--d-bg-3); border: 1.5px solid var(--d-line); overflow: hidden; }
.chairs-bar .fill { height: 100%; background: linear-gradient(90deg, var(--d-honey), var(--d-coral)); transition: width .3s ease-out; }

.event-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 4px; }

.event-going-state {
  background: var(--d-bg-3); border: 1.5px dashed var(--d-sage);
  border-radius: 12px; padding: 14px 18px;
  font-family: var(--f-display); font-size: 26px;
  color: var(--d-sage); display: flex; align-items: center; gap: 10px;
  line-height: 1;
}
.event-going-state .check {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--d-sage); color: var(--d-bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-family: var(--f-body); font-weight: 700;
}

/* news column */
.news-col {
  background: var(--d-bg-2); border: 2px solid var(--d-fg-1);
  border-radius: 18px; padding: 24px;
  box-shadow: var(--d-sh-3);
  display: flex; flex-direction: column;
  transform: rotate(-0.4deg);
}
.news-col h3 {
  font-family: var(--f-display); font-weight: 600; font-size: 32px;
  margin: 0 0 4px; line-height: 1;
}
.news-col h3 .underline {
  display: inline-block; position: relative;
}
.news-col h3 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 6px; background: var(--d-honey); opacity: 0.5; z-index: -1;
  border-radius: 4px;
}
.news-col .sub { font-family: var(--f-sketch); font-size: 14px; color: var(--d-fg-3); margin: 0 0 18px; }
.news-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.news-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 14px; padding: 12px 4px;
  border-top: 1px dashed var(--d-line);
  cursor: pointer;
  transition: background .15s, padding .15s;
  border-radius: 8px;
}
.news-item:first-child { border-top: 0; padding-top: 4px; }
.news-item:hover { background: rgba(250,246,238,0.04); padding-left: 8px; }
.news-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--d-bg-3); border: 1.5px solid var(--d-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--d-honey);
}
.news-item:nth-child(2) .news-icon { color: var(--d-coral); }
.news-item:nth-child(3) .news-icon { color: var(--d-sage); }
.news-item:nth-child(4) .news-icon { color: var(--d-honey); }
.news-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.news-meta { font-family: var(--f-mono); font-size: 10px; color: var(--d-fg-3); letter-spacing: 0.08em; text-transform: uppercase; }
.news-title { font-size: 14px; font-weight: 500; line-height: 1.35; color: var(--d-fg-1); }
.news-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--d-line);
  font-family: var(--f-sketch); font-size: 14px; color: var(--d-sage);
  display: flex; align-items: center; gap: 8px;
}
.news-foot a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

/* =========================================================
   ABOUT / TEAM
   ========================================================= */
.about-intro {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: center; margin-bottom: 56px;
}
.about-intro-text p {
  font-size: 17px; line-height: 1.6; color: var(--d-fg-2);
  margin: 0 0 16px;
}
.about-intro-text p strong { color: var(--d-fg-1); font-weight: 600; }
.about-paddles {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px;
  background: var(--d-bg-2); border: 2px solid var(--d-fg-1);
  border-radius: 18px; box-shadow: var(--d-sh-3);
  transform: rotate(-0.5deg);
}
.about-paddles svg,
.about-paddles img { width: 100%; max-width: 360px; height: auto; }
.about-paddles .annot { font-family: var(--f-sketch); font-size: 15px; color: var(--d-sage); margin: 0; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 16px;
}
.team-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  padding: 24px 18px;
  background: var(--d-bg-2); border: 2px solid var(--d-fg-1);
  border-radius: 18px; box-shadow: var(--d-sh-3);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.team-card:hover { transform: translate(-2px, -2px); box-shadow: var(--d-sh-4); }
.team-card:nth-child(4n+1) { transform: rotate(-0.4deg); }
.team-card:nth-child(4n+2) { transform: rotate(0.3deg); }
.team-card:nth-child(4n+3) { transform: rotate(-0.2deg); }
.team-card:nth-child(4n+4) { transform: rotate(0.5deg); }
.team-card:nth-child(4n+1):hover { transform: translate(-2px, -2px) rotate(-0.4deg); }
.team-card:nth-child(4n+2):hover { transform: translate(-2px, -2px) rotate(0.3deg); }
.team-card:nth-child(4n+3):hover { transform: translate(-2px, -2px) rotate(-0.2deg); }
.team-card:nth-child(4n+4):hover { transform: translate(-2px, -2px) rotate(0.5deg); }

.team-portrait {
  width: 124px; height: 124px; border-radius: 50%;
  border: 2px solid var(--d-fg-1);
  box-shadow: 3px 3px 0 var(--d-fg-1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-portrait .ring {
  position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px dashed transparent;
  pointer-events: none;
  transition: border-color .2s;
}
.team-card:hover .team-portrait .ring { border-color: var(--d-coral); }

.team-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: 50%;
}
/* color rotation for portrait ring backgrounds (visible behind 2px border) */
.team-card:nth-child(3n+1) .team-portrait { background: var(--d-honey); }
.team-card:nth-child(3n+2) .team-portrait { background: var(--d-coral); }
.team-card:nth-child(3n+3) .team-portrait { background: var(--d-sage); }

.team-card .name {
  font-family: var(--f-body); font-weight: 700; font-size: 18px;
  margin: 0; letter-spacing: -0.3px;
}
.team-card .role {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-sage); letter-spacing: 0.06em;
  text-transform: uppercase; margin: 0;
}
.team-card .bio {
  font-size: 13px; color: var(--d-fg-2); line-height: 1.5;
  margin: 4px 0 0;
}
.team-card .bio-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* =========================================================
   JOIN
   ========================================================= */
.join-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch;
}

.join-pitch {
  padding: 40px;
  background: var(--d-coral);
  color: var(--d-fg-1);
  border: 2px solid var(--d-fg-1); border-radius: 18px;
  box-shadow: var(--d-sh-4);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.join-pitch::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: rgba(31,31,31,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.join-pitch h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 56px; line-height: 0.95; letter-spacing: -1px;
  margin: 0; max-width: 11ch;
}
.join-pitch h3 .em { color: var(--d-bg); }
.join-pitch p { margin: 0; font-size: 16px; line-height: 1.55; opacity: 0.92; max-width: 32ch; }
.join-pitch .perks {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.join-pitch .perks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.5;
}
.join-pitch .perks .check {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1.5px solid var(--d-fg-1); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--d-fg-1); font-weight: 700; font-size: 12px;
  margin-top: 1px;
}

.join-form-card {
  padding: 36px;
  background: var(--d-bg-2);
  border: 2px solid var(--d-fg-1); border-radius: 18px;
  box-shadow: var(--d-sh-4);
  display: flex; flex-direction: column; gap: 16px;
  transform: rotate(0.3deg);
}
.join-form-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--d-line);
  margin-bottom: 6px;
}
.join-form-head h4 {
  font-family: var(--f-body); font-weight: 700; font-size: 20px;
  letter-spacing: -0.3px; margin: 0;
}
.join-form-head .step {
  font-family: var(--f-mono); font-size: 11px; color: var(--d-fg-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-fg-3); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input {
  font-family: var(--f-body); font-size: 15px;
  padding: 13px 16px;
  background: var(--d-bg);
  border: 1.5px solid var(--d-line); border-radius: 10px;
  color: var(--d-fg-1);
  transition: border-color .15s, background .15s;
  outline: none;
}
.field input::placeholder { color: var(--d-fg-3); }
.field input:hover { border-color: var(--d-fg-2); }
.field input:focus {
  border-color: var(--d-coral); background: var(--d-bg-3);
  box-shadow: 0 0 0 3px rgba(238,90,54,0.15);
}
.field--invalid input { border-color: var(--d-coral); }
.field .err { font-family: var(--f-sketch); font-size: 13px; color: var(--d-coral); }

.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.field-phone-wrap {
  display: grid; grid-template-columns: 80px 1fr; gap: 8px;
}
.field-phone-wrap select {
  font-family: var(--f-body); font-size: 15px;
  padding: 13px 10px;
  background: var(--d-bg);
  border: 1.5px solid var(--d-line); border-radius: 10px;
  color: var(--d-fg-1);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--d-fg-2) 50%),
                    linear-gradient(135deg, var(--d-fg-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.join-submit-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; gap: 14px; flex-wrap: wrap;
}
.join-submit-row .small {
  font-family: var(--f-sketch); font-size: 14px;
  color: var(--d-fg-3); max-width: 26ch; line-height: 1.4;
}
.join-submit-row .btn { flex-shrink: 0; }

.join-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 32px 8px 8px;
}
.join-success .ok {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--d-honey); color: var(--d-bg);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--d-fg-1); box-shadow: var(--d-sh-3);
  transform: rotate(-4deg);
}
.join-success h4 {
  font-family: var(--f-display); font-weight: 600; font-size: 56px;
  margin: 12px 0 0; line-height: 1; color: var(--d-honey);
  letter-spacing: -1px;
}
.join-success p { font-size: 15px; color: var(--d-fg-2); margin: 0; }
.join-success .annot { font-family: var(--f-sketch); font-size: 15px; color: var(--d-sage); transform: rotate(-1deg); margin-top: 6px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  margin-top: 80px; padding: 56px 32px 36px;
  border-top: 2px solid var(--d-fg-1);
  background: linear-gradient(180deg, transparent, rgba(238,90,54,0.04));
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px dashed var(--d-line);
  margin-bottom: 24px;
}
.footer-brand-block { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand-block .row { display: flex; align-items: center; gap: 12px; }
.footer-brand-block img { height: 44px; width: auto; }
.footer-tag {
  font-family: var(--f-display); font-weight: 600;
  font-size: 36px; line-height: 1; margin: 0;
  letter-spacing: -0.5px;
}
.footer-pitch {
  font-size: 14px; color: var(--d-fg-2); line-height: 1.55; margin: 0;
}
.footer-col h5 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--d-fg-3); margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px; color: var(--d-fg-2);
  transition: color .15s;
}
.footer-col a:hover { color: var(--d-fg-1); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }

.footer-socials { display: flex; gap: 8px; margin-top: 4px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1.5px solid var(--d-line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--d-fg-2);
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.social-icon:hover {
  color: var(--d-fg-1); border-color: var(--d-fg-1);
  background: var(--d-bg-3);
  transform: translate(-1px, -1px);
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--d-fg-3); letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--d-fg-3); }
.footer-bottom a:hover { color: var(--d-fg-1); }

/* =========================================================
   MODAL — team detail
   ========================================================= */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .15s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--d-bg-2); border: 2px solid var(--d-fg-1);
  border-radius: 18px; box-shadow: var(--d-sh-4);
  max-width: 460px; width: 100%; padding: 32px;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
  text-align: center;
  animation: popIn .18s ease-out;
}
@keyframes popIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent; border: 1.5px solid var(--d-line);
  color: var(--d-fg-2);
  display: flex; align-items: center; justify-content: center;
}
.modal .modal-portrait {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid var(--d-fg-1);
  box-shadow: 4px 4px 0 var(--d-fg-1);
  overflow: hidden; background: var(--d-honey);
}
.modal .modal-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal h3 { font-family: var(--f-body); font-weight: 700; font-size: 24px; margin: 0; letter-spacing: -0.3px; }
.modal .role { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--d-sage); margin: 0; }
.modal .bio { font-size: 15px; color: var(--d-fg-2); line-height: 1.55; margin: 0; max-width: 38ch; }
.modal .modal-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; border-top: 1px dashed var(--d-line); padding-top: 18px; }
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 56px 0 64px; }
  .events-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .join-wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .page { padding: 0 20px; }
  .hero-headline { letter-spacing: -1.5px; }
  .field-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-portrait { width: 96px; height: 96px; }
  .team-portrait .initials { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-sticker { width: 84px; height: 84px; left: -14px; top: -14px; }
  .hero-sticker .big { font-size: 22px; }
  .event-feature { padding: 22px; }
  .event-when .day { font-size: 48px; }
}

/* ============================================================
   FAQ — collapsed-by-default accordion using native <details>.
   Mirrors FAQPage JSON-LD in index.html for rich-result
   eligibility. Quieter, less-prominent design per founder ask:
   each item is a slim row that expands on tap.
   ============================================================ */
.section--faq .section-sub a { color: var(--d-honey); text-decoration: underline; }
.section--faq .section-sub a:hover { color: var(--d-coral); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
}

.faq-item {
  background: transparent;
  border: 1.5px solid var(--d-line);
  border-radius: 12px;
  padding: 0;
  transition: border-color 120ms ease, background 120ms ease;
}
.faq-item:hover {
  border-color: var(--d-fg-2);
}
.faq-item[open] {
  border-color: var(--d-fg-1);
  background: var(--d-bg-2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--d-fg-1);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }

.faq-toggle {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--d-fg-3);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 200ms ease, color 120ms ease;
}
.faq-item[open] .faq-toggle {
  color: var(--d-honey);
  transform: rotate(45deg); /* + becomes × */
}

.faq-a {
  padding: 0 18px 16px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--d-fg-2);
}
