/* ====== Sculpture Club Starter Styles ====== */
:root {
  --bg: #0b0c0f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --hairline: rgba(255, 255, 255, 0.14);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
  --pad: clamp(16px, 3vw, 28px);
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -20%, rgba(255,255,255,0.10), transparent 55%),
              radial-gradient(900px 600px at 80% 0%, rgba(255,255,255,0.08), transparent 60%),
              var(--bg);
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 2 * var(--pad))); margin: 0 auto; }

.tiny { font-size: 0.9rem; }
.muted { color: var(--muted); }
.code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 12, 15, 0.55);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.brand-name { font-size: 1.02rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}
.nav a:hover { color: var(--text); transform: translateY(-1px); }

/* Mobile nav button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 6px 0;
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: rgba(0,0,0,0.88);
  font-weight: 650;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, filter 180ms ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(0.98); }
.btn:active { transform: translateY(0px); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn-small { padding: 10px 14px; font-size: 0.92rem; }
.btn-wide { width: 100%; }

/* Hero */
.hero {
  padding: clamp(48px, 7vw, 84px) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
}
h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.badge {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  padding: 14px 14px;
}
.badge strong { display: block; font-size: 1rem; }
.badge span { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* Hero card */
.hero-card {
  border: 1px solid var(--hairline);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top { padding: 18px 18px 0; }
.kicker { margin: 0; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; }
.subkicker { margin: 6px 0 0; font-size: 1.25rem; font-weight: 650; }
.hero-card-mid { padding: 18px; }
.photo-placeholder {
  height: 240px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.25);
  background: radial-gradient(500px 300px at 20% 20%, rgba(255,255,255,0.14), transparent 60%),
              rgba(255,255,255,0.04);
  margin-top: 10px;
}
.hero-card-bottom {
  padding: 14px 18px 18px;
  border-top: