:root {
  --dawn:     #e8f4f8;
  --mist:     #dbeef5;
  --frost:    #cce3ef;
  --forest:   #1e3d2a;
  --pine:     #2d5a3d;
  --moss:     #4a7055;
  --fern:     #6b9170;
  --path:     #e0dcc4;
  --text:     #1a2818;
  --muted:    #5a6a56;
  --border:   rgba(26,50,30,.12);
  --lime:     #7ac840;
  --lime-dim: rgba(122,200,64,0.6);
  --tactical: #0d1a0d;
  --header-h: 68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dawn);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.15;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(14,28,16,.94);
  backdrop-filter: blur(12px);
  height: var(--header-h);
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-name {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.logo-name strong { color: var(--lime); }
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,.65);
  padding: 6px 10px;
  border-radius: 3px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--lime); }
.nav-cta-wrap { flex-shrink: 0; margin-left: 8px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(10,20,12,.97);
  padding-top: var(--header-h);
  overflow-y: auto;
}
.mobile-overlay.open { display: block; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
}
.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--lime); }
.mobile-nav-divider { height: 1px; background: rgba(255,255,255,.07); margin: 8px 0; }
.mobile-cta-wrap { margin-top: 28px; }

/* ── MAIN ── */
main { padding-top: var(--header-h); }

/* ── BUTTONS ── */
.btn-dark,
.btn-spring,
.btn-spring-ghost,
.btn-outline,
.btn-tac-fill,
.btn-tac-ghost,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.6rem;
  border-radius: 2px;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 44px;
  transition: background .22s, color .22s, border-color .22s, transform .15s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-dark { background: #1e3d2a; color: #ffffff; border-color: #1e3d2a; }
.btn-dark:hover { background: #2d5a3d; border-color: #2d5a3d; color: #ffffff; }
.btn-spring { background: #7ac840; color: #0d1a0d; border-color: #7ac840; font-weight: 700; }
.btn-spring:hover { background: #8ed44e; border-color: #8ed44e; color: #0d1a0d; }
.btn-spring-ghost { background: transparent; color: #1e3d2a; border-color: #1e3d2a; }
.btn-spring-ghost:hover { background: #1e3d2a; color: #ffffff; border-color: #1e3d2a; }
.btn-outline { background: transparent; color: #2d5a3d; border-color: #2d5a3d; }
.btn-outline:hover { background: #2d5a3d; color: #ffffff; }
.btn-tac-fill { background: rgba(122,200,64,.9); color: #0d1a0d; border-color: transparent; font-size: 0.8rem; }
.btn-tac-fill:hover { background: #8ed44e; color: #0d1a0d; transform: translateY(-1px); }
.btn-tac-ghost { background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); font-size: 0.8rem; }
.btn-tac-ghost:hover { background: rgba(255,255,255,.07); color: #ffffff; border-color: rgba(255,255,255,.4); }
.btn-submit { background: #1e3d2a; color: #ffffff; border-color: #1e3d2a; width: 100%; font-size: 0.9rem; padding: 0.875rem; }
.btn-submit:hover { background: #2d5a3d; border-color: #2d5a3d; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  background: var(--tactical);
  position: relative;
  z-index: 2;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,200,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,200,64,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--lime-dim);
}
.hero-title {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #f0f8f0;
  margin-bottom: 8px;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--lime);
}
.hero-subtitle {
  font-family: inherit;
  font-size: 0.95rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  margin-top: 20px;
  letter-spacing: 0.03em;
}
.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,26,13,.4) 0%, transparent 60%);
}

/* ── MANIFESTO / INTRO ── */
.manifesto {
  background: var(--dawn);
  padding: 96px 60px;
  text-align: center;
  position: relative;
}
.manifesto-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
}
.manifesto-title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  max-width: 720px;
  margin: 0 auto 32px;
}
.manifesto-text {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}
.vert-line {
  width: 1px;
  background: var(--forest);
  opacity: .2;
  margin: 36px auto;
  height: 50px;
}
.article-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 420px;
  overflow: hidden;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-strip-item:hover img { transform: scale(1.04); }

/* ── TACTICAL SECTION (SPRINGFEST) ── */
.springfest-tactical {
  background: var(--tactical);
  position: relative;
  overflow: hidden;
}
.tactical-wave-top {
  display: block;
  width: 100%;
  line-height: 0;
  background: var(--mist);
}
.tactical-wave-top svg { display: block; }
.tactical-inner {
  position: relative;
  padding: 80px 60px 100px;
}
.tactical-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,200,64,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,200,64,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.tactical-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(60,120,40,.06) 0%, transparent 70%);
  pointer-events: none;
}
.tac-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}
.tac-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tac-eyebrow::before, .tac-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(122,200,64,.2);
}
.tac-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f0f8f0;
}
.tac-title em { font-style: italic; color: var(--lime); }
.tac-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.35);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.tac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}
.tac-panel {
  padding: 48px 44px;
  border: 1px solid rgba(255,255,255,.04);
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
.tac-panel:hover { background: rgba(255,255,255,.02); }
.tac-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122,200,64,.3), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.tac-panel:hover::before { opacity: 1; }
.tac-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: rgba(255,255,255,.03);
  position: absolute;
  top: 20px; right: 24px;
  pointer-events: none;
  font-family: Georgia, serif;
}
.tac-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(122,200,64,.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime-dim);
}
.tac-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.tac-panel h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #f0f8f0;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.tac-panel p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}
.tac-timeline {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 60px auto 0;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 52px;
}
.tac-tl-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.tac-tl-title {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #f0f8f0;
  letter-spacing: .02em;
}
.tac-tl-date {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--lime-dim);
  text-transform: uppercase;
}
.tac-tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.tl-slot {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .25s;
}
.tl-slot:last-child { border-right: none; }
.tl-slot:hover { background: rgba(122,200,64,.04); }
.tl-time {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--lime-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tl-event {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #e8f4e8;
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}
.tl-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.badge-green { background: rgba(122,200,64,.15); color: rgba(122,200,64,.75); }
.badge-amber { background: rgba(200,160,64,.12); color: rgba(200,160,64,.75); }
.badge-dim   { background: rgba(255,255,255,.05); color: rgba(255,255,255,.3); }
.tac-cta-strip {
  max-width: 1080px;
  margin: 52px auto 0;
  padding: 40px 44px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  background: rgba(255,255,255,.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.tac-cta-left h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f0f8f0;
  margin-bottom: 8px;
}
.tac-cta-left p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.tac-cta-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.spots-row {
  max-width: 1080px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.spots-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
  overflow: hidden;
}
.spots-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(122,200,64,.4), rgba(122,200,64,.75));
  animation: fillBar 2s 0.8s ease both;
}
@keyframes fillBar { from { width: 0; } to { width: 68%; } }
.spots-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}
.spots-label strong { color: var(--lime-dim); }

