:root {
  --cream:    #faf6ed;
  --sand:     #f2e9c8;
  --sand2:    #e8ddb0;
  --dark:     #1a1a14;
  --olive:    #3d3d28;
  --moss:     #5a6040;
  --text:     #2a2a1e;
  --muted:    #7a7660;
  --border:   rgba(42,42,30,0.12);
  --lime:     #b4dc50;
  --lime-dim: rgba(180,220,80,0.6);
  --tactical: #0f1208;
  --header-h: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--dark);
}

main { padding-top: var(--header-h); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

/* ─── BUTTONS — all self-contained ─── */
.btn-dark,
.btn-outline-d,
.btn-cta,
.btn-airsoft,
.btn-airsoft-ghost,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.btn-dark {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}
.btn-dark:hover { opacity: 0.82; }

.btn-outline-d {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-d:hover { background: var(--dark); color: #ffffff; }

.btn-cta {
  background: var(--olive);
  color: #ffffff;
  border-color: var(--olive);
}
.btn-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-airsoft {
  background: var(--lime);
  color: #0f1208;
  border-color: var(--lime);
  font-weight: 700;
}
.btn-airsoft:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-airsoft-ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.2);
}
.btn-airsoft-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}

.btn-submit {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
  font-size: 11px;
  padding: 14px 32px;
  width: 100%;
  min-height: 48px;
}
.btn-submit:hover { opacity: 0.85; }

/* ─── HEADER / NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: var(--header-h);
  background: rgba(250,246,237,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark);
}
.logo-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.logo-name strong { font-weight: 700; text-transform: uppercase; }
.logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links a:hover { background: rgba(42,42,30,0.05); border-color: var(--border); }
.nav-links a.active { border-color: var(--border); background: rgba(42,42,30,0.04); }

.nav-cta-wrap .btn-dark {
  font-size: 10px;
  padding: 8px 18px;
  min-height: 36px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 190;
  overflow-y: auto;
  padding: 32px 28px 40px;
}
.mobile-overlay.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-links a:hover { color: var(--olive); }
.mobile-nav-links a.active { color: var(--olive); font-weight: 600; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 12px 0; }
.mobile-cta-wrap { margin-top: 28px; }
.mobile-cta-wrap .btn-dark { width: 100%; justify-content: center; font-size: 11px; min-height: 48px; }

/* ─── HERO SPLIT ─── */
.link-olive {
  color: var(--olive);
  text-decoration: underline;
}
.link-olive:hover { color: var(--dark); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}

.hero-img-side {
  position: relative;
  overflow: hidden;
  background: var(--moss);
}
.hero-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.18) 100%);
}

.hero-text-side {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 52px 44px;
  position: relative;
}
.hero-text-top { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 24px;
  animation: heroIn 0.9s 0.3s ease both;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 300px;
  margin-bottom: 32px;
  animation: heroIn 0.9s 0.5s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroIn 0.9s 0.65s ease both;
}

.hero-badge {
  position: absolute;
  bottom: 44px;
  left: 52px;
  background: rgba(42,42,30,0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 16px;
}
.hero-badge-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.hero-badge-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  color: var(--dark);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── MANIFESTO / QUOTE ─── */
.manifesto {
  padding: 80px 36px;
  border-bottom: 1px solid var(--border);
}
.manifesto-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.manifesto-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: var(--dark);
  max-width: 880px;
}
.manifesto-text em { font-style: italic; color: var(--moss); }

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 520px;
  overflow: hidden;
}
.photo-half {
  overflow: hidden;
  position: relative;
}
.photo-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.photo-half:hover img { transform: scale(1.04); }
.photo-half-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

/* ─── AUTUMN FEST TACTICAL SECTION ─── */
.tactical-section {
  background: var(--tactical);
  color: #f0ede0;
  overflow: hidden;
  position: relative;
}

.tactical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.tactical-visual {
  position: relative;
  overflow: hidden;
  background: #0f0f0a;
}
.tactical-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  display: block;
}

.tactical-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(80,100,60,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 30%, rgba(40,60,30,0.4) 0%, transparent 55%),
    #0f1208;
}
.tactical-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120,160,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,80,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.18;
  pointer-events: none;
}
.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: rgba(180,220,100,0.7);
}
.crosshair::before { top: 50%; left: 0; right: 0; height: 1px; }
.crosshair::after  { left: 50%; top: 0; bottom: 0; width: 1px; }
.crosshair-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(180,220,100,0.18);
}
.crosshair-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(180,220,100,0.25);
}

