/* ==================== VARIABLES ==================== */
:root {
  --navy: #0a1620;
  --navy-light: #0e1e2d;
  --navy-mid: #132d42;
  --cream: #f4f0ea;
  --cream-mid: #ede8e0;
  --cream-dark: #e4ded4;
  --white: #ffffff;
  --gold: #b98c44;
  --gold-bright: #d4a84f;
  --gold-pale: #e8c76b;
  --gold-muted: rgba(185, 140, 68, 0.12);
  --gold-glow: rgba(185, 140, 68, 0.15);
  --gold-glow-strong: rgba(185, 140, 68, 0.3);
  --gold-dim: rgba(185, 140, 68, 0.5);
  --gold-rule: rgba(185, 140, 68, 0.35);
  --glass: rgba(14, 30, 45, 0.55);
  --glass-border: rgba(185, 140, 68, 0.1);
  --glass-border-hover: rgba(185, 140, 68, 0.28);
  --text-dark: #0a1620;
  --text-body: #3a4a5a;
  --text-light: rgba(244, 240, 234, 0.9);
  --text-light-dim: rgba(244, 240, 234, 0.5);
  --rule-dark: rgba(10, 22, 32, 0.1);
  --rule-light: rgba(244, 240, 234, 0.08);
  --ff-heading: 'DM Serif Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--ff-body); color: var(--text-body); background: var(--cream); overflow-x: hidden; line-height: 1.7; font-weight: 300; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ==================== UTILITIES ==================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-heading {
  font-family: var(--ff-heading);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-heading.dark { color: var(--text-dark); }
.section-heading.light { color: var(--cream); }

/* ==================== REVEALS ==================== */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; padding: 22px 0;
  transition: all 0.5s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(10, 22, 32, 0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 13px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img {
  height: 50px; width: 50px; border-radius: 6px;
  transition: all 0.3s var(--ease-out);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
.navbar.scrolled .nav-logo img { height: 40px; width: 40px; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light-dim); position: relative; padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 26px !important;
  border: 1px solid rgba(185, 140, 68, 0.35) !important;
  color: var(--gold) !important;
  transition: all 0.4s var(--ease-out) !important;
}
.nav-cta:hover {
  background: var(--gold) !important; color: var(--navy) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 28px var(--gold-glow-strong) !important;
}
.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s var(--ease-out); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO (dark, centered) ==================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--navy); overflow: hidden;
}

/* Cinematic radial glows */
.hero-cinema {
  position: absolute; inset: 0; z-index: 0;
}
.hero-cinema::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(185, 140, 68, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(185, 140, 68, 0.04) 0%, transparent 50%);
  animation: cinematicPulse 20s ease-in-out infinite alternate;
}
@keyframes cinematicPulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.06); }
}

/* Horizon arc — animated glow */
.hero-arc {
  position: absolute; bottom: -340px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 820px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.07);
  animation: arcPulse 6s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-arc::before {
  content: ''; position: absolute; inset: 40px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.05);
  animation: arcRotate 60s linear infinite;
}
.hero-arc::after {
  content: ''; position: absolute; inset: 90px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.03);
  animation: arcRotate 90s linear infinite reverse;
}
@keyframes arcPulse {
  0% { border-color: rgba(185, 140, 68, 0.04); box-shadow: 0 0 40px rgba(185, 140, 68, 0.015); }
  100% { border-color: rgba(185, 140, 68, 0.1); box-shadow: 0 0 80px rgba(185, 140, 68, 0.04); }
}
@keyframes arcRotate { to { transform: rotate(360deg); } }

/* Gold line accents from V1 */
.hero-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(185, 140, 68, 0.1), transparent); z-index: 0; height: 1px; }
.hero-line-1 { top: 28%; left: 0; right: 0; animation: lineFade 8s ease-in-out infinite alternate; }
.hero-line-2 { top: 62%; left: 8%; right: 8%; animation: lineFade 8s ease-in-out 2s infinite alternate; }
@keyframes lineFade { 0% { opacity: 0.25; } 100% { opacity: 0.7; } }