/* ── DATE BADGE ── */
.date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid rgba(122,200,64,.2);
  border-radius: 2px;
  margin-bottom: 28px;
}
.date-badge-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-dim);
}
.date-badge-year {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,.6);
  line-height: 1;
}

/* ── FEATURES GRID ── */
.features-section {
  background: var(--mist);
  padding: 96px 60px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: var(--forest);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.feature-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover {
  box-shadow: 0 12px 36px rgba(30,60,40,.1);
  transform: translateY(-4px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(122,200,64,.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pine);
}
.feature-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feature-card h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── AIRSOFT INTRO SPLIT ── */
.airsoft-intro {
  background: var(--dawn);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.airsoft-intro-img {
  overflow: hidden;
  position: relative;
}
.airsoft-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.airsoft-intro-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.airsoft-intro-content .section-eyebrow { text-align: left; }
.airsoft-intro-content h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.2;
}
.airsoft-intro-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.airsoft-intro-content .btn-spring-ghost { margin-top: 12px; }

/* ── INLINE CONTACT FORM ── */
.contact-section {
  background: var(--forest);
  padding: 96px 60px;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,200,64,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,200,64,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-inner .section-eyebrow { color: var(--lime-dim); text-align: center; }
.contact-inner h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  color: #f0f8f0;
  text-align: center;
  margin-bottom: 10px;
}
.contact-inner .intro-text {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  padding: 12px 14px;
  color: #f0f8f0;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(122,200,64,.4);
  background: rgba(255,255,255,.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: rgba(122,200,64,.12);
  border: 1px solid rgba(122,200,64,.25);
  border-radius: 2px;
  padding: 20px 24px;
  color: #c8f080;
  text-align: center;
  margin-bottom: 20px;
}
.form-error {
  background: rgba(200,60,60,.12);
  border: 1px solid rgba(200,60,60,.25);
  border-radius: 2px;
  padding: 20px 24px;
  color: #f08080;
  text-align: center;
  margin-bottom: 20px;
}
.honeypot { display: none !important; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--mist);
  padding: 72px 60px 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 800px; }
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.breadcrumb a { text-decoration: none; color: var(--moss); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--fern); }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── TACTICAL ARTICLE (springfest page) ── */
.tactical-article {
  background: var(--tactical);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.tactical-article::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122,200,64,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,200,64,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.tactical-article-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tactical-article-body {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 0.97rem;
}
.tactical-article-body h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #f0f8f0;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.tactical-article-body h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #e0f0e0;
  margin: 32px 0 12px;
}
.tactical-article-body p { margin-bottom: 18px; }
.tactical-article-body ul,
.tactical-article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.tactical-article-body li { margin-bottom: 8px; }
.tactical-article-body strong { color: rgba(255,255,255,.9); }
.tactical-article-body a:not([class*="btn"]) { color: rgba(122,200,64,.8); text-decoration: underline; }
.tactical-article-body a:not([class*="btn"]):hover { color: var(--lime); }
.tactical-article-body .article-cta-box {
  margin: 48px 0;
  padding: 36px 40px;
  border: 1px solid rgba(122,200,64,.15);
  border-radius: 2px;
  background: rgba(122,200,64,.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tactical-article-body .article-cta-box p { margin-bottom: 0; font-size: 0.95rem; }
.tactical-article-body .video-wrap {
  margin: 36px 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.tactical-article-body .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.tactical-article-body .video-caption {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
  font-style: italic;
}

/* ── ARTICLE SECTION (what-is-airsoft page) ── */
.article-section {
  background: var(--dawn);
  padding: 80px 60px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.article-wrap {
  color: var(--text);
  line-height: 1.85;
  font-size: 0.97rem;
}
.article-wrap h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--forest);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-wrap h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pine);
  margin: 28px 0 10px;
}
.article-wrap p { margin-bottom: 18px; }
.article-wrap ul,
.article-wrap ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-wrap li { margin-bottom: 8px; }
.article-wrap strong { color: var(--forest); }
.article-wrap a:not([class*="btn"]) { color: var(--pine); text-decoration: underline; }
.article-wrap a:not([class*="btn"]):hover { color: var(--forest); }
.article-wrap .article-cta-box {
  margin: 40px 0;
  padding: 32px 36px;
  border: 1px solid rgba(30,60,40,.15);
  border-radius: 2px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-wrap .article-cta-box p { margin-bottom: 0; }
.article-wrap .article-cta-box h3 { margin: 0 0 6px; }
.article-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.aside-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px;
  margin-bottom: 20px;
}
.aside-card h4 {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.aside-card ul { padding-left: 0; list-style: none; margin: 0; }
.aside-card li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(26,50,30,.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-card li:last-child { border-bottom: none; }
.aside-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
.aside-card a {
  text-decoration: none;
  color: var(--pine);
  font-size: 0.85rem;
  display: block;
  padding: 5px 0;
  transition: color .2s;
}
.aside-card a:hover { color: var(--forest); }

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--frost);
  padding: 80px 60px;
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-section .section-header { margin-bottom: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--pine); }
.faq-q::after {
  content: '';
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .3s;
  margin-bottom: 4px;
}
.faq-item.open .faq-q::after { transform: rotate(-135deg); margin-bottom: 0; margin-top: 4px; }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT PAGE ── */
.contact-page-section {
  background: var(--dawn);
  padding: 80px 60px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-detail svg { width: 18px; height: 18px; stroke: var(--pine); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 2px;
}
.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-form-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 44px 40px;
}
.contact-form-box h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 28px;
}
.contact-form-box .form-group label {
  color: var(--muted);
}
.contact-form-box input,
.contact-form-box textarea {
  background: var(--dawn);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus { border-color: var(--pine); }
.contact-form-box textarea { resize: vertical; min-height: 120px; }
.contact-form-box .btn-submit { background: #1e3d2a; color: #ffffff; }
.contact-form-box .btn-submit:hover { background: #2d5a3d; }
.contact-form-box .form-success { background: rgba(122,200,64,.08); border-color: rgba(122,200,64,.2); color: var(--pine); }
.contact-form-box .form-error { background: rgba(200,60,60,.07); border-color: rgba(200,60,60,.15); color: #c03030; }

/* ── FOOTER ── */
footer {
  background: var(--tactical);
  color: rgba(255,255,255,.7);
  padding: 72px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand { }
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.footer-logo strong { color: var(--lime); }
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--lime); border-color: var(--lime-dim); background: rgba(122,200,64,.06); }
.footer-social a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-col h4 {
  font-family: inherit;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,.2);
  line-height: 1.7;
  max-width: 640px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-right a {
  font-size: 0.8rem;
  color: rgba(122,200,64,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-right a:hover { color: var(--lime); }

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-img { min-height: 300px; }
  .hero-content { padding: 60px 28px; }
  .manifesto { padding: 72px 28px; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 260px; }
  .tactical-inner { padding: 60px 28px 80px; }
  .tac-grid { grid-template-columns: 1fr; }
  .tac-tl-grid { grid-template-columns: 1fr 1fr; }
  .tac-cta-strip { flex-direction: column; padding: 28px 24px; }
  .features-section { padding: 72px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .airsoft-intro { grid-template-columns: 1fr; }
  .airsoft-intro-img { min-height: 280px; }
  .airsoft-intro-content { padding: 56px 28px; }
  .contact-section { padding: 72px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 28px 48px; }
  .tactical-article { padding: 60px 28px; }
  .tactical-article-body .article-cta-box { flex-direction: column; }
  .article-section { padding: 60px 28px; }
  .faq-section { padding: 60px 28px; }
  .contact-page-section { padding: 60px 28px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 28px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-right { align-items: flex-start; }
}
@media (max-width: 480px) {
  .tac-tl-grid { grid-template-columns: 1fr; }
  .tac-cta-right { flex-direction: column; width: 100%; }
  .tac-cta-right .btn-tac-fill,
  .tac-cta-right .btn-tac-ghost { width: 100%; justify-content: center; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}
