:root {
  --bg: #0c111c;
  --bg-soft: #111827;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --line: rgba(255,255,255,0.09);
  --text: #eef1f8;
  --muted: #7a8ba8;
  --accent: #c9a55a;
  --accent-soft: rgba(201,165,90,0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(201,165,90,0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(89,116,255,0.13), transparent 22%),
    linear-gradient(180deg, #0a0f19 0%, #0d1421 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; font-weight: 300; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; }
h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); max-width: 22ch; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); max-width: 14ch; }
h3 { font-size: 1.1rem; font-weight: 500; }
ul { margin: 0; padding-left: 1.2rem; }
li { color: var(--muted); margin: 0.5rem 0; font-weight: 300; }

.container {
  width: min(calc(100% - 6rem), var(--container));
  margin: 0 auto;
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 2.5rem), var(--container)); }
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.glow-1 { top: 3rem; left: -8rem; background: rgba(88, 125, 255, 0.16); }
.glow-2 { bottom: 4rem; right: -10rem; background: rgba(201, 165, 90, 0.12); }

.site-header, .site-footer, main { position: relative; z-index: 1; }

/* ── HEADER ── */
.site-header {
  position: relative;
  top: 0;
  background: rgba(6, 9, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 0 3rem;
}
.inner-header { position: relative; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 62px;
}

/* ── LOGO ── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo { display: block; flex-shrink: 0; }
.brand-text { line-height: 1; }
.brand-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--text);
}
.brand-text small {
  display: block;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-sep {
  width: 1px;
  height: 16px;
  background: var(--line);
  margin: 0 5px;
}
.nav-cta {
  background: var(--accent-soft) !important;
  border: 1px solid rgba(201,165,90,0.28);
  color: var(--accent) !important;
  font-weight: 500 !important;
  margin-left: 6px;
  padding: 0 16px !important;
}
.nav-cta:hover {
  background: rgba(201,165,90,0.24) !important;
  color: #e0bf7a !important;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-name {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.0;
  margin: 0;
  max-width: none;
  color: var(--text);
}
.hero-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
  max-width: 44ch;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-right {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}
.hero-stat-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.hero-stat strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.hero-divider {
  height: 1px;
  background: var(--line);
  margin: 1rem 0;
}
.hero-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem !important;
}
.hero-address {
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-address span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero-address strong {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.hero-identity { display: flex; flex-direction: column; gap: 1.2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, #edd898, #c9a045);
  color: #16110a;
  box-shadow: 0 16px 32px rgba(201,165,90,0.2);
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.address-box {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.address-box span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
}
.profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.profile-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
}
.profile-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.profile-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.profile-divider {
  height: 1px;
  background: var(--line);
  margin: 0.9rem 0;
}
.profile-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.9rem !important;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}
.profile-tags span {
  font-size: 11px;
  font-weight: 400;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}
.feature-list.compact li { margin: 0.25rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.stats-grid article,
.timeline-item,
.service-card,
.contact-card,
.highlight-grid > div {
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.stats-grid strong, .highlight-grid strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.stats-grid span { color: var(--muted); font-size: 0.88rem; font-weight: 300; }

.section { padding: 2.4rem 0 3.2rem; }
.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}
.section-head.narrow { margin-bottom: 1.6rem; }
.section-note { color: var(--muted); font-size: 0.88rem; font-weight: 300; }
.card-grid.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card p, .timeline-item p, .highlight-grid p { margin-bottom: 0; }
.process-wrap { padding-top: 1rem; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.section-kicker, .card-label, .section-note, .legal-intro, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}
.section-note { color: var(--muted); font-size: 0.88rem; font-weight: 300; letter-spacing: 0.01em; }
.lead {
  font-size: 1rem;
  font-weight: 300;
  max-width: 60ch;
}
.highlight { padding: 1.6rem; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-detail {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-detail a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.15s;
}
.contact-detail a:hover { color: var(--accent); }
.contact-detail strong {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}
.contact-card { padding: 1.8rem; }
.contact-form { margin-top: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0.9rem;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122,139,168,0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,165,90,0.45);
  background: rgba(255,255,255,0.06);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a8ba8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
.form-group select option { background: #0d1421; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-submit { width: 100%; margin-top: 0.4rem; }

/* ── FOOTER ── */
.site-footer {
  background: #050810;
  border-top: 1px solid var(--line);
  padding: 0 3rem;
}
.footer-inner {
  padding: 2.4rem 0 1.8rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand-col { display: flex; flex-direction: column; gap: 0; }
.footer-tagline {
  font-size: 11px;
  font-weight: 300;
  color: rgba(122,139,168,0.55);
  margin-top: 10px;
  letter-spacing: 0.03em;
}
.footer-cols {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,165,90,0.6);
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  gap: 1rem;
}
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(122,139,168,0.4);
  letter-spacing: 0.02em;
}
.footer-address {
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(122,139,168,0.35);
  text-align: right;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 4rem 0 5rem;
  max-width: 860px;
}
.legal-page h1 { max-width: none; font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-page h2 {
  max-width: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.legal-page section {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-page a { color: #e0bf7a; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero,
  .two-col,
  .contact-section,
  .timeline,
  .card-grid.four,
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero { grid-template-columns: 1fr; }
  h1 { max-width: 12ch; }
}

@media (max-width: 720px) {
  .nav { height: auto; padding: 0.9rem 0; flex-wrap: wrap; gap: 0.8rem; }
  .nav-links { gap: 0.5rem; flex-wrap: wrap; }
  .section-head,
  .footer-top,
  .footer-bottom,
  .two-col,
  .contact-section,
  .timeline,
  .card-grid.four,
  .highlight-grid,
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-cols { gap: 1.5rem; }
  .hero { padding-top: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
