/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --cream: #f2ebe3;
  --cream-dim: #a89e94;
  --ember: #ff5722;
  --ember-dim: rgba(255, 87, 34, 0.15);
  --border: rgba(242, 235, 227, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cream); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.halo-1 {
  width: 600px; height: 600px;
  background: var(--ember);
  top: -100px; right: 10%;
}

.halo-2 {
  width: 400px; height: 400px;
  background: #ff8a65;
  bottom: 20%; right: 25%;
  opacity: 0.06;
}

.halo-3 {
  width: 300px; height: 300px;
  background: var(--ember);
  bottom: 10%; left: -50px;
  opacity: 0.08;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.hero-headline em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--cream);
}

/* Orbs visual */
.strnd-orbs {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 235, 227, 0.15);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 100%; height: 100%;
  top: 0; left: 0;
  border-color: rgba(255, 87, 34, 0.3);
  animation-delay: 0s;
}

.orb-2 {
  width: 75%; height: 75%;
  top: 12.5%; left: 12.5%;
  border-color: rgba(242, 235, 227, 0.12);
  animation-delay: -2s;
}

.orb-3 {
  width: 50%; height: 50%;
  top: 25%; left: 25%;
  border-color: rgba(255, 87, 34, 0.2);
  background: radial-gradient(circle, var(--ember-dim) 0%, transparent 70%);
  animation-delay: -4s;
}

.orb-4 {
  width: 20%; height: 20%;
  top: 40%; left: 40%;
  background: var(--ember);
  box-shadow: 0 0 60px var(--ember), 0 0 120px rgba(255, 87, 34, 0.4);
  animation-delay: -6s;
}

.orb-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, transparent 49%, rgba(242,235,227,0.04) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(242,235,227,0.04) 50%, transparent 51%);
  background-size: 33.33% 33.33%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 720px;
}

.manifesto-label, .section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 32px;
  display: block;
}

.manifesto-text {
  font-size: 22px;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 24px;
}

.manifesto-text strong {
  color: var(--cream);
  font-weight: 500;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 120px 48px;
  background: var(--bg2);
}

.categories-header {
  margin-bottom: 72px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 12px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.category-card {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background 0.3s;
}

.category-card:hover { background: var(--bg3); }

.category-icon {
  color: var(--ember);
  margin-bottom: 20px;
}

.category-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ===== DISCOVERY ===== */
.discovery {
  padding: 120px 48px;
}

.discovery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.discovery-body {
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 40px;
}

.discovery-features { display: flex; flex-direction: column; gap: 16px; }

.df-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--cream-dim);
}

.df-marker {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ember);
  flex-shrink: 0;
}

/* Profile cards */
.profile-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.profile-card:hover { border-color: rgba(242, 235, 227, 0.2); }

.pc-offset { margin-left: 40px; }

.pc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}

.pc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pc-name { font-size: 15px; font-weight: 600; color: var(--cream); }
.pc-role { font-size: 13px; color: var(--cream-dim); }
.pc-city { font-size: 12px; color: var(--cream-dim); }

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--cream-dim);
  border-radius: 2px;
}

.pc-avail {
  font-size: 11px;
  color: #4caf50;
  white-space: nowrap;
}

/* ===== EVENTS ===== */
.events {
  padding: 120px 48px;
  background: var(--bg2);
}

.events-header {
  margin-bottom: 72px;
}

.events-sub {
  font-size: 18px;
  color: var(--cream-dim);
  margin-top: 16px;
  max-width: 560px;
}

.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.event-card {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card:hover { background: var(--bg3); }

.event-featured {
  border-right: 1px solid var(--border);
}

.event-date { display: flex; flex-direction: column; gap: 2px; }

.ed-month {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ember);
  font-weight: 500;
}

.ed-day {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
}

