:root {
  --bca-gold: #d3a548;
  --bca-gold-soft: #f8d98b;
  --bca-gold-deep: #9b6d17;
  --bca-navy: #041a3e;
  --bca-navy-2: #07224f;
  --bca-ink: #020912;
  --bca-ink-2: #061120;
  --bca-off-white: #f7f3ee;
  --bca-muted: #b7bcc9;
  --bca-teal: #38d6ca;
  --bca-border: rgba(211, 165, 72, 0.45);
  --bca-border-soft: rgba(211, 165, 72, 0.24);
  --font-display: "Cinzel", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Manrope", system-ui, sans-serif;
  --page-max-width: 1440px;
  --section-radius: 24px;
  --card-radius: 18px;
  --button-radius: 12px;
  --shadow-gold: 0 20px 60px rgba(211, 165, 72, 0.18);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--bca-off-white);
  font-family: var(--font-body);
  background:
    linear-gradient(120deg, rgba(211, 165, 72, 0.05) 0 1px, transparent 1px 92px),
    radial-gradient(ellipse at 28% 8%, rgba(7, 34, 79, 0.98), transparent 34rem),
    linear-gradient(145deg, #02060c 0%, #03142f 48%, #01040a 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 80%);
}

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

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

button,
input {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--bca-ink);
  background: var(--bca-gold-soft);
  border-radius: 0.75rem;
  transform: translateY(-160%);
}

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

.site-shell {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
  padding: 12px 14px 20px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 108px;
  padding: 1rem 1.45rem;
  background:
    linear-gradient(120deg, rgba(4, 26, 62, 0.94), rgba(2, 9, 18, 0.92)),
    rgba(2, 9, 18, 0.86);
  border: 1px solid var(--bca-border);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  inset: auto 24px 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--bca-gold), transparent);
  transform: scaleX(0.24);
  transform-origin: 37% 50%;
  opacity: 0.95;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 330px;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(211, 165, 72, 0.16));
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.12;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.brand-copy strong {
  margin-top: 0.35rem;
  color: var(--bca-gold);
  font-size: 0.84rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  width: 100%;
  justify-content: flex-end;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.35rem);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  color: rgba(247, 243, 238, 0.86);
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1rem;
  height: 2px;
  content: "";
  background: var(--bca-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.is-active {
  color: var(--bca-gold-soft);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button,
.icon-button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  flex: 0 0 auto;
}

.button:hover,
.button:focus,
.icon-button:hover,
.icon-button:focus,
.nav-toggle:hover,
.nav-toggle:focus {
  transform: translateY(-2px);
}

.button-gold {
  color: #130c02;
  background: linear-gradient(145deg, #ffe6a1, #d3a548 52%, #b2771b);
  border-color: rgba(255, 230, 161, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 14px 26px rgba(211, 165, 72, 0.18);
}

.button-ghost,
.button-outline,
.icon-button,
.nav-toggle {
  color: var(--bca-off-white);
  background: rgba(2, 9, 18, 0.28);
  border-color: var(--bca-border);
}

.button-outline {
  color: var(--bca-off-white);
}

.button-large {
  min-height: 64px;
  padding-inline: 1.7rem;
}

.icon-button {
  width: 46px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  font-size: 1.28rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  padding: 0;
  font-size: 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: 610px;
  margin-top: -1px;
  position: relative;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 9, 18, 1) 0%, rgba(2, 9, 18, 0.84) 29%, rgba(2, 9, 18, 0.08) 63%),
    linear-gradient(0deg, rgba(2, 9, 18, 0.98), rgba(2, 9, 18, 0) 37%);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(3rem, 6vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2.4rem);
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--bca-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7.4vw, 7.95rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child,
.section-intro h2 span {
  color: var(--bca-gold);
}

.hero-lede {
  margin: 1.75rem 0 0.7rem;
  color: var(--bca-off-white);
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}

.hero-body,
.section-intro p,
.story-card p,
.newsletter p,
.footer-brand p,
.footer-contact p {
  color: rgba(247, 243, 238, 0.82);
  line-height: 1.7;
}

.hero-body {
  max-width: 460px;
  margin: 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.play {
  color: var(--bca-gold);
}

.hero-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 9, 18, 0.36), transparent 33%),
    linear-gradient(0deg, rgba(2, 9, 18, 0.98), transparent 48%);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.05);
}