.tactical-year {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  letter-spacing: -5px;
}

.tactical-date-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(180,220,80,0.1);
  border: 1px solid rgba(180,220,80,0.25);
  border-radius: 3px;
  padding: 12px 18px;
  backdrop-filter: blur(8px);
}
.tdb-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(180,220,80,0.65);
  margin-bottom: 4px;
}
.tdb-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  color: #e8f0d0;
  margin-bottom: 4px;
}
.tdb-loc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.tactical-content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.tactical-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(180,220,80,0.75);
  margin-bottom: 20px;
}
.tactical-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(180,220,80,0.5);
}

.tactical-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  color: #f0ede0;
}
.tactical-title em {
  font-style: italic;
  color: rgba(180,220,80,0.9);
}

.tactical-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  margin-bottom: 36px;
}

/* programme timeline */
.programme {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prog-time {
  font-size: 11px;
  color: rgba(180,220,80,0.65);
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 72px;
  padding-top: 2px;
}
.prog-name {
  font-size: 13px;
  font-weight: 500;
  color: #e8e4d8;
  margin-bottom: 3px;
}
.prog-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.tactical-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.spots-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.spots-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.spots-fill {
  height: 100%;
  width: 72%;
  background: rgba(180,220,80,0.65);
  border-radius: 2px;
  animation: fillBar 1.5s 1s ease both;
}
@keyframes fillBar {
  from { width: 0; }
  to   { width: 72%; }
}
.spots-text {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.spots-num {
  color: rgba(180,220,80,0.75);
  font-weight: 600;
}

/* ─── FEATURES / CARDS SECTION ─── */
.features-section {
  padding: 80px 36px;
  background: var(--cream);
}
.features-header {
  margin-bottom: 52px;
  max-width: 540px;
}
.features-header .section-title { margin-top: 12px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #ffffff;
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--moss);
}
.feature-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}
.feature-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── AIRSOFT INTRO (SPLIT) ─── */
.airsoft-intro-section {
  padding: 80px 36px;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.airsoft-intro-text .section-title { margin-top: 12px; margin-bottom: 20px; }
.airsoft-intro-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.airsoft-intro-photo {
  height: 440px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.airsoft-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.airsoft-intro-photo:hover img { transform: scale(1.03); }

/* ─── CONTACT SECTION (HOMEPAGE INLINE) ─── */
.contact-section {
  padding: 80px 36px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info .section-title { margin-top: 12px; margin-bottom: 20px; }
.contact-info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--olive); }
.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--sand);
  border-radius: 3px;
  border: 1px solid var(--border);
}
.venue-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.venue-box p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 0;
}

/* ─── FORM ─── */
.form-wrap { background: #fff; padding: 36px; border-radius: 3px; border: 1px solid var(--border); }
.form-title { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 24px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--olive); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-note { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.5; }

.msg-ok {
  padding: 14px 18px;
  background: #f0f9e8;
  border: 1px solid #b4dc50;
  border-radius: 2px;
  font-size: 13px;
  color: var(--olive);
  margin-bottom: 20px;
}
.msg-err {
  padding: 14px 18px;
  background: #fff3f0;
  border: 1px solid #e07060;
  border-radius: 2px;
  font-size: 13px;
  color: #8b2c1c;
  margin-bottom: 20px;
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: var(--sand);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  max-width: 820px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--dark); }
.page-breadcrumb span[aria-hidden] { opacity: 0.5; }
.page-header h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; color: var(--moss); }
.page-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
}

/* ─── ARTICLE SECTION ─── */
.article-section {
  background: var(--cream);
  padding: 60px 0 80px;
}
.article-wrap {
  max-width: 780px;
}
.article-wrap h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--dark);
  margin: 48px 0 16px;
}
.article-wrap h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--olive);
  margin: 36px 0 14px;
}
.article-wrap p {
  font-size: 15px;
  line-height: 1.85;
  color: #3a3a2a;
  margin-bottom: 20px;
}
.article-wrap ul,
.article-wrap ol {
  margin: 0 0 20px 20px;
}
.article-wrap li {
  font-size: 15px;
  line-height: 1.85;
  color: #3a3a2a;
  margin-bottom: 8px;
}
.article-wrap a:not([class*="btn"]) { color: var(--olive); text-decoration: underline; }
.article-wrap a:not([class*="btn"]):hover { color: var(--dark); }

