/* ============================================================
   Mil.Press — static site stylesheet
   Edit colours, type and spacing in the :root block below.
   ============================================================ */

:root {
  --paper:        #f6f2ea;   /* base background            */
  --paper-card:   #fffdf8;   /* cards, panels              */
  --paper-alt:    #efe9dd;   /* alternating section band   */
  --ink:          #1a1a18;   /* headings, rules            */
  --ink-body:     #3c3a33;   /* body copy                  */
  --ink-soft:     #4c4a43;   /* card copy                  */
  --ink-muted:    #6b6659;   /* labels, captions           */
  --red:          #c02b20;   /* brand accent               */
  --red-dark:     #a12218;
  --rule:         #cfc8b8;   /* hairline                   */
  --rule-soft:    #ddd6c6;
  --serif:        'Old Standard TT', Georgia, serif;   /* display */
  --serif-text:   'PT Serif', Georgia, serif;          /* body    */
  --sans:         'Oswald', 'Arial Narrow', sans-serif; /* labels */
  --wrap:         1200px;    /* content max width          */
  --gutter:       clamp(18px, 4vw, 40px);
  --section-pad:  clamp(50px, 6.5vw, 88px);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }

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

/* ---------- top strip ---------- */
.strip {
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.strip .wrap { padding-top: 9px; padding-bottom: 9px; }

/* ---------- hero ---------- */
.hero { position: relative; background: #161b22; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
}
@media (max-width: 900px) { .hero__bg { object-position: 30% 32%; } }
@media (max-width: 560px) { .hero__bg { object-position: 27% 28%; } }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,16,26,.58) 0%, rgba(10,16,26,.40) 45%, rgba(10,16,26,.72) 100%);
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(70px, 13vw, 150px) var(--gutter) clamp(56px, 10vw, 120px);
  min-height: min(84vh, 760px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: clamp(24px, 3.6vw, 42px);
}
.hero__logo { width: 100%; max-width: min(620px, 86%); height: auto; }
.hero__slogan {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 4.4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  text-wrap: balance;
}
.hero__cue {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: clamp(6px, 1.6vw, 18px);
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 6px;
}
.hero__cue:hover { color: #ff8d82; border-color: #ff8d82; }

/* ---------- navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,234,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink);
}
.nav__bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  min-height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__links {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 3.4vw, 46px);
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.nav__burger {
  display: none; align-items: center; gap: 9px;
  margin: 8px 0; padding: 9px 14px;
  background: none; border: 1px solid var(--ink); color: var(--ink);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
}
.nav__burger span { display: flex; flex-direction: column; gap: 3.5px; width: 15px; }
.nav__burger span i { display: block; height: 1.5px; background: var(--ink); }
.nav__tel { display: none; font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: .08em; color: var(--red); white-space: nowrap; }
.nav__drawer { display: none; border-top: 1px solid var(--rule); padding: 10px var(--gutter) 20px; }
.nav__drawer.is-open { display: flex; flex-direction: column; }
.nav__drawer a {
  padding: 13px 0; border-bottom: 1px solid var(--rule-soft);
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav__drawer .nav__cta {
  margin-top: 16px; text-align: center; padding: 13px;
  background: var(--red); color: #fff; border: 0;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger, .nav__tel { display: flex; }
  .nav__burger { flex: 1; justify-content: center; }
}

/* ---------- sections ---------- */
.section { border-bottom: 1px solid var(--rule); scroll-margin-top: 60px; }
.section--alt { background: var(--paper-alt); }
.section > .wrap { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.section__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(27px, 3.8vw, 42px);
  line-height: 1.1;
}
.section__num {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted);
}
.section__lead {
  margin: 18px 0 0; max-width: 64ch;
  font-size: clamp(15px, 1.6vw, 16.5px); line-height: 1.7; color: var(--ink-body);
  text-wrap: pretty;
}

/* ---------- statement block ---------- */
.statement > .wrap { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px); }
.statement__panel {
  max-width: 940px; margin: 0 auto;
  padding: clamp(30px, 4.4vw, 56px) clamp(24px, 4vw, 64px);
  background: var(--paper-card);
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
}
.statement__panel p {
  margin: 0; text-align: center; text-wrap: pretty;
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 26px); line-height: 1.5; color: #24231f;
}

/* ---------- stats ---------- */
.stats > .wrap {
  padding-top: clamp(26px, 3.6vw, 42px); padding-bottom: clamp(26px, 3.6vw, 42px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(20px, 4vw, 48px);
}
.stat { text-align: center; }
.stat__n {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1;
}
.stat__n em { font-style: normal; color: var(--red); }
.stat__l {
  margin-top: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted);
}

