:root {
  --bg: #0b0f0b;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);

  --primary: #003000;
  --accent: #b0b060;
  --brown: #504020;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(176,176,96,.18), transparent 55%),
              radial-gradient(1200px 700px at 80% 20%, rgba(0,48,0,.25), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5,8,5,.55);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0,0,0,.35);
}
.brand__name {
  font-family: Cinzel, serif;
  letter-spacing: .02em;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.brand__meta {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover {
  background: rgba(176,176,96,.14);
  color: rgba(255,255,255,.96);
  transform: translateY(-1px);
}
.nav__cta {
  background: rgba(176,176,96,.18);
  border: 1px solid rgba(176,176,96,.35);
}

.navbtn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
}
.navbtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.82);
  margin: 4px auto;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content:"";
  position: absolute;
  inset: -40px;
  background-image: linear-gradient(115deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.82) 100%),
                    var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 25% 35%, rgba(176,176,96,.12), transparent 60%),
              radial-gradient(900px 500px at 75% 30%, rgba(0,48,0,.18), transparent 62%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0;
}
.hero__kicker {
  color: rgba(255,255,255,.78);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero__title {
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 10px;
}
.hero__lead {
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, rgba(176,176,96,.30), rgba(0,48,0,.22));
  border-color: rgba(176,176,96,.42);
}
.btn--ghost {
  background: rgba(255,255,255,.05);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.badge {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.badge__label { color: var(--muted); font-size: 12px; }
.badge__value { font-weight: 700; letter-spacing: .01em; }

.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.66);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__scroll a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.28);
}

.section {
  padding: 74px 0;
}
.section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: 26px;
}
.section__head h2 {
  font-family: Cinzel, serif;
  margin: 0;
  font-size: 30px;
  letter-spacing: .02em;
}
.section__head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid--2 { grid-template-columns: 1.4fr .9fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card--glass {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-color: rgba(176,176,96,.22);
}
.card h3 {
  margin: 0 0 10px;
  font-family: Cinzel, serif;
  letter-spacing: .02em;
}
.muted { color: var(--muted); margin-left:5px;}
.small { font-size: 12px; }

.stack { display: grid; gap: 18px; }

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 99px;
  display: inline-block;
  background: rgba(176,176,96,.9);
  box-shadow: 0 0 0 4px rgba(176,176,96,.12);
  margin-right: 10px;
  transform: translateY(-1px);
}
.list li { display: flex; align-items: flex-start; gap: 0px; }

.card--media {
  padding: 0;
  overflow: hidden;
}
.card--media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.02);
}
.card__caption {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(176,176,96,.35);
  background: rgba(176,176,96,.10);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 26px 0;
}

.timeline {
  display: grid;
  gap: 14px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.timeline__pin {
  width: 14px;
  height: 14px;
  margin-top: 16px;
  border-radius: 99px;
  background: rgba(176,176,96,.92);
  box-shadow: 0 0 0 6px rgba(176,176,96,.12);
}
.timeline__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px 16px;
}
.timeline__text {
  color: rgba(255,255,255,.84);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery__item {
  grid-column: span 4;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: rgba(0,0,0,.15);
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.03) contrast(1.02);
}
.gallery__item:hover img {
  transform: scale(1.03);
}

.note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px dashed rgba(176,176,96,.32);
  background: rgba(176,176,96,.08);
  color: rgba(255,255,255,.82);
}

.downloads {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}
.dl {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}
.footer__title {
  font-family: Cinzel, serif;
  font-weight: 700;
}
.footer__meta { color: var(--muted); font-size: 12px; }
.footer__top {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}
.lightbox.is-open { display: grid; place-items: center; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}
.lightbox__content {
  position: relative;
  width: min(1100px, calc(100% - 24px));
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
  background: rgba(15,18,15,.75);
}
.lightbox__img {
  width: 100%;
  height: min(74vh, 760px);
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.lightbox__caption {
  padding: 12px 14px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.10);
}
.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

@media (max-width: 980px) {
  .grid--2 { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .gallery__item { grid-column: span 6; }
  .nav { display: none; }
  .navbtn { display: inline-block; }
  .topbar.is-open .nav {
    display: grid;
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    background: rgba(10,12,10,.88);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 10px;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .gallery__item { grid-column: span 12; }
  .hero__badges { gap: 10px; }
  .badge { width: 100%; }
}
