:root {
  --black: #050505;
  --charcoal: #0b0d10;
  --navy: #071426;
  --deep-blue: #0d2d4d;
  --patriot-red: #b11218;
  --red-hot: #e10600;
  --off-white: #f3efe4;
  --white: #ffffff;
  --muted-gold: #c9a45c;
  --steel: #8d99a6;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --display: Impact, "Arial Narrow", "Franklin Gothic Condensed", "Arial Black", sans-serif;
  --headline: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
  --body: Inter, Montserrat, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.72), transparent 22rem),
    var(--black);
  color: var(--off-white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 12% 12%, rgba(177, 18, 24, 0.2), transparent 20rem),
    radial-gradient(circle at 88% 20%, rgba(13, 45, 77, 0.34), transparent 22rem);
  background-size: 44px 44px, 44px 44px, auto, auto;
  opacity: 0.8;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background: repeating-linear-gradient(0deg, var(--white) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--muted-gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62));
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: grid;
  gap: 0.05rem;
  text-transform: uppercase;
  line-height: 1;
}

.brand-title {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--patriot-red);
}

.brand-subtitle {
  color: var(--muted-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.12rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav a {
  border: 1px solid transparent;
  padding: 0.56rem 0.5rem;
  color: var(--off-white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(201, 164, 92, 0.45);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 10.25rem 0 4.5rem;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 31%, rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(177, 18, 24, 0.28) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(201, 164, 92, 0.26), transparent 18rem);
  opacity: 0.4;
  mask-image: linear-gradient(90deg, black, black 34%, transparent 72%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero-content > * {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 1rem;
  border-left: 5px solid var(--patriot-red);
  border-top: 1px solid rgba(201, 164, 92, 0.58);
  border-bottom: 1px solid rgba(201, 164, 92, 0.58);
  border-right: 1px solid rgba(201, 164, 92, 0.58);
  background: rgba(5, 5, 5, 0.58);
  color: var(--muted-gold);
  padding: 0.45rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
.pull-line,
.footer-brand {
  font-family: var(--headline);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: 6.2rem;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.38), 0 0 36px rgba(177, 18, 24, 0.3);
}

.hero-kicker {
  margin: 1.05rem 0 0;
  color: var(--muted-gold);
  font-size: 1.28rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0.7rem 0 0;
  color: rgba(243, 239, 228, 0.9);
  font-size: 1.12rem;
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.85rem 1.05rem;
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 239, 228, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, var(--red-hot), var(--patriot-red));
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #ff170f, var(--patriot-red));
}

.button-outline {
  background: rgba(5, 5, 5, 0.46);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-inner,
.footer-inner,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}

h2 {
  margin: 0;
  color: var(--white);
  font-size: 4rem;
  letter-spacing: 0.03em;
}

h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.section p {
  color: rgba(243, 239, 228, 0.82);
}

.section-about {
  background:
    radial-gradient(circle at 78% 22%, rgba(13, 45, 77, 0.34), transparent 24rem),
    linear-gradient(180deg, var(--black), var(--charcoal));
}

.about-grid,
.merch-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 3rem;
}

.about-copy p:not(.section-label) {
  max-width: 730px;
  font-size: 1.06rem;
}

.pull-line {
  margin-top: 1.5rem;
  color: var(--muted-gold) !important;
  font-size: 2.4rem !important;
}

.about-portrait {
  margin: 0;
  position: relative;
  border: 1px solid rgba(201, 164, 92, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.section-covers {
  background:
    linear-gradient(135deg, rgba(177, 18, 24, 0.12), transparent 34rem),
    var(--charcoal);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.topic-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--navy);
  padding: 1rem;
}

.topic-card span {
  color: var(--muted-gold);
  font-size: 0.78rem;
  font-weight: 1000;
}

.topic-card h3 {
  font-size: 1.28rem;
}

.section-merch {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(177, 18, 24, 0.18), transparent 23rem),
    radial-gradient(circle at 82% 60%, rgba(201, 164, 92, 0.12), transparent 22rem),
    var(--black);
}

.merch-copy p:not(.section-label) {
  max-width: 650px;
}

.slogan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 1.55rem;
}

.slogan-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--off-white);
  padding: 0.5rem 0.68rem;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  transform: rotate(-1deg);
}

