:root {
  --ink: #14171f;
  --muted: #5a6270;
  --accent: #f5a623;
  --accent-hover: #ffb733;
  --bg: #ffffff;
  --panel: #f6f8fb;
  --border: #e6e9ef;
  --dark-1: #0a1526;
  --dark-2: #12213f;
  --dark-3: #16345f;
  --on-dark: #f5f7fa;
  --on-dark-muted: #aab4c5;
  --max: 1000px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-wrap: break-word;
}

h1, h2, h3 { line-height: 1.15; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color .15s ease, transform .15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #101828;
  padding: 0.8rem 1.6rem;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-nav {
  background: var(--accent);
  color: #101828;
  padding: 0.5rem 1.1rem;
}
.btn-nav:hover { background: var(--accent-hover); }

/* sticky translucent nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 21, 38, 0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--on-dark);
  font-size: 1.05rem;
}
.wordmark span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links > a:not(.btn) {
  text-decoration: none;
  color: var(--on-dark-muted);
  font-weight: 500;
}
.nav-links > a:not(.btn):hover { color: var(--on-dark); }

/* hero */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--on-dark);
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(160deg, var(--dark-1) 0%, var(--dark-2) 55%, var(--dark-3) 100%);
}
.hero-inner { max-width: 820px; }
.kicker {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  overflow-wrap: break-word;
}
.hero .tagline {
  margin: 1rem 0 2rem;
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  color: var(--on-dark-muted);
}
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-dark-muted);
  display: inline-flex;
}
.scroll-cue:hover { color: var(--on-dark); }

/* content sections */
.section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.section-alt { background: var(--panel); }
.section-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}
.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; margin: 0; }

/* service cards */
.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.section-alt .card { background: var(--bg); }
.card h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }
.card-soon { border-color: var(--accent); }
.badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(245, 166, 35, 0.15);
  color: #a35f00;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.contact { text-align: center; }
.contact .lead { margin: 0 auto 1.75rem; }
.contact .section-kicker { text-align: center; }

/* footer */
.site-footer {
  background: var(--dark-1);
  color: var(--on-dark-muted);
  padding: 3rem 0;
  font-size: 0.92rem;
}
.site-footer p { margin: 0.25rem 0; }
.foot-name { color: var(--on-dark); font-weight: 700; letter-spacing: 0.03em; }
.foot-copy { margin-top: 0.75rem; font-size: 0.85rem; }

@media (max-width: 560px) {
  .nav-links { gap: 0.9rem; }
  .nav-links > a:not(.btn) { display: none; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 80vh; }
}
