:root {
  --ink: #0a0a0f;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --rust: #b84c2a;
  --teal: #1a6b6b;
  --teal-light: #2a9090;
  --muted: #6b6b6b;
  --border: rgba(201,168,76,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family:  sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--cream); opacity: 0.75; font-size: 0.9rem;
  text-decoration: none; font-weight: 400; letter-spacing: 0.03em;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-weight: 500; opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 5rem; align-items: center; max-width: 1100px; margin: auto;
  width: 100%;
}

/* PASSPORT PHOTO */
.hero-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-photo-frame { position: relative; width: 330px; height: 370px; }
.hero-photo-frame::before {
  content: ''; position: absolute; inset: -5px; border-radius: 14px;
  background: linear-gradient(160deg, var(--gold), var(--teal-light), var(--gold));
  z-index: 0; animation: borderGlow 3s ease-in-out infinite alternate;
}
@keyframes borderGlow {
  from { opacity: 0.7; } to { opacity: 1; }
}
.hero-photo {
  position: relative; z-index: 1;
  width: 330px; height: 370px; border-radius: 10px; overflow: hidden;
  background: linear-gradient(160deg, #1c2a2a 0%, #0f1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--ink);
}
.hero-photo svg { width: 110px; height: 110px; opacity: 0.3; }
.hero-photo-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,232,0.35); font-weight: 500; text-align: center;
}
.hero-photo-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); border: 1px solid var(--border);
  padding: 0.45rem 1rem; border-radius: 20px;
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 500;
}
.hero-name {
  font-family:  sans-serif;
  font-size: 40px;
  font-weight: 800; line-height: 1.05;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero-name span { color: var(--gold); }
.hero-desc {
  font-size: 1.15rem; line-height: 1.75;
  color: rgba(245,240,232,0.7);
  text-align: justify;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--ink);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-family:  sans-serif; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid var(--border); color: var(--cream);
  padding: 0.85rem 2rem; border-radius: 2px;
  font-family:  sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.04em;
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }


/* BG decorations */
#hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
#hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,107,107,0.12) 0%, transparent 70%);
  bottom: 0; left: 200px; pointer-events: none;
}

/* SECTION COMMON */
section { padding: 6rem 4rem; }
.section-inner { max-width: 1200px; margin: auto; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  border: 1px solid var(--border); padding: 0.4rem 1rem; border-radius: 20px;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family:  sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--cream); line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: rgba(245,240,232,0.6);
  max-width: 580px; line-height: 1.7; margin-bottom: 3rem;
}

/* DIVIDER */
.divider {
  height: 1px; background: var(--border);
  max-width: 1200px; margin: 0 auto;
}

/* SERVICES */
#services { background: rgba(245,240,232,0.02); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}
.service-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem; border-radius: 6px;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}
.service-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.service-title {
  font-family:  sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.9rem; color: rgba(245,240,232,0.55);
  line-height: 1.7;
}
.service-card::after {
  content: '→';
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  color: var(--gold); opacity: 0;
  font-size: 1.2rem;
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover::after { opacity: 1; transform: translateX(4px); }

/* ACHIEVEMENTS */
#achievements { background: var(--ink); }
.achievements-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.achievement-list { display: flex; flex-direction: column; gap: 1.5rem; }
.achievement-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s;
}
.achievement-item:hover {
  border-color: var(--border);
  background: rgba(201,168,76,0.04);
}
.achievement-year {
  font-family:  sans-serif;
  font-size: 0.75rem; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  padding: 0.3rem 0.7rem; border-radius: 3px;
  white-space: nowrap; margin-top: 0.2rem;
}
.achievement-text {
  font-size: 0.95rem; color: rgba(245,240,232,0.8); line-height: 1.65;
}

.products-grid { display: flex; flex-direction: column; gap: 1rem; }
.product-card {
  background: rgba(245,240,232,0.03);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.25s;
}
.product-card:hover { background: rgba(26,107,107,0.1); border-color: var(--teal-light); }
.product-name {
  font-family:  sans-serif; font-weight: 700;
  color: var(--gold); font-size: 1rem; margin-bottom: 0.25rem;
}
.product-desc { font-size: 0.85rem; color: rgba(245,240,232,0.55); }
.product-link {
  font-size: 0.8rem; color: var(--teal-light); text-decoration: none;
  font-weight: 500; white-space: nowrap;
  transition: color 0.2s;
}
.product-link:hover { color: var(--gold); }

/* SKILLS TICKER */
#skills-bar {
  background: rgba(201,168,76,0.08);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 0; overflow: hidden;
}
.ticker-wrap { display: flex; gap: 4rem; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item {
  font-family:  sans-serif; font-size: 0.9rem; font-weight: 600;
  color: rgba(245,240,232,0.5); letter-spacing: 0.08em; text-transform: uppercase;
}
.ticker-item .dot { color: var(--gold); margin-right: 4rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SPEAKING / CTA */
#speaking {
  background: linear-gradient(135deg, rgba(26,107,107,0.15) 0%, rgba(201,168,76,0.08) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.speaking-inner {
  max-width: 1200px; margin: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.speaking-topics { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.topic-pill {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(245,240,232,0.04); border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.9rem; color: rgba(245,240,232,0.8);
  transition: all 0.25s;
}
.topic-pill:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.topic-pill .check { color: var(--gold); font-weight: 700; }

.speaking-cta {
  background: rgba(245,240,232,0.04); border: 1px solid var(--border);
  padding: 3rem; border-radius: 8px; text-align: center;
}
.cta-title {
  font-family:  sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--cream); margin-bottom: 1rem;
}
.cta-desc { color: rgba(245,240,232,0.6); line-height: 1.7; margin-bottom: 2rem; }

/* CONTACT */
#contact { background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.contact-item {
  display: flex; gap: 1.5rem; align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(245,240,232,0.03); border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-bottom: 0.2rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-val { font-size: 0.95rem; color: rgba(245,240,232,0.85); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.form-control {
  background: rgba(245,240,232,0.04); border: 1px solid var(--border);
  padding: 0.9rem 1.25rem; border-radius: 4px;
  color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: rgba(201,168,76,0.6); }
.form-control::placeholder { color: rgba(245,240,232,0.3); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error{
  color:#b84c2a;
  font-size:12px;
}
/* FOOTER */
footer {
  background: rgba(245,240,232,0.03);
  border-top: 1px solid var(--border);
  padding: 3rem 4rem;
}
.footer-inner {
  max-width: 1200px; margin: auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family:  sans-serif; font-weight: 800;
  color: var(--gold); font-size: 1rem; letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: rgba(245,240,232,0.5); font-size: 0.9rem; text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(245,240,232,0.35); font-size: 0.85rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  #hero { padding: 7rem 1.5rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-frame, .hero-photo { width: 160px; height: 190px; }
  .achievements-layout, .speaking-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}