/* ============================================================
   KAPITAL KLASSIK — SHARED STYLES
   Refined edition · bold + classy hybrid
   ============================================================ */

:root {
  /* Color: deep burgundy, antique gold, warm cream, ink black */
  --wine: #2C060F;             /* Deepest wine */
  --burgundy: #5E1220;          /* Rich burgundy — chapter signature */
  --burgundy-bright: #7A1A2A;
  --crimson: #8B1A2A;           /* Crimson pulled toward burgundy */
  --crimson-deep: #6B1424;
  --crimson-dark: #3F0A14;
  --gold: #A8842C;              /* Antique gold — no more bright yellow */
  --gold-bright: #BD9A48;
  --gold-warm: #8C6E22;
  --gold-deep: #5E4914;
  --cream: #F2E8CE;             /* Warm cream */
  --paper: #F6EDD4;             /* Slightly warmer page background */
  --ink: #0A0707;
  --ink-soft: #1a1212;
  --rule: rgba(168, 132, 44, 0.28);

  --display: "Anton", "Big Shoulders Display", Impact, sans-serif;
  --display-alt: "Big Shoulders Display", Impact, sans-serif;
  --sans: "Outfit", -apple-system, system-ui, sans-serif;
  --rail: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4rem, 10vw, 8rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== shared atoms ===== */
.diamond {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.diamond--lg { width: 22px; height: 22px; }
.diamond--sm { width: 8px; height: 8px; }
.diamond--outline {
  background: transparent;
  border: 2px solid var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--display-alt);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: skew(-8deg);
  box-shadow: 4px 4px 0 var(--ink);
  vertical-align: middle;
}
.eyebrow > * { transform: skew(8deg); display: inline-block; }

.eyebrow--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
}

/* ===== ornament divider (new) ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 auto;
  max-width: 320px;
  padding: 0.75rem 0;
}
.ornament__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament__diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
}
.ornament__diamond--center {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--gold);
}
.ornament--dark .ornament__diamond--center {
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--gold);
}
.ornament--cream .ornament__diamond--center {
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--gold);
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 2rem;
  font-family: var(--display-alt);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 3px solid var(--ink);
  background: var(--burgundy);
  color: var(--cream);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.btn::after {
  content: "→";
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:hover::after { transform: translateX(5px); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.btn--ghost-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 6px 6px 0 var(--gold);
}
.btn--ghost-cream:hover {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
}
.btn--gold-line {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 4px 4px 0 var(--gold);
  padding: 1rem 1.85rem;
}
.btn--gold-line:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.container { max-width: 1380px; margin: 0 auto; padding: 0 var(--rail); }
section { padding: var(--section-y) 0; position: relative; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@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;
  padding: 1rem var(--rail);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 8, 8, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
}
.nav::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.nav--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.nav--transparent::after { display: none; }
.nav--transparent.scrolled {
  background: rgba(10, 8, 8, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.7rem var(--rail);
}
.nav--transparent.scrolled::after { display: block; }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--cream);
  font-family: var(--display-alt);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }
.nav__links a.active::after { width: 100%; }

.nav__cta {
  padding: 0.7rem 1.4rem;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--display-alt);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: transform 0.2s ease;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav__cta:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); background: var(--burgundy-bright); }

.nav__menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 980px) {
  .nav__links, .nav__cta-wrap { display: none; }
  .nav__menu-btn { display: block; }
  .nav.menu-open { background: var(--ink); }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    padding: 1.5rem var(--rail) 2rem;
    gap: 1.4rem;
    align-items: flex-start;
    border-bottom: 4px solid var(--gold);
  }
  .nav.menu-open .nav__cta-wrap {
    display: block;
    position: absolute;
    top: 100%; left: var(--rail); right: var(--rail);
    transform: translateY(calc(100% + 1.5rem));
  }
}

/* ===== homepage hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(168, 132, 44, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(94, 18, 32, 0.55) 0%, transparent 60%),
    linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 50%, var(--ink) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 90px,
    rgba(168, 132, 44, 0.035) 90px,
    rgba(168, 132, 44, 0.035) 92px
  );
  pointer-events: none;
}

/* Subtle grain texture for premium feel */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero__diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero__diamonds .d { position: absolute; transform: rotate(45deg); }
.hero__diamonds .d-1 {
  width: 440px; height: 440px;
  top: 4%; right: -180px;
  border: 4px solid var(--gold);
  opacity: 0.32;
}
.hero__diamonds .d-1::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 2px solid var(--gold);
  opacity: 0.5;
}
.hero__diamonds .d-2 {
  width: 200px; height: 200px;
  top: 48%; right: 6%;
  background: var(--gold);
  opacity: 0.12;
}
.hero__diamonds .d-3 {
  width: 540px; height: 540px;
  bottom: -260px; left: -220px;
  border: 4px solid var(--crimson);
  opacity: 0.5;
}
.hero__diamonds .d-4 {
  width: 90px; height: 90px;
  top: 16%; left: 6%;
  background: var(--gold);
  opacity: 0.75;
}
.hero__diamonds .d-5 {
  width: 50px; height: 50px;
  bottom: 32%; right: 32%;
  background: var(--cream);
  opacity: 0.85;
}

