/* ============================================================
   THE KINGDOM OF THE UNITED STATES BY THE MOORS
   Cathedral aesthetic — Presented by The Proof
   ============================================================ */

:root {
  --purple: #2A0E4A;   /* deep royal purple — primary bg */
  --gold:   #C9A227;   /* rich cathedral gold — accents */
  --ivory:  #F5EFE0;   /* ivory parchment — body on dark */
  --black:  #0A0A0A;   /* secondary dark */
  --burgundy:#4A0E1F;  /* sanctuary red */

  --gold-line: rgba(201, 162, 39, 0.6);

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  background: var(--purple);
  color: var(--ivory);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--black);
  padding: .6rem 1rem; font-family: var(--font-body); font-size: .85rem;
  letter-spacing: .05em;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- shared motifs ---------- */
.rose { font-style: normal; }

.label {
  font-family: var(--font-body);
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.gold { color: var(--gold); }

.hairline {
  height: 1px;
  border: 0;
  background: var(--gold-line);
  width: 100%;
}

/* grain overlay */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain--soft { opacity: 0.035; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
}
.nav__inner {
  max-width: 1400px; margin: 0 auto; height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: .55rem; }
.nav__brand-text {
  font-family: var(--font-body); font-weight: 500;
  letter-spacing: 0.22em; font-size: 0.85rem; color: var(--ivory);
}
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav__links a {
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em;
  font-weight: 400; color: var(--ivory); opacity: 0.85;
  transition: color 0.25s, opacity 0.25s;
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--gold); opacity: 1; }
.nav__rhe { color: var(--gold) !important; opacity: 1 !important; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ivory); transition: 0.3s var(--ease); display: block; }
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--purple);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 4rem) 5rem;
  overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__title {
  font-family: var(--font-head); font-weight: 500;
  color: var(--ivory); line-height: 0.98; letter-spacing: -0.01em;
  display: flex; flex-direction: column;
  font-size: clamp(2.75rem, 8vw, 7.5rem);
}
.hero__title .gold { color: var(--gold); }
.hero__presented {
  font-family: var(--font-head); font-style: italic; color: var(--ivory);
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400;
  margin-top: clamp(1.25rem, 2.5vw, 2rem); opacity: 0.92;
}
.hero__portrait {
  border: 1px solid var(--gold);
  padding: 6px; background: rgba(10,10,10,0.25);
  width: 100%; max-width: 520px; margin-left: auto;
}
.hero__portrait img { width: 100%; }
.hero__caption {
  position: relative; z-index: 2;
  max-width: 1400px; margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  width: 100%; color: var(--gold);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem); letter-spacing: 0.24em;
  font-weight: 500; text-transform: uppercase;
}
.scroll-cue {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--gold); font-size: 1.5rem;
  animation: pulseDown 2.2s ease-in-out infinite;
}
@keyframes pulseDown {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* ============================================================
   2. MANIFESTO
   ============================================================ */
.manifesto {
  position: relative; background: var(--purple);
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 6vw, 4rem);
}
.manifesto__inner { position: relative; z-index: 2; max-width: 1000px; }
.manifesto__quote {
  font-family: var(--font-head); font-weight: 500; color: var(--ivory);
  font-size: clamp(1.6rem, 3.6vw, 3.25rem); line-height: 1.28;
  display: flex; flex-direction: column; gap: clamp(0.6rem, 1.4vw, 1.1rem);
}
.manifesto__crest {
  font-weight: 700; font-size: clamp(2.1rem, 5.2vw, 4.5rem);
  line-height: 1.05; letter-spacing: 0.01em; margin-top: clamp(0.8rem, 2vw, 1.6rem);
}
.manifesto__attr {
  font-family: var(--font-head); font-style: italic; color: var(--gold);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   2b. THE WAR CRY (deep burgundy sanctuary)
============================================================ */
.warcry {
  position: relative; background: var(--burgundy, #4A0E1F);
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(4.5rem, 11vh, 9rem) clamp(1.5rem, 6vw, 4rem);
}
.warcry__inner { position: relative; z-index: 2; max-width: 1000px; }
.warcry__quote {
  font-family: var(--font-head); font-weight: 500; color: var(--ivory);
  font-size: clamp(1.5rem, 3.2vw, 2.9rem); line-height: 1.3;
  display: flex; flex-direction: column; gap: clamp(0.5rem, 1.2vw, 1rem);
  font-style: italic;
}
.warcry__crest {
  font-weight: 700; font-style: normal; letter-spacing: 0.02em;
  font-size: clamp(2rem, 5vw, 4.25rem); line-height: 1.05;
  margin-top: clamp(1rem, 2.4vw, 1.8rem);
}
.warcry__piece {
  display: inline-block; margin-left: 0.25em;
  transform: translateY(-0.05em); font-style: normal;
}
.warcry__attr {
  font-family: var(--font-head); font-style: italic; color: var(--gold);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem); margin-top: clamp(1.8rem, 3.6vw, 2.6rem);
}

/* ============================================================
   3. THE MAN (light section)
   ============================================================ */
.man {
  background: var(--ivory); color: var(--black);
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}
.man__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.man__heading {
  font-family: var(--font-head); font-weight: 600; color: var(--purple);
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -0.01em;
}
.man__body {
  font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.8; color: #2b2b2b; margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
}
.man__sig {
  font-family: var(--font-head); font-style: italic; color: var(--purple);
  font-size: 1.25rem; margin-top: 1.5rem; font-weight: 600;
}
.man__portrait {
  border: 1px solid var(--gold); padding: 6px; background: #fff;
  max-width: 440px; width: 100%; margin: 0 auto;
}
.man__quote {
  max-width: 900px; margin: clamp(3rem, 6vw, 5rem) auto 0; text-align: center;
  font-family: var(--font-head); font-style: italic; color: var(--gold);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.35;
}
/* darken gold on ivory for AA */
.man .man__quote { color: #9a7a11; }

/* ============================================================
   4. PLATFORMS
   ============================================================ */
.platforms {
  position: relative; background: var(--purple);
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 4rem);
}
.platforms__head { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.platforms__head .label { display: block; }
.platforms__heading {
  font-family: var(--font-head); font-weight: 500; color: var(--ivory);
  font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -0.005em;
}
.platforms__sub {
  font-family: var(--font-head); font-style: italic; color: var(--ivory);
  opacity: 0.8; font-size: clamp(1.1rem, 2vw, 1.5rem); margin-top: 1rem;
}
.platforms__grid {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  position: relative;
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid var(--gold-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover, .card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
  outline: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.card:hover .card__visit, .card:focus-visible .card__visit { transform: translateX(4px); }
.card--highlight { border-width: 2px; border-color: var(--gold); }
.card--soon { opacity: 0.94; }
.card--soon .card__num, .card--soon .card__name { opacity: 0.85; }
.card__num {
  font-family: var(--font-head); font-weight: 600; color: var(--gold);
  font-size: clamp(2.4rem, 4vw, 3rem); line-height: 1; margin-bottom: 0.75rem;
}
.card__name {
  font-family: var(--font-head); font-weight: 700; color: var(--ivory);
  font-size: clamp(1.35rem, 2.4vw, 1.6rem); line-height: 1.1; letter-spacing: 0.005em;
}
.card__tag {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ivory);
  opacity: 0.82; line-height: 1.55; margin-top: 0.65rem; font-weight: 300; flex: 1;
}
.card__visit {
  font-family: var(--font-body); color: var(--gold); font-size: 0.78rem;
  letter-spacing: 0.16em; font-weight: 600; margin-top: 1.4rem;
  display: inline-block; transition: transform 0.25s var(--ease);
}
.card__visit--soon {
  color: var(--ivory); opacity: 0.75; font-weight: 500;
}

/* ============================================================
   5. THE CALL (burgundy sanctuary)
   ============================================================ */
.call {
  background: var(--burgundy); text-align: center;
  padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
}
.call__inner { max-width: 800px; margin: 0 auto; }
.call__heading {
  font-family: var(--font-head); font-weight: 500; color: var(--ivory);
  font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.04; letter-spacing: -0.005em;
}
.call__body {
  font-family: var(--font-body); font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--ivory); line-height: 1.9; margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 700px; font-weight: 300; opacity: 0.94;
}
.call__cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.btn {
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.14em;
  font-weight: 500; padding: 1rem 2rem; border: 1px solid var(--gold);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover, .btn--gold:focus-visible { background: #d9b53a; }
.btn--outline { color: var(--gold); background: transparent; }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--gold); color: var(--black); }
.call__contact {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ivory);
  opacity: 0.78; margin-top: 2.5rem; font-weight: 300;
}
.call__contact a { color: var(--gold); border-bottom: 1px solid var(--gold-line); }
.call__contact a:hover { border-color: var(--gold); }

/* ============================================================
   6. CLOSING (black altar)
   ============================================================ */
.closing {
  position: relative; background: var(--black); text-align: center;
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 5vw, 4rem);
}
.closing__inner { position: relative; z-index: 2; max-width: 1000px; }
.closing__heading {
  font-family: var(--font-head); font-weight: 600; color: var(--ivory);
  display: flex; flex-direction: column; line-height: 0.98; letter-spacing: -0.01em;
  font-size: clamp(3.2rem, 12vw, 7rem);
}
.closing__sub {
  font-family: var(--font-head); font-weight: 600; color: var(--gold);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem); letter-spacing: 0.02em;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}