.anniversary-panel {
  position: absolute;
  right: clamp(1rem, 6vw, 4rem);
  bottom: 96px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(490px, calc(100% - 2rem));
  padding: 1.45rem 1.65rem;
  background:
    linear-gradient(145deg, rgba(7, 34, 79, 0.98), rgba(2, 9, 18, 0.96)),
    var(--bca-ink);
  border: 1px solid rgba(211, 165, 72, 0.76);
  border-radius: 22px;
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  overflow: hidden;
}

.anniversary-panel::after {
  position: absolute;
  inset: -60% auto -60% -30%;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 243, 205, 0.28), transparent);
  transform: rotate(18deg);
  animation: glint 5.5s ease-in-out infinite;
}

.anniversary-panel img {
  width: clamp(118px, 15vw, 185px);
  min-height: auto;
  object-fit: contain;
}

.anniversary-panel p,
.anniversary-panel strong,
.anniversary-panel span {
  display: block;
  margin: 0;
  color: var(--bca-gold);
  text-transform: uppercase;
}

.anniversary-panel p {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.anniversary-panel strong {
  color: var(--bca-gold-soft);
  font-size: clamp(1.35rem, 2.25vw, 2.05rem);
  line-height: 1.25;
}

.anniversary-panel span {
  margin-top: 0.35rem;
  font-size: 1.2rem;
}

.value-strip,
.newsletter,
.site-footer {
  background:
    linear-gradient(145deg, rgba(7, 34, 79, 0.78), rgba(2, 9, 18, 0.84)),
    var(--bca-navy);
  border: 1px solid var(--bca-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: -30px clamp(1rem, 3vw, 2.4rem) 0;
  position: relative;
  z-index: 3;
  border-radius: var(--section-radius);
  overflow: hidden;
}

.value-strip article {
  min-height: 210px;
  padding: 2rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--bca-border-soft);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-strip svg {
  color: var(--bca-gold);
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
}

.value-strip h2,
.story-card h2,
.footer-links h2,
.footer-contact h2,
.partners h2,
.newsletter h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.value-strip h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
}

.value-strip p {
  margin: 0 auto;
  max-width: 170px;
  color: rgba(247, 243, 238, 0.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

.membership {
  display: grid;
  grid-template-columns: 0.95fr 1.9fr;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 3vw, 2.4rem) 1.5rem;
}

.section-intro {
  align-self: center;
}

.section-intro h2 {
  margin: 0;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.1vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.section-intro p {
  max-width: 370px;
  margin: 1.1rem 0 2rem;
  font-size: 1.05rem;
}

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

.price-card,
.story-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(7, 34, 79, 0.94), rgba(2, 9, 18, 0.96));
  border: 1px solid var(--bca-border);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover,
.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 217, 139, 0.82);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 1.6rem 1.65rem 0;
}

.price-card h3 {
  margin: 0 -1.65rem 1.25rem;
  padding: 0.15rem 1.5rem 1.3rem;
  border-bottom: 1px solid var(--bca-border-soft);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.price-card.is-featured h3 {
  margin-top: -1.6rem;
  padding-top: 1.4rem;
  color: #fff7e2;
  background: linear-gradient(145deg, #f8d98b, #d3a548 54%, #9b6d17);
}

.popular {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: 50%;
  padding: 0.36rem 1.4rem;
  color: #fff4da;
  background: linear-gradient(145deg, var(--bca-gold-deep), #5c3a09);
  border: 1px solid rgba(255, 230, 161, 0.26);
  border-radius: 999px;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(247, 243, 238, 0.91);
  font-size: 0.93rem;
  line-height: 1.35;
}

.price-card li svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0.12rem;
  margin-top: 0.03rem;
  color: var(--bca-gold);
  border: 1px solid var(--bca-gold);
  border-radius: 999px;
}

.price {
  margin: auto -1.65rem 0;
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: rgba(247, 243, 238, 0.88);
  background: linear-gradient(90deg, rgba(2, 9, 18, 0.2), rgba(255, 255, 255, 0.04), rgba(2, 9, 18, 0.2));
  border-top: 1px solid var(--bca-border-soft);
}

.price strong {
  font-family: var(--font-display);
  color: var(--bca-off-white);
  font-size: 2rem;
  font-weight: 500;
}

.impact-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 1.1rem clamp(1rem, 3vw, 2.4rem) 1.5rem;
  overflow: hidden;
  border: 1px solid var(--bca-border-soft);
  border-radius: var(--section-radius);
  background: var(--bca-border-soft);
}

.impact-rail article {
  padding: 1.35rem;
  text-align: center;
  background: rgba(2, 9, 18, 0.55);
}

.impact-rail strong {
  display: block;
  color: var(--bca-gold-soft);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
}

.impact-rail span {
  color: rgba(247, 243, 238, 0.72);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.4rem);
}

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 398px;
}