.hero__1911 {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 16rem);
  color: var(--gold);
  opacity: 0.05;
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}


.hero__inner { position: relative; z-index: 3; width: 100%; }

.hero__chapter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 2rem;
  color: var(--cream);
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__chapter .pill {
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.4rem 0.85rem;
  font-weight: 900;
  transform: skew(-8deg);
  box-shadow: 3px 3px 0 var(--ink);
  border: 1px solid var(--gold);
}
.hero__chapter .pill > span { display: inline-block; transform: skew(8deg); }

/* Hero overline: refined gold flourish above title */
.hero__overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__overline::before, .hero__overline::after {
  content: "";
  height: 1px;
  background: var(--gold);
  flex: 0 0 40px;
}
.hero__overline::after { flex: 1; max-width: 120px; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 14vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.hero__title .line { display: block; position: relative; }
.hero__title .accent {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(168, 132, 44, 0.4);
}

.hero__sub {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  color: var(--cream);
  max-width: 620px;
  margin: 0 0 2.75rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hero__sub .gold { color: var(--gold); }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  background: rgba(10, 8, 8, 0.55);
  border: 2px solid var(--gold);
  box-shadow: 8px 8px 0 var(--crimson-deep);
  position: relative;
}
.hero__meta::before, .hero__meta::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
}
.hero__meta::before { top: -7px; left: -7px; }
.hero__meta::after { bottom: -7px; right: -7px; }

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.5rem;
  flex: 1 1 auto;
  min-width: 160px;
  border-right: 1px solid rgba(168, 132, 44, 0.3);
}
.hero__meta-item:last-child { border-right: 0; }
.hero__meta-label {
  font-family: var(--display-alt);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__meta-value {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

@media (max-width: 720px) {
  .hero__meta-item {
    border-right: 0;
    border-bottom: 1px solid rgba(168, 132, 44, 0.3);
    flex: 1 1 100%;
  }
  .hero__meta-item:last-child { border-bottom: 0; }
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1.25rem; }

.hero__overline, .hero__chapter, .hero__title .line, .hero__sub, .hero__meta, .hero__ctas {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero__overline { animation-delay: 0.05s; }
.hero__chapter { animation-delay: 0.15s; }
.hero__title .line:nth-child(1) { animation-delay: 0.28s; }
.hero__title .line:nth-child(2) { animation-delay: 0.4s; }
.hero__title .line:nth-child(3) { animation-delay: 0.52s; }
.hero__sub { animation-delay: 0.7s; }
.hero__meta { animation-delay: 0.84s; }
.hero__ctas { animation-delay: 0.96s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== page hero (inner pages) ===== */
.page-hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(168, 132, 44, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(94, 18, 32, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 50%, var(--ink) 100%);
  border-bottom: 1px solid var(--rule);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 80px,
    rgba(168, 132, 44, 0.035) 80px,
    rgba(168, 132, 44, 0.035) 82px
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero__diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__diamonds .d { position: absolute; transform: rotate(45deg); }
.page-hero__diamonds .d-1 {
  width: 320px; height: 320px;
  top: 14%; right: -120px;
  border: 3px solid var(--gold);
  opacity: 0.25;
}
.page-hero__diamonds .d-1::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.page-hero__diamonds .d-2 {
  width: 80px; height: 80px;
  top: 38%; right: 18%;
  background: var(--gold);
  opacity: 0.55;
}
.page-hero__diamonds .d-3 {
  width: 220px; height: 220px;
  bottom: -110px; left: -90px;
  border: 3px solid var(--crimson);
  opacity: 0.5;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display-alt);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.page-hero__crumb a { color: rgba(248, 239, 216, 0.7); transition: color 0.25s; }
.page-hero__crumb a:hover { color: var(--gold); }
.page-hero__crumb .sep { color: rgba(248, 239, 216, 0.4); }

.page-hero__overline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.page-hero__overline::before, .page-hero__overline::after {
  content: "";
  height: 1px;
  background: var(--gold);
}
.page-hero__overline::before { flex: 0 0 30px; }
.page-hero__overline::after { flex: 1; max-width: 100px; }

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: 0.005em;
}
.page-hero h1 .accent {
  color: var(--gold);
  text-shadow: 0 0 50px rgba(168, 132, 44, 0.35);
}
.page-hero p {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--cream);
  max-width: 640px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}

/* ===== glance ===== */
.glance {
  background: var(--cream);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.glance::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 400px; height: 400px;
  background: var(--burgundy);
  transform: rotate(45deg);
  opacity: 0.04;
}
.glance__top-rule {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  margin-bottom: 3.5rem;
}
.glance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.glance__item {
  padding: 1rem 1.75rem;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.glance__item:first-child { border-left: 0; padding-left: 0; }
.glance__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--gold);
}
.glance__item:first-child::before { display: none; }
.glance__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--burgundy);
  line-height: 1;
}
.glance__num .small {
  font-size: 0.5em;
  color: var(--ink);
  margin-left: 0.2em;
  vertical-align: super;
}
.glance__label {
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.glance__sub {
  font-size: 0.86rem;
  color: rgba(10, 8, 8, 0.6);
  font-weight: 500;
}
@media (max-width: 880px) {
  .glance__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .glance__item {
    border-left: 0;
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--rule);
    padding-top: 1.5rem;
  }
  .glance__item::before { display: none; }
  .glance__item:nth-child(1), .glance__item:nth-child(2) { border-top: 0; padding-top: 0.5rem; }
  .glance__item:nth-child(odd) { padding-left: 0; }
  .glance__item:nth-child(even) { border-left: 1px solid var(--rule); padding-left: 1.25rem; }
}

