:root {
  --ink: #0b1220;
  --ink-2: #162238;
  --muted: #657083;
  --line: #dfe4ea;
  --paper: #f7f8fa;
  --white: #ffffff;
  --accent: #f5a623;
  --accent-2: #ffbd4a;
  --max: 1180px;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0; left: 0; right: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 142px; display: block; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.nav a:not(.nav-cta) { opacity: .82; transition: opacity .2s; }
.nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; font-size: 27px; }

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(245,166,35,.20), transparent 25%),
    linear-gradient(115deg, #07101e 0%, #0d1728 52%, #14243b 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, #000, transparent 85%);
}
.hero-route { position: absolute; border: 1px solid rgba(245,166,35,.38); border-radius: 50%; transform: rotate(-17deg); }
.route-one { width: 720px; height: 280px; right: -100px; top: 170px; }
.route-two { width: 800px; height: 330px; right: -180px; top: 255px; border-color: rgba(255,255,255,.13); }
.hero-inner { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: center; gap: 60px; padding-top: 70px; position: relative; }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 17px; color: var(--accent); font-size: 12px; letter-spacing: .22em; font-weight: 800; }
.eyebrow.dark { color: #a06a0c; }
h1 { font-size: clamp(48px, 6.2vw, 82px); line-height: .98; letter-spacing: -.055em; margin: 0 0 28px; max-width: 820px; }
h1 span { color: var(--accent); }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions, .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 21px; border-radius: 999px; font-size: 14px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.55); }
.btn-outline { border: 1px solid var(--ink); }
.hero-card { align-self: center; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); box-shadow: 0 24px 80px rgba(0,0,0,.18); }
.route-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 25px; font-weight: 900; margin-bottom: 65px; }
.hero-card strong { display: block; font-size: 18px; letter-spacing: .08em; }
.hero-card span { display: block; margin-top: 4px; color: var(--accent); font-weight: 750; }
.hero-card small { display: block; margin-top: 18px; color: rgba(255,255,255,.58); line-height: 1.55; }
.scroll-hint { position: absolute; left: 50%; bottom: 24px; color: rgba(255,255,255,.5); font-size: 24px; }

.section { padding: 115px 0; }
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.03; letter-spacing: -.045em; margin: 0; }
.intro-text { padding-top: 33px; color: var(--muted); font-size: 18px; }
.intro-text p { margin: 0 0 18px; }

.services { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading > p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 350px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.service-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.number { color: var(--accent); font-weight: 850; font-size: 13px; letter-spacing: .08em; }
.service-card h3 { font-size: 25px; line-height: 1.15; margin: 52px 0 15px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); }
.featured p { color: rgba(255,255,255,.66); }
.line { margin-top: auto; margin-bottom: 17px; height: 1px; background: var(--line); }
.featured .line { background: rgba(255,255,255,.15); }
.tag { font-size: 11px; font-weight: 850; letter-spacing: .18em; color: var(--muted); }
.featured .tag { color: var(--accent); }

.statement { padding: 120px 0; background: var(--accent); }
.statement-inner { text-align: center; }
.statement .eyebrow { color: var(--ink); }
.statement h2 { font-size: clamp(42px, 6vw, 76px); }
.statement h2 span { opacity: .45; }
.text-link { display: inline-flex; gap: 10px; margin-top: 30px; font-weight: 850; border-bottom: 2px solid var(--ink); padding-bottom: 5px; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.contact-lead { color: var(--muted); font-size: 18px; max-width: 560px; margin: 25px 0 0; }
.contact-box { border-top: 1px solid var(--ink); }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-row span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.contact-row strong, .contact-row a { font-size: 17px; }
.contact-row a { font-weight: 800; }
.contact-row a:hover { color: #a06a0c; }

.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 26px 0; font-size: 12px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer img { width: 110px; }
.footer a { color: #fff; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 74px; left: 24px; right: 24px; padding: 18px; flex-direction: column; align-items: stretch; background: rgba(7,16,30,.98); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 100px; }
  .hero-card { display: none; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
}

@media (max-width: 600px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .nav-wrap { height: 72px; }
  .brand img { width: 125px; }
  .hero, .hero-inner { min-height: 690px; }
  h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .btn { width: 100%; }
  .section { padding: 80px 0; }
  .statement { padding: 85px 0; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
