/* ============================================================
   RAY ZORFOLD - 2026
   Warm dark, editorial, no glow blobs
   ============================================================ */

:root {
  --bg:       #101010;
  --bg-2:     #161614;
  --bg-3:     #1d1c19;
  --surface:  #222220;
  --surface-2:#2c2b28;
  --border:   rgba(240, 232, 215, 0.09);
  --border-b: rgba(240, 232, 215, 0.18);
  --text:     #f0e8d7;
  --text-mid: #a89e8c;
  --text-dim: #5a5548;
  --red:      #c0392b;
  --red-light:#e85d4a;
  --gold:     #c8962a;
  --radius:   10px;
  --radius-lg:18px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --font:     'Inter', system-ui, sans-serif;
  --serif:    'Montserrat', system-ui, sans-serif;
  --nav-h:    68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; scroll-padding-top: var(--nav-h); max-width: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  touch-action: pan-y;
  animation: pageFadeIn 0.4s ease both;
}
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

::selection { background: var(--red); color: var(--text); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--text);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border-b);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(240,232,215,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  padding: 11px 22px;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-merch {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-b);
  padding: 9px 18px;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.btn-merch:hover {
  background: var(--red);
  color: var(--text);
  border-color: var(--red);
}
.btn-merch-disabled { opacity: 0.35; cursor: not-allowed; }
.btn-submit { width: 100%; justify-content: center; font-size: 0.95rem; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(16, 16, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-logo-img {
  width: 34px; height: 34px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}
.nav-link-cta {
  background: var(--red);
  color: var(--text) !important;
  font-weight: 600;
  margin-left: 6px;
}
.nav-link-cta:hover {
  background: var(--red-light);
  color: var(--text) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 108px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.section-header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 60px;
}
.section-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  padding-top: 10px;
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
  grid-column: 2;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  grid-column: 2;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--border);
}

.hero-bg-skull {
  position: absolute;
  width: clamp(38rem, 55vw, 70rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 60px;
}

.hero-left {
  order: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-pfp-mobile { display: none; }

.hero-overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.hero-title-name {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--text);
  display: block;
  margin-bottom: 28px;
}

.hero-title-rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
  padding: 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 480px;
}

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

.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-b);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  max-width: 500px;
  width: 100%;
  min-height: 0;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  flex: 1;
  min-height: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

.hero-photo-suit {
  position: absolute;
  bottom: -24px;
  right: -24px;
  font-size: 9rem;
  line-height: 1;
  color: rgba(192, 57, 43, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

/* ============================================================
   TWEETS
   ============================================================ */
.tweets-section { background: var(--bg); }

.tweets-rows {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tweets-row-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.tweets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tweet-card {
  background: var(--bg-2);
  padding: 28px;
  transition: background 0.2s var(--ease);
  position: relative;
}
.tweet-card:hover { background: var(--surface); }
.tweet-card-featured { background: var(--bg-3); }

.tweet-video-thumb {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top: 1px solid var(--border);
  transition: opacity 0.15s;
}
a:hover .tweet-video-thumb { opacity: 0.82; }

.tweet-card-placeholder {
  opacity: 0.45;
  pointer-events: none;
}
.tweet-card a { position: relative; z-index: 1; }

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tweet-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.tweet-avatar img {
  width: 38px; height: 38px;
  object-fit: cover;
  opacity: 1;
}
.tweet-meta { flex: 1; }
.tweet-meta strong { display: block; font-size: 0.88rem; font-weight: 600; }
.tweet-meta span { font-size: 0.75rem; color: var(--text-dim); }
.tweet-x-icon { font-size: 0.95rem; color: var(--text-dim); }

.tweet-text {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  color: var(--text);
}
.tweet-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.tweets-row--memes .tweet-img { height: auto; }
.tweet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tweet-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.tweet-stats {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-mid);
}
.tweet-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tweet-view-link {
  font-size: 0.7rem;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-left: auto;
  transition: opacity 0.15s;
}
.tweet-view-link:hover { opacity: 0.7; }
.tweet-view-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tweet-media {
  margin: 0 -28px 18px;
  overflow: hidden;
  max-height: 240px;
}
.tweet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tweets-cta { text-align: center; }

/* ============================================================
   MERCH
   ============================================================ */
.merch-section { background: var(--bg); }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.merch-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.2s var(--ease);
}
.merch-card:hover { background: var(--surface); }
.merch-card-coming-soon { opacity: 0.6; }

.merch-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: grayscale(20%);
}
.merch-card:hover .merch-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.merch-badge-price {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(16,16,16,0.88);
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-b);
}
.merch-badge-soon {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--surface-2);
  color: var(--text-mid);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}