/* ===== brothers featured section (new) ===== */
.featured {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(168, 132, 44, 0.15) 0%, transparent 55%),
    linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 60%, var(--ink) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 90px,
    rgba(168, 132, 44, 0.03) 90px,
    rgba(168, 132, 44, 0.03) 92px
  );
  pointer-events: none;
}
.featured__top-rule, .featured__bot-rule {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.featured__top-rule { top: 0; }
.featured__bot-rule { bottom: 0; }

.featured__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.featured__copy { }
.featured__overline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.featured__overline::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.featured__copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.92;
  margin-bottom: 1.75rem;
  color: var(--cream);
}
.featured__copy h2 .accent { color: var(--gold); }
.featured__copy p {
  color: rgba(248, 239, 216, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.featured__copy p strong { color: var(--gold); font-weight: 700; }
.featured__copy .ornament {
  margin: 2rem 0;
  justify-content: flex-start;
  max-width: 200px;
}
.featured__signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.featured__signature-label {
  font-family: var(--display-alt);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.featured__signature-name {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.featured__photo {
  position: relative;
  border: 4px solid var(--gold);
  box-shadow: 14px 14px 0 var(--ink), 14px 14px 0 6px var(--gold);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.featured__photo:hover { transform: translate(-3px, -3px); }
.featured__photo img { width: 100%; display: block; }

/* Decorative corner accents on the photo */
.featured__photo::before, .featured__photo::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 3px solid var(--gold);
  z-index: 2;
}
.featured__photo::before {
  top: 12px; left: 12px;
  border-right: 0; border-bottom: 0;
}
.featured__photo::after {
  bottom: 12px; right: 12px;
  border-left: 0; border-top: 0;
}

@media (max-width: 880px) {
  .featured__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== hub: section preview cards (homepage) ===== */
.hub { background: var(--paper); overflow: hidden; position: relative; }
.hub__head {
  text-align: center;
  margin-bottom: 4rem;
}
.hub__head .eyebrow { margin-bottom: 2.25rem; }
.hub__head h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  color: var(--ink);
}
.hub__head h2 .accent { color: var(--burgundy); }
.hub__head p {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  color: rgba(10, 8, 8, 0.7);
  line-height: 1.7;
  font-weight: 500;
}
.hub__head .ornament { margin-top: 1.75rem; }

.hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.hub-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 2.5rem 2.25rem 2.25rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* Crimson corner triangle */
.hub-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background: var(--burgundy);
  transform: rotate(45deg) translate(35px, -35px);
  transition: background 0.3s ease;
}
/* Decorative gold corner ornament */
.hub-card::after {
  content: "";
  position: absolute;
  bottom: 12px; left: 12px;
  width: 22px; height: 22px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hub-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--burgundy);
}
.hub-card:hover::before { background: var(--gold); }
.hub-card:hover::after { opacity: 1; }
.hub-card__num {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold-warm);
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.hub-card h3 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 0.95;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.hub-card h3 .accent { color: var(--burgundy); }
.hub-card p {
  color: rgba(10, 8, 8, 0.7);
  line-height: 1.65;
  font-size: 0.98rem;
  font-weight: 500;
  margin: 0;
  flex-grow: 1;
}
.hub-card__link {
  font-family: var(--display-alt);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  transition: color 0.25s, gap 0.25s ease;
  align-self: flex-start;
}
.hub-card__link::after {
  content: "→";
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.hub-card:hover .hub-card__link { color: var(--burgundy); gap: 0.9rem; }
.hub-card:hover .hub-card__link::after { transform: translateX(4px); }

.hub-card--feature {
  grid-column: span 2;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: 8px 8px 0 var(--burgundy);
}
.hub-card--feature::before {
  background: var(--gold);
  width: 90px; height: 90px;
  transform: rotate(45deg) translate(45px, -45px);
}
.hub-card--feature:hover { box-shadow: 12px 12px 0 var(--gold); }
.hub-card--feature:hover::before { background: var(--burgundy); }
.hub-card--feature .hub-card__num { color: var(--gold); }
.hub-card--feature h3 { color: var(--cream); }
.hub-card--feature h3 .accent { color: var(--gold); }
.hub-card--feature p { color: rgba(248, 239, 216, 0.8); }
.hub-card--feature .hub-card__link { color: var(--gold); }
.hub-card--feature:hover .hub-card__link { color: var(--gold-bright); }
.hub-card--feature::after {
  border-color: var(--gold-bright);
}

@media (max-width: 760px) {
  .hub__grid { grid-template-columns: 1fr; }
  .hub-card--feature { grid-column: span 1; }
}

/* ===== vision ===== */
.vision { background: var(--paper); overflow: hidden; }
.vision__head {
  text-align: center;
  margin-bottom: 4rem;
}
.vision__head .eyebrow { margin-bottom: 2.25rem; }
.vision__head h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--ink);
}
.vision__head h2 .accent { color: var(--burgundy); }
.vision__head p {
  max-width: 720px;
  margin: 1.75rem auto 0;
  font-size: 1.1rem;
  color: rgba(10, 8, 8, 0.75);
  line-height: 1.7;
  font-weight: 500;
}
.vision__head .ornament { margin-top: 1.75rem; }

.vision__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vision__feature {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 1.75rem 1.5rem 2rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.vision__feature::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50px; height: 50px;
  background: var(--burgundy);
  transform: rotate(45deg) translate(25px, -25px);
  transition: background 0.3s ease;
}
.vision__feature::after {
  content: "";
  position: absolute;
  bottom: 10px; left: 10px;
  width: 18px; height: 18px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.vision__feature:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--burgundy);
}
.vision__feature:hover::before { background: var(--gold); }
.vision__feature:hover::after { opacity: 1; }
.vision__num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 1rem;
}
.vision__feature h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1;
  letter-spacing: 0.01em;
}
.vision__feature p {
  font-size: 0.95rem;
  color: rgba(10, 8, 8, 0.7);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 980px) { .vision__features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vision__features { grid-template-columns: 1fr; } }