.article-img-wide {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 3px;
  margin: 36px 0;
}

.article-cta-box {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 36px;
  margin: 44px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta-box p {
  flex: 1;
  min-width: 220px;
  margin-bottom: 0;
}

.article-aside {
  max-width: 340px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.article-aside-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  margin-bottom: 20px;
}
.article-aside-card h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.article-aside-card ul { margin-left: 0; list-style: none; }
.article-aside-card li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.article-aside-card li:last-child { border-bottom: none; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
}

/* ─── TACTICAL ARTICLE SECTION (autumn-fest page) ─── */
.tactical-article {
  background: var(--tactical);
  color: #f0ede0;
  padding: 72px 0;
  overflow: hidden;
}
.tactical-article .container { position: relative; }

.tactical-article-header {
  margin-bottom: 48px;
  max-width: 680px;
}
.tactical-article-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(180,220,80,0.7);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tactical-article-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(180,220,80,0.5);
}
.tactical-article h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  color: #f0ede0;
  margin-bottom: 16px;
}
.tactical-article h1 em { font-style: italic; color: rgba(180,220,80,0.9); }
.tactical-article-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
}

.tactical-article-body h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  color: #e8e4d8;
  margin: 52px 0 16px;
}
.tactical-article-body h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 400;
  color: rgba(180,220,80,0.85);
  margin: 36px 0 14px;
}
.tactical-article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 760px;
}
.tactical-article-body ul,
.tactical-article-body ol {
  margin: 0 0 20px 20px;
}
.tactical-article-body li {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.tactical-article-body a:not([class*="btn"]) { color: rgba(180,220,80,0.8); text-decoration: underline; }
.tactical-article-body a:not([class*="btn"]):hover { color: var(--lime); }

.tactical-article-body .article-cta-box {
  background: rgba(180,220,80,0.08);
  border-color: rgba(180,220,80,0.2);
}
.tactical-article-body .article-cta-box p { color: rgba(255,255,255,0.55); }

/* ─── FAQ ACCORDION ─── */
.faq-section {
  padding: 72px 0;
  background: var(--sand);
}
.faq-section .container { max-width: 820px; }
.faq-section h2 { margin-bottom: 36px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover { color: var(--olive); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }

.faq-section-dark { background: rgba(0,0,0,0.15); }
.faq-section-dark .faq-q { color: #e8e4d8; }
.faq-section-dark .faq-item { border-color: rgba(255,255,255,0.08); }
.faq-section-dark .faq-answer { color: rgba(255,255,255,0.45); }

/* ─── CONTACT PAGE ─── */
.contact-page-section {
  background: var(--cream);
  padding: 64px 0;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-page-info .section-title { margin-top: 12px; margin-bottom: 20px; }
.contact-page-info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 56px 36px 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.footer-logo strong { font-weight: 700; text-transform: uppercase; }
.footer-tagline {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(180,220,80,0.55);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
}
.footer-col h5 {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 36px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  max-width: 680px;
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ─── SCROLL REVEAL ─── */
.r {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.r.in { opacity: 1; transform: translateY(0); }
.r-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.r-l.in { opacity: 1; transform: translateX(0); }
.r-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.r-r.in { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-wrap { display: none; }
  .burger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-side { height: 56vw; }
  .hero-text-side { padding: 40px 28px 52px; }
  .hero-badge { bottom: 16px; left: 28px; }

  .manifesto { padding: 52px 24px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-half { height: 52vw; }

  .tactical-inner { grid-template-columns: 1fr; }
  .tactical-visual { height: 300px; }
  .tactical-content { padding: 40px 28px; }

  .features-section { padding: 52px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .airsoft-intro-section { grid-template-columns: 1fr; padding: 52px 24px; gap: 40px; }
  .airsoft-intro-photo { height: 300px; }

  .contact-section { padding: 52px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-page-section { padding: 40px 0; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }

  .page-header { padding: 48px 0 40px; }
  .article-section { padding: 40px 0 60px; }
  .tactical-article { padding: 52px 0; }
  .faq-section { padding: 52px 0; }

  footer .footer-main { padding: 40px 24px 28px; grid-template-columns: 1fr; gap: 28px; }
  footer .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; }

  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .hero-text-side { padding: 32px 20px 44px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-dark,
  .hero-actions .btn-outline-d { width: 100%; justify-content: center; }
  .article-cta-box { flex-direction: column; gap: 16px; }
  .tactical-content { padding: 32px 20px; }
}