.merch-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.merch-info h3 { font-size: 0.95rem; font-weight: 600; }
.merch-info p { font-size: 0.82rem; color: var(--text-mid); flex: 1; line-height: 1.6; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-section { background: var(--bg-2); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.project-card {
  position: relative;
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-2);
  transition: background 0.22s var(--ease);
  color: var(--text);
  text-decoration: none;
}
.project-card:hover { background: var(--surface); }
.project-card:hover .project-card-deco { opacity: 0.18; transform: scale(1.15) rotate(-8deg); }
.project-card:hover .project-arrow { color: var(--red-light); }

.project-card-bg { display: none; }
.project-card-content { flex: 1; }

.project-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.project-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 10px;
}
.project-detail {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-dim);
}
.project-arrow {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--red);
  margin-top: 24px;
  display: block;
  transition: color 0.18s;
}
.project-card-deco {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

/* ============================================================
   ABOUT / INFO
   ============================================================ */
.about-section { background: var(--bg-2); }

.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  align-items: start;
}

.about-logo-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.about-logo { width: 100%; opacity: 1; object-fit: cover; border-radius: var(--radius); }
.about-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }

.about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.about-tab {
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.about-tab:hover { color: var(--text); }
.about-tab.active {
  color: var(--text);
  border-bottom-color: var(--red);
}

.about-panels { min-height: 200px; }
.about-panel { display: none; animation: panelIn 0.3s var(--ease); }
.about-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.about-panel p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.achievements-list { display: flex; flex-direction: column; gap: 10px; }
.achievements-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: border-color 0.18s, color 0.18s;
}
.achievements-list li:hover { border-color: var(--border-b); color: var(--text); }
.ach-icon { flex-shrink: 0; font-size: 0; }

.philosophy-quote {
  border-left: 2px solid var(--red);
  padding-left: 20px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.skills-list { display: flex; flex-direction: column; gap: 20px; }
.skill-item {
  display: grid;
  grid-template-columns: 160px 1fr 38px;
  align-items: center;
  gap: 14px;
}
.skill-label { font-size: 0.85rem; color: var(--text-mid); }
.skill-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  width: 0;
  transition: width 1.1s var(--ease);
}
.skill-pct { font-size: 0.75rem; color: var(--text-dim); text-align: right; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg); }

.services-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.services-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}

.service-item {
  padding: 28px 32px;
  background: var(--bg-2);
  transition: background 0.2s;
}
.service-item:hover { background: var(--surface); }
.service-item-featured {
  background: var(--surface);
  border-left: 3px solid var(--gold);
}
.service-item-featured:hover { background: var(--surface-2, #22223a); }

.service-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.service-item-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-price {
  font-family: var(--font-mono, monospace);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.service-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.btn-service {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-bright);
  color: var(--text-mid);
  transition: all 0.2s;
  background: transparent;
}
.btn-service:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.services-payment {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.services-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.service-offering {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.service-offering:hover { border-color: var(--border-bright); }
.service-offering-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.service-offering h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-offering p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.services-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-link:hover { opacity: 0.8; }

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-2); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap h3,
.contact-links-wrap h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.93rem;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(192, 57, 43, 0.6);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-honeypot { display: none !important; }

.form-status {
  font-size: 0.85rem;
  padding: 12px 15px;
  border-radius: var(--radius);
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(200, 150, 42, 0.1);
  border: 1px solid rgba(200, 150, 42, 0.25);
  color: var(--gold);
}
.form-status.error {
  display: block;
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: var(--red-light);
}

.connect-list { display: flex; flex-direction: column; gap: 10px; }
.connect-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--text-mid);
  transition: all 0.18s var(--ease);
}
.connect-link:hover {
  border-color: var(--border-b);
  color: var(--text);
  background: var(--surface-2);
}
.connect-link-dead {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--text-dim);
  opacity: 0.45;
}
.connect-icon { width: 22px; text-align: center; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-logo img { width: 24px; height: 24px; object-fit: contain; }
.footer-nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover { color: var(--text-mid); background: var(--surface); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-made { font-size: 0.78rem; color: var(--text-dim); }
.footer-disclaimer { font-size: 0.72rem; color: var(--text-dim); font-style: italic; max-width: 420px; }
.footer-egg {
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
  opacity: 0.2;
  transition: opacity 0.18s, transform 0.22s var(--bounce);
}
.footer-egg:hover { opacity: 0.7; transform: rotate(25deg) scale(1.3); }

/* ============================================================
   KONAMI OVERLAY
   ============================================================ */
.konami-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(24px);
}
.konami-overlay.active { opacity: 1; pointer-events: all; }
.konami-inner { text-align: center; padding: 48px; max-width: 440px; }
.konami-cards {
  font-size: 3rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.konami-inner h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}
.konami-inner p { font-size: 1rem; color: var(--text-mid); margin-bottom: 10px; }
.konami-sub {
  font-size: 0.75rem;
  color: var(--text-dim) !important;
  letter-spacing: 0.1em;
  margin-bottom: 28px !important;
}
#konami-close {
  background: var(--red);
  color: var(--text);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font);
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid var(--red);
  transition: background 0.2s;
}
#konami-close:hover { background: var(--red-light); }

