/* =========================================================
   PORTFOLIO — Elegant & Professional
   Font: Cormorant Garamond (display) + Outfit (body)
   Palette: Deep navy, warm cream, gold accent
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --navy:          #0d1b2a;
  --navy-mid:      #1a2d42;
  --navy-light:    #243b55;
  --cream:         #f5f0e8;
  --cream-dark:    #ede6d6;
  --gold:          #c9a84c;
  --gold-light:    #e2c47a;
  --gold-pale:     #f5ecd0;
  --white:         #ffffff;
  --text-on-dark:  #e8e2d6;
  --muted-on-dark: #9aadbe;
  --text-dark:     #1a1a1a;
  --text-mid:      #3d3d3d;
  --text-muted:    #6b7280;
  --shadow-card:   0 2px 24px rgba(13,27,42,0.08), 0 1px 4px rgba(13,27,42,0.05);
  --shadow-hover:  0 8px 40px rgba(13,27,42,0.14), 0 2px 8px rgba(13,27,42,0.08);
  --radius:        4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --t:             0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 2rem; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  text-decoration: none;
  transition: color var(--t);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 7px 18px;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius);
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(36,59,85,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both 0.1s;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  animation: fadeInUp 0.6s ease both 0.25s;
}
.hero-name strong {
  font-weight: 700;
  color: var(--white);
  display: block;
}

.hero-role {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted-on-dark);
  margin: 0.75rem 0 1.5rem;
  animation: fadeInUp 0.6s ease both 0.4s;
}
.hero-role em { font-style: normal; color: var(--gold-light); font-weight: 400; }

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,226,214,0.7);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease both 0.5s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.6s ease both 0.65s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid rgba(232,226,214,0.3);
  transition: border-color var(--t), color var(--t);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.6s ease both 0.8s;
  min-width: 190px;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  display: block;
  margin-top: 5px;
}

.stat-divider { height: 1px; background: rgba(201,168,76,0.15); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-on-dark);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity var(--t);
  z-index: 1;
}
.hero-scroll:hover { opacity: 1; }

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.about-text p strong { color: var(--navy); font-weight: 600; }

.about-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy) !important;
  line-height: 1.6;
  margin: 0 !important;
}

.detail-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
}
.detail-card:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }

.detail-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg { width: 18px; height: 18px; color: var(--gold); }

.detail-content {}
.detail-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.detail-body { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* =========================================================
   EDUCATION
   ========================================================= */
.education {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.education::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.education .section-heading { color: var(--cream); }
.education .section-sub { color: var(--muted-on-dark); }

.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.edu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.edu-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.edu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}

.edu-card.track-python::before { background: linear-gradient(90deg,#3B8BBE,#5bc8e8); }
.edu-card.track-web::before    { background: linear-gradient(90deg,#2e7d32,#43c047); }
.edu-card.track-devops::before { background: linear-gradient(90deg,#e05c2a,#f09848); }

.edu-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.track-python .edu-badge { background: rgba(59,139,190,0.14); color: #7ec8e3; }
.track-web    .edu-badge { background: rgba(46,125,50,0.14);  color: #81c784; }
.track-devops .edu-badge { background: rgba(224,92,42,0.14);  color: #f0a080; }

.edu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.edu-org { font-size: 12px; color: var(--muted-on-dark); margin-bottom: 0.9rem; }

.edu-desc {
  font-size: 13px;
  color: rgba(154,173,190,0.85);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.edu-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.1rem; }

.edu-topic {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  color: var(--muted-on-dark);
  border: 1px solid rgba(255,255,255,0.07);
}

.edu-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.status-done     { background: rgba(46,125,50,0.15);   color: #81c784; border: 1px solid rgba(46,125,50,0.25); }
.status-progress { background: rgba(59,139,190,0.15);  color: #7ec8e3; border: 1px solid rgba(59,139,190,0.25); }

.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-done     .status-dot { background: #81c784; }
.status-progress .status-dot { background: #7ec8e3; animation: blink 1.5s ease-in-out infinite; }

@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* =========================================================
   SKILLS
   ========================================================= */
.skills { padding: 100px 0; background: var(--cream); }

.skills-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.skill-cat-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.skill-group { margin-bottom: 2.5rem; }

.skill-bars { display: flex; flex-direction: column; gap: 1rem; }

.skill-bar-item { display: flex; flex-direction: column; gap: 5px; }

.skill-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skill-bar-name  { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.skill-bar-level { font-size: 12px; color: var(--text-muted); font-weight: 300; }

.skill-bar-track {
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--navy-mid), var(--gold));
}

.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }

.tool-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.tool-chip:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  color: var(--navy);
}

.tool-icon {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-icon svg { width: 14px; height: 14px; color: var(--gold); }

/* =========================================================
   PROJECTS
   ========================================================= */
.projects { padding: 100px 0; background: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.project-card {
  border: 1px solid #e8e3d8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.project-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-banner svg { width: 52px; height: 52px; position: relative; z-index: 1; }

.banner-blog    { background: linear-gradient(135deg,#0d1b2a,#1e3a5f); }
.banner-oop     { background: linear-gradient(135deg,#1a2d42,#243b55); }
.banner-devops  { background: linear-gradient(135deg,#2d1a0d,#5f3a1e); }
.banner-weather { background: linear-gradient(135deg,#0d2a1e,#1a5f3e); }
.banner-scraper { background: linear-gradient(135deg,#1f0d2a,#3e1a5f); }
.banner-api     { background: linear-gradient(135deg,#2a200d,#5f4a1a); }

.project-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.project-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1rem;
}

.project-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1.1rem;
}
.project-features li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}
.project-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: block;
}

.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.25rem; }

.project-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gold-pale);
  color: #7a6020;
  border: 1px solid rgba(201,168,76,0.28);
}

.project-footer {
  display: flex;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t);
}
.project-link:hover { background: var(--navy); color: var(--gold); }
.project-link svg { width: 12px; height: 12px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.contact .section-heading { color: var(--cream); }
.contact .section-sub { color: var(--muted-on-dark); }

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

.contact-intro {
  font-size: 15px;
  color: rgba(154,173,190,0.85);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.45);
  transform: translateX(5px);
}

.cc-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.contact-card:hover .cc-icon { background: rgba(201,168,76,0.2); }
.cc-icon svg { width: 20px; height: 20px; color: var(--gold); }

.cc-info { flex: 1; }
.cc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-on-dark); display: block; margin-bottom: 2px; }
.cc-value { font-size: 15px; font-weight: 400; color: var(--cream); }

.cc-arrow { color: var(--muted-on-dark); transition: color var(--t), transform var(--t); }
.contact-card:hover .cc-arrow { color: var(--gold); transform: translateX(3px); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

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

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 0.45rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 11px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--t), background var(--t);
  resize: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(154,173,190,0.35); }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.form-textarea { min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background var(--t), transform var(--t);
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #080f17;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 13px; color: rgba(154,173,190,0.45); font-weight: 300; }
.footer-copy span { color: var(--gold); }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(154,173,190,0.35);
  text-decoration: none;
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }

/* =========================================================
   FADE-IN ANIMATION
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: row; justify-content: space-around; width: 100%; }
  .stat-divider  { width: 1px; height: auto; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .skills-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .form-row      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container  { padding: 0 1.25rem; }
  .nav-links  { display: none; }
  .hero       { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .about, .education, .skills, .projects, .contact { padding: 70px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .edu-grid      { grid-template-columns: 1fr; }
}
