/* Elite Force | Intellectual property of Sidedoor Digital. */

:root {
  --black: #050505;
  --vault: #11100d;
  --vault-2: #1a1813;
  --gold: #b9975b;
  --gold-light: #e2cb96;
  --gold-deep: #8a6c3a;
  --ivory: #efe8da;
  --stone: #a39b8c;
  --line: rgba(185, 151, 91, 0.24);
  --line-soft: rgba(239, 232, 218, 0.08);

  --display: "Marcellus", "Trajan Pro", "Times New Roman", serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(88px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--ivory); }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 12px; z-index: 100;
  background: var(--gold); color: var(--black); padding: 10px 16px; text-decoration: none;
}
.skip:focus { left: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* Type scale: 17 / 20 / 26 / 36 / 52 / 76 */
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; letter-spacing: 0.01em; color: var(--ivory); }
h1 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1.08; }
h2 { font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; }
h3 { font-size: clamp(21px, 1.8vw, 26px); line-height: 1.25; }
p { margin: 0 0 1em; max-width: 64ch; }
.lead { font-size: clamp(18px, 1.5vw, 20px); color: var(--stone); line-height: 1.7; }

/* Sections */
.section { padding: var(--section) 0; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 20px; }
.process { background: var(--vault); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  font-family: var(--body); font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-gold { background: linear-gradient(180deg, #d4b57a 0%, var(--gold) 55%, #a0803f 100%); color: #140f06; border-color: #d4b57a; }
.btn-gold:hover { background: var(--gold-light); color: #140f06; }
.btn-line { background: transparent; color: var(--gold-light); }
.btn-line:hover { background: rgba(185, 151, 91, 0.12); color: var(--ivory); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { background: rgba(5, 5, 5, 0.92); backdrop-filter: blur(10px); border-bottom-color: var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand img { width: 168px; transition: opacity .3s ease; }
@media (min-width: 981px) { .has-hero .site-header:not(.is-solid) .brand img { opacity: 0; } }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ivory); text-decoration: none; font-size: 15px; opacity: .82; }
.nav a:hover { opacity: 1; color: var(--gold-light); }
.nav .btn { min-height: 42px; padding: 0 20px; font-size: 14px; opacity: 1; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--ivory); height: 42px; padding: 0 16px; font: 600 14px var(--body); cursor: pointer; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(5,5,5,.98); border-bottom: 1px solid var(--line-soft);
    padding: 8px var(--gutter) 24px; display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
  .nav .btn { margin-top: 18px; width: 100%; }
  .brand img { width: 140px; }
}

/* Footer */
.site-footer { border-top: 1px solid var(--line-soft); padding: 64px 0 40px; color: var(--stone); font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid img { width: 200px; margin-bottom: 18px; }
.footer-grid h2 { font-size: 20px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--stone); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 14px; }
.footer-base a { color: var(--stone); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
