/* ================================================================
   Lucky Jet - main.css
   Tokens · Reset · Typography · Layout utilities · Components
   ================================================================ */

/* ---- tokens ---- */
:root {
  --void:     #0B1020;
  --panel:    #141B33;
  --panel-2:  #1B2444;
  --line:     #2C3760;
  --ink:      #EEF2FF;
  --dim:      #9AA3C2;
  --flame:    #FF6B2C;
  --lift:     #3DE3A6;
  --gold:     #FFC542;
  --display:  "Oswald","Roboto Condensed","PT Sans Narrow","Arial Narrow",system-ui,sans-serif;
  --body:     system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --mono:     ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,"Liberation Mono",monospace;
  --r:        14px;
  --wrap:     1160px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font: 400 17px/1.65 var(--body);
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--lift); text-underline-offset: 3px; }
a:hover { color: #fff; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: .01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---- utilities ---- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 18px;
}

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---- skip link ---- */
.skip {
  position: absolute;
  left: 12px; top: -70px;
  z-index: 99;
  background: var(--gold);
  color: #0B1020;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  text-decoration: none;
  transition: top .15s;
}
.skip:focus { top: 0; color: #0B1020; }

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0; z-index: 40;
  background: rgba(11,16,32,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.hbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand-name b { color: var(--flame); font-weight: 600; }

.mainnav { margin-left: auto; }

.mainnav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}

.mainnav a {
  display: block;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--dim);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.mainnav a:hover { color: var(--ink); background: var(--panel-2); }
.mainnav a[aria-current="page"] { color: var(--flame); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 13px 26px;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--flame); color: #160800; }
.btn-primary:hover { background: #ff8149; color: #160800; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--panel); }
.btn-ghost:hover { border-color: var(--lift); color: var(--ink); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  margin-top: 56px;
  padding: 44px 0 26px;
}

.fcols {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.fcols h2 {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
  margin-bottom: 12px;
}

.fcols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.fcols a { color: var(--ink); text-decoration: none; font-size: 15.5px; }
.fcols a:hover { color: var(--lift); text-decoration: underline; }
.fcols address { font-style: normal; font-size: 15px; color: var(--dim); margin-top: 9px; }

.age {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border: 1px solid var(--flame);
  color: var(--flame);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
}

.legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--dim); }
.legal p { margin-bottom: .7em; }

/* ---- responsive ---- */
@media (min-width: 700px) {
  .fcols { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .fcols { grid-template-columns: 1.2fr 1fr 1fr 1.4fr; }
}
@media (max-width: 820px) {
  .mainnav { display: none; }
  .hbar { justify-content: space-between; }
}