.merch-board img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.section-list {
  background:
    linear-gradient(90deg, rgba(13, 45, 77, 0.46), rgba(177, 18, 24, 0.18)),
    var(--navy);
}

.list-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 1.8rem;
  border: 1px solid rgba(201, 164, 92, 0.32);
  background: rgba(5, 5, 5, 0.46);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.list-panel h2 {
  font-size: 2.6rem;
}

.list-panel p {
  margin: 0;
}

.booking-strip {
  padding: 3.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(7, 20, 38, 0.92)),
    var(--black);
}

.booking-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
}

.booking-grid h2 {
  font-size: 3rem;
}

.booking-grid p {
  max-width: 720px;
  color: rgba(243, 239, 228, 0.82);
}

.contact-links {
  display: grid;
  gap: 0.65rem;
}

.contact-links a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-weight: 900;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(201, 164, 92, 0.55);
  background: rgba(201, 164, 92, 0.12);
}

.site-footer {
  background: var(--black);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 2.6rem;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.site-footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(243, 239, 228, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: rgba(243, 239, 228, 0.82);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--muted-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1rem;
  color: rgba(243, 239, 228, 0.62);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 120ms;
}

@media (max-width: 1120px) {
  .site-nav a {
    padding-inline: 0.42rem;
    font-size: 0.62rem;
  }

  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 3.35rem;
  }

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

@media (max-width: 900px) {
  .nav-shell {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.97);
    box-shadow: var(--shadow);
    padding: 0.75rem;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    border-color: rgba(255, 255, 255, 0.08);
    padding: 0.85rem;
  }

  .hero {
    min-height: 860px;
    padding-top: 26rem;
    padding-bottom: 3rem;
  }

  .hero-image {
    height: 57%;
    object-position: center top;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.16) 38%, rgba(5, 5, 5, 0.98) 59%, rgba(5, 5, 5, 1) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.5));
  }

  h1 {
    font-size: 4.15rem;
  }

  .hero-kicker {
    font-size: 1.1rem;
  }

  .about-grid,
  .merch-grid,
  .booking-grid,
  .list-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .list-panel {
    align-items: start;
  }

  .merch-board {
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .nav-shell,
  .section-inner,
  .hero-content,
  .footer-inner,
  .footer-bottom {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
    padding-top: 23rem;
  }

  .hero-image {
    height: 52%;
  }

  h1 {
    font-size: 3.18rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .booking-grid h2,
  .list-panel h2 {
    font-size: 2.2rem;
  }

  .cta-row,
  .slogan-list {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 4.2rem 0;
  }

  .topic-grid,
  .merch-board {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 116px;
  }

  .list-panel {
    padding: 1.25rem;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 9.5rem 0 4rem;
  overflow: hidden;
  background: var(--black);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.42)),
    url("../images/brand/amy-boardwalk-hero.webp") center / cover no-repeat;
  opacity: 0.92;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--black), transparent 54%);
}

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

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 5rem;
}

.page-hero p:not(.section-label) {
  max-width: 720px;
  color: rgba(243, 239, 228, 0.86);
  font-size: 1.12rem;
}

.page-section {
  padding: 5rem 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-section.alt {
  background:
    radial-gradient(circle at 82% 10%, rgba(177, 18, 24, 0.16), transparent 24rem),
    var(--black);
}

.page-grid,
.card-grid,
.tier-grid,
.post-list {
  display: grid;
  gap: 1rem;
}

.page-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  align-items: start;
  gap: 2.5rem;
}

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

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

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

.text-panel,
.simple-card,
.tier-card,
.post-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 1.25rem;
}

.text-panel h2,
.simple-card h2,
.simple-card h3,
.tier-card h2,
.tier-card h3,
.post-card h2,
.post-card h3 {
  margin: 0 0 0.8rem;
  font-size: 2.15rem;
}

.text-panel p,
.simple-card p,
.tier-card p,
.post-card p,
.text-panel li,
.simple-card li,
.tier-card li {
  color: rgba(243, 239, 228, 0.8);
}

.plain-list {
  margin: 0;
  padding-left: 1.15rem;
}

.plain-list li + li {
  margin-top: 0.42rem;
}

.price {
  color: var(--muted-gold);
  font-size: 1.35rem;
  font-weight: 1000;
}

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

.mini-merch-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--black);
}

.privacy-copy {
  max-width: 850px;
}

