/* ===== MEDEA DEVELOPMENT — FROM THE STAGE TO THE STARS ===== */

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

:root {
  --gold: #c9972a;
  --gold-light: #e8b84b;
  --gold-dim: #8a6520;
  --gold-glow: rgba(201,151,42,0.12);
  --gold-border: rgba(201,151,42,0.2);
  --charcoal: #0e0d0b;
  --charcoal2: #161411;
  --charcoal3: #1e1b17;
  --text: #e8e2d9;
  --text-muted: #7a7068;
  --text-dim: #4a4540;
  --white: #f5f0e8;
  --border: rgba(201,151,42,0.12);
  --card: rgba(255,255,255,0.03);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(201,151,42,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* SPARSE GOLD CODE RAIN */
#codeRain {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ===== CUSTOM CURSOR ===== */
*, *::before, *::after { cursor: none !important; }
.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 8px rgba(201,151,42,0.8);
}
.cursor-ring {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,151,42,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
body.cursor-hover .cursor-dot { width: 10px; height: 10px; background: var(--gold-light); box-shadow: 0 0 16px rgba(201,151,42,1); }
body.cursor-hover .cursor-ring { width: 44px; height: 44px; border-color: rgba(201,151,42,0.8); }

/* ===== PLANET CODE BORN ===== */
.planet-code-born {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 0.55rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  padding: 4px;
  border-radius: 50%;
}

/* ===== CODE COMMENT COLOR ===== */
.c-comment { color: rgba(201,151,42,0.35); font-style: italic; }

/* ===== STAT NUM LIGHTNING ===== */
.stat-num { font-size: 1.6rem; }


.typing-q {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  margin-left: 2px;
  min-width: 10px;
}

/* ABOUT ORBIT CENTER (no logo) */
.about-orbit-center {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(201,151,42,0.4);
  z-index: 2;
}

/* GRAIN TEXTURE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* STARS CANVAS */
#stars {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 0 2.5rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--gold-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* NAV LOGO */
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo-icon {
  position: relative;
  width: 38px; height: 38px;
}
.nav-logo-icon img {
  width:100%; height:100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  background: transparent;
}
.footer-logo-img {
  width:100%; height:100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.orbit-logo-img {
  width:30px; height:30px;
  object-fit: contain;
  animation: logo-breathe 5s ease-in-out infinite;
}
.nav-logo-glow { display: none; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-dev {
  color: var(--gold-light);
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.btn-nav {
  background: transparent !important;
  color: var(--gold-light) !important;
  border: 1px solid var(--gold-border) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all 0.3s !important;
  font-family: 'DM Sans', sans-serif !important;
}
.btn-nav:hover {
  background: var(--gold-glow) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(201,151,42,0.15) !important;
}
.nav-right { display:flex; align-items:center; gap:1rem; }

/* LANG DROPDOWN */
.lang-dropdown { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.35rem 0.85rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.08em;
}
.lang-current:hover { border-color: var(--gold-border); color: var(--gold-light); }
.lang-dropdown.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: rgba(14,13,11,0.98);
  border: 1px solid var(--border);
  padding: 0.4rem;
  min-width: 165px;
  display: none; flex-direction: column;
  box-shadow: var(--shadow);
  z-index: 2000;
}
.lang-dropdown.open .lang-menu { display: flex; }
.lang-opt {
  background: none; border: none;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; cursor: pointer;
  padding: 0.5rem 0.75rem;
  text-align: left;
  transition: all 0.15s;
}
.lang-opt:hover { background: var(--gold-glow); color: var(--gold-light); }
.lang-opt.active { color: var(--gold-light); font-weight: 600; }

/* HAMBURGER */
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:1px; background:var(--text-muted); transition:all 0.3s; }
.mobile-menu {
  display:none; flex-direction:column;
  background: rgba(14,13,11,0.98);
  border-top: 1px solid var(--border);
  padding: 1rem 2.5rem 1.5rem; gap: 1rem;
}
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 120px 6vw 80px;
  max-width: 1400px; margin: 0 auto;
  gap: 4rem;
}
.hero-content { flex:1; max-width:580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dim);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-dim);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.gradient-text {
  color: var(--gold-light);
  font-style: normal;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
  max-width: 460px;
}
.hero-cta { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3.5rem; animation:fadeInUp 0.8s ease 0.3s both; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,151,42,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,151,42,0.35);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--text-dim);
  cursor: pointer; transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
  background: var(--gold-glow);
}
.full-width { width: 100%; }