.closing__signoff {
  font-family: var(--font-body); font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  color: var(--ivory); opacity: 0.85; margin-top: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.05em; font-weight: 300;
}
.closing__nav {
  margin-top: 1.5rem; display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; align-items: center;
}
.closing__nav a {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--gold);
  opacity: 0.85; transition: opacity 0.25s;
}
.closing__nav a:hover, .closing__nav a:focus-visible { opacity: 1; }
.closing__nav span { color: var(--gold); opacity: 0.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(10,10,10,0.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-line);
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    padding: 0.5rem 0;
  }
  .nav.menu-open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 1rem clamp(1.25rem, 4vw, 3rem); font-size: 0.95rem; opacity: 1; }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__title { align-items: center; }
  .hero__portrait { order: 2; max-width: 380px; margin: 2rem auto 0; }
  .hero__caption { text-align: center; }

  .man__inner { grid-template-columns: 1fr; text-align: center; }
  .man__heading br { display: none; }
  .man__portrait { order: -1; max-width: 340px; margin-bottom: 1rem; }

  .platforms__grid { grid-template-columns: 1fr; }
  .manifesto, .closing { min-height: auto; }
}

@media (max-width: 400px) {
  .hero__title { font-size: clamp(2.1rem, 11vw, 2.75rem); }
  .closing__heading { font-size: clamp(2.6rem, 15vw, 3.4rem); }
  .btn { width: 100%; justify-content: center; }
}

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ============================================================
   PROCLAMATION ANTHEM PLAYER (floating gold pill)