.event-type {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.event-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.event-card p {
  font-size: 13px;
  color: var(--cream-dim);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

/* ===== MEMBERSHIP ===== */
.membership {
  padding: 120px 48px;
}

.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Member orbs */
.member-orbs { position: relative; height: 320px; margin-bottom: 40px; }

.morb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.morb-1 {
  width: 280px; height: 280px;
  background: var(--ember);
  opacity: 0.15;
  top: 20px; left: 40px;
}

.morb-2 {
  width: 180px; height: 180px;
  background: #ff8a65;
  opacity: 0.1;
  bottom: 0; right: 40px;
}

.member-type-list { display: flex; flex-direction: column; gap: 24px; }

.mt-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.mt-icon { color: var(--ember); }

.mt-name {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}

.mt-desc {
  display: block;
  font-size: 13px;
  color: var(--cream-dim);
}

.membership-body {
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 24px 0 40px;
}

.mem-features { display: flex; flex-direction: column; gap: 24px; }

.mf-item { display: flex; flex-direction: column; gap: 4px; }

.mf-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: 0.06em;
}

.mf-desc { font-size: 14px; color: var(--cream-dim); }

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 48px;
  background: var(--bg2);
}

.philosophy-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-head);
  font-size: 120px;
  line-height: 0.5;
  color: var(--ember);
  opacity: 0.3;
  margin-bottom: 24px;
}

.philosophy-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 32px;
}

.philosophy-quote cite {
  font-size: 13px;
  color: var(--cream-dim);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 48px 120px;
  position: relative;
  overflow: hidden;
}

.closing-inner { position: relative; z-index: 1; }

.closing-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 20px;
  color: var(--cream-dim);
  max-width: 480px;
}

.closing-visual {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
}

.closing-strands {
  position: relative;
  width: 100%;
  height: 100%;
}

.strand {
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ember), transparent);
  opacity: 0.4;
  animation: strand-pulse 3s ease-in-out infinite;
}

.s1 { top: 0; height: 100%; animation-delay: 0s; }
.s2 { top: 10%; height: 80%; transform: rotate(8deg); animation-delay: -0.5s; }
.s3 { top: 5%; height: 90%; transform: rotate(-6deg); animation-delay: -1s; }
.s4 { top: 15%; height: 70%; transform: rotate(12deg); animation-delay: -1.5s; }
.s5 { top: 0%; height: 85%; transform: rotate(-10deg); animation-delay: -2s; }

@keyframes strand-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.footer-tagline {
  font-size: 16px;
  color: var(--cream-dim);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  opacity: 0.5;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ===== PROFILE PAGE ===== */
.profile-page { padding-top: 80px; }

.profile-header { padding: 80px 48px 64px; }

.profile-header-inner { max-width: 900px; margin: 0 auto; }

.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--cream-dim);
  text-decoration: none;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.back-link:hover { color: var(--cream); }

.profile-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.profile-avatar-wrap {
  position: relative;
  width: 160px;
}

.profile-avatar, .profile-avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-avatar-placeholder {
  background: linear-gradient(135deg, var(--ember), #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--cream);
}

.avail-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.profile-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}

.profile-name {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 12px;
}

.profile-location {
  font-size: 15px;
  color: var(--cream-dim);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.profile-bio {
  font-size: 17px;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.profile-links { display: flex; gap: 16px; flex-wrap: wrap; }

.social-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--cream-dim); color: var(--cream); }

/* Portfolio */
.profile-section { padding: 80px 48px; }

.profile-section--alt { background: var(--bg2); }

.profile-section-inner { max-width: 900px; margin: 0 auto; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.portfolio-item { display: flex; flex-direction: column; gap: 12px; }

.portfolio-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-img:hover { transform: scale(1.03); }

.portfolio-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
}

.portfolio-desc { font-size: 13px; color: var(--cream-dim); }

/* Collaboration */
.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.collab-text { font-size: 15px; color: var(--cream-dim); line-height: 1.6; }

/* ===== DISCOVER PAGE ===== */
.discover-page { padding-top: 80px; }

.discover-hero { padding: 80px 48px 48px; }