.hero-stats { display:flex; align-items:center; gap:2.5rem; animation:fadeInUp 0.8s ease 0.4s both; }
.stat { display:flex; flex-direction:column; gap:0.2rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold-light);
}
.stat-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  flex: 0 0 420px; height: 420px;
  position: relative; display: flex;
  align-items: center; justify-content: center;
  animation: fadeIn 1.2s ease 0.5s both;
}
.orbit-ring { position:absolute; border-radius:50%; border:1px solid transparent; }
.ring1 { width:280px;height:280px; border-color:rgba(201,151,42,0.15); animation:spin 25s linear infinite; }
.ring2 { width:360px;height:360px; border-color:rgba(201,151,42,0.08); animation:spin 35s linear infinite reverse; }
.ring3 { width:420px;height:420px; border-color:rgba(201,151,42,0.05); animation:spin 50s linear infinite; }
.ring1::before,.ring2::before,.ring3::before {
  content:''; position:absolute;
  top:-3px; left:50%;
  width:6px; height:6px;
  border-radius:50%; transform:translateX(-50%);
}
.ring1::before { background:var(--gold); box-shadow:0 0 8px var(--gold),0 0 16px var(--gold); }
.ring2::before { background:var(--gold-dim); box-shadow:0 0 8px var(--gold-dim); }
.ring3::before { background:rgba(201,151,42,0.4); }
.planet {
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%,rgba(201,151,42,0.08),rgba(14,13,11,0.95));
  border:1px solid rgba(201,151,42,0.2);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 60px rgba(201,151,42,0.1),0 0 120px rgba(201,151,42,0.04);
  animation:float 7s ease-in-out infinite;
  z-index:2;
}
.planet-core { width:100%;height:100%;border-radius:50%;position:relative;display:flex;align-items:center;justify-content:center; }
.planet-pulse { position:absolute;width:100%;height:100%;border-radius:50%;background:radial-gradient(circle,rgba(201,151,42,0.08) 0%,transparent 70%);animation:pulse-glow 4s ease-in-out infinite; }
.planet-pulse.p2 { animation-delay:2s; }
.planet-ring-inner { position:absolute;width:70%;height:70%;border-radius:50%;border:1px solid rgba(201,151,42,0.2);animation:spin 10s linear infinite; }
.planet-ring-inner::before { content:'';position:absolute;top:-3px;left:50%;width:6px;height:6px;background:var(--gold);border-radius:50%;box-shadow:0 0 8px var(--gold);transform:translateX(-50%); }
.planet-center {
  width:80px;height:80px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%,rgba(201,151,42,0.1),rgba(14,13,11,0.9));
  border:1px solid rgba(201,151,42,0.3);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 25px rgba(201,151,42,0.15);
  z-index:2;
}
.about-center-logo { width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center; }
.orbit-logo-img {
  width:30px;height:30px;object-fit:contain;
  filter:invert(1) sepia(1) saturate(3) hue-rotate(5deg) drop-shadow(0 0 4px rgba(201,151,42,0.8));
  animation:logo-breathe 5s ease-in-out infinite;
}
@keyframes logo-breathe {
  0%,100% { opacity:0.5;transform:scale(0.92); }
  50% { opacity:1;transform:scale(1.08); filter:invert(1) sepia(1) saturate(4) hue-rotate(5deg) drop-shadow(0 0 12px rgba(201,151,42,1)); }
}
.sparkle { position:absolute;color:var(--gold);font-size:1rem;animation:twinkle 4s ease-in-out infinite;text-shadow:0 0 6px rgba(201,151,42,0.6); }
.s1{top:15%;left:15%;animation-delay:0s;}
.s2{top:20%;right:18%;animation-delay:1s;font-size:1.3rem;}
.s3{bottom:20%;left:20%;animation-delay:2s;}
.s4{bottom:25%;right:15%;animation-delay:0.5s;font-size:0.8rem;}
.s5{top:50%;left:5%;animation-delay:2.5s;font-size:0.7rem;}

/* ===== SECTIONS ===== */
section { position:relative;z-index:1;padding:110px 6vw; }
.section-inner { max-width:1200px;margin:0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 1rem;
}
.section-label::before { content:''; display:block; width:20px; height:1px; background:var(--gold-dim); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 1rem;
}
.section-sub { font-size:0.95rem;color:var(--text-muted);margin-bottom:3.5rem;line-height:1.8;font-weight:300;max-width:560px; }

/* ===== SERVICES ===== */
#services { background: var(--charcoal2); }
.services-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1px;background:var(--border); }
.service-card {
  background: var(--charcoal2);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--charcoal3); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--charcoal3); }
.service-card.featured::after { transform: scaleX(1); opacity: 0.5; }
.service-badge {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; margin-bottom: 1.25rem;
}
.service-icon { font-size: 1.8rem; margin-bottom: 1.25rem; opacity: 0.8; }
.service-card h3 { font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:600;margin-bottom:0.75rem;color:var(--white);line-height:1.3; }
.service-card p { font-size:0.88rem;color:var(--text-muted);line-height:1.8;margin-bottom:1.25rem;font-weight:300; }
.service-tags { display:flex;flex-wrap:wrap;gap:0.4rem; }
.service-tags span { font-size:0.68rem;color:var(--gold-dim);background:var(--gold-glow);border:1px solid var(--gold-border);padding:0.2rem 0.6rem;letter-spacing:0.05em; }

