:root {
  --gold: #C9A227;
  --gold-light: #F0C94B;
  --gold-dim: rgba(201,162,39,0.15);
  --navy: #0A0F1E;
  --navy2: #0D1528;
  --navy3: #111B35;
  --white: #F5F0E8;
  --grey: #8A8FA8;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* CURSOR */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,15,30,0.95), transparent);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,162,39,0.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 70%);
  top: -100px; right: 100px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,39,0.07), transparent 70%);
  bottom: 0; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-name span { display: block; color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-desc strong { color: var(--white); font-weight: 400; }
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,162,39,0.4);
  cursor: none;
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }
.full-width { width: 100%; text-align: center; }

/* STATS */
.stats-bar {
  background: var(--navy3);
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat { text-align: center; opacity: 0; animation: fadeUp 0.6s ease forwards; }
.stat:nth-child(1) { animation-delay: 1s; }
.stat:nth-child(2) { animation-delay: 1.1s; }
.stat:nth-child(3) { animation-delay: 1.2s; }
.stat:nth-child(4) { animation-delay: 1.3s; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 4px; }

/* SECTIONS */
section { padding: 100px 48px; position: relative; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.center-tag { justify-content: center; }
.center-tag::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 15px; color: var(--grey); max-width: 480px; line-height: 1.8; margin-bottom: 64px; }
.centered { margin: 0 auto 64px; text-align: center; }
.section-center { text-align: center; margin-bottom: 64px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute; inset: -12px;
  border: 1px solid rgba(201,162,39,0.2); z-index: 0;
}
.about-img-wrap::after {
  content: ''; position: absolute; bottom: -24px; right: -24px;
  width: 60%; height: 60%; background: var(--gold-dim); z-index: 0;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--navy3);
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; border: 1px solid rgba(201,162,39,0.1);
}
.about-img-placeholder img {  width: 100%;}
.about-text p { font-size: 15px; line-height: 1.9; color: var(--grey); margin-bottom: 20px; }
.about-text p strong { color: var(--white); font-weight: 400; }
.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px; margin: 32px 0;
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  color: var(--white); line-height: 1.6;
}

/* SKILLS */
.skills-section { background: var(--navy2); }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; }
.skill-card {
  background: var(--navy);
  padding: 36px 32px;
  border: 1px solid rgba(201,162,39,0.08);
  transition: all 0.3s ease;
  position: relative; overflow: hidden; cursor: none;
}
.skill-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.skill-card:hover::before { transform: scaleX(1); }
.skill-card:hover { background: var(--navy3); }
.skill-icon { font-size: 32px; margin-bottom: 16px; }
.skill-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.skill-desc { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,162,39,0.25); padding: 4px 10px; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }
.project-card { background: var(--navy3); position: relative; overflow: hidden; cursor: none; }
.project-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.5s ease; filter: grayscale(30%) brightness(0.8); }
.project-card:hover .project-img { transform: scale(1.05); filter: grayscale(0%) brightness(1); }
.project-img-placeholder-icon { width: 100%; aspect-ratio: 16/10; background: var(--navy2); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.project-coming { display: flex; align-items: center; justify-content: center; min-height: 200px; background: var(--navy2); }
.project-img-placeholder-icon svg {height: 80%;}
.coming-content { text-align: center; padding: 40px; }
.coming-icon { font-size: 40px; margin-bottom: 16px; }
.coming-title { font-family: var(--font-display); font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.coming-sub { font-size: 13px; color: var(--grey); }
.project-info { padding: 24px; }
.project-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.project-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.project-desc { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.project-link { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.3s; }
.project-link:hover { gap: 14px; }

/* PROCESS */
.process-section { background: var(--navy2); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.process-step { padding: 32px 24px; text-align: center; }
.step-num {
  width: 64px; height: 64px;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--gold); background: var(--navy2);
  transition: all 0.3s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--navy); }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--grey); line-height: 1.7; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 40px; }
.contact-item { display: flex; align-items: center; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(201,162,39,0.1); }
.contact-item:first-child { border-top: 1px solid rgba(201,162,39,0.1); }
.contact-icon { width: 40px; height: 40px; border: 1px solid rgba(201,162,39,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all 0.3s; }
.contact-item:hover .contact-icon { background: var(--gold); }
.contact-detail-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; color: var(--white); }
.contact-detail-val a { color: var(--white); text-decoration: none; transition: color 0.3s; cursor: none; }
.contact-detail-val a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.form-input, .form-textarea {
  background: var(--navy3);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 16px; color: var(--white);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.3s; cursor: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(138,143,168,0.5); }
.form-success { font-size: 13px; text-align: center; color: var(--gold); display: none; margin-top: 8px; }

/* FOOTER */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(201,162,39,0.1);
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: 2px; }
.footer-copy { font-size: 12px; color: var(--grey); letter-spacing: 1px; }
.footer-socials { display: flex; gap: 20px; }
.social-link {
  width: 30px; height: 30px;
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); text-decoration: none; font-size: 14px;
  transition: all 0.3s; cursor: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-bg-text { font-size: 80px; opacity: 0.5; }
  section { padding: 70px 24px; }
  .stats-bar { padding: 24px; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}
