:root {
  color-scheme: dark;
  --lime: #b8ff00;
  --lime-dark: #7da900;
  --black: #020302;
  --panel: #080b05;
  --text: #d9e2c2;
  --muted: #aab29c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-width: 320px; background: var(--black); }
body {
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 0, rgba(184,255,0,.08), transparent 34rem),
    #020302;
}
a { color: inherit; }
img { max-width: 100%; }

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 96px;
  padding: 10px max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(184,255,0,.48);
  background: rgba(2,3,2,.96);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
}


/* Compatibility: if an older page still has the Home text link, turn it into the logo. */
.home-button {
  display: block;
  flex: 0 0 auto;
  width: 274px;
  height: 87px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -9999px;
  background: url("assets/logo-header.png") center / contain no-repeat;
  text-decoration: none;
}
.home-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  border-radius: 4px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-brand img {
  display: block;
  width: clamp(190px, 25vw, 274px);
  height: auto;
}
.site-brand:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  border-radius: 4px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--lime-dark);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 4px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--lime);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  padding: 10px 12px;
  color: #d7ddcd;
  font: 700 16px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--lime);
}

.page-main { min-height: 60vh; }
.page-hero {
  padding: 72px 20px 66px;
  border-bottom: 1px solid rgba(184,255,0,.35);
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.78)),
    radial-gradient(circle at center, rgba(184,255,0,.2), transparent 55%);
}
.page-hero h1 {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: "Permanent Marker", Arial, sans-serif;
  font-size: clamp(42px, 8vw, 78px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 24px rgba(184,255,0,.25);
}
.page-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #c7cdbd;
  font: 500 clamp(18px, 2.3vw, 24px)/1.45 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .025em;
}

.content-stack {
  display: grid;
  gap: 28px;
  padding-block: 42px 64px;
}
.content-section,
.contact-panel {
  border: 1px solid rgba(184,255,0,.48);
  background: linear-gradient(145deg, rgba(14,18,10,.96), rgba(4,6,3,.96));
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.content-section { padding: clamp(24px, 4vw, 42px); }
.content-section > h2,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--lime);
  font: 400 clamp(30px, 4vw, 46px)/1.1 "Permanent Marker", Arial, sans-serif;
}
.content-section > p,
.contact-card p {
  color: #bcc4b0;
  font-size: 17px;
  line-height: 1.6;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}
.placeholder-card,
.contact-card {
  padding: 24px;
  border: 1px solid rgba(184,255,0,.28);
  background: rgba(0,0,0,.38);
}
.placeholder-card h3 {
  margin: 0 0 10px;
  color: var(--lime);
  font: 700 24px/1.1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.placeholder-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}
.contact-card { display: flex; flex-direction: column; gap: 12px; }
.contact-card > * { margin-block: 0; }
.contact-card > a:not(.button) {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid var(--lime);
  color: #050700;
  background: var(--lime);
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(184,255,0,.42);
  background: #010201;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.2fr .8fr;
  gap: 28px;
  padding-block: 38px;
}
.footer-brand img { display: block; width: min(100%, 270px); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h2 {
  margin: 0 0 7px;
  color: var(--lime);
  font: 700 18px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-column a,
.footer-column p {
  margin: 0;
  color: #b8beb0;
  line-height: 1.45;
  text-decoration: none;
}
.contact-list a,
.contact-list p { display: flex; gap: 8px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 800;
}
.copyright {
  padding: 18px 16px 24px;
  border-top: 1px solid rgba(184,255,0,.2);
  color: #73796f;
  font: 500 13px/1.4 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    padding: 10px;
    border: 1px solid var(--lime-dark);
    background: rgba(2,3,2,.98);
    box-shadow: 0 18px 38px rgba(0,0,0,.65);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px 14px; }
  .placeholder-grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .site-header { min-height: 74px; padding: 10px 12px; }
  .site-brand img { width: min(170px, 62vw); }
  .home-button { width: min(170px, 62vw); height: 54px; }
  .menu-button { width: 44px; height: 40px; }
  .page-hero { padding: 52px 16px 48px; }
  .section-shell { width: min(100% - 22px, 1120px); }
  .content-stack { padding-block: 24px 44px; }
  .footer-grid { grid-template-columns: 1fr; }
}