/* ===== sponsor wall (confirmed sponsors) ===== */
.sponsor-wall {
  background: var(--paper);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.sponsor-wall::before {
  content: "";
  position: absolute;
  top: -120px; left: -120px;
  width: 320px; height: 320px;
  background: var(--burgundy);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.sponsor-wall::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -120px;
  width: 320px; height: 320px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.07;
  pointer-events: none;
}
.sponsor-wall > .container { position: relative; z-index: 1; }

.sponsor-wall__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.sponsor-wall__head .eyebrow { margin-bottom: 2.25rem; }
.sponsor-wall__head h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.sponsor-wall__head h2 .accent { color: var(--burgundy); }
.sponsor-wall__head p {
  color: rgba(10, 7, 7, 0.7);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.sponsor-wall__head .ornament { margin-top: 1.5rem; }

.sponsor-wall__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  max-width: 980px;
  margin: 0 auto;
}
.sponsor-wall__card {
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--burgundy);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.25rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.sponsor-wall__card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--burgundy);
}
.sponsor-wall__card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
a.sponsor-wall__card { text-decoration: none; cursor: pointer; }

.sponsor-wall__note {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 640px;
  font-family: var(--display-alt);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-warm);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .sponsor-wall__grid { grid-template-columns: 1fr; gap: 1.75rem; max-width: 420px; }
  .sponsor-wall__card { padding: 1.5rem; box-shadow: 5px 5px 0 var(--burgundy); }
  .sponsor-wall__card:hover { box-shadow: 7px 7px 0 var(--burgundy); }
}

/* ===== sponsor ===== */
.sponsor {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(168, 132, 44, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--burgundy) 0%, var(--wine) 60%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.sponsor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 90px,
    rgba(168, 132, 44, 0.035) 90px,
    rgba(168, 132, 44, 0.035) 92px
  );
  pointer-events: none;
}

.sponsor__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
  position: relative;
}
.sponsor__head h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--cream);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.sponsor__head h2 .accent { color: var(--gold); }
.sponsor__head p {
  color: rgba(248, 239, 216, 0.85);
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0 auto;
  font-weight: 500;
}
.sponsor__head .ornament { margin-top: 1.75rem; }

.sponsor__featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.tier {
  background: var(--ink);
  border: 3px solid var(--gold);
  padding: 2.5rem 2.25rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 8px 8px 0 var(--burgundy);
  overflow: hidden;
}
.tier:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--burgundy);
}
.tier--featured { background: linear-gradient(135deg, var(--burgundy) 0%, var(--ink) 100%); }

.tier__crown {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display-alt);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-bottom: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}
.tier__crown--alt {
  background: var(--cream);
  color: var(--ink);
}