/* Floating particles from V1 */
.hero-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: rgba(185, 140, 68, 0.25); border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* Floating orbs from V2 */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; }
.hero-orb-1 { width: 350px; height: 350px; top: 8%; right: -8%; background: rgba(185, 140, 68, 0.04); animation: orbDrift1 18s ease-in-out infinite alternate; }
.hero-orb-2 { width: 250px; height: 250px; bottom: 18%; left: -5%; background: rgba(185, 140, 68, 0.03); animation: orbDrift2 22s ease-in-out infinite alternate; }
@keyframes orbDrift1 { 0% { transform: translate(0,0); } 100% { transform: translate(-50px, 35px); } }
@keyframes orbDrift2 { 0% { transform: translate(0,0); } 100% { transform: translate(35px, -25px); } }

.hero-content { position: relative; z-index: 1; padding: 0 32px; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; margin-bottom: 44px;
  background: rgba(14, 30, 45, 0.5);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  animation: fadeInDown 0.9s var(--ease-out) 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold-dim);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 6px var(--gold-dim); } 50% { box-shadow: 0 0 14px var(--gold-glow-strong); } }
.hero-badge span { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -0.01em; color: var(--cream);
  margin-bottom: 12px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; animation: heroSlide 1.1s var(--ease-out) both; }
.hero-title .line:nth-child(1) span { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.6s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.8s; }
.hero-title .gold-em { color: var(--gold); font-style: italic; }
@keyframes heroSlide { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.hero-divider {
  width: 72px; height: 1px; margin: 32px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: fadeIn 1s var(--ease-out) 1s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-description {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--text-light); max-width: 600px; margin: 0 auto 44px;
  animation: fadeInUp 1s var(--ease-out) 1.1s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  animation: fadeInUp 1s var(--ease-out) 1.3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 38px; background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-bright);
  transform: translateX(-100%); transition: transform 0.5s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 36px var(--gold-glow-strong); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border: 1px solid var(--glass-border);
  color: var(--text-light-dim); font-size: 12px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Scroll indicator from V1 */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1; animation: fadeInUp 1s var(--ease-out) 2s both;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light-dim); }
.scroll-line { width: 1px; height: 40px; background: rgba(185, 140, 68, 0.15); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollPulse 2s var(--ease-smooth) infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ==================== ABOUT (light) ==================== */
.about { padding: 140px 0; background: var(--cream); position: relative; }

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

.about-left .section-heading { color: var(--text-dark); }

.about-lead {
  font-family: var(--ff-heading); font-size: 21px;
  font-style: italic; color: var(--text-dark);
  line-height: 1.65; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rule-dark);
}

.about-text {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-body); margin-bottom: 20px;
}

/* Dark callout card (elevated) */
.about-callout {
  background: var(--navy); padding: 48px; position: relative;
  box-shadow: 0 24px 60px rgba(10, 22, 32, 0.15);
}
.about-callout::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.callout-title {
  font-family: var(--ff-heading); font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 28px; line-height: 1.4;
}
.failure-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--rule-light);
}
.failure-item:last-of-type { border-bottom: none; }
.failure-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(185, 140, 68, 0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.failure-icon svg { width: 12px; height: 12px; stroke: var(--gold); }
.failure-item span { font-size: 15px; color: var(--text-light); font-weight: 300; }
.callout-closing {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rule-light);
  font-family: var(--ff-heading); font-style: italic; font-size: 16px;
  color: var(--gold); line-height: 1.65;
}

/* ==================== SERVICES (dark) ==================== */
.services { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.services::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(185, 140, 68, 0.03) 0%, transparent 70%);
}
.services-header { max-width: 600px; margin-bottom: 72px; position: relative; z-index: 1; }
.services-header .section-heading { color: var(--cream); }
.services-header p { font-size: 15px; color: var(--text-light); line-height: 1.75; font-weight: 300; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }

/* Glassmorphism service cards */
.svc-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 44px 36px; transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.svc-card::after {
  content: ''; position: absolute; top: -80%; left: -80%;
  width: 260%; height: 260%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-out); pointer-events: none;
}
.svc-card:hover {
  border-color: var(--glass-border-hover); transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 36px var(--gold-glow);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 0.12; }

.svc-num {
  font-family: var(--ff-body); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 18px; opacity: 0.55;
}
.svc-card h3 {
  font-family: var(--ff-heading); font-size: 23px; font-weight: 400;
  color: var(--cream); margin-bottom: 14px; line-height: 1.3;
}
.svc-card p { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.75; }

/* Additional support */
.svc-additional {
  margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; position: relative; z-index: 1;
}
.svc-add-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.4s var(--ease-out);
}
.svc-add-item:hover { border-color: var(--glass-border-hover); }
.svc-add-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold-dim); flex-shrink: 0;
}
.svc-add-item span { font-size: 14px; font-weight: 300; color: var(--text-light); }

/* ==================== WHO WE HELP (light) ==================== */
.who-we-help { padding: 140px 0; background: var(--cream); }

.who-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.who-header .section-label { justify-content: center; }
.who-header .section-label::before { display: none; }
.who-header .section-heading { color: var(--text-dark); }

.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* Clean elevated cards on light bg */
.who-card {
  padding: 48px 40px; background: var(--white);
  border: 1px solid rgba(10, 22, 32, 0.05);
  transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
}
.who-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.who-card:hover {
  box-shadow: 0 20px 60px rgba(10, 22, 32, 0.08);
  transform: translateY(-5px);
}
.who-card:hover::after { transform: scaleX(1); }

.who-card-num {
  font-family: var(--ff-heading); font-size: 44px; font-weight: 400;
  color: var(--gold-muted); line-height: 1; margin-bottom: 18px;
}
.who-card h3 {
  font-family: var(--ff-heading); font-size: 23px; font-weight: 400;
  color: var(--text-dark); margin-bottom: 14px; line-height: 1.3;
}
.who-card p { font-size: 15px; font-weight: 300; color: var(--text-body); line-height: 1.75; }

/* ==================== WHY HORIZON (dark) ==================== */
.why-horizon { padding: 140px 0; background: var(--navy); position: relative; overflow: hidden; }
.why-horizon::before {
  content: ''; position: absolute; bottom: -280px; left: 50%; transform: translateX(-50%);
  width: 650px; height: 650px; border-radius: 50%;
  border: 1px solid rgba(185, 140, 68, 0.03);
}

.why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.why-left .section-heading { color: var(--cream); }
.why-tagline {
  font-family: var(--ff-heading); font-size: 20px; font-style: italic;
  color: var(--gold); margin-bottom: 22px; line-height: 1.5;
}
.why-text { font-size: 16px; font-weight: 300; color: var(--text-light); line-height: 1.85; }

.why-points { display: flex; flex-direction: column; gap: 16px; }

/* Glassmorphism point cards */
.why-point {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
}
.why-point:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15), 0 0 18px var(--gold-glow);
  transform: translateX(8px);
}
.why-point-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(185, 140, 68, 0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
}
.why-point:hover .why-point-icon { border-color: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.why-point-icon svg { width: 15px; height: 15px; stroke: var(--gold); }
.why-point span { font-size: 15px; font-weight: 400; color: var(--text-light); }

.why-closing {
  grid-column: 1 / -1; text-align: center; margin-top: 56px;
  padding: 44px; background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.why-closing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.15; pointer-events: none;
}
.why-closing p {
  font-family: var(--ff-heading); font-size: 22px; font-weight: 400;
  color: var(--text-light); position: relative; z-index: 1;
}
.why-closing .em-gold { color: var(--gold); font-style: italic; }

/* ==================== CONTACT (light) ==================== */
.contact { padding: 140px 0; background: var(--cream); }

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

.contact-left .section-heading { color: var(--text-dark); }
.contact-intro { font-size: 16px; font-weight: 300; color: var(--text-body); line-height: 1.8; margin-bottom: 36px; }

.contact-scenarios { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.contact-scenario { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 300; color: var(--text-body); }
.contact-scenario svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }

.contact-info { display: flex; flex-direction: column; gap: 20px; padding-top: 28px; border-top: 1px solid var(--rule-dark); }
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-info-item a { font-size: 15px; font-weight: 500; color: var(--text-dark); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--gold); }