/* ===== ABOUT ===== */
#about { background: var(--charcoal); }
.about-inner { display:flex;align-items:center;gap:6rem; }
.about-text { flex:1; }
.about-text p { color:var(--text-muted);line-height:1.9;margin-bottom:1.2rem;font-size:0.92rem;font-weight:300; }
.about-text strong { color:var(--gold-light);font-weight:600; }
.about-badges { display:flex;flex-wrap:wrap;gap:0.6rem;margin-top:2rem; }
.badge { background:var(--gold-glow);border:1px solid var(--gold-border);padding:0.45rem 1rem;font-size:0.78rem;color:var(--text-muted);letter-spacing:0.05em; }
.about-visual { flex:0 0 320px; }
.about-card {
  background: var(--charcoal2);
  border: 1px solid var(--border);
  padding: 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-card-glow { position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(201,151,42,0.04) 0%,transparent 70%);pointer-events:none; }
.about-card p { font-style:italic;color:var(--text-muted);font-size:0.88rem;line-height:1.7;position:relative;z-index:1;font-family:'Playfair Display',serif; }

/* ABOUT ORBIT */
.about-orbit-wrap { position:relative;width:90px;height:90px;margin:0 auto 1.5rem;display:flex;align-items:center;justify-content:center; }
.about-orbit-ring { position:absolute;border-radius:50%;border:1px solid rgba(201,151,42,0.15); }
.ao1 { width:100%;height:100%;animation:spin 12s linear infinite; }
.ao1::before { content:'';position:absolute;top:-3px;left:50%;width:5px;height:5px;background:var(--gold);border-radius:50%;box-shadow:0 0 6px var(--gold);transform:translateX(-50%); }
.ao2 { width:70%;height:70%;animation:spin 8s linear infinite reverse;border-color:rgba(201,151,42,0.1); }
.ao2::before { content:'';position:absolute;top:-3px;left:50%;width:4px;height:4px;background:var(--gold-dim);border-radius:50%;box-shadow:0 0 5px var(--gold-dim);transform:translateX(-50%); }

/* CODE ANIMATION */
.code-animation {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,151,42,0.1);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.76rem; line-height: 1.85;
  text-align: left; position: relative; z-index: 1;
}
.code-animation::before { content:'● ● ●';display:block;color:rgba(201,151,42,0.2);font-size:0.55rem;letter-spacing:4px;margin-bottom:0.75rem; }
.code-line { opacity:0;animation:typeLine 0.3s ease forwards; }
.code-line:nth-child(2){animation-delay:0.2s;} .code-line:nth-child(3){animation-delay:0.5s;}
.code-line:nth-child(4){animation-delay:0.8s;} .code-line:nth-child(5){animation-delay:1.0s;}
.code-line:nth-child(6){animation-delay:1.2s;} .code-line:nth-child(7){animation-delay:1.4s;}
.code-line:nth-child(8){animation-delay:1.5s;} .code-line:nth-child(9){animation-delay:1.6s;}
.code-line:nth-child(10){animation-delay:1.8s;}
.indent{padding-left:1.5rem;} .indent2{padding-left:3rem;}
.c-purple{color:#c9972a;} .c-blue{color:#e8b84b;} .c-pink{color:#f0c870;}
.c-orange{color:#a07828;} .c-white{color:#c8bfaa;}
.code-cursor { display:inline-block;color:var(--gold);animation:blink 1s step-end infinite; }

/* ===== CONTACT ===== */
#contact { background: var(--charcoal2); }
.forms-wrapper { display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border);margin-bottom:3rem; }
.form-box { background:var(--charcoal2);padding:2.5rem; }
.form-box h3 { font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:600;margin-bottom:1.75rem;color:var(--white); }
.form-group { margin-bottom:1.2rem; }
.form-group label { display:block;font-size:0.7rem;font-weight:600;color:var(--text-dim);margin-bottom:0.45rem;letter-spacing:0.15em;text-transform:uppercase; }
.form-group input,.form-group textarea,.form-group select {
  width:100%;background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  border-bottom:1px solid rgba(201,151,42,0.15);
  padding:0.75rem 0.1rem;
  color:var(--text);font-family:'DM Sans',sans-serif;
  font-size:0.9rem;outline:none;
  transition:border-color 0.2s;
  -webkit-appearance:none;
  background: transparent;
}
.form-group select option { background:var(--charcoal2);color:var(--text); }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-bottom-color:var(--gold); }
.form-group textarea { resize:vertical;min-height:100px; }
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--text-dim); }
.contact-info { display:flex;flex-wrap:wrap;justify-content:center;gap:1rem; }
.contact-item {
  display:flex;align-items:center;gap:0.6rem;
  color:var(--text-muted);text-decoration:none;
  font-size:0.85rem;transition:color 0.2s;
  padding:0.75rem 1.25rem;
  border:1px solid transparent;
  border-bottom-color:var(--border);
}
.contact-item:hover { color:var(--gold-light);border-bottom-color:var(--gold-border); }
.contact-icon { font-size:1rem; }