.tier__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.tier__name {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.tier__price {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}
.tier__price .dollar {
  color: var(--gold);
  font-size: 0.5em;
  vertical-align: super;
}
.tier__title-line {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  display: block;
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}
.tier__list li::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.sponsor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) {
  .sponsor__grid { grid-template-columns: repeat(2, 1fr); }
}
.tier-mini {
  background: var(--ink);
  border: 3px solid var(--cream);
  padding: 1.75rem 1.5rem;
  transition: all 0.25s ease;
  position: relative;
}
.tier-mini:hover {
  background: var(--burgundy);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.tier-mini__avail {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display-alt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.tier-mini__name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.7rem;
  padding-right: 4.5rem;
  min-height: 2.6em;
  line-height: 1.1;
}
.tier-mini__price {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 0.85rem;
}
.tier-mini__price .dollar {
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: super;
}
.tier-mini__desc {
  font-size: 0.92rem;
  color: rgba(248, 239, 216, 0.75);
  line-height: 1.5;
  font-weight: 500;
}

.sponsor__cta { text-align: center; margin-top: 3rem; }
.sponsor__cta p {
  font-family: var(--display-alt);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}

@media (max-width: 880px) {
  .sponsor__featured { grid-template-columns: 1fr; }
  .sponsor__grid { grid-template-columns: 1fr; }
}

/* ===== course ===== */
.course { background: var(--paper); overflow: hidden; position: relative; }
.course::before {
  content: "1911";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(20rem, 40vw, 38rem);
  color: var(--burgundy);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.02em;
}
.course__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.course__copy .eyebrow { margin-bottom: 2.25rem; }
.course__copy h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.75rem;
  color: var(--ink);
}
.course__copy h2 .accent { color: var(--burgundy); }
.course__copy p {
  color: rgba(10, 8, 8, 0.75);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.course__details {
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.75rem;
  display: grid;
  gap: 1rem;
  position: relative;
}
.course__details::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--gold);
  border: 3px solid var(--paper);
}
.course__detail {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(168, 132, 44, 0.3);
}
.course__detail:last-child { border-bottom: 0; padding-bottom: 0; }
.course__detail dt {
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-top: 0.25rem;
}
.course__detail dd {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.course__visual {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--burgundy);
  transition: transform 0.4s ease;
  background: var(--ink);
}
.course__visual:hover { transform: translate(-3px, -3px); }
.course__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

/* Corner ornaments on course photo */
.course__visual-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.course__visual-corners::before, .course__visual-corners::after {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  border: 3px solid var(--gold);
}
.course__visual-corners::before {
  top: 14px; left: 14px;
  border-right: 0; border-bottom: 0;
}
.course__visual-corners::after {
  top: 14px; right: 14px;
  border-left: 0; border-bottom: 0;
}

.course__stamp {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 110px; height: 110px;
  transform: rotate(45deg);
  background: var(--gold);
  border: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--burgundy);
  z-index: 2;
}
.course__stamp-inner {
  transform: rotate(-45deg);
  text-align: center;
  font-family: var(--display);
  color: var(--ink);
  line-height: 1;
}
.course__stamp-inner .y { font-size: 0.7rem; letter-spacing: 0.18em; }
.course__stamp-inner .n { font-size: 1.85rem; }

.course__visual-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 2;
}
.course__visual-overlay .label {
  font-family: var(--display-alt);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.course__visual-overlay .title {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .course__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .course__visual { aspect-ratio: 1 / 0.85; max-width: 520px; }
}

.course__gallery {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}
.course__gallery-item {
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--burgundy);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.course__gallery-item:nth-child(2) {
  box-shadow: 8px 8px 0 var(--gold);
}
.course__gallery-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--burgundy);
}
.course__gallery-item:nth-child(2):hover {
  box-shadow: 11px 11px 0 var(--gold);
}
.course__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.course__gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 7, 7, 0.88) 100%);
  color: var(--gold);
  padding: 2rem 1.25rem 0.9rem;
  font-family: var(--display-alt);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .course__gallery { grid-template-columns: 1fr; }
}

/* ===== cause ===== */
.cause {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cause::before, .cause::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid var(--gold);
  pointer-events: none;
}
.cause::before {
  width: clamp(300px, 50vw, 500px);
  height: clamp(300px, 50vw, 500px);
  opacity: 0.3;
}
.cause::after {
  width: clamp(450px, 70vw, 700px);
  height: clamp(450px, 70vw, 700px);
  opacity: 0.12;
  border-color: var(--burgundy);
}
.cause__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.cause .eyebrow { margin-bottom: 2rem; }
.cause h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  margin-bottom: 2.25rem;
  color: var(--cream);
}
.cause h2 .accent { color: var(--burgundy); }
.cause p {
  color: rgba(248, 239, 216, 0.85);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  max-width: 640px;
  font-weight: 500;
}
.cause p strong { color: var(--gold); font-weight: 700; }
.cause__quote {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--gold);
  max-width: 800px;
  margin: 3.5rem auto 0;
  padding: 2.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  position: relative;
}
.cause__quote-ornament {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cause__quote-ornament .line {
  width: 60px; height: 1px;
  background: var(--gold);
}
.cause__quote-ornament .diamond {
  width: 14px; height: 14px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== flyers ===== */
.flyers {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.flyers::before {
  content: "";
  position: absolute;
  top: -50px; left: -100px;
  width: 350px; height: 350px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.flyers::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -150px;
  width: 450px; height: 450px;
  background: var(--burgundy);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.flyers__head { text-align: center; margin-bottom: 4rem; position: relative; }
.flyers__head .eyebrow { margin-bottom: 2.25rem; }
.flyers__head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.flyers__head h2 .accent { color: var(--burgundy); }
.flyers__head p {
  color: rgba(10, 8, 8, 0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 1.05rem;
}
.flyers__head .ornament { margin-top: 1.5rem; }
.flyers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.flyer-card {
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--burgundy);
  background: var(--ink);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}
.flyer-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--burgundy);
}
.flyer-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.flyer-card:hover img { transform: scale(1.03); }
.flyer-card__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 8, 0.92) 100%);
  color: var(--gold);
  padding: 2.5rem 1.5rem 1rem;
  font-family: var(--display-alt);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}