.discover-hero-inner { max-width: 720px; margin: 0 auto; }

.discover-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 12px 0 16px;
}

.discover-sub { font-size: 17px; color: var(--cream-dim); }

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
}

.filter-inner { max-width: 900px; margin: 0 auto; }

.filter-form { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.filter-select, .filter-input {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.3s;
}

.filter-select:focus, .filter-input:focus { border-color: var(--cream-dim); }

.filter-select { cursor: pointer; }

.filter-input { width: 140px; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cream-dim);
  cursor: pointer;
}

.filter-check input { accent-color: var(--ember); cursor: pointer; }

.filter-btn {
  background: var(--ember);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.filter-btn:hover { opacity: 0.85; }

.filter-clear {
  font-size: 12px;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.filter-clear:hover { color: var(--cream); }

/* Results */
.discover-results { padding: 48px 48px 120px; }

.discover-results-inner { max-width: 900px; margin: 0 auto; }

.creatives-count {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 24px;
}

.creatives-list { display: flex; flex-direction: column; gap: 1px; }

.creative-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s;
}
.creative-card:hover { border-color: rgba(242, 235, 227, 0.25); }

.cc-left { display: flex; align-items: center; gap: 20px; }

.cc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
}

.cc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-info { display: flex; flex-direction: column; gap: 3px; }

.cc-name { font-size: 16px; font-weight: 600; color: var(--cream); }

.cc-meta { font-size: 13px; color: var(--cream-dim); }

.cc-avail { font-size: 11px; color: #4caf50; font-weight: 500; letter-spacing: 0.06em; }

.cc-right { display: flex; align-items: center; gap: 16px; }

.cc-looking { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.cc-tag {
  padding: 4px 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--cream-dim);
}

.cc-arrow { font-size: 18px; color: var(--cream-dim); }

.no-results { padding: 48px 0; }
.no-results p { font-size: 15px; color: var(--cream-dim); }
.no-results a { color: var(--ember); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .discovery-layout { grid-template-columns: 1fr; }
  .membership-layout { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* NAV — reduce sizes */
  .nav { padding: 16px 20px; }
  .nav-logo { font-size: 18px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 11px; }

  /* HERO */
  .hero { padding: 88px 20px 60px; }
  .hero-headline { font-size: clamp(52px, 12vw, 72px); }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-number { font-size: 32px; }
  .strnd-orbs { max-width: 260px; }

  /* Prevent all horizontal overflow */
  .hero-content { overflow: hidden; }
  .halo-1, .halo-2, .halo-3 { display: none; } /* hide oversized halos on mobile */

  /* SECTIONS */
  .manifesto, .categories, .discovery, .events, .membership, .philosophy, .closing { padding: 60px 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .discovery-layout { gap: 40px; }
  .membership-layout { gap: 40px; }

  /* CLOSING — fix absolutely positioned element breaking viewport */
  .closing { overflow: hidden; }
  .closing-visual { display: none; }
  .closing-title { font-size: clamp(40px, 10vw, 56px); }
  .closing-sub { font-size: 16px; }

  /* FOOTER */
  .footer { padding: 60px 20px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* EVENTS */
  .events-grid { grid-template-columns: 1fr; }

  /* CATEGORIES / PROFILE */
  .manifesto-text { font-size: 18px; }
  .section-title { font-size: clamp(32px, 8vw, 40px); }
  .portfolio-grid { grid-template-columns: 1fr; }

  /* FILTER BAR */
  .filter-bar { padding: 12px 20px; }
  .filter-input { width: 110px; }

  /* PROFILE */
  .profile-header { padding: 60px 20px 48px; }
  .profile-hero { grid-template-columns: 1fr; gap: 24px; }
  .profile-section { padding: 60px 20px; }
  .collab-grid { grid-template-columns: 1fr; }
}

/* Tightest screens — 320px */
@media (max-width: 480px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.04em; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 28px; }
}
