:root {
  --bg: #f4efe6;
  --bg-elevated: #fbf7f0;
  --surface: rgba(15, 24, 35, 0.92);
  --surface-soft: rgba(22, 34, 49, 0.84);
  --surface-light: rgba(255, 248, 239, 0.88);
  --text: #1b1c1d;
  --text-inverse: #f6efe2;
  --muted: #5c5f63;
  --line: rgba(130, 92, 35, 0.25);
  --red: #b22222;
  --red-deep: #76181a;
  --navy: #10263f;
  --navy-deep: #091423;
  --gold: #c59a3d;
  --gold-soft: #e5c87c;
  --shadow: 0 18px 50px rgba(9, 20, 35, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Avenir Next", "Franklin Gothic Book", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(197, 154, 61, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f3ea 0%, #efe7da 36%, #f6f1e8 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

ul {
  padding-left: 1.25rem;
}

button,
a.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1207;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  background:
    linear-gradient(90deg, rgba(9, 20, 35, 0.95), rgba(16, 38, 63, 0.9)),
    rgba(9, 20, 35, 0.92);
}

.header-inner,
.section-inner,
.footer-inner,
.hero-grid,
.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-inverse);
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(229, 200, 124, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span {
  color: rgba(246, 239, 226, 0.78);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(229, 200, 124, 0.4);
  border-radius: 50%;
  background: transparent;
  color: var(--text-inverse);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: rgba(246, 239, 226, 0.82);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.header-cta .button-primary {
  min-width: 168px;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--text-inverse);
  box-shadow: 0 10px 24px rgba(118, 24, 26, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.06);
}

.button-tertiary {
  border-color: rgba(16, 38, 63, 0.18);
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
}

.page-hero,
.home-hero {
  position: relative;
  overflow: clip;
}

.home-hero {
  padding: 4rem 0 3rem;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(9, 20, 35, 0.88) 0%, rgba(9, 20, 35, 0.7) 38%, rgba(118, 24, 26, 0.35) 100%),
    linear-gradient(0deg, rgba(9, 20, 35, 0.15), rgba(9, 20, 35, 0.15));
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  padding: 3rem 0 2rem;
  color: var(--text-inverse);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 200, 124, 0.34);
  background: rgba(0, 0, 0, 0.18);
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.card h3,
.store-card h3,
.feature-card h3,
.video-card h3,
.memorial-list h3 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-copy p,
.page-hero-copy p {
  max-width: 60ch;
  color: rgba(246, 239, 226, 0.88);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1rem 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.stat span {
  color: rgba(246, 239, 226, 0.75);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-frame {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-plaque {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 280px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(9, 20, 35, 0.82);
  color: var(--text-inverse);
  border: 1px solid rgba(229, 200, 124, 0.24);
}

.hero-plaque strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding-top: 2.5rem;
}

.section-dark {
  position: relative;
  background:
    linear-gradient(180deg, rgba(9, 20, 35, 0.98) 0%, rgba(16, 38, 63, 0.95) 100%);
  color: var(--text-inverse);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(197, 154, 61, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(178, 34, 34, 0.16), transparent 22%);
}

.section-inner {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-heading p {
  max-width: 64ch;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .card p,
.section-dark .feature-card p,
.section-dark .list-card li {
  color: rgba(246, 239, 226, 0.78);
}

.card-grid,
.feature-grid,
.story-grid,
.gallery-grid,
.video-grid,
.store-grid,
.contact-grid,
.roster-grid,
.training-grid,
.memorial-grid,
.media-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid,
.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.training-grid,
.memorial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid-youtube {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-card,
.story-panel,
.list-card,
.store-card,
.video-card,
.contact-card,
.memorial-list,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.section-dark .card,
.section-dark .feature-card,
.section-dark .list-card,
.section-dark .video-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.card,
.feature-card,
.list-card,
.video-card,
.contact-card,
.memorial-list {
  padding: 1.5rem;
}

.card::before,
.feature-card::before,
.list-card::before,
.store-card::before,
.video-card::before,
.contact-card::before,
.memorial-list::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--navy));
}

.card h3,
.feature-card h3,
.store-card h3,
.video-card h3,
.memorial-list h3 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
}

.card p,
.feature-card p,
.store-card p,
.contact-card p,
.video-card p,
.story-copy p,
.story-copy li,
.list-card li,
.memorial-list li {
  color: var(--muted);
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr;
}

.story-image {
  min-height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 2rem;
}

.story-copy h2,
.page-callout h2,
.spotlight-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.story-copy .kicker,
.page-callout .kicker,
.spotlight-copy .kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.story-copy ul,
.list-card ul,
.memorial-list ul {
  margin-bottom: 0;
}

.story-highlight {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 38, 63, 0.06);
  border: 1px solid rgba(16, 38, 63, 0.08);
}