/* ---------- outlet grid ---------- */
.outlets {
  margin-top: clamp(26px, 3.6vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.outlet {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(26px, 3vw, 38px); min-height: 225px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper-card); color: var(--ink);
}
.outlet:hover { background: #fbf7ee; color: var(--ink); }
.outlet__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.kicker {
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
}
.outlet__arrow { font-size: 15px; line-height: 1; color: var(--red); }
.outlet__logo { width: 100%; max-width: 260px; height: auto; }
.outlet__desc { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }
.outlet--note {
  display: flex; align-items: flex-end; min-height: 225px;
  padding: clamp(22px, 3vw, 30px); background: #f0ebdf;
  font-style: italic; font-size: 15px; line-height: 1.65; color: #55524b; text-wrap: pretty;
}

/* ---------- partner packages ---------- */
.packages {
  margin-top: clamp(26px, 3.6vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 16px;
}
.package {
  display: flex; flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  background: var(--paper-card); border: 1px solid var(--rule);
}
.package--featured { border-color: var(--red); }
.package__top { padding-bottom: 14px; border-bottom: 1px solid var(--rule-soft); }
.package--featured .kicker { color: var(--red); }
.package h3 {
  margin: 16px 0 0;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(21px, 2.3vw, 26px); line-height: 1.15;
}
.package p { margin: 14px 0 0; flex: 1; font-size: 15px; line-height: 1.65; color: var(--ink-soft); text-wrap: pretty; }
.link-pdf {
  margin-top: 24px; align-self: flex-start;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--red); padding-bottom: 4px;
}
.footnote { margin: 18px 0 0; font-style: italic; font-size: 13.5px; line-height: 1.65; color: var(--ink-muted); text-wrap: pretty; }
.footnote a { color: var(--ink-soft); border-bottom: 1px solid #b7b0a0; }

.promo {
  margin-top: clamp(24px, 3.2vw, 36px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(24px, 4vw, 48px); align-items: center;
  padding: clamp(24px, 3.4vw, 38px);
  background: var(--ink); color: var(--paper);
}
.promo h3 {
  margin: 0; color: var(--paper);
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(22px, 2.7vw, 31px); line-height: 1.15; text-wrap: balance;
}
.promo p { margin: 0; font-size: 15.5px; line-height: 1.7; color: #d8d2c6; text-wrap: pretty; }
.btn {
  display: inline-flex; align-items: center;
  margin-top: 20px; padding: 12px 22px;
  background: var(--red); color: #fff;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.btn:hover { background: var(--red-dark); color: #fff; }

/* ---------- timeline ---------- */
.timeline { margin-top: clamp(26px, 3.6vw, 44px); max-width: 880px; }
.event {
  display: grid; grid-template-columns: clamp(62px, 11vw, 120px) 1fr;
  gap: clamp(16px, 3vw, 34px);
  padding: clamp(16px, 2.2vw, 24px) 0;
  border-top: 1px solid var(--rule-soft);
}
.event:last-child { border-bottom: 1px solid var(--rule-soft); }
.event__year {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(18px, 2vw, 23px); line-height: 1.2; color: var(--red);
}
.event p { margin: 0; font-size: 15.5px; line-height: 1.72; color: var(--ink-body); text-wrap: pretty; }
.event a { border-bottom: 1px solid var(--red); }

/* ---------- contacts ---------- */
.contacts {
  margin-top: clamp(26px, 3.6vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 16px;
}
.contact { padding: clamp(22px, 3vw, 30px); background: var(--paper-card); border: 1px solid var(--rule); }
.contact__label { font-family: var(--sans); font-size: clamp(9.5px, 1.05vw, 11px); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-muted); }
.contact__value {
  display: inline-block; margin-top: 18px;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px); word-break: break-word;
}

/* ---------- footer ---------- */
.footer { border-top: 3px double var(--ink); }
.footer .wrap {
  padding-top: 26px; padding-bottom: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px;
}
.footer__mark { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: 0.06em; color: var(--red); }
.footer__mark i { font-style: normal; font-size: 11px; }
.footer__note { font-style: italic; font-size: 13.5px; color: var(--ink-muted); }

@media (max-width: 900px) {
  .hero__inner { min-height: 100svh; }
  .nav { transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  body.is-scrolled .nav { transform: none; opacity: 1; pointer-events: auto; }
}