/* ============================================================
   EGG POPUP
   ============================================================ */
.egg-popup {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--bounce);
}
.egg-popup.visible { opacity: 1; transform: none; pointer-events: all; }
.egg-popup-inner {
  background: var(--surface-2);
  border: 1px solid var(--border-b);
  border-radius: var(--radius-lg);
  padding: 14px 44px 14px 18px;
  max-width: 300px;
  font-size: 0.85rem;
  color: var(--text-mid);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.egg-popup-close {
  position: absolute;
  top: 10px; right: 12px;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1;
  transition: color 0.15s;
}
.egg-popup-close:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .projects-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-logo-wrap { position: static; max-width: 180px; }
  .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 28px; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 0; }

  .social-proof-section { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(16,16,16,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links li { margin: 10px 0; }
  .nav-link { padding: 14px 16px; font-size: 0.95rem; }

  .section-header { grid-template-columns: 1fr; }
  .section-num { display: none; }
  .section-title, .section-sub { grid-column: 1; }

  .tweets-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

  .skill-item { grid-template-columns: 1fr; gap: 6px; }
  .skill-pct { display: none; }
  .about-tabs { overflow-x: auto; }
  .about-tab { white-space: nowrap; }
  .about-logo-wrap { display: none; }
  .social-proof-section { display: none; }
  .about-content { min-width: 0; overflow-wrap: break-word; }
  .hero-overline { display: none; }
  .hero-pfp-mobile {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .tweets-grid,
  .projects-grid {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-left: -28px;
    margin-right: -28px;
  }
  .tweets-section,
  .projects-section { overflow-x: hidden; }
  .form-group input,
  .form-group textarea { max-width: 100%; }
  .contact-form-wrap { min-width: 0; }
  .contact-links-wrap { display: none; }
}

@media (max-width: 480px) {
  .hero-title-name { font-size: 4.5rem; }
  .hero-bg-skull { display: none; }
  .merch-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .egg-popup { left: 16px; right: 16px; bottom: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ============================================================
   SOCIAL PROOF BANNER
   ============================================================ */
.social-proof-section {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.social-proof-inner {
  position: relative;
  width: 100%;
}
.social-proof-img {
  width: 100%;
  height: auto;
  display: block;
}
.social-proof-label {
  position: absolute;
  bottom: 20px;
  left: 28px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1;
}

/* ============================================================
   ICONS - Material Symbols Outlined, bundled locally
   Usage: <span class="icon icon-{name}" aria-hidden="true"></span>
   ============================================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.icon-chat       { -webkit-mask-image: url(icons/chat_bubble.svg);  mask-image: url(icons/chat_bubble.svg); }
.icon-repeat     { -webkit-mask-image: url(icons/repeat.svg);        mask-image: url(icons/repeat.svg); }
.icon-favorite   { -webkit-mask-image: url(icons/favorite.svg);      mask-image: url(icons/favorite.svg); }
.icon-visibility { -webkit-mask-image: url(icons/visibility.svg);    mask-image: url(icons/visibility.svg); }
.icon-trophy     { -webkit-mask-image: url(icons/emoji_events.svg);  mask-image: url(icons/emoji_events.svg); }
.icon-trending   { -webkit-mask-image: url(icons/trending_up.svg);   mask-image: url(icons/trending_up.svg); }
.icon-flight     { -webkit-mask-image: url(icons/flight.svg);        mask-image: url(icons/flight.svg); }
.icon-check      { -webkit-mask-image: url(icons/check_circle.svg);  mask-image: url(icons/check_circle.svg); }
.icon-casino     { -webkit-mask-image: url(icons/casino.svg);        mask-image: url(icons/casino.svg); }
.icon-article    { -webkit-mask-image: url(icons/article.svg);       mask-image: url(icons/article.svg); }
.icon-mail       { -webkit-mask-image: url(icons/mail.svg);          mask-image: url(icons/mail.svg); }
.icon-camera     { -webkit-mask-image: url(icons/photo_camera.svg);  mask-image: url(icons/photo_camera.svg); }
.icon-play       { -webkit-mask-image: url(icons/play_arrow.svg);    mask-image: url(icons/play_arrow.svg); }
.icon-close      { -webkit-mask-image: url(icons/close.svg);         mask-image: url(icons/close.svg); }
.icon-palette    { -webkit-mask-image: url(icons/palette.svg);       mask-image: url(icons/palette.svg); }

.tweet-stats .icon { width: 0.95em; height: 0.95em; }
.ach-icon .icon    { width: 1.1em;  height: 1.1em; }
.connect-icon .icon{ width: 1.1em;  height: 1.1em; }
