/* ================================================================
   style.css (to'liq)  —  Portfolio sections + animations
   ================================================================ */

/* ─── Global ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #c8a96e;
  --gold-lt:   #e4d4a8;
  --dark:      #0a0a0f;
  --dark2:     #12121a;
  --dark3:     #1a1a28;
  --text:      #e8e6e0;
  --text-muted:#9a9890;
  --border:    rgba(200,169,110,0.18);
  --radius:    14px;
  --radius-sm: 8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --easing:    cubic-bezier(0.22, 1, 0.36, 1);
  --trans:     0.6s var(--easing);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Page-load fade */
body { opacity: 0; transition: opacity 0.4s ease; }
body.loaded { opacity: 1; }

/* ─── Cursor Glow ─────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: none;
}

/* ─── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ─── Scroll Reveal ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-stagger].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Hero fade-in ────────────────────────────────────────────── */
.hero-fade-in {
  animation: heroFade 0.7s var(--easing) both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section Label ───────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.label-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
}
.label-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.label-text::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}

/* ─── Section Title ───────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}
.highlight-word {
  color: var(--gold);
  font-style: italic;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10,10,15,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.nav-logo-accent { color: var(--gold); }

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.9rem;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover,
.nav-link.active-link {
  color: var(--text);
  background: rgba(200,169,110,0.08);
}
.nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
}
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ================================================================
   HERO SECTION (existing — just minor additions)
   ================================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.dot-grid {
  position: absolute;
  inset: -50px;
  background-image: radial-gradient(circle, rgba(200,169,110,0.15) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  z-index: 0;
  will-change: transform;
}
.hero-left {
  flex: 1;
  min-width: 0;
}
.gold-line {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.tag-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  margin-bottom: 3rem;
}
.cta-btn:hover {
  transform: translateY(-3px);
  background: var(--gold-lt);
  box-shadow: 0 12px 32px rgba(200,169,110,0.25);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero right */
.hero-right {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-bg {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.08), transparent 70%);
}
.accent-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(200,169,110,0.2);
  will-change: transform;
}
.accent-ring2 {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.08);
  will-change: transform;
}
.badge-avail {
  position: absolute;
  top: 30px; right: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  z-index: 3;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.photo-wrap {
  position: relative;
  z-index: 2;
  width: 300px; height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  will-change: transform;
}
.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  padding: 7rem 0;
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}
.about-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.tag {
  padding: 5px 14px;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gold);
  font-family: var(--font-mono);
  cursor: default;
  transition: background 0.2s, transform 0.2s;
}
.tag:hover {
  background: rgba(200,169,110,0.16);
  transform: translateY(-2px);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1.2rem 1.4rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.info-card:hover {
  border-color: rgba(200,169,110,0.4);
  transform: translateX(4px);
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.info-card h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.info-card p { font-size: 0.95rem; color: var(--text-muted); }

.cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 0.75rem 1.8rem;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.cv-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ================================================================
   LIFE / TIMELINE SECTION
   ================================================================ */
.life-section {
  padding: 7rem 0;
  background: var(--dark2);
  position: relative;
}
.life-section::before,
.life-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.life-section::before { top: 0; }
.life-section::after { bottom: 0; }

.timeline {
  position: relative;
  margin-top: 3rem;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform: translateX(-50%);
  transition: height 2s var(--easing);
}
.timeline-line.line-grow { height: 100%; }

.timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 3rem;
}
.timeline-item.left {
  margin-right: auto;
  text-align: right;
}
.timeline-item.right {
  margin-left: auto;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  top: 20px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--gold);
  z-index: 2;
}
.timeline-item.left .timeline-dot {
  right: -7.5%;
  transform: translateX(50%);
}
.timeline-item.right .timeline-dot {
  left: -7.5%;
  transform: translateX(-50%);
}
.active-dot {
  background: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,169,110,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(200,169,110,0); }
}

.timeline-card {
  padding: 1.4rem 1.6rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.timeline-card:hover {
  border-color: rgba(200,169,110,0.35);
  transform: scale(1.02);
}
.active-card {
  border-color: rgba(200,169,110,0.35) !important;
  background: linear-gradient(135deg, var(--dark3), rgba(200,169,110,0.04));
}
.tl-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.timeline-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 6px 0 8px;
}
.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   WORKS SECTION
   ================================================================ */