.privacy-copy h2 {
  margin-top: 2.4rem;
  font-size: 2.2rem;
}

.privacy-copy h2:first-child {
  margin-top: 0;
}

.privacy-copy a,
.text-panel a,
.simple-card a,
.post-card a {
  color: var(--muted-gold);
  font-weight: 900;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 4rem;
  }

  .page-grid,
  .card-grid,
  .tier-grid,
  .post-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 380px;
    padding: 8rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .page-section {
    padding: 3.6rem 0;
  }

  .mini-merch-grid {
    grid-template-columns: 1fr;
  }

  .error-actions {
    display: grid;
  }
}

/* Surgical polish pass: merch containment and reusable subpage heroes. */
.site-nav .backup-social {
  color: var(--muted-gold);
}

.page-hero {
  min-height: clamp(420px, 48vw, 540px);
  align-items: center;
  padding: 8.75rem 0 4.25rem;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.74) 40%, rgba(5, 5, 5, 0.42) 100%),
    var(--page-hero-image, url("../images/brand/amy-boardwalk-hero.webp")) var(--page-hero-position, center) / cover no-repeat;
  opacity: 0.96;
}

.page-hero::after {
  background:
    linear-gradient(0deg, var(--black) 0%, rgba(5, 5, 5, 0.56) 28%, transparent 78%),
    linear-gradient(120deg, rgba(177, 18, 24, 0.22) 0 1px, transparent 1px 18px);
  opacity: 0.9;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.page-hero--merch .page-hero__inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
}

.page-hero--merch {
  --page-hero-image: url("../images/brand/amy-national-nj-politics-banner.webp");
  --page-hero-position: center;
}

.page-hero--blog {
  --page-hero-image: url("../images/brand/jagaloons-garden-calling-out.webp");
  --page-hero-position: center 40%;
}

.page-hero--members,
.page-hero--sponsor,
.page-hero--privacy,
.page-hero--thanks,
.page-hero--not-found {
  --page-hero-image: url("../images/brand/amy-boardwalk-hero.webp");
  --page-hero-position: 62% center;
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 1rem;
  border-left: 5px solid var(--patriot-red);
  border-top: 1px solid rgba(201, 164, 92, 0.58);
  border-bottom: 1px solid rgba(201, 164, 92, 0.58);
  border-right: 1px solid rgba(201, 164, 92, 0.58);
  background: rgba(5, 5, 5, 0.58);
  color: var(--muted-gold);
  padding: 0.45rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero__title {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.3rem);
  letter-spacing: 0.03em;
}

.page-hero__copy-text {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(243, 239, 228, 0.88);
  font-size: 1.12rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.featured-merch-art {
  margin: 0;
  justify-self: center;
  width: min(100%, 440px);
  border: 1px solid rgba(201, 164, 92, 0.36);
  background: rgba(5, 5, 5, 0.72);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.featured-merch-art img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
}

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

.product-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at center, rgba(13, 45, 77, 0.34), rgba(5, 5, 5, 0.94));
  padding: 0.5rem;
}

.product-card h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.55rem;
}

.product-card p {
  margin: 0;
  color: rgba(243, 239, 228, 0.78);
}

.product-card__link {
  width: 100%;
  margin-top: 1rem;
  min-width: 0;
}

@media (max-width: 1120px) {
  .merch-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-hero--merch .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .featured-merch-art {
    justify-self: start;
    max-width: 360px;
  }

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

@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
    padding: 7.75rem 0 3.25rem;
  }

  .page-hero__inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .page-hero__copy-text {
    font-size: 1rem;
  }

  .page-hero__actions {
    display: grid;
  }

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

  .featured-merch-art {
    width: 100%;
    max-width: none;
  }
}

/* Final prompt pass: contained subpage media, no cropped full-bleed hero photos. */
.page-hero {
  min-height: clamp(420px, 44vw, 520px);
  display: flex;
  align-items: center;
  padding: 7.75rem 0 4.25rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(177, 18, 24, 0.24), transparent 22rem),
    radial-gradient(circle at 14% 12%, rgba(13, 45, 77, 0.5), transparent 24rem),
    linear-gradient(135deg, var(--black) 0%, var(--navy) 54%, var(--charcoal) 100%);
}

.page-hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.34;
}

.page-hero::after {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, transparent 42%),
    linear-gradient(120deg, rgba(177, 18, 24, 0.18) 0 1px, transparent 1px 18px);
  opacity: 1;
}