.flyers__cta {
  text-align: center;
  margin-top: 3rem;
  color: rgba(10, 8, 8, 0.7);
}
.flyers__cta p {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
@media (max-width: 720px) {
  .flyers__grid { grid-template-columns: 1fr; }
}

/* ===== faq ===== */
.faq { background: var(--cream); border-top: 1px solid var(--rule); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.faq__head .eyebrow { margin-bottom: 2.25rem; }
.faq__head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.faq__head h2 .accent { color: var(--burgundy); }
.faq__head p {
  color: rgba(10, 8, 8, 0.7);
  line-height: 1.7;
  font-weight: 500;
}
.faq__head .ornament {
  margin-top: 1.5rem;
  justify-content: flex-start;
  max-width: 200px;
}

.faq__item {
  border: 3px solid var(--ink);
  background: var(--paper);
  margin-bottom: 1rem;
  transition: all 0.25s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.faq__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--burgundy);
}
.faq__item.open {
  box-shadow: 6px 6px 0 var(--burgundy);
  transform: translate(-2px, -2px);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.4rem 1.6rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.4s ease, background 0.25s;
}
.faq__item.open .faq__icon {
  transform: rotate(225deg);
  background: var(--burgundy);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq__a-inner {
  padding: 0 1.6rem 1.4rem;
  color: rgba(10, 8, 8, 0.75);
  line-height: 1.7;
  font-size: 0.98rem;
  font-weight: 500;
  border-top: 1px dashed rgba(168, 132, 44, 0.35);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}
.faq__item.open .faq__a { max-height: 600px; }
@media (max-width: 880px) { .faq__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== cta banner ===== */
.cta {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168, 132, 44, 0.25) 0%, transparent 70%),
    linear-gradient(135deg, var(--crimson) 0%, var(--burgundy) 50%, var(--wine) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 70px,
    rgba(168, 132, 44, 0.06) 70px,
    rgba(168, 132, 44, 0.06) 72px
  );
  pointer-events: none;
}
.cta__diamond {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: clamp(400px, 70vw, 700px);
  height: clamp(400px, 70vw, 700px);
  border: 3px solid var(--gold);
  opacity: 0.2;
  pointer-events: none;
}
.cta__diamond::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid var(--gold);
  opacity: 0.7;
}
.cta__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.cta .eyebrow { margin-bottom: 2rem; }
.cta h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  margin-bottom: 1.75rem;
  color: var(--cream);
}
.cta h2 .accent { color: var(--gold); }
.cta p {
  color: rgba(248, 239, 216, 0.92);
  line-height: 1.6;
  font-size: 1.15rem;
  margin: 0 auto 2.75rem;
  max-width: 580px;
  font-weight: 500;
}
.cta__btns { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

/* ===== footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "WAC1911";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 18rem);
  color: var(--burgundy);
  opacity: 0.07;
  letter-spacing: 0.02em;
  pointer-events: none;
  line-height: 1;
}
.footer__top-rule {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.footer__about {
  color: rgba(248, 239, 216, 0.72);
  line-height: 1.7;
  max-width: 380px;
  font-size: 0.95rem;
  font-weight: 500;
}
.footer__col h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col a {
  color: rgba(248, 239, 216, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__col a::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--burgundy);
  transform: rotate(45deg);
  transition: background 0.25s;
}
.footer__col a:hover { color: var(--gold); }
.footer__col a:hover::before { background: var(--gold); }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.footer__copyright {
  font-size: 0.78rem;
  color: rgba(248, 239, 216, 0.6);
  letter-spacing: 0.04em;
}
.footer__yitb {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer__tags {
  font-family: var(--display-alt);
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { justify-content: flex-start; }
}

/* ===== chapter seal (logo + ornament) ===== */
.seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.seal__logo {
  width: 220px;
  position: relative;
  background: transparent;
  display: block;
}
.seal__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.seal--small .seal__logo {
  width: 150px;
}
.seal__label {
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* Inline mini-seal for navigation */
.nav__brand .seal-mini {
  width: 56px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__brand .seal-mini img { width: 100%; height: auto; display: block; }

/* ===== proceeds banner (on homepage hero, below CTAs) ===== */
.proceeds-banner {
  background: var(--paper);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.proceeds-banner::before, .proceeds-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.proceeds-banner::before { top: 6px; }
.proceeds-banner::after { bottom: 6px; }

.proceeds-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}
.proceeds-banner__label {
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
}
.proceeds-banner__text {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.proceeds-banner__text .accent { color: var(--burgundy); }
.proceeds-banner__diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
@media (max-width: 720px) {
  .proceeds-banner__inner { flex-direction: column; gap: 0.4rem; }
  .proceeds-banner__diamond { display: none; }
}

/* ===== proceeds feature (on homepage, between brothers and hub) ===== */
.proceeds {
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proceeds::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: var(--burgundy);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.proceeds__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.proceeds__copy {}
.proceeds__overline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--gold-warm);
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.proceeds__overline::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-warm);
}
.proceeds__copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.92;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.proceeds__copy h2 .accent { color: var(--burgundy); }
.proceeds__copy p {
  color: rgba(10, 8, 8, 0.75);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.proceeds__copy p strong { color: var(--burgundy); font-weight: 700; }
.proceeds__copy .btn { margin-top: 1rem; }

.proceeds__photo {
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--burgundy);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proceeds__photo:hover {
  transform: translate(-3px, -3px);
  box-shadow: 15px 15px 0 var(--burgundy);
}
.proceeds__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proceeds__photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 7, 7, 0.92) 100%);
  color: var(--cream);
}
.proceeds__photo-label {
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.proceeds__photo-name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.proceeds__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.proceeds__seal .seal__logo {
  width: clamp(300px, 38vw, 460px);
  height: auto;
}
@media (max-width: 880px) {
  .proceeds__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .proceeds__seal { padding: 0; }
  .proceeds__seal .seal__logo {
    width: clamp(240px, 65vw, 360px);
  }
}

/* ===== guide right gallery + video (about page) ===== */
.guide-right {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.guide-right__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}
.guide-right__head .eyebrow { margin-bottom: 2.25rem; }
.guide-right__head h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.guide-right__head h2 .accent { color: var(--burgundy); }
.guide-right__head p {
  color: rgba(10, 8, 8, 0.75);
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 auto 0.75rem;
}
.guide-right__head .ornament { margin-top: 1.5rem; }

.guide-right__pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 3rem auto 4rem;
  max-width: 1100px;
}
.guide-right__pillar {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.guide-right__pillar:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--burgundy);
}
.guide-right__pillar-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-right__pillar-icon span {
  transform: rotate(-45deg);
  font-family: var(--display);
  color: var(--ink);
  font-size: 0.95rem;
}
.guide-right__pillar h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .guide-right__pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .guide-right__pillars { grid-template-columns: 1fr; }
}

