:root {
  --bg: #0c1012;
  --bg-elevated: #161a1c;
  --bg-soft: #1a1f21;
  --text: #e8ecee;
  --text-muted: #a8adb3;
  --gold: #b48e4f;
  --gold-dim: rgba(240, 193, 75, 0.35);
  --green: #3dd68c;
  --line: rgba(255, 255, 255, 0.1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.text-secondary{
  color: var(--gold)!important;
}
.text-on-secondary-fixed {
    background: var(--gold)!important;
}
.border-secondary{
  border-color: var(--gold)!important;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body .btn-primary, body .btn-ghost{
  padding: 0.55rem 1.5rem;
}
.menu-toggle{
  background: none;  
}
.border-tertiary{
  border-color: rgb(195 156 91)!important;
}
.text-tertiary{
 color:  rgb(195 156 91)!important; 
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
}

.section-bg-dark {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(240, 193, 75, 0.06), transparent 55%),
    var(--bg);
}
.section-bg-light {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(61, 214, 140, 0.05), transparent 50%),
    var(--bg-elevated);
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .md\:text-display-lg {
    font-size: 58px !important;
  }
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (max-width: 767px) {
  .headline-mobile {
    font-size: 1.75rem;
    line-height: 2.15rem;
  }
  .timeline-mobile {
    border-left: 2px solid var(--gold-dim);
    padding-left: 1.25rem;
    margin-left: 0.25rem;
  }
  .timeline-mobile > div {
    position: relative;
  }
  .timeline-mobile > div::before {
    content: '';
    position: absolute;
    left: -1.45rem;
    top: 0.45rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 9999px;
    border: 2px solid var(--gold);
    background: var(--bg);
  }
  #projects .group .opacity-0 {
    opacity: 0.35;
  }
  .bio-stats{
    grid-template-columns: repeat(2, minmax(0, 1fr))!important;
  }
}

/* Section kicker / title rhythm */
.section-kicker {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0;
  
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  letter-spacing: -0.02em;
}

.timeline-line {
  width: 2px;
  background: var(--gold);
}

.bento-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 40%), var(--bg-soft);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), background-color 0.25s ease;
}
.bento-card:hover {
  border-color: rgba(240, 193, 75, 0.28);
  transform: translateY(-2px);
}

.icon-svg,
.icon-menu svg,
.icon-close svg,
.award-btn svg,

.feed-list-icon svg,
.feed-video-play svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.menu-toggle .icon-menu,
.menu-toggle .icon-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.menu-toggle .icon-menu svg,
.menu-toggle .icon-close svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: env(safe-area-inset-top);
  background: rgba(12, 16, 18, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) {
  .site-nav { padding-inline: 1rem; }
}
@media (min-width: 768px) {
  .site-nav {
    height: 5rem;
    padding-inline: 64px;
  }
}
.site-nav.is-scrolled {
  background: rgba(12, 16, 18, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.brand-mark {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .brand-mark { font-size: 1.6rem; }
}
.brand-mark:hover { opacity: 0.88; }

.nav-link {
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-link-cta {
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-link-cta:hover {
  transform: translateY(-1px);
}
.nav-link-cta.active {
  box-shadow: 0 0 0 2px var(--gold);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(12, 16, 18, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 1rem 2rem;
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu .nav-link {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu .nav-link.active {
  border-bottom-color: var(--gold);
}
body.menu-open { overflow: hidden; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-menu { display: none; }
.menu-toggle.is-open .icon-close { display: inline-block; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding-bottom: 0;
  }
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.04);
  animation: hero-ken 18s var(--ease-out) forwards;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 18, 0.92) 0%, rgba(12, 16, 18, 0.72) 42%, rgba(12, 16, 18, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 16, 18, 0.85) 0%, transparent 45%);
}
@media (max-width: 767px) {
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(12, 16, 18, 0.96) 0%, rgba(12, 16, 18, 0.55) 45%, rgba(12, 16, 18, 0.4) 100%);
  }
  .hero-media {
    object-position: center 22%;
  }
  .hero-lead{
    font-size: 15px!important;
   
    color: #bac2cc!important;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .hero-content { padding-inline: 64px; }
}
.hero-brand {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 6.5vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-out) 0.15s forwards;
}
.hero-brand span {
  color: var(--gold);
}
.hero-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-out) 0.35s forwards;
}
@media (min-width: 640px) {
  .hero-lead { font-size: 1.15rem; line-height: 1.7; }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise-in 0.9s var(--ease-out) 0.5s forwards;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease-out), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: #1a1400;
}
.btn-primary:hover {
  background: #ffd56a;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(12, 16, 18, 0.25);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise-in 0.8s var(--ease-out) 0.9s forwards;
}
@media (min-width: 768px) {
  .hero-scroll { display: flex; }
}
.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-ken {
  to { transform: scale(1); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Reveal on scroll — visible by default; JS hides only after it boots */
.reveal {
  opacity: 1;
  transform: none;
}
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
html.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.timeline-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 31, 33, 0.65);
}
.timeline-logo img {
  max-height: 3rem;
  max-width: 9.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.timeline-logo--stack {
  gap: 0.75rem;
  flex-wrap: wrap;
}
.timeline-logo--stack img {
  max-height: 2.25rem;
  max-width: 7rem;
}
.timeline-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.timeline-logo a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.timeline-logo--stack a img {
  max-height: 3.25rem;
  max-width: 3.25rem;
  border-radius: 0.35rem;
}
.timeline-logo-mobile {
  display: inline-flex;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .timeline-logo-mobile { display: none; }
  .timeline-logo--right { justify-content: flex-start; }
  .timeline-logo--left { justify-content: flex-end; }
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  color: var(--gold);
  border-color: rgba(240, 193, 75, 0.5);
  background-color: rgba(240, 193, 75, 0.08);
  transform: translateY(-2px);
}

.award-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.award-btn:hover {
  background-color: rgba(240, 193, 75, 0.12);
  border-color: var(--gold);
}

.faq-item {
  border: 1px solid var(--line);
  background-color: rgba(26, 31, 33, 0.55);
  transition: border-color 0.2s ease;
}
.faq-item:hover,
.faq-item[open] {
  border-color: rgba(240, 193, 75, 0.28);
}
.faq-item + .faq-item {
  margin-top: 0.75rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bio-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 193, 75, 0.2);
}
.bio-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.stat-value {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ——— Biography section ——— */
.bio-section {
  position: relative;
}
.bio-title {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.08;
  max-width: 18ch;
}
.bio-dek {
  margin-top: 1.25rem;
  max-width: 36rem;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.bio-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(240, 193, 75, 0.22);
}
@media (min-width: 768px) {
  .bio-frame {
    aspect-ratio: 21 / 9;
    margin-bottom: 2.5rem;
  }
}
.bio-frame-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-out);
}
.bio-frame.is-visible .bio-frame-media,
.reveal.is-visible .bio-frame-media {
  transform: scale(1);
}
.bio-frame-scrim {
  position: absolute;
  inset: 0;
  height: 102%;
  background:
    linear-gradient(0deg, rgba(12, 16, 18, 0.88) 0%, rgba(12, 16, 18, 0.15) 42%, transparent 70%),
    linear-gradient(90deg, rgba(12, 16, 18, 0.35), transparent 55%);
}
.bio-frame-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .bio-frame-caption {
    left: 2rem;
    bottom: 2rem;
  }
}
.bio-frame-rule {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .bio-stats {
    gap: 1.5rem;
    padding: 1.75rem 0 2rem;
    margin-bottom: 3rem;
  }
}
.bio-stat {
  position: relative;
  padding-right: 0.5rem;
}
.bio-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--line);
}
@media (min-width: 640px) {
  .bio-stat:not(:last-child)::after {
    right: -0.75rem;
  }
}
.bio-stat .stat-value {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  line-height: 1.1;
}
.bio-stat-label {
  margin-top: 0.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}
