/* ===================================================
   UNSTUDIO — Harvard GSD
   stylesheet
   =================================================== */

/* ===== FONTS ===== */
@font-face {
  font-family: 'GSD Gothic';
  src: url('../fonts/GSD Gothic Fonts/GSD Gothic Variable/Web/GSDGothicVariableVF.woff2') format('woff2'),
       url('../fonts/GSD Gothic Fonts/GSD Gothic Variable/Web/GSDGothicVariableVF.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --pink:        #E83D84;
  --pink-dark:   #C42E6B;
  --black:       #0A0A0A;
  --dark:        #141414;
  --white:       #FFFFFF;
  --off-white:   #F5F4F0;
  --gray:        #777777;
  --light-gray:  #E2E2E2;
  --font: 'GSD Gothic', 'Arial', system-ui, sans-serif;
  --nav-h: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-style: normal;
  font-synthesis: none;
  font-variation-settings: 'slnt' 0;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; font-synthesis: style; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover  { color: var(--white); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-countdown {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 2.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.15) 45%,
    rgba(10,10,10,0.00) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero-wordmark {
  display: block;
  font-size: clamp(5rem, 20vw, 22rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-counter {
  text-align: right;
  flex-shrink: 0;
}

.hero-counter-num {
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.05em;
  display: block;
}

.hero-counter-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-dates {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scroll-bounce 2s infinite;
  opacity: 0.5;
}
.scroll-hint svg { width: 24px; height: 24px; fill: white; }
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION HELPERS ===== */
.section {
  padding: 7rem 2.5rem;
}

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

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.section-body {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #555;
  max-width: 65ch;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--pink);
  color: var(--white);
}

.stats-section .section-label { color: rgba(255,255,255,0.7); }
.stats-section .section-title { color: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.stat-item {
  padding: 2rem 1rem 2rem 0;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
  line-height: 1.3;
  opacity: 0.9;
}

.stat-note {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-top: 0.3rem;
}

/* ===== WHAT IS IT ===== */
.what-section {
  background: var(--dark);
  color: var(--white);
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.what-image {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.what-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.what-text .section-label { color: var(--pink); }
.what-text .section-title { color: var(--white); }
.what-text .section-body  { color: rgba(255,255,255,0.75); }

.principles {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.principle {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.principle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.principle-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-weight: 500;
}

/* ===== VIDEO ===== */
.video-section {
  width: 100%;
  background: var(--black);
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: url('../images/snapshot.jpg') center/cover no-repeat;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== USAGE DATA ===== */
.usage-section {
  background: var(--off-white);
}

.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.chart-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 80px;
  color: var(--black);
}

.bar-track {
  flex: 1;
  height: 20px;
  background: var(--light-gray);
  border-radius: 1px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 1px;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  width: 0;
}

.bar-val {
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 32px;
  color: var(--black);
  text-align: right;
}

.activity-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.activity-block {
  background: var(--white);
  padding: 1.75rem 1.25rem;
}

.activity-pct {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--pink);
  line-height: 1;
}

.activity-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.35rem;
  color: var(--black);
  line-height: 1.3;
}

.usage-peak-callout {
  margin-top: 2rem;
  background: var(--black);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.peak-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
}

.peak-text { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ===== PULL QUOTE ===== */
.quote-section {
  background: var(--black);
  padding: 9rem 2.5rem;
  text-align: center;
}

.quote-mark {
  font-size: 6rem;
  line-height: 0.5;
  color: var(--pink);
  font-weight: 900;
  opacity: 0.4;
}

.quote-text {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 860px;
  margin: 1rem auto 2rem;
}

.quote-by {
  font-size: 0.9rem;
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== WALL OF SUPPORT ===== */
.wall-section {
  background: var(--white);
}

.wall-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.wall-count-block { }

.wall-count {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--pink);
  line-height: 1;
  display: block;
}

.wall-count-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.supporter-card {
  background: var(--white);
  padding: 1.5rem;
  transition: background 0.15s;
}

.supporter-card:hover { background: var(--off-white); }

.supporter-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.supporter-program {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.supporter-comment {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
}

.supporter-date {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wall-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.wall-disclaimer {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.4);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.programs-chart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.program-chip {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.8rem;
  border: 1.5px solid var(--black);
  border-radius: 100px;
}

.supporters-name-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .supporters-name-list { grid-template-columns: 1fr; }
}

.supporter-name-item {
  display: contents;
}

.supporter-name-item__name,
.supporter-name-item__program {
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.supporter-name-item__name {
  font-weight: 700;
  color: var(--black);
}

.supporter-name-item__program {
  color: var(--gray);
}

.paper-count-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ===== PETITION FORM ===== */
.petition-section {
  background: var(--dark);
}

.petition-inner {
  max-width: 680px;
  margin: 0 auto;
}

.petition-inner .section-label { color: var(--pink); }
.petition-inner .section-title { color: var(--white); }
.petition-inner .section-body  { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,0.09);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.35rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.18s;
  line-height: 1;
}

.btn-pink  { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); }

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off-white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.7rem; }

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}
.form-feedback.success {
  background: rgba(232,61,132,0.15);
  border: 1px solid var(--pink);
  color: var(--pink);
  display: block;
}
.form-feedback.error {
  background: rgba(220,53,69,0.15);
  border: 1px solid #dc3545;
  color: #ff7c8a;
  display: block;
}

.supabase-missing-note {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ===== ACTION CARDS ===== */
.action-section {
  background: var(--off-white);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  margin-top: 3rem;
}

.action-card {
  background: var(--white);
  padding: 2.5rem;
}

.action-num {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 1rem;
}

.action-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.action-body {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.email-template {
  background: var(--off-white);
  border-left: 3px solid var(--pink);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: #444;
  line-height: 1.65;
  border-radius: 0 2px 2px 0;
  margin-bottom: 1rem;
}

/* ===== TIMELINE (archive) ===== */
.timeline {
  position: relative;
  padding-left: 3.5rem;
  max-width: 760px;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--pink);
}

.timeline-emotion {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.timeline-step {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.timeline-body {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  background: var(--light-gray);
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font);
  font-weight: 300;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ===== EVENTS (archive) ===== */
.events-list {
  margin-top: 3rem;
  border-top: 1px solid var(--light-gray);
}

.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.event-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  padding-top: 0.2rem;
}

.event-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.event-host {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-top: 0.25rem;
}

.event-desc {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.35rem;
  line-height: 1.5;
}

.event-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  background: rgba(232,61,132,0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ===== CREDITS (archive) ===== */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.credit-item {
  border-top: 2px solid var(--pink);
  padding-top: 1rem;
}

.credit-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.credit-role {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ===== TOOLKIT ===== */
.norms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--pink);
  border: 2px solid var(--pink);
  margin-top: 3rem;
}

.norm-card {
  background: var(--pink);
  padding: 3rem 2rem;
}

.norm-text {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  padding: 2rem;
}

.step-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.step-body {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.download-card {
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.download-card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(232,61,132,0.12);
}

.download-preview {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.download-preview--fit {
  aspect-ratio: auto;
  height: auto;
}
.download-preview--fit img {
  height: auto;
  object-fit: contain;
}
.download-preview .svg-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  padding: 1.5rem;
}
.download-preview .svg-wrap img { object-fit: contain; }

.download-info { padding: 1rem; }

.download-name {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.download-desc {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.download-link {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
}

/* ===== ADMIN ===== */
.admin-wrap {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3rem;
}

.admin-login-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.admin-login-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-login-card .form-label { color: rgba(255,255,255,0.5); }

.admin-panel {
  max-width: 1100px;
  margin: calc(var(--nav-h) + 2rem) auto 4rem;
  padding: 0 2rem;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th {
  background: var(--off-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: top;
  max-width: 280px;
}

.admin-table tr:hover td { background: var(--off-white); }

.admin-email-cell { font-size: 0.8rem; color: var(--gray); }
.admin-comment-cell { color: #555; line-height: 1.5; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-approved { background: #d4edda; color: #155724; }
.badge-pending  { background: #fff3cd; color: #856404; }

.btn-danger  { background: #dc3545; color: white; border: none; cursor: pointer; }
.btn-danger:hover  { background: #c82333; }
.btn-approve { background: #28a745; color: white; border: none; cursor: pointer; }
.btn-approve:hover { background: #218838; }
.btn-unapprove { background: var(--gray); color: white; border: none; cursor: pointer; }

.admin-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.admin-empty {
  text-align: center;
  padding: 4rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.admin-stats-bar {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-stat {
  display: flex;
  flex-direction: column;
}

.admin-stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--pink);
  line-height: 1;
}

.admin-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 3.5rem 2.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--pink); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  margin-top: 1rem;
}

/* ===== UNSTUDIO WORDMARK — always GSD Gothic Bold, never italic ===== */
.hero-wordmark,
.nav-logo,
.footer-logo,
.unstudio-word {
  font-family: var(--font);
  font-weight: 700;
  font-style: normal;
  font-synthesis: none;
  font-variation-settings: 'wght' 700, 'slnt' 0;
  letter-spacing: -0.04em;
}

/* ===== UTILITY ===== */
.text-pink { color: var(--pink); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .what-image { aspect-ratio: 16/9; }

  .usage-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .nav-countdown { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1.5rem 0; }
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-counter { text-align: left; }
  .quote-section { padding: 5rem 1.25rem; }
  .wall-count { font-size: clamp(3.5rem, 15vw, 6rem); }
  .footer { padding: 2.5rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
