:root {
  --bg: #000000;
  --bg-soft: #0b0b0f;
  --section: #111827;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --muted: #6e6e73;
  --glass-1: rgba(255, 255, 255, 0.08);
  --glass-2: rgba(255, 255, 255, 0.04);
  --sunset: linear-gradient(135deg, #ff7e5f, #feb47b, #ff9966);
  --ocean: linear-gradient(135deg, #0ea5e9, #22d3ee);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1400px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #12131c 0%, var(--bg) 45%), var(--bg-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.section { padding: 120px 0; }
@media (max-width: 991px) { .section { padding: 90px 0; } }
@media (max-width: 640px) { .section { padding: 70px 0; } }

.bg-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.2;
}
.bg-glow--orange { background: #ff8a5b; top: -120px; left: -120px; }
.bg-glow--blue { background: #1fb6ff; right: -150px; top: 30%; }

.glass {
  background: linear-gradient(145deg, var(--glass-1), var(--glass-2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  width: min(92%, 1100px);
  margin: 0 auto;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-secondary);
  transition: 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gradient {
  background: var(--sunset);
  color: #1d0a00;
  box-shadow: 0 10px 30px rgba(255, 126, 95, 0.35);
}
.btn-ocean {
  background: var(--ocean);
  color: #001923;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35);
}
.btn-glass {
  background: var(--glass-2);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  margin: 5px auto;
}

.mobile-panel {
  position: fixed;
  top: 82px;
  right: 4%;
  width: min(92%, 320px);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 12px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}
.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-panel a { color: var(--text-secondary); padding: 8px 0; }
.mobile-panel a.active, .mobile-panel a:hover { color: var(--text); }

.hero {
  min-height: 100vh;
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.38));
}
.hero-content {
  position: relative;
  padding-bottom: 120px;
  max-width: 820px;
}
.eyebrow { color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.6px; font-size: 12px; }
h1 { font-size: clamp(2.2rem, 5vw, 5rem); line-height: 1.05; margin: 10px 0 18px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin: 8px 0 0; line-height: 1.15; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.2rem); margin: 0 0 10px; }
p { color: var(--text-secondary); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.section-head { max-width: 800px; margin-bottom: 26px; }

.cinematic-section {
  position: relative;
  margin: 80px 0;
}
.cinematic-image {
  width: 100%;
  height: min(72vh, 760px);
  border-radius: 0;
}
.cinematic-content {
  margin-top: -90px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  padding: 30px;
  width: min(92%, 900px);
}
.cinematic-content ul { margin: 10px 0 12px 18px; color: var(--text); }

.experience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.experience-pills span {
  padding: 12px 16px;
  border-radius: 999px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.content-main { grid-column: span 8; }
.content-side { grid-column: span 4; }

.panel {
  border-radius: var(--radius);
  padding: 24px;
}

.form-group { margin-bottom: 14px; }
label { display: block; margin-bottom: 6px; color: var(--text-secondary); }
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 12px 14px;
}
textarea { min-height: 140px; resize: vertical; }

.site-footer { padding: 40px 0 34px; }
.footer-wrap {
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links { display: flex; gap: 14px; color: var(--text-secondary); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .nav-links, .navbar .btn-gradient { display: none; }
  .menu-toggle { display: block; }
  .content-main, .content-side { grid-column: span 12; }
}