@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #080d1a;
  --bg2: #0c1225;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.60);
  --muted2: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.08);
  --gold: #C8A84B;
  --gold-dim: rgba(200,168,75,0.12);
  --glow: rgba(200,168,75,0.25);
  --grad: linear-gradient(135deg, #C8A84B 0%, #FFE09A 100%);
  --max-w: 1160px;
  --pad: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,13,26,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}
.nav-logo-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
}
.nav-logo-name span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover  { color: #fff; }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-lang { display: flex; gap: 8px; align-items: center; }
.nav-lang a { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted2); text-decoration: none; text-transform: uppercase; transition: color 0.15s; }
.nav-lang a:hover { color: #fff; }
.nav-lang-active { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }

.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  background: var(--grad);
  color: #0a0f1e;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/sky-stars.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.85;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,13,26,0.92) 0%,
    rgba(8,13,26,0.75) 45%,
    rgba(8,13,26,0.15) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad) 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 40px rgba(200,168,75,0.3));
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── BUTTONS ── */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
}
.btn:hover  { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold    { background: var(--grad); color: #0a0f1e; border: 2px solid transparent; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid rgba(200,168,75,0.5); }
.btn-outline:hover { background: var(--gold-dim); opacity: 1; }

/* ── SCROLL INDICATOR ── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll span { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.75; }
}

/* ── LAYOUT ── */
.section    { max-width: var(--max-w); margin: 0 auto; padding: 100px var(--pad); }
.section-sm { max-width: var(--max-w); margin: 0 auto; padding: 64px var(--pad); }

hr.divider { border: none; border-top: 1px solid var(--border); }

.section-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── HEADINGS ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }

.lead-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 56px;
}

/* ── TWO-COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-narrow { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 60px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: rgba(200,168,75,0.05); }

.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; margin-top: 48px; }

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 1px solid var(--border); }

.process-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 3px;
  text-transform: uppercase;
}

.process-body h3 { font-size: 17px; margin-bottom: 8px; }
.process-body p  { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── AUDIENCE CARDS ── */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.audience-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}
.audience-card:hover {
  border-color: rgba(200,168,75,0.35);
  background: var(--gold-dim);
}

.audience-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.audience-card h3 { font-size: 16px; margin-bottom: 8px; }
.audience-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PHILOSOPHY ── */
.philosophy-block {
  border-left: 2px solid var(--gold);
  padding: 28px 36px;
  background: rgba(200,168,75,0.04);
  border-radius: 0 12px 12px 0;
  margin: 40px 0;
}
.philosophy-block p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
}
.philosophy-block cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* ── BOUNDARY ── */
.boundary-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  margin-top: 48px;
}
.boundary-box h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 18px; }
.boundary-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.boundary-box li { font-size: 15px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.55; }
.boundary-box li::before { content: '—'; position: absolute; left: 0; color: var(--border); }

/* ── PROSE ── */
.prose p { font-size: 16px; line-height: 1.78; color: var(--muted); margin-bottom: 18px; max-width: 640px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #fff; font-weight: 700; }

/* ── TAG LIST ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  border: 1px solid rgba(200,168,75,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(200,168,75,0.8);
  background: rgba(200,168,75,0.06);
}

/* ── CTA FINAL ── */
.cta-final {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final .section { text-align: center; position: relative; z-index: 1; }
.cta-final h2 { max-width: 640px; margin: 0 auto 20px; }
.cta-final .lead-text { margin: 0 auto 44px; text-align: center; }
.cta-final .cta-row { justify-content: center; }

/* ── PAGE HERO ── */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad) 80px;
}
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 720px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(200,168,75,0.5);
  background: rgba(200,168,75,0.04);
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.form-field select option { background: #0c1225; color: #fff; }

.form-submit { margin-top: 8px; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info-item h3 { font-size: 14px; font-weight: 700; color: var(--muted2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-info-item p, .contact-info-item a { font-size: 16px; color: var(--muted); text-decoration: none; transition: color 0.15s; line-height: 1.65; }
.contact-info-item a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--pad) 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-brand-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-brand-logo span { font-size: 13px; font-weight: 700; color: var(--muted); }
.footer-brand p { font-size: 13px; color: var(--muted2); line-height: 1.65; max-width: 320px; }

.footer-links-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer-links-col a { font-size: 13px; color: var(--muted2); text-decoration: none; transition: color 0.15s; }
.footer-links-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted2);
}
.footer-bottom a { color: var(--muted2); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --pad: 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-bg::after { background: linear-gradient(to bottom, rgba(8,13,26,0.92) 0%, rgba(8,13,26,0.6) 100%); }
  .two-col, .two-col-narrow { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links-col { align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .btn { text-align: center; width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