.guide-right__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
.guide-right__photo {
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--burgundy);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.guide-right__photo:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--burgundy);
}
.guide-right__photo--large {
  grid-row: span 2;
}
.guide-right__photo--gold-shadow {
  box-shadow: 8px 8px 0 var(--gold);
}
.guide-right__photo--gold-shadow:hover {
  box-shadow: 11px 11px 0 var(--gold);
}
.guide-right__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-right__photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 8, 0.9) 100%);
  color: var(--gold);
  padding: 2.5rem 1.25rem 1rem;
  font-family: var(--display-alt);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .guide-right__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .guide-right__photo--large { grid-row: auto; aspect-ratio: 16/10; }
  .guide-right__photo:not(.guide-right__photo--large) { aspect-ratio: 16/10; }
}

.guide-right__video {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--burgundy);
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.guide-right__video video {
  width: 100%;
  display: block;
}
.guide-right__video-caption {
  text-align: center;
  margin-top: 1.75rem;
  font-family: var(--display-alt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
}

/* ===== tournament details (about page) ===== */
.tournament {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(168, 132, 44, 0.14) 0%, transparent 55%),
    linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 55%, var(--ink) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}
/* Tighten the gap when guide-right sits directly above */
.guide-right { padding-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.tournament::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 90px,
    rgba(168, 132, 44, 0.03) 90px,
    rgba(168, 132, 44, 0.03) 92px
  );
  pointer-events: none;
}
.tournament > .container { position: relative; z-index: 1; }

.tournament__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}
.tournament__head .eyebrow { margin-bottom: 2.25rem; }
.tournament__head h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.tournament__head h2 .accent { color: var(--gold); }
.tournament__head p {
  color: rgba(242, 232, 206, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 auto;
}
.tournament__head .ornament { margin-top: 1.5rem; }

.tournament__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
}
.tournament__fact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.85rem 1.5rem 1.65rem;
  background: rgba(10, 7, 7, 0.55);
  border: 2px solid rgba(168, 132, 44, 0.4);
  text-align: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s, background 0.25s;
}
.tournament__fact::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--gold);
  transition: background 0.25s;
}
.tournament__fact::after {
  content: "";
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 2px;
  background: var(--gold);
  opacity: 0.7;
}
.tournament__fact:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(94, 18, 32, 0.55);
}
.tournament__fact:hover::before { background: var(--cream); }
.tournament__fact-label {
  font-family: var(--display-alt);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.tournament__fact-value {
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0.2rem 0 0.65rem;
}
.tournament__fact-sub {
  font-family: var(--display-alt);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 232, 206, 0.7);
  padding-bottom: 0.6rem;
}
@media (max-width: 880px) {
  .tournament__facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tournament__facts { grid-template-columns: 1fr; gap: 0.85rem; }
}