.quote-band {
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 239, 226, 0.88);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-hero {
  padding: 4rem 0 3rem;
  background-position: center;
  background-size: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-copy {
  max-width: 760px;
  color: var(--text-inverse);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 200, 124, 0.34);
  color: var(--gold-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.page-intro {
  margin-top: 1rem;
  max-width: 68ch;
}

.list-card h3,
.contact-card h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.list-card ul,
.contact-card ul {
  padding-left: 1rem;
}

.store-card {
  display: grid;
  grid-template-rows: 240px auto;
}

.store-card-media {
  display: block;
  color: inherit;
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-copy {
  padding: 1.5rem;
}

.store-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price {
  font-weight: 800;
  color: var(--red);
}

.store-card h3 a {
  color: inherit;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.store-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 38, 63, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.product-shell {
  padding: 4rem 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.75rem;
  align-items: start;
}

.product-gallery,
.product-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-panel h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.product-price {
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 800;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(16, 38, 63, 0.08);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-panel p {
  color: var(--muted);
}

.option-block {
  margin-top: 1.5rem;
}

.option-block h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.option-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 63, 0.12);
  background: rgba(16, 38, 63, 0.05);
  color: var(--navy);
  font-weight: 700;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.product-missing {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(9, 20, 35, 0.92));
  color: var(--text-inverse);
  text-align: left;
  font-size: 0.92rem;
}

.video-card {
  display: grid;
  gap: 1rem;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(9, 20, 35, 0.85);
}

.video-fallback-link {
  display: grid;
  align-content: end;
  gap: 0.45rem;
  min-height: 240px;
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  background-color: rgba(9, 20, 35, 0.85);
  background-position: center;
  background-size: cover;
  color: var(--text-inverse);
  text-decoration: none;
}

.video-fallback-link strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.video-fallback-link span:last-child {
  color: rgba(246, 239, 226, 0.86);
  font-weight: 700;
}

.video-fallback-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(178, 34, 34, 0.88);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(229, 200, 124, 0.35);
  background:
    linear-gradient(135deg, rgba(178, 34, 34, 0.14), rgba(16, 38, 63, 0.18));
  text-align: center;
  color: var(--text-inverse);
}

.video-placeholder strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-link {
  color: var(--red);
  font-weight: 700;
}

.page-callout,
.spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.page-callout {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 239, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-callout h2,
.page-callout-copy p {
  color: #132235;
}

.page-callout-copy ul,
.page-callout-copy li {
  color: #243243;
}

.section-dark .page-callout {
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(248, 239, 226, 0.98));
}

.section-dark .page-callout-copy p {
  color: #243243;
}

.section-dark .page-callout-copy ul,
.section-dark .page-callout-copy li {
  color: #243243;
}

.section-dark .page-callout .quote-band {
  background: rgba(16, 38, 63, 0.1);
  color: #132235;
}

.page-callout img,
.spotlight img,
.media-card img,
.media-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.media-card iframe {
  min-height: 420px;
  border: 0;
}

.media-card-wide {
  grid-column: 1 / -1;
}

.page-callout-copy,
.spotlight-copy {
  padding: 0.5rem 0;
}

.memorial-shell {
  background:
    linear-gradient(180deg, rgba(9, 20, 35, 0.98), rgba(13, 17, 25, 0.98));
  color: var(--text-inverse);
}

.memorial-shell .page-hero::before {
  background:
    linear-gradient(130deg, rgba(4, 7, 11, 0.94), rgba(14, 22, 34, 0.82) 40%, rgba(118, 24, 26, 0.28) 100%);
}

.memorial-shell .section-heading p,
.memorial-shell .story-copy p,
.memorial-shell .story-copy li,
.memorial-shell .memorial-list li,
.memorial-shell .page-intro {
  color: rgba(246, 239, 226, 0.8);
}

.memorial-list {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.memorial-list ul {
  columns: 2;
  column-gap: 1.5rem;
}

.memorial-list li {
  break-inside: avoid;
  margin-bottom: 0.6rem;
}

.roster-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.roster-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.roster-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.roster-list {
  columns: 2;
  column-gap: 1.5rem;
}

.roster-list li {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.apparatus-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.spec {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 38, 63, 0.06);
  border: 1px solid rgba(16, 38, 63, 0.08);
}

.spec strong {
  display: block;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  padding: 2.5rem 0;
  background: #091423;
  color: rgba(246, 239, 226, 0.84);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.footer-meta,
.footer-disclaimer {
  max-width: 90ch;
  font-size: 0.95rem;
  color: rgba(246, 239, 226, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links a {
  color: rgba(246, 239, 226, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 11, 0.82);
  backdrop-filter: blur(12px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 2rem);
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(12, 22, 33, 0.96);
  border: 1px solid rgba(229, 200, 124, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-inverse);
}

.lightbox-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--text-inverse);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .page-callout,
  .spotlight,
  .roster-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .store-grid,
  .feature-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-grid,
  .memorial-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    display: none;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(9, 20, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .site-nav ul {
    display: grid;
    gap: 0.35rem;
  }

  .site-nav a,
  .header-cta .button {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    display: grid;
    gap: 0.75rem;
  }

  .hero-stats,
  .apparatus-specs {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memorial-list ul,
  .roster-list {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .home-hero,
  .page-hero,
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy,
  .page-hero-copy {
    padding-top: 0;
  }

  .gallery-grid,
  .video-grid,
  .store-grid,
  .card-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    border-radius: 24px;
  }

  .hero-plaque {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .story-copy,
  .store-copy,
  .card,
  .feature-card,
  .list-card,
  .video-card,
  .contact-card,
  .memorial-list,
  .page-callout {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