@media (min-width: 640px) {
  .bio-stat-label { font-size: 12px; }
}
.bio-copy {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .bio-copy { font-size: 1.1rem; line-height: 1.8; }
  
}
.bio-lead-p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .bio-lead-p {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.bio-lead-p::first-letter {
  float: left;
  margin: 0.1rem 0.55rem 0 0;
  font-family: "Oswald", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.85;
  color: var(--gold);
}
.bio-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.bio-link:hover {
  color: #ffd56a;
}

/* ——— Media feed ——— */
.feed-section .feed-block + .feed-block {
  margin-top: 3rem;
}
.feed-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.feed-block-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feed-more {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.feed-more:hover { text-decoration: underline; }
.feed-channel + .feed-channel {
  margin-top: 2.25rem;
}
.feed-channel-head .section-kicker {
  margin-top: 0;
}
.feed-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .feed-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .feed-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.feed-channel--shorts .feed-video-thumb {
  aspect-ratio: 9 / 16;
}
.feed-video.is-feed-hidden,
.is-feed-hidden {
  display: none;
}
.feed-load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.feed-load-more {
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(240, 193, 75, 0.45);
  background: transparent;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.feed-load-more:hover {
  background: rgba(240, 193, 75, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.feed-video {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: inherit;
  transition: transform 0.25s var(--ease-out);
}
.feed-video:hover { transform: translateY(-3px); }
.feed-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}
.feed-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.feed-video:hover .feed-video-thumb img {
  transform: scale(1.05);
}
.feed-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 16, 18, 0.35);
  opacity: 0.55;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.feed-video-play svg {
  font-size: 2.75rem;
  color: #fff;
}
.feed-video:hover .feed-video-play {
  opacity: 1;
  background: rgba(12, 16, 18, 0.45);
}
.feed-video-title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--text);
}
.feed-video:hover .feed-video-title { color: var(--gold); }
.feed-video-meta {
  display: block;
  margin-top: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.7;
}
.feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.feed-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: color 0.2s ease;
}
.feed-list-item:hover .feed-list-title { color: var(--gold); }
.feed-list-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.feed-list-title {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  transition: color 0.2s ease;
}
.feed-list-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.feed-list-icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

.project-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.35rem 0.65rem;
  color: var(--text-muted);
}

/* Contact form */
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-hint { font-size: 0.875rem; color: #909097; }
.form-error { font-size: 0.875rem; color: #ffb4ab; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 0.125rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 193, 75, 0.2);
}
.form-input.is-invalid, .form-textarea.is-invalid {
  border-color: #ffb4ab;
  box-shadow: 0 0 0 3px rgba(255, 180, 171, 0.15);
}
.form-input.is-valid, .form-textarea.is-valid {
  border-color: rgba(61, 214, 140, 0.55);
}
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: #1a1400;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.form-alert {
  padding: 1rem 1.1rem;
  border: 1px solid transparent;
  margin-bottom: 1.25rem;
}
.form-alert-success {
  background: rgba(61, 214, 140, 0.1);
  border-color: rgba(61, 214, 140, 0.35);
  color: var(--green);
}
.form-alert-error {
  background: rgba(255, 180, 171, 0.08);
  border-color: rgba(255, 180, 171, 0.35);
  color: #ffb4ab;
}
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