.story-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--bca-border);
}

.story-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem 1.2rem 1.1rem;
}

.story-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.05;
}

.story-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.story-card a {
  width: fit-content;
  margin-top: auto;
  padding: 0.72rem 1rem;
  color: var(--bca-off-white);
  border: 1px solid var(--bca-border);
  border-radius: 0.45rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.story-card a:hover,
.story-card a:focus {
  color: #160f03;
  background: var(--bca-gold);
}

.newsletter {
  display: grid;
  grid-template-columns: auto minmax(210px, 0.95fr) minmax(320px, 1.8fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  margin: 1.4rem clamp(1rem, 3vw, 2.4rem) 1.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--section-radius);
}

.mail-emblem {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--bca-gold);
  border: 2px solid var(--bca-gold);
  border-radius: 999px;
  font-size: 2.4rem;
}

.newsletter h2 {
  margin: 0 0 0.45rem;
  color: var(--bca-gold);
  font-size: 1.5rem;
}

.newsletter p {
  margin: 0;
  max-width: 420px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  padding: 0.55rem;
  border: 1px solid var(--bca-border);
  border-radius: 0.75rem;
  background: rgba(2, 9, 18, 0.42);
}

.newsletter-form input {
  width: 100%;
  min-height: 54px;
  color: var(--bca-off-white);
  background: transparent;
  border: 0;
  outline: none;
  padding: 0 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(247, 243, 238, 0.62);
}

.partners {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) 1fr;
  gap: 2rem;
  align-items: center;
  padding: 0.2rem clamp(1rem, 3vw, 2.4rem) 1.5rem;
}