/* ===== FOOTER ===== */
footer { position:relative;z-index:1;background:var(--charcoal);border-top:1px solid var(--border);padding:5rem 6vw 2.5rem; }
.footer-inner { max-width:1200px;margin:0 auto;text-align:center; }
.footer-brand { display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1.25rem; }
.footer-logo-wrap { position:relative;width:40px;height:40px;display:flex;align-items:center;justify-content:center; }
.footer-logo-img {
  width:100%; height:100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.footer-logo-glow { display: none; }
.footer-brand-text { display:flex;flex-direction:column;text-align:left; }
.footer-name { font-family:'Playfair Display',serif;font-size:1.15rem;font-weight:600;color:var(--white); }
.footer-sub { font-size:0.68rem;color:var(--text-dim);margin-top:0.1rem;letter-spacing:0.12em;text-transform:uppercase; }
.footer-tagline { color:var(--text-dim);font-size:0.85rem;margin-bottom:2.5rem;font-style:italic;font-family:'Playfair Display',serif; }
.footer-links { display:flex;justify-content:center;flex-wrap:wrap;gap:2.5rem;margin-bottom:2.5rem; }
.footer-links a { color:var(--text-dim);text-decoration:none;font-size:0.78rem;letter-spacing:0.1em;text-transform:uppercase;transition:color 0.2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-copy { color:var(--text-dim);font-size:0.72rem;letter-spacing:0.05em; }
.footer-copy a { color:rgba(201,151,42,0.4);text-decoration:none;transition:color 0.2s; }
.footer-copy a:hover { color:var(--gold-light); }

/* ===== TOAST ===== */
.toast {
  position:fixed;bottom:2rem;left:50%;
  transform:translateX(-50%) translateY(200px);
  background:var(--charcoal2);
  border:1px solid var(--gold-border);
  border-top:2px solid var(--gold);
  color:var(--text);
  padding:1rem 2rem;font-size:0.88rem;font-weight:400;
  z-index:9999;transition:transform 0.4s ease;
  pointer-events:none;visibility:hidden;
  white-space:nowrap;
  box-shadow:0 8px 30px rgba(0,0,0,0.4),0 0 20px rgba(201,151,42,0.08);
  letter-spacing:0.03em;
}
.toast.show { transform:translateX(-50%) translateY(0);visibility:visible; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity:0;transform:translateY(24px);transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1;transform:translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes spin { from{transform:rotate(0deg);}to{transform:rotate(360deg);} }
@keyframes float { 0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);} }
@keyframes twinkle { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.2;transform:scale(0.6);} }
@keyframes fadeIn { from{opacity:0;}to{opacity:1;} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);} }
@keyframes typeLine { from{opacity:0;transform:translateX(-8px);}to{opacity:1;transform:translateX(0);} }
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0;} }
@keyframes pulse-glow { 0%,100%{opacity:0.6;}50%{opacity:1;} }

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  #hero{flex-direction:column;text-align:center;padding-top:100px;padding-bottom:60px;}
  .hero-badge{justify-content:center;}
  .hero-sub{max-width:100%;}
  .hero-cta{justify-content:center;flex-direction:column;align-items:center;}
  .hero-stats{justify-content:center;}
  .hero-visual{width:260px;height:260px;flex:0 0 260px;margin:0 auto 1rem;overflow:hidden;}
  .ring1{width:160px;height:160px;}.ring2{width:210px;height:210px;}.ring3{width:255px;height:255px;}
  .planet{width:90px;height:90px;}.planet-center{width:56px;height:56px;}
  .about-inner{flex-direction:column;gap:3rem;}
  .about-visual{width:100%;}
  .forms-wrapper{grid-template-columns:1fr;gap:0;}
  .nav-links{display:none;}
  .hamburger{display:flex;}
  .services-grid{grid-template-columns:1fr;gap:0;}
}
@media (max-width:600px) {
  section{padding:70px 5vw;}
  .contact-info{flex-direction:column;align-items:stretch;text-align:center;}
  .footer-brand{flex-direction:column;}
  .footer-brand-text{text-align:center;}
}