/* Contact form — elevated dark card on light bg */
.contact-form-card {
  background: var(--navy); padding: 52px;
  box-shadow: 0 24px 60px rgba(10, 22, 32, 0.15);
  position: relative;
}
.contact-form-card::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-title {
  font-family: var(--ff-heading); font-size: 24px; font-weight: 400;
  color: var(--cream); margin-bottom: 6px;
}
.form-sub { font-size: 13px; font-weight: 300; color: var(--text-light-dim); margin-bottom: 36px; }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 9px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--cream); font-family: var(--ff-body);
  font-size: 15px; font-weight: 300;
  transition: all 0.3s var(--ease-out);
  outline: none; border-radius: 0; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
  background: rgba(185, 140, 68, 0.03);
}
.form-group textarea { min-height: 115px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit {
  width: 100%; padding: 17px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.5s var(--ease-out);
  position: relative; overflow: hidden; margin-top: 8px;
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out); z-index: 0;
}
.form-submit span { position: relative; z-index: 1; }
.form-submit:hover::before { transform: scaleX(1); }
.form-submit:hover { color: var(--navy); box-shadow: 0 0 36px var(--gold-glow-strong); }

/* ==================== FOOTER (dark) ==================== */
.footer { padding: 44px 0; background: var(--navy); border-top: 1px solid var(--rule-light); }
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo img { height: 38px; width: 38px; border-radius: 4px; filter: drop-shadow(0 0 5px var(--gold-glow)); }
.footer-copy { font-size: 12px; font-weight: 300; color: var(--text-light-dim); }
.footer-right { display: flex; align-items: center; gap: 28px; }
.footer-right a { font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light-dim); transition: color 0.3s; }
.footer-right a:hover { color: var(--gold); }
.back-to-top {
  width: 40px; height: 40px; border: 1px solid rgba(185, 140, 68, 0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-out); cursor: pointer;
}
.back-to-top:hover { border-color: var(--gold); box-shadow: 0 0 14px var(--gold-glow); }
.back-to-top svg { width: 16px; height: 16px; stroke: var(--gold); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid { gap: 16px; }
  .svc-additional { grid-template-columns: 1fr; }
  .about-grid, .why-content, .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(10, 22, 32, 0.97);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    justify-content: center; align-items: center;
    gap: 26px; z-index: 999;
  }
  .nav-links.active a { font-size: 15px; letter-spacing: 3px; color: var(--text-light) !important; }
  .mobile-toggle { display: flex; }

  .hero-title { font-size: clamp(36px, 9vw, 54px); }
  .hero-actions { flex-direction: column; gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .about-grid, .services-grid, .who-grid,
  .why-content, .contact-grid { grid-template-columns: 1fr; }

  .svc-additional { grid-template-columns: 1fr; }
  .svc-card { padding: 32px 28px; }
  .who-card { padding: 36px 28px; }

  .about-callout { padding: 36px 28px; }
  .contact-form-card { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer .container { flex-direction: column; gap: 20px; text-align: center; }
  .footer-left { flex-direction: column; gap: 10px; }
  .footer-right { gap: 18px; }

  .scroll-indicator { display: none; }
  .hero-arc { width: 550px; height: 550px; bottom: -240px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: clamp(30px, 10vw, 42px); }
  .section-heading { font-size: clamp(28px, 6vw, 40px); }
  .about, .services, .who-we-help, .why-horizon, .contact { padding: 100px 0; }
}