.page-hero__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2rem, 5vw, 3rem);
}

.page-hero--simple {
  min-height: 360px;
}

.page-hero--simple .page-hero__inner {
  grid-template-columns: minmax(0, 780px);
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero__title {
  font-size: clamp(3rem, 5.6vw, 5rem);
}

.page-hero__media {
  margin: 0;
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background:
    radial-gradient(circle at 50% 20%, rgba(177, 18, 24, 0.18), transparent 18rem),
    rgba(5, 5, 5, 0.58);
  padding: clamp(0.85rem, 2vw, 1.25rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 42px rgba(177, 18, 24, 0.14);
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  max-height: 500px;
  object-position: center;
}

.page-hero__media--contain img,
.page-hero--merch .page-hero__media img,
.page-hero--sponsor .page-hero__media img,
.page-hero--blog .page-hero__media img {
  object-fit: contain;
}

.page-hero__media--portrait img {
  max-height: 500px;
  object-fit: contain;
}

.page-hero--merch .page-hero__media {
  min-height: 340px;
}

.page-hero--members .page-hero__media {
  max-width: 460px;
  justify-self: end;
}

.page-hero--blog .page-hero__media img {
  max-height: 460px;
}

.page-hero--sponsor .page-hero__media img {
  max-height: 420px;
}

.merch-board img {
  object-fit: contain;
  object-position: center;
  padding: 0.45rem;
  background: radial-gradient(circle at center, rgba(13, 45, 77, 0.28), rgba(5, 5, 5, 0.92));
}

.merch-product-grid .product-card img {
  object-fit: contain;
}

@media (max-width: 900px) {
  .page-hero__inner,
  .page-hero--merch .page-hero__inner,
  .page-hero--simple .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__media,
  .page-hero--members .page-hero__media {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .page-hero__media img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
    padding: 6.75rem 0 3.25rem;
  }

  .page-hero__media {
    min-height: 220px;
  }

  .page-hero__media img {
    max-height: 340px;
  }
}

.button-sentence {
  justify-content: flex-start;
  max-width: 100%;
  white-space: normal;
  text-transform: none;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.25;
}

.page-hero--blog .button-sentence {
  max-width: 520px;
}

.blog-feed {
  display: grid;
  gap: 1.25rem;
}

.blog-feed__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: end;
  gap: 1.5rem;
}

.blog-feed__intro h2 {
  margin-bottom: 0.75rem;
  font-size: 3rem;
}

.blog-feed__controls {
  display: grid;
  gap: 0.9rem;
}

.blog-control {
  display: grid;
  gap: 0.45rem;
}

.blog-control span {
  color: var(--muted-gold);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-control select,
.blog-control input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.52);
  color: var(--off-white);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.blog-control select:focus-visible,
.blog-control input:focus-visible {
  outline: 3px solid var(--muted-gold);
  outline-offset: 2px;
}

.blog-feed__count {
  margin: 0;
  color: rgba(243, 239, 228, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-post-list {
  margin-top: 0.25rem;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

.blog-post-card__media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--black);
  overflow: hidden;
}

.blog-post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-card h3 {
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  color: var(--muted-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card__category {
  color: var(--off-white);
}

.post-card__excerpt {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.post-card__link {
  width: 100%;
  margin-top: auto;
}

.blog-feed__empty {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  color: rgba(243, 239, 228, 0.78);
}

.blog-cta-panel {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.blog-cta-panel h2 {
  font-size: 2.8rem;
}

.blog-article-body {
  display: grid;
  gap: 1rem;
  max-width: 840px;
}

.blog-article-body p {
  margin: 0;
}

.post-hero-meta {
  margin: 1rem 0 0;
  color: var(--muted-gold);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .blog-feed__header {
    grid-template-columns: 1fr;
  }

  .blog-feed__intro h2 {
    font-size: 2.4rem;
  }

  .blog-cta-panel h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 640px) {
  .button-sentence {
    max-width: none;
    width: 100%;
  }

  .blog-feed__intro h2 {
    font-size: 2.1rem;
  }

  .blog-post-card h3 {
    font-size: 1.45rem;
  }

  .blog-cta-panel h2 {
    font-size: 2rem;
  }
}

.page-hero__inner--single {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__inner--single .page-hero__media {
  display: none;
}