.partners h2 {
  margin: 0;
  color: var(--bca-gold);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  letter-spacing: 0.14em;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-strip > * {
  justify-self: center;
}

.partner-strip img {
  max-width: 120px;
  max-height: 64px;
  object-fit: contain;
}

.partner-text {
  display: grid;
  justify-items: center;
  color: var(--bca-off-white);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
}

.partner-text small {
  margin-top: 0.25rem;
  font-size: 0.58rem;
  font-weight: 600;
}

.partner-purple {
  color: #c855ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.partner-light {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-family: Georgia, serif;
  line-height: 1.05;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 0.78fr 1.08fr 1.1fr;
  gap: 1.7rem;
  margin: 0;
  padding: 2rem clamp(1.3rem, 3vw, 2.2rem);
  border-radius: var(--section-radius);
}

.footer-brand {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 0.6rem 1.1rem;
  align-items: center;
}

.footer-brand img {
  width: 94px;
}

.footer-brand strong {
  color: var(--bca-gold);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  max-width: 310px;
}

.socials {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--bca-gold);
  border: 1px solid var(--bca-border);
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-links,
.footer-contact {
  padding-left: 1.8rem;
  border-left: 1px solid var(--bca-border-soft);
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 0.85rem;
  color: var(--bca-gold);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-links a,
.legal a {
  color: rgba(247, 243, 238, 0.84);
}

.footer-links a:hover,
.footer-links a:focus,
.legal a:hover,
.legal a:focus {
  color: var(--bca-gold-soft);
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  margin: 0 0 0.8rem;
}

.footer-contact svg {
  color: var(--bca-gold);
  margin-top: 0.16rem;
}

.footer-stamp {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.85rem;
  padding-left: 1.8rem;
  border-left: 1px solid var(--bca-border-soft);
  text-align: center;
}

.footer-stamp span {
  width: 108px;
  aspect-ratio: 1;
  background:
    linear-gradient(30deg, transparent 46%, var(--bca-border) 46% 54%, transparent 54%),
    linear-gradient(150deg, transparent 46%, var(--bca-border) 46% 54%, transparent 54%),
    radial-gradient(circle, transparent 42%, var(--bca-border) 43% 44%, transparent 45%);
  border: 1px solid var(--bca-border);
  transform: rotate(45deg);
}

.footer-stamp strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 0;
  color: rgba(247, 243, 238, 0.68);
  font-size: 0.8rem;
}

.legal p {
  margin: 0;
}

.legal p:last-child {
  display: flex;
  gap: 1rem;
}

.legal span {
  width: 1px;
  background: var(--bca-border-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes glint {
  0%,
  48% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  76%,
  100% {
    transform: translateX(620%) rotate(18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-self: center;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(2, 9, 18, 0.98);
    border: 1px solid var(--bca-border);
    border-radius: 1rem;
    box-shadow: var(--shadow-deep);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .primary-nav {
    flex-wrap: wrap;
  }

  .primary-nav a::after {
    bottom: -0.35rem;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 9, 18, 0.98), rgba(2, 9, 18, 0.2) 75%),
      linear-gradient(90deg, rgba(2, 9, 18, 0.9), rgba(2, 9, 18, 0.06));
  }

  .hero-copy {
    grid-row: 1;
    padding-top: 4rem;
  }

  .hero-stage {
    grid-row: 1;
    min-height: 620px;
    opacity: 0.92;
  }

  .hero-stage img {
    min-height: 620px;
  }

  .value-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip article:nth-child(3) {
    border-right: 0;
  }

  .value-strip article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--bca-border-soft);
  }

  .membership {
    grid-template-columns: 1fr;
  }

  .section-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 1.5rem;
    align-items: end;
  }

  .section-intro .eyebrow,
  .section-intro h2,
  .section-intro p {
    grid-column: 1;
  }

  .section-intro .button {
    grid-row: 2 / 4;
    grid-column: 2;
    align-self: center;
  }

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

  .newsletter {
    grid-template-columns: auto 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding-inline: 8px;
  }

  .site-header {
    top: 8px;
    min-height: 82px;
    padding: 0.75rem;
    border-radius: 0 0 14px 14px;
  }

  .brand {
    min-width: 0;
    gap: 0.75rem;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand-copy {
    font-size: 0.82rem;
  }

  .brand-copy strong {
    font-size: 0.68rem;
  }

  .primary-nav,
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .header-actions .icon-button {
    justify-self: start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy {
    padding: 3.4rem 1rem 2rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .hero-stage,
  .hero-stage img {
    min-height: 720px;
  }

  .anniversary-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1.5rem;
    width: auto;
    padding: 1rem;
  }

  .anniversary-panel img {
    width: 108px;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: 0.75rem;
  }

  .value-strip article {
    min-height: 188px;
    padding: 1.4rem 0.9rem;
  }

  .value-strip article:nth-child(3) {
    border-right: 1px solid var(--bca-border-soft);
  }

  .value-strip article:nth-child(even) {
    border-right: 0;
  }

  .value-strip article:nth-child(-n + 4) {
    border-bottom: 1px solid var(--bca-border-soft);
  }

  .membership {
    padding-inline: 0.75rem;
  }

  .section-intro {
    display: block;
  }

  .pricing-grid,
  .editorial-grid,
  .impact-rail,
  .partners,
  .partner-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-inline: 0.75rem;
  }

  .newsletter-form {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .partners {
    padding-inline: 0.75rem;
  }

  .partner-strip {
    gap: 1.6rem;
    padding-block: 0.5rem;
  }

  .site-footer {
    margin-inline: 0.2rem;
  }

  .footer-links,
  .footer-contact,
  .footer-stamp {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--bca-border-soft);
    padding-top: 1.3rem;
  }

  .legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }

  .button-large {
    width: 100%;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article,
  .value-strip article:nth-child(3),
  .value-strip article:nth-child(even) {
    border-right: 0;
  }

  .value-strip article:not(:last-child) {
    border-bottom: 1px solid var(--bca-border-soft);
  }

  .footer-brand {
    grid-template-columns: 72px 1fr;
  }

  .footer-brand img {
    width: 72px;
  }
}