.works-section {
  padding: 7rem 0;
}
.works-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}
.filter-btn {
  padding: 7px 18px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.filter-btn.active,
.filter-btn:hover {
  background: rgba(200,169,110,0.12);
  color: var(--gold);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--easing), opacity 0.4s ease, box-shadow 0.3s;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,169,110,0.35);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.work-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.work-img {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.work-card.featured .work-img {
  width: 50%;
  height: auto;
}
.work-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold);
}

/* Work preview illustrations */
.work-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 160px;
}
.wp-bar {
  height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}
.wp-bar.short { width: 60%; }
.wp-block {
  height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  margin-top: 6px;
}

.work-preview.phone {
  width: auto;
  flex-direction: row;
}
.phone-screen {
  width: 80px;
  height: 140px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.ps-dot {
  width: 20px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.ps-line {
  height: 6px; width: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.ps-line.short { width: 60%; }

.work-preview.dashboard { flex-direction: column; gap: 8px; width: 200px; }
.db-row { display: flex; gap: 6px; }
.db-card { height: 40px; border-radius: 6px; flex: 1; }
.c1 { background: rgba(200,169,110,0.2); }
.c2 { background: rgba(255,255,255,0.06); }
.c3 { background: rgba(255,255,255,0.04); }
.db-chart {
  height: 55px;
  background: repeating-linear-gradient(
    90deg,
    rgba(200,169,110,0.15) 0, rgba(200,169,110,0.15) 14px,
    transparent 14px, transparent 20px
  );
  border-radius: 4px;
}

.work-preview.design {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.d-circle {
  position: absolute;
  border-radius: 50%;
}
.d-circle.c1 {
  width: 100px; height: 100px;
  border: 1px solid rgba(200,169,110,0.3);
  top: 20px; left: 30px;
}
.d-circle.c2 {
  width: 60px; height: 60px;
  background: rgba(200,169,110,0.1);
  bottom: 30px; right: 40px;
}
.d-square {
  position: absolute;
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotate(30deg);
  bottom: 40px; left: 50px;
}

.work-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.work-tags span {
  padding: 3px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  background: rgba(200,169,110,0.06);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 4px;
  color: var(--gold);
}
.work-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.work-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.work-links {
  display: flex;
  gap: 12px;
  margin-top: 1.2rem;
}
.work-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}
.work-link:hover { letter-spacing: 0.03em; }
.work-link.ghost {
  color: var(--text-muted);
}
.work-link.ghost:hover { color: var(--text); }

/* ================================================================
   SKILLS SECTION
   ================================================================ */
.skills-section {
  padding: 7rem 0;
  background: var(--dark2);
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.skill-item { margin-bottom: 1.4rem; }
.skill-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.skill-meta span:last-child {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 12px;
}
.skill-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  transition: width 1.2s var(--easing);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}
.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1.2rem 1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: default;
  transition: border-color 0.3s, transform 0.3s;
}
.tech-icon:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}
.tech-icon span {
  font-size: 1.6rem;
  line-height: 1;
}
.tech-icon span[style*="TS"],
.tech-icon span:not([class]) {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #3178c6;
}
.tech-icon small {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.soft-skills h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.soft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.soft-grid span {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.soft-grid span:hover { color: var(--text); }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.04), transparent 65%);
  top: -100px; right: -200px;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  padding-bottom: 5rem;
}

.contact-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.channel-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 1.2rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.channel-link:hover {
  border-color: rgba(200,169,110,0.35);
  transform: translateX(4px);
}
.ch-icon { font-size: 1.4rem; flex-shrink: 0; }
.channel-link small {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}
.channel-link p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200,169,110,0.5);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154,152,144,0.5);
}
.form-submit {
  align-self: flex-end;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.form-submit.sent {
  background: #22c55e;
  color: white;
}
.form-submit:disabled { cursor: not-allowed; opacity: 0.8; }

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-wrap { flex-direction: column; text-align: center; padding-top: 2rem; }
  .hero-right { flex: none; }
  .gold-line { margin: 0 auto 1.2rem; }
  .hero-stats { justify-content: center; }
  .about-grid,
  .skills-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .work-card.featured { grid-column: span 1; flex-direction: column; }
  .work-card.featured .work-img { width: 100%; height: 200px; }
  .nav-list { display: none; }
  .timeline-item { width: 80%; margin-left: auto; margin-right: auto; text-align: left; }
  .timeline-line { display: none; }
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot { display: none; }
  .works-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-self: stretch; text-align: center; }
  .site-footer { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  .works-grid { grid-template-columns: 1fr; }
  .soft-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-right { display: none; }
}