============================================================ */
.anthem-player {
  position: fixed; z-index: 60;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  font-family: var(--font-body);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.anthem-player:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(201,162,39,0.25);
}
.anthem-player__toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  padding: 0;
}
.anthem-player__toggle:hover, .anthem-player__toggle:focus-visible {
  transform: scale(1.06);
  outline: none;
}
.anthem-player__icon { display: inline-flex; align-items: center; justify-content: center; }
.anthem-player__wave {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  gap: 2px;
}
.anthem-player__wave i {
  width: 2px; height: 8px; background: var(--black); border-radius: 2px;
  animation: anthem-wave 0.9s ease-in-out infinite;
}
.anthem-player__wave i:nth-child(2) { animation-delay: 0.12s; }
.anthem-player__wave i:nth-child(3) { animation-delay: 0.24s; }
.anthem-player__wave i:nth-child(4) { animation-delay: 0.36s; }
@keyframes anthem-wave {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1.4); }
}
.anthem-player.is-playing .anthem-player__wave { display: inline-flex; }
.anthem-player.is-playing .anthem-play,
.anthem-player.is-playing .anthem-pause { visibility: hidden; }
.anthem-player__meta {
  display: flex; flex-direction: column; gap: 1px; line-height: 1.1;
  padding-right: 0.35rem;
}
.anthem-player__title {
  font-size: 0.7rem; letter-spacing: 0.18em; color: var(--gold);
  font-weight: 600; text-transform: uppercase;
}
.anthem-player__artist {
  font-size: 0.72rem; color: var(--ivory);
  text-decoration: none; letter-spacing: 0.02em; opacity: 0.9;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.anthem-player__artist:hover { color: var(--gold); opacity: 1; }

@media (max-width: 640px) {
  .anthem-player { padding: 0.4rem 0.85rem 0.4rem 0.4rem; }
  .anthem-player__toggle { width: 34px; height: 34px; }
  .anthem-player__meta { padding-right: 0.2rem; }
  .anthem-player__title { font-size: 0.62rem; }
  .anthem-player__artist { font-size: 0.66rem; }
}
@media (prefers-reduced-motion: reduce) {
  .anthem-player__wave i { animation: none; }
}

/* ================= JOIN FORM MODAL ================= */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,10,10,0.78); backdrop-filter: blur(6px); }
.modal__card {
  position: relative;
  background: var(--ivory, #F5EFE0);
  color: var(--black, #0A0A0A);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,162,39,0.15);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 2.25rem 2rem 2rem;
  animation: modalIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 0.5rem; right: 0.75rem;
  background: none; border: none; color: #4A0E1F;
  font-size: 2rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.6rem;
  transition: color 0.2s;
}
.modal__close:hover { color: #C9A227; }
.modal__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.4rem 0 0.3rem; letter-spacing: 0.01em;
  color: #2A0E4A;
}
.modal__sub { color: #4A0E1F; margin: 0 0 1.5rem; font-size: 0.95rem; letter-spacing: 0.02em; }

.join-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field__label {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #4A0E1F; font-weight: 600;
}
.field input, .field textarea, .field select {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(74,14,31,0.25);
  border-radius: 3px;
  color: #0A0A0A;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #C9A227;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.field textarea { resize: vertical; min-height: 72px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row .field--sm { max-width: 100%; }
.btn--wide { width: 100%; justify-content: center; margin-top: 0.5rem; }
.join-form__note { margin: 0.4rem 0 0; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.join-form__note.success { color: #2A0E4A; font-weight: 600; }
.join-form__note.error { color: #4A0E1F; }
.join-form__success {
  text-align: center; padding: 2rem 1rem;
}
.join-form__success h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem; color: #2A0E4A; margin: 0.5rem 0 0.75rem;
}
.join-form__success p { color: #4A0E1F; margin: 0.4rem 0; }
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .modal__card { padding: 1.75rem 1.25rem 1.5rem; }
}

/* ================= COVENANT OF SEVEN ================= */
.seven {
  position: relative;
  margin: 2.5rem auto 2rem;
  max-width: 620px;
  padding: 2rem 1.5rem 1.75rem;
  background: linear-gradient(180deg, rgba(42,14,74,0.04) 0%, rgba(74,14,31,0.06) 100%);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
}
.seven::before, .seven::after {
  content: "🌹";
  position: absolute;
  font-size: 0.9rem;
  opacity: 0.55;
}
.seven::before { top: 0.5rem; left: 0.75rem; }
.seven::after  { top: 0.5rem; right: 0.75rem; }
.seven__mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 1;
  margin: 0 0 0.2rem;
  color: #C9A227;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(201,162,39,0.35);
}
.seven__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: 0.16em;
  color: #2A0E4A;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.seven__body {
  color: rgba(10,10,10,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.seven__body strong {
  color: #4A0E1F;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.seven__tiers {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.seven__tiers li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.65rem 0.35rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 3px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.seven__tiers li:hover {
  transform: translateY(-2px);
  border-color: #C9A227;
  background: rgba(201,162,39,0.1);
}
.seven__amt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: #2A0E4A;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  letter-spacing: 0.02em;
}
.seven__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A0E1F;
  opacity: 0.8;
}
@media (max-width: 640px) {
  .seven__tiers { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .seven__mark { font-size: 4rem; }
  .seven { padding: 1.5rem 1rem 1.25rem; }
}