.tournament__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.tournament__col {
  background: rgba(10, 7, 7, 0.45);
  border: 1px solid var(--rule);
  padding: 2rem 1.75rem;
  position: relative;
}
.tournament__col::before {
  content: "";
  position: absolute;
  top: -2px; left: 24px;
  width: 36px; height: 4px;
  background: var(--gold);
}
.tournament__col h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.tournament__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tournament__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(242, 232, 206, 0.9);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}
.tournament__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.tournament__list--time li { align-items: baseline; gap: 1rem; }
.tournament__list--time li::before { display: none; }
.tournament__list--time .t {
  font-family: var(--display-alt);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 70px;
  flex-shrink: 0;
}
.tournament__list--time .e {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .tournament__grid { grid-template-columns: 1fr; }
}

.tournament__clinic {
  background: rgba(168, 132, 44, 0.08);
  border: 1px dashed rgba(168, 132, 44, 0.5);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
}
.tournament__clinic-label {
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(168, 132, 44, 0.4);
  padding-right: 1.5rem;
}
.tournament__clinic h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 0.35rem;
}
.tournament__clinic p {
  color: rgba(242, 232, 206, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.tournament__list--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
.tournament__list--inline li { white-space: nowrap; }
@media (max-width: 880px) {
  .tournament__clinic {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tournament__clinic-label {
    border-right: 0;
    border-bottom: 1px solid rgba(168, 132, 44, 0.4);
    padding-right: 0;
    padding-bottom: 0.85rem;
  }
  .tournament__list--inline { flex-direction: column; gap: 0.6rem; }
}

.tournament__cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.tournament__cta-line {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.tournament__cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
/* On the dark tournament background, the cream-outline ghost button is hard to read.
   Force the cream-fill + ink-text look (matches its hover state) for both states. */
.tournament__cta-btns .btn--ghost-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.tournament__cta-btns .btn--ghost-cream:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
}
.tournament__cta-note {
  font-size: 0.82rem;
  color: rgba(242, 232, 206, 0.65);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.6;
}
.tournament__cta-note a {
  color: var(--gold);
  border-bottom: 1px solid rgba(168, 132, 44, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
.tournament__cta-note a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* ===== features (about page — featured guests/media) ===== */
.features {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 320px; height: 320px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.features::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -100px;
  width: 320px; height: 320px;
  background: var(--burgundy);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
}
.features > .container { position: relative; z-index: 1; }

.features__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.features__head h2 {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.features__head h2 .accent { color: var(--burgundy); }
.features__head p {
  color: rgba(10, 7, 7, 0.7);
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.02rem;
  margin: 0;
}
.features__head .ornament { margin-top: 1.5rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--burgundy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}
.feature-card:nth-child(2) { box-shadow: 10px 10px 0 var(--gold); }
.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--burgundy);
}
.feature-card:nth-child(2):hover { box-shadow: 14px 14px 0 var(--gold); }

.feature-card__photo {
  width: 100%;
  max-height: 320px;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-card__photo img { transform: scale(1.03); }

.feature-card__body {
  padding: 1.85rem 1.85rem 2rem;
}
.feature-card__label {
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 0.6rem;
}
.feature-card h3 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 0.95;
  margin: 0 0 0.5rem;
}
.feature-card__role {
  font-family: var(--display-alt);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 1rem;
}
.feature-card__body > p:not(.feature-card__role) {
  color: rgba(10, 7, 7, 0.75);
  line-height: 1.6;
  font-size: 0.97rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
}
.feature-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.feature-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--display-alt);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.feature-card__links a::after {
  content: "↗";
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.feature-card__links a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.feature-card__links a:hover::after { transform: translate(2px, -2px); }
@media (max-width: 720px) {
  .features__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== chapter signature row (homepage + about) ===== */
.chapter-signature {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.chapter-signature::before, .chapter-signature::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.chapter-signature::before { top: 0; }
.chapter-signature::after { bottom: 0; }
.chapter-signature__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.chapter-signature .seal__logo {
  background: transparent;
}
.chapter-signature__text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.chapter-signature__label {
  font-family: var(--display-alt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.chapter-signature__name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.chapter-signature__name .gold { color: var(--gold); }
@media (max-width: 540px) {
  .chapter-signature__inner { flex-direction: column; gap: 1.25rem; }
  .chapter-signature__text { text-align: center; }
}
