/* ================= index.html ================= */
/* ============================================================
   BUCKEYE BIG BUCK CLUB — Design System & Styles
   Heritage Sporting Editorial Aesthetic
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --color-forest:       #1B3D2F;
  --color-forest-deep:  #112A1F;
  --color-forest-light: #264D3C;
  --color-olive:        #3D4F3A;
  --color-sage:         #6B7D5E;
  --color-sage-light:   #8FA37E;
  --color-charcoal:     #1C1C1C;
  --color-graphite:     #2E2E2E;
  --color-slate:        #4A4A4A;
  --color-bone:         #F5F0E8;
  --color-parchment:    #EBE5D9;
  --color-cream:        #FAF8F4;
  --color-tan:          #C4A97D;
  --color-gold:         #B8943E;
  --color-gold-light:   #D4B157;
  --color-buckeye:      #8B2500;
  --color-buckeye-light:#A83010;
  --color-white:        #FFFFFF;
  --color-black:        #0A0A0A;

  /* Typography */
  --font-display:  'Bodoni Moda', 'Georgia', serif;
  --font-body:     'Vollkorn', 'Georgia', serif;
  --font-ui:       'DM Sans', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   3.75rem;
  --text-6xl:   4.5rem;
  --text-hero:  clamp(3rem, 6vw, 5.5rem);

  /* Spacing Scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Layout */
  --container-max:  1280px;
  --container-wide: 1440px;
  --container-narrow: 860px;
  --gutter:         clamp(1rem, 3vw, 2rem);

  /* Borders & Radius */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --border-thin:  1px solid;
  --border-rule:  1px solid rgba(0,0,0,0.1);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 50px rgba(0,0,0,0.16);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-med:  400ms;
  --duration-slow: 700ms;

  /* Header */
  --header-height: 80px;
  --header-total: var(--header-height);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-total);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

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

a {
  color: var(--color-forest);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out), text-decoration-color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: 2px;
}

/* Nav, buttons, and full-card links keep their own hover treatment */
.site-header .site-logo:hover {
  color: var(--color-cream);
  text-decoration: none;
}

.main-nav__link:hover,
.mobile-nav__link:hover {
  text-decoration: none;
}

a.btn:hover {
  text-decoration: none;
}

/* Global a:hover beats .btn--* on anchors; restore intended label colors */
a.btn--primary:hover,
a.btn--accent:hover {
  color: var(--color-cream);
}

a.btn--secondary:hover {
  color: var(--color-cream);
}

a.btn--ghost:hover {
  color: var(--color-cream);
}

a.btn--gold:hover {
  color: var(--color-charcoal);
}

a.action-card:hover {
  text-decoration: none;
}

.footer__social-link:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
}

h1 { font-size: var(--text-hero); }
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-top: 30px;
}
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p {
  margin-bottom: 1.4em;
  max-width: 68ch;
}

p:last-child {
  margin-bottom: 0;
}

.text-ui {
  font-family: var(--font-ui);
}

.text-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-overline {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-tan);
  display: inline-block;
  margin-bottom: var(--space-3);
}

.text-balance {
  text-wrap: balance;
}

/* Light text on dark backgrounds */
.on-dark {
  color: var(--color-bone);
}
.on-dark h1, .on-dark h2, .on-dark h3,
.on-dark h4, .on-dark h5, .on-dark h6 {
  color: var(--color-cream);
}
.on-dark .text-overline {
  color: var(--color-gold-light);
}
.on-dark p {
  color: rgba(245, 240, 232, 0.85);
}

.on-dark a {
  color: inherit;
}

.on-dark a:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.on-dark a.btn:hover {
  text-decoration: none;
}

.on-dark a.btn--primary:hover,
.on-dark a.btn--accent:hover {
  color: var(--color-cream);
}

.on-dark a.btn--secondary:hover {
  color: var(--color-cream);
}

.on-dark a.btn--ghost:hover {
  color: var(--color-cream);
}

.on-dark a.btn--gold:hover {
  color: var(--color-charcoal);
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.section--lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.grid {
  display: grid;
  gap: var(--gutter);
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* --- NOISE TEXTURE OVERLAY --- */
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* --- DECORATIVE RULE --- */
.rule {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}
.rule::before,
.rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-tan);
  opacity: 0.4;
}
.rule--short::before,
.rule--short::after {
  max-width: 80px;
}
.rule__icon {
  width: 12px;
  height: 12px;
  background: var(--color-tan);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   COMPONENTS
   ============================================================ */

/* --- BUTTONS --- */
.btn {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  transition: all var(--duration-med) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-forest);
  color: var(--color-cream);
  border: 2px solid var(--color-forest);
}
.btn--primary:hover {
  background: var(--color-forest-light);
  border-color: var(--color-forest-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}
.btn--secondary:hover {
  background: var(--color-forest);
  color: var(--color-cream);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid rgba(245, 240, 232, 0.4);
}
.btn--ghost:hover {
  border-color: var(--color-cream);
  background: rgba(245, 240, 232, 0.1);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-charcoal);
  border: 2px solid var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--color-buckeye);
  color: var(--color-cream);
  border: 2px solid var(--color-buckeye);
}
.btn--accent:hover {
  background: var(--color-buckeye-light);
  border-color: var(--color-buckeye-light);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-5);
  min-height: 36px;
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-5) var(--space-10);
  min-height: 56px;
}

.btn__arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}
.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* --- CARDS --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-out);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-parchment);
  position: relative;
  overflow: hidden;
}

.card__body {
  padding: var(--space-6);
}

.card__meta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-2);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.card__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.6;
}

.card__footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Action Card variant */
.action-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--duration-med) var(--ease-out);
  cursor: pointer;
  position: relative;
}

.action-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-forest);
  transform: scaleX(0);
  transition: transform var(--duration-med) var(--ease-out);
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 61, 47, 0.15);
}

.action-card:hover::before {
  transform: scaleX(1);
}

.action-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bone);
  border-radius: 50%;
  color: var(--color-forest);
  transition: all var(--duration-med) var(--ease-out);
}

.action-card:hover .action-card__icon {
  background: var(--color-forest);
  color: var(--color-cream);
}

.action-card__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.action-card__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin-top: var(--space-2);
  line-height: 1.5;
}

/* Event card variant */
.event-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-card__date {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-ui);
}

.event-card__date-day {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
}

.event-card__date-info {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  opacity: 0.85;
}

.event-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__tag {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.event-card__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.6;
  flex: 1;
}

.event-card__link {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest);
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.event-card__link:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}


/* ============================================================
   HEADER
   ============================================================ */

/* Main Header */
.site-header {
  background: var(--color-forest-deep);
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--duration-med) var(--ease-out);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-logo img,
.site-logo svg {
  width: 131px;
  height: 52px;
  object-fit: contain;
}

.site-logo__text {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: 1.3;
  display: none;
}

@media (min-width: 1100px) {
  .site-logo__text { display: block; }
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav__link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.main-nav__link:hover {
  color: var(--color-cream);
  background: rgba(255,255,255,0.08);
}

.main-nav__link--active {
  color: var(--color-cream);
}

.header-cta {
  margin-left: var(--space-4);
}

.header-cta .btn {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-5);
  min-height: 38px;
}

@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .menu-toggle { display: flex; }
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after { bottom: -7px; }

.menu-toggle.is-active .menu-toggle__bar {
  background: transparent;
}
.menu-toggle.is-active .menu-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-forest-deep);
  z-index: 999;
  padding: var(--space-8) var(--gutter);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--duration-med) var(--ease-out);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-cream);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav__link:hover {
  color: var(--color-gold-light);
}

.mobile-nav__cta {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-forest-deep);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Atmospheric background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Radial gradient for depth */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 60%, rgba(27, 61, 47, 0.9), transparent),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(61, 79, 58, 0.4), transparent),
    linear-gradient(175deg, var(--color-forest-deep) 0%, #162E22 40%, #1B3D2F 100%);
}

/* Subtle noise */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Logo watermark */
.hero__watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__watermark {
    width: 120%;
    right: -30%;
    opacity: 0.03;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--space-16) 0;
}

.hero__est {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__est::before,
.hero__est::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

.hero__title {
  font-size: var(--text-hero);
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(245, 240, 232, 0.4);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}

@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .hero__scroll { display: none; }
  .hero__actions {
    gap: var(--space-3);
    margin-bottom: var(--space-10);
  }
  .hero__actions .btn {
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-6);
    min-height: 44px;
  }
}

/* Slider paints beneath this container; .hero__content’s block box can overlap the
   nav on small screens. Pass taps through except real controls (links/buttons). */
.hero > .container {
  pointer-events: none;
}

.hero > .container .hero__content {
  pointer-events: none;
}

.hero > .container .hero__content :is(a, button, input, textarea, select) {
  pointer-events: auto;
}


/* ============================================================
   QUICK ACTIONS SECTION
   ============================================================ */
.quick-actions {
  background: var(--color-bone);
  position: relative;
  padding: var(--space-20) 0;
}

.quick-actions__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5);
}

@media (max-width: 1024px) {
  .quick-actions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .quick-actions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
  .action-card {
    padding: var(--space-6) var(--space-4);
  }
}


/* ============================================================
   STATS / CREDIBILITY SECTION
   ============================================================ */
.stats-section {
  background: var(--color-forest-deep);
  position: relative;
  padding: var(--space-20) 0;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,79,58,0.3), transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(27,61,47,0.4), transparent 70%);
}

.stats__header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-16);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(var(--space-8) / -2);
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(245,240,232,0.1);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-5xl));
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.stat-item__desc {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.4);
  margin-top: var(--space-2);
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10) var(--space-6);
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}


/* ============================================================
   MEMBERSHIP SECTION
   ============================================================ */
.membership-section {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.membership__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.membership__visual {
  background: var(--color-forest);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(184,148,62,0.15), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(107,125,94,0.2), transparent 60%);
}

.membership__visual-logo {
  width: 60%;
  opacity: 0.12;
  position: relative;
  z-index: 1;
}

.membership__visual-badge {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  z-index: 2;
  text-align: center;
}

.membership__visual-badge p {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-cream);
  font-style: italic;
  max-width: 100%;
}

.membership__content {
  padding: var(--space-4) 0;
}

.membership__benefits {
  margin: var(--space-8) 0;
}

.membership__benefit {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.membership__benefit:last-child {
  border-bottom: none;
}

.membership__benefit-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest);
  margin-top: 2px;
}

.membership__benefit-text h5 {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.membership__benefit-text p {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.5;
}

.membership__actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .membership__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .membership__visual {
    aspect-ratio: 3/2;
  }
  .membership__actions {
    flex-direction: column;
  }
}


/* ============================================================
   SCORING PATHWAY SECTION
   ============================================================ */
.pathway-section {
  background: var(--color-bone);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.pathway__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.pathway__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
  position: relative;
  counter-reset: step;
}

/* Connecting line */
.pathway__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-tan);
  opacity: 0.3;
  z-index: 0;
}

.pathway__step {
  text-align: center;
  position: relative;
  z-index: 1;
  counter-increment: step;
  padding: 0 var(--space-2);
}

.pathway__step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  position: relative;
  box-shadow: 0 0 0 4px var(--color-bone), 0 0 0 6px var(--color-forest);
}

.pathway__step-title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
  color: var(--color-charcoal);
}

.pathway__step-desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pathway__steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 400px;
    margin: 0 auto;
  }
  .pathway__steps::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .pathway__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-4);
    text-align: left;
    align-items: start;
  }
  .pathway__step-number {
    margin: 0;
    grid-row: 1 / 3;
  }
  .pathway__step-desc {
    max-width: none;
    margin: 0;
  }
}


/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--color-cream);
  padding: var(--space-24) 0;
}

.events__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
}

.events__header-actions {
  flex-shrink: 0;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .events__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
  .events__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SCORER FINDER SECTION
   ============================================================ */
.scorer-section {
  background: var(--color-forest);
  position: relative;
  padding: var(--space-20) 0;
  overflow: hidden;
}

.scorer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,79,58,0.4), transparent 70%);
}

.scorer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.scorer__map-placeholder {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.scorer__map-label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(245,240,232,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Ohio outline decorative */
.scorer__map-ohio {
  position: absolute;
  width: 70%;
  opacity: 0.06;
}

.scorer__content h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-6);
}

.scorer__content p {
  color: rgba(245,240,232,0.7);
  margin-bottom: var(--space-4);
  font-size: var(--text-md);
}

.scorer__features {
  margin: var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.scorer__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(245,240,232,0.8);
}

.scorer__feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .scorer__layout {
    grid-template-columns: 1fr;
  }
  .scorer__map-placeholder {
    aspect-ratio: 3/2;
  }
}


/* ============================================================
   TOP SCORERS / AWARDS SECTION
   ============================================================ */
.awards-section {
  background: var(--color-cream);
  padding: var(--space-24) 0;
  position: relative;
}

.awards__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.awards__table {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.awards__table-head {
  background: var(--color-forest-deep);
}

.awards__table-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 120px 100px;
  align-items: center;
  padding: 0 var(--space-6);
}

.awards__table-head .awards__table-row {
  padding: var(--space-4) var(--space-6);
}

.awards__table-th {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}

.awards__table-body .awards__table-row {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--duration-fast);
}

.awards__table-body .awards__table-row:hover {
  background: var(--color-bone);
}

.awards__table-rank {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  font-weight: 400;
}

.awards__table-name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-sm);
}

.awards__table-detail {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.awards__table-score {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-forest);
  text-align: right;
}

.awards__table-year {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
  text-align: right;
}

.awards__footer {
  text-align: center;
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .awards__table-row {
    grid-template-columns: 40px 1fr 80px;
    gap: var(--space-2);
  }
  .awards__table-detail,
  .awards__table-year {
    display: none;
  }
}


/* ============================================================
   HISTORY SECTION
   ============================================================ */
.history-section {
  background: var(--color-parchment);
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: multiply;
}

.history__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.history__visual {
  position: relative;
}

.history__year {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--color-tan);
  opacity: 0.15;
  line-height: 0.85;
  letter-spacing: -0.03em;
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  z-index: 0;
  pointer-events: none;
}

.history__image-placeholder {
  aspect-ratio: 4/3;
  background: var(--color-forest-deep);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.history__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(184,148,62,0.1), transparent 60%);
}

.history__image-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: rgba(245,240,232,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

.history__content {
  position: relative;
  z-index: 1;
}

.history__content h2 {
  margin-bottom: var(--space-6);
}

.history__content p {
  font-size: var(--text-md);
  color: var(--color-slate);
  line-height: 1.8;
}

.history__timeline {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.history__milestone {
  flex: 1;
  min-width: 140px;
}

.history__milestone-year {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-forest);
  margin-bottom: var(--space-1);
}

.history__milestone-text {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .history__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .history__year {
    font-size: 5rem;
  }
}


/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: var(--color-forest-deep);
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(184,148,62,0.08), transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(27,61,47,0.8), transparent 70%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  color: var(--color-cream);
  margin-bottom: var(--space-4);
}

.final-cta__subtitle {
  font-size: var(--text-lg);
  color: rgba(245,240,232,0.65);
  max-width: 560px;
  margin: 0 auto var(--space-10);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 480px) {
  .final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .final-cta__buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(245, 240, 232, 0.6);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
}

.footer__main {
  padding: var(--space-16) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
}

.footer__brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-4);
  opacity: 0.6;
}

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(245,240,232,0.5);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  background: var(--color-forest);
  color: var(--color-cream);
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: rgba(245, 240, 232, 0.5);
  transition: color var(--duration-fast);
  font-size: var(--text-sm);
}

.footer__link:hover {
  color: var(--color-gold-light);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-5) 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
}

.footer__legal a:hover {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-slider__slide,
  .lightbox,
  .faq-item__answer {
    transition: none !important;
  }
}


/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-2) 0;
}

.section-divider__line {
  height: 1px;
  width: 60px;
  background: currentColor;
  opacity: 0.2;
}

.section-divider__diamond {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid currentColor;
  opacity: 0.3;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Consistent keyboard-visible focus styling */
:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}

/* ============================================================
   BBBC — ADDITIONAL PAGE STYLES
   Hero Slideshow, Gallery, FAQ, Scorer Map, Inner Pages
   ============================================================ */

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slider__slide.is-active {
  opacity: 1;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  transform-origin: center center;
}

.hero-slider__slide.is-active img {
  animation: hero-slide-zoom 10s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-slide-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide.is-active img {
    animation: none;
  }
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,42,31,0.92) 0%, rgba(17,42,31,0.75) 40%, rgba(17,42,31,0.4) 100%);
  z-index: 1;
}

/* Touch-friendly slide controls */
.hero-slider__controls {
  position: absolute;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-slider__btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Full-size hit layer above the icon: taps can otherwise fall through the
   button to .hero-slider__touch when the only painted child is an SVG (WebKit). */
.hero-slider__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
}

.hero-slider__btn:hover,
.hero-slider__btn:active {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.hero-slider__dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.hero-slider__dot.is-active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 5px;
}

/* Touch swipe area for mobile */
.hero-slider__touch {
  position: absolute;
  inset: 0;
  z-index: 3;
  touch-action: pan-y;
}


/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  background: var(--color-forest-deep);
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(27,61,47,0.6), transparent),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(61,79,58,0.3), transparent);
}

.page-hero__layout,
.page-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  grid-template-areas:
    "breadcrumb"
    "title"
    "desc"
    "media"
    "cta";
}

.page-hero__breadcrumb {
  grid-area: breadcrumb;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: var(--space-4);
}

.page-hero__breadcrumb a {
  color: rgba(245,240,232,0.5);
  transition: color var(--duration-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-hero__breadcrumb span {
  margin: 0 var(--space-2);
  opacity: 0.5;
}

.page-hero h1 {
  grid-area: title;
  color: var(--color-cream);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: var(--space-4);
}

.page-hero__desc {
  grid-area: desc;
  font-size: var(--text-lg);
  color: rgba(245,240,232,0.65);
  max-width: 600px;
}

.page-hero__media {
  grid-area: media;
}

.page-hero__video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245,240,232,0.2);
  box-shadow: var(--shadow-md);
  background: rgba(0, 0, 0, 0.3);
}

.page-hero__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero__cta {
  grid-area: cta;
  margin-top: var(--space-6);
}

.page-hero__cta .btn {
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

@media (min-width: 960px) {
  .page-hero__layout {
    gap: var(--space-6) var(--space-10);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 34%);
    grid-template-areas:
      "breadcrumb media"
      "title media"
      "desc media"
      "cta media";
    align-items: start;
  }

  .page-hero__media {
    justify-self: end;
    width: 100%;
    max-width: 420px;
  }

  .page-hero__cta {
    margin-top: var(--space-4);
  }
}


/* ============================================================
   CONTENT AREA
   ============================================================ */
.content-area {
  padding: var(--space-16) 0;
}

.content-area h2 {
  margin-bottom: var(--space-4);
}

.content-area h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.content-area p + p {
  margin-top: 0;
}

.legal-doc {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-doc h2 {
  margin-top: var(--space-10);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc h3 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.legal-doc ul {
  margin: var(--space-3) 0 var(--space-4);
  padding-left: 1.35rem;
}

.legal-doc li + li {
  margin-top: var(--space-2);
}

.legal-doc a {
  color: var(--color-forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc a:hover {
  color: var(--color-gold);
}

.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1024px) {
  .content-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--color-bone);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.sidebar-card__title {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-forest);
}

.sidebar-card--cta {
  background: var(--color-forest);
  color: var(--color-cream);
}

.sidebar-card--cta .sidebar-card__title {
  color: var(--color-gold);
  border-bottom-color: rgba(255,255,255,0.1);
}

.sidebar-card--cta p {
  color: rgba(245,240,232,0.75);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.about-page__section + .about-page__section {
  padding-top: 0;
}

.about-page__section--lower {
  padding-bottom: var(--space-20);
}

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

.about-page__content-section--lower {
  margin-top: var(--space-10);
}

.sidebar-card__content > :first-child {
  margin-top: 0;
}

.sidebar-card__content > :last-child {
  margin-bottom: 0;
}

.sidebar-card__content p {
  max-width: none;
}

.sidebar-card__content ul,
.sidebar-card__content ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-card__content ul li + li,
.sidebar-card__content ol li + li {
  margin-top: var(--space-3);
}

.sidebar-card__content .footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sidebar-card__content .footer__links p {
  margin: 0;
}

.sidebar-card__content .footer__links p:empty {
  display: none;
}

.sidebar-card__content .footer__links br {
  display: none;
}

.sidebar-card__content .footer__links a {
  display: inline-block;
}

.sidebar-card__content a:not(.btn),
.sidebar-card__content ul a:not(.btn),
.sidebar-card__content ol a:not(.btn) {
  color: var(--color-forest);
  font-size: var(--text-sm);
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--duration-fast);
}

.sidebar-card__content a:not(.btn):hover,
.sidebar-card__content ul a:not(.btn):hover,
.sidebar-card__content ol a:not(.btn):hover {
  color: var(--color-buckeye);
  text-decoration: none;
}

.sidebar-card--cta .sidebar-card__content a:not(.btn) {
  color: inherit;
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-ui);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast);
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}

.faq-item__question:hover {
  color: var(--color-forest);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--duration-med) var(--ease-out);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-forest);
  transition: transform var(--duration-med) var(--ease-out);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-med) var(--ease-out),
              padding var(--duration-med) var(--ease-out);
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding-bottom: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-slate);
  line-height: 1.7;
  max-width: 60ch;
}


/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.gallery-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

@media (max-width: 768px) {
  .gallery-toolbar {
    justify-content: flex-end;
  }

  .gallery-toolbar__actions {
    justify-content: flex-end;
  }
}

.gallery-grid {
  columns: 4 280px;
  column-gap: var(--space-4);
  transition: opacity var(--duration-med) var(--ease-out);
}

.gallery-grid.is-shuffling {
  opacity: 0;
  pointer-events: none;
}

.gallery-grid.is-loading {
  opacity: 0;
}

.gallery-grid.is-ready {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid {
    transition: none;
    opacity: 1;
  }

  .gallery-grid.is-shuffling {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
    column-gap: var(--space-3);
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration-med) var(--ease-out);
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--color-cream);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--duration-med) var(--ease-out);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery placeholder cards */
.gallery-placeholder {
  width: 100%;
  background: var(--color-parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,10,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-med) var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: var(--text-2xl);
  cursor: pointer;
  z-index: 10001;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__caption {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  max-width: min(90vw, 36rem);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  color: var(--color-cream);
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  white-space: normal;
}

.lightbox__name {
  font-weight: 600;
  line-height: 1.3;
}

.lightbox__note {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.85);
}

.lightbox__note:empty {
  display: none;
}

.lightbox__note[hidden] {
  display: none;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--color-cream);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav--prev { left: var(--space-4); }
.lightbox__nav--next { right: var(--space-4); }

.gallery-filters {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.gallery-filter-btn {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  color: var(--color-slate);
  cursor: pointer;
  transition: all var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.is-active {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
}


/* ============================================================
   SCORER MAP & DIRECTORY
   ============================================================ */
.scorer-map-section {
  background: var(--color-bone);
  padding: var(--space-16) 0;
}

.scorer-map__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (max-width: 1024px) {
  .scorer-map__container {
    grid-template-columns: 1fr;
  }
}

.scorer-map__visual {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: calc(var(--header-height) + var(--space-4));
}

.scorer-map__svg-wrap {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  position: relative;
}

.scorer-map__svg-wrap:has(img) {
  aspect-ratio: auto;
}

.scorer-map__svg-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.scorer-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.scorer-map__legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity var(--duration-fast);
}

.scorer-map__legend-item:hover {
  opacity: 0.8;
}

.scorer-map__legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.scorer-map__pdf-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.scorer-map__pdf-row .btn {
  justify-content: center;
}

/* Ohio regions */
.region-northwest { --region-color: #267300; }
.region-northeast { --region-color: #f5f579; }
.region-central   { --region-color: #70a800; }
.region-southwest { --region-color: #e69800; }
.region-southeast { --region-color: #e7e600; }

/* Scorer directory list */
.scorer-directory {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.scorer-region {
  scroll-margin-top: calc(var(--header-height) + var(--space-4));
}

.scorer-region__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-forest);
}

.scorer-region__swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.scorer-region__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scorer-region__count {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-sage);
  margin-left: auto;
}

.scorer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.scorer-entry {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.04);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  transition: all var(--duration-fast);
  align-items: center;
}

.scorer-entry:hover {
  background: var(--color-bone);
  border-color: rgba(0,0,0,0.08);
}

.scorer-entry__name {
  font-weight: 600;
  color: var(--color-charcoal);
}

.scorer-entry__id {
  display: inline-block;
  min-width: 3.5ch;
  margin-right: 0.4em;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--color-slate);
}

.scorer-entry__county {
  color: var(--color-slate);
}

.scorer-entry__contact {
  color: var(--color-forest);
  font-weight: 600;
  white-space: nowrap;
}

.scorer-entry__contact a {
  color: inherit;
}

.scorer-region__note {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin: 0 0 var(--space-4);
  line-height: var(--leading-normal);
}

.scorer-region--other .scorer-region__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .scorer-entry {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}


/* ============================================================
   RECORD BOOK
   ============================================================ */
.record-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--color-white);
  --record-rank-col: 3.75rem;
}

.record-table-scroll:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: 2px;
}

.record-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  background: var(--color-white);
}

.record-table thead {
  background: var(--color-forest-deep);
}

.record-table th {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  padding: var(--space-4) var(--space-4);
  text-align: left;
  white-space: nowrap;
}

.record-table td {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--color-charcoal);
}

.record-table tbody tr:hover {
  background: var(--color-bone);
}

.record-table .score-cell {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-forest);
  font-weight: 500;
}

.record-table .rank-cell {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold);
}

/* Sticky Rank + Hunter; remaining columns scroll horizontally on narrow viewports */
.record-table th:nth-child(1),
.record-table td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
  width: var(--record-rank-col);
  min-width: var(--record-rank-col);
  max-width: var(--record-rank-col);
  text-align: center;
  vertical-align: middle;
}

.record-table th:nth-child(1) {
  z-index: 4;
}

.record-table th:nth-child(2),
.record-table td:nth-child(2) {
  position: sticky;
  left: var(--record-rank-col);
  z-index: 2;
  box-sizing: border-box;
  min-width: 7.5rem;
  max-width: 11.5rem;
  vertical-align: middle;
}

.record-table th:nth-child(2) {
  z-index: 4;
}

.record-table td:nth-child(2) {
  white-space: normal;
  word-break: break-word;
  font-weight: 600;
}

.record-table th:nth-child(1),
.record-table th:nth-child(2) {
  background: var(--color-forest-deep);
}

.record-table td:nth-child(1),
.record-table td:nth-child(2) {
  background: var(--color-white);
}

.record-table tbody tr:hover td:nth-child(1),
.record-table tbody tr:hover td:nth-child(2) {
  background: var(--color-bone);
}

.record-table th:nth-child(n + 3),
.record-table td:nth-child(n + 3) {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .record-table th:nth-child(2),
  .record-table td:nth-child(2) {
    box-shadow: 8px 0 16px -10px rgba(0, 0, 0, 0.35);
  }
}

.record-book-section + .record-book-section {
  margin-top: var(--space-10);
}

.record-note {
  background: var(--color-bone);
  border-left: 3px solid var(--color-gold);
  padding: var(--space-4) var(--space-6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-8);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.record-note a {
  color: var(--color-forest);
  font-weight: 600;
  text-decoration: none;
}

.record-note a:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}


/* ============================================================
   EVENTS ARCHIVE
   ============================================================ */
.events-archive {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-archive--isotope {
  display: block;
}

.events-archive--isotope.events-archive--isotope-pending {
  opacity: 0;
}

.event-list-item-wrap {
  width: 100%;
}

.events-archive--isotope .event-list-item-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.events-archive--isotope .event-list-item-wrap .event-list-item {
  flex: 1 1 auto;
  min-height: 0;
}

.events-filter-bar {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.event-list-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease,
    box-shadow var(--duration-med) var(--ease-out);
  align-items: center;
  will-change: transform, opacity;
  width: 100%;
}

.event-list-item[hidden] {
  display: none;
}

.event-list-item-wrap[hidden] {
  display: none;
}

.event-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.event-list-item__date {
  text-align: center;
  background: var(--color-forest);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  color: var(--color-cream);
}

.event-list-item__date-month {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.event-list-item__date-day {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
}

.event-list-item__content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.event-list-item__meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-sage);
}

.event-list-item__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

@media (max-width: 768px) {
  .event-list-item {
    grid-template-columns: 80px 1fr;
  }
  .event-list-item > .btn {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   MEMBERSHIP / WOOCOMMERCE PRODUCT CARDS
   ============================================================ */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration-med) var(--ease-out);
  text-align: center;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  border: 2px solid var(--color-gold);
}

.product-card--renewal {
  border: 2px solid var(--color-gold);
  border-radius: 0;
  box-shadow: none;
}

.product-card--renewal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-forest) 0%,
    var(--color-forest-light) 45%,
    var(--color-gold) 100%
  );
  border-radius: 0;
  z-index: 1;
}

.product-card--renewal:hover {
  box-shadow: none;
}

.product-card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.product-card__body {
  padding: var(--space-8) var(--space-6);
}

.product-card__name {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: var(--space-2);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.product-card__price span {
  font-size: var(--text-base);
  color: var(--color-slate);
  font-family: var(--font-ui);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.product-card__features {
  text-align: left;
  margin-bottom: var(--space-6);
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  color: var(--color-charcoal);
}

.product-card__feature svg {
  flex-shrink: 0;
  color: var(--color-forest);
}

/* Membership page: join copy (left) + renewal card (right) */
.membership-page-split {
  margin-bottom: var(--space-16);
}

.membership-join > .text-overline {
  margin-bottom: var(--space-2);
}

.membership-join > h2 {
  margin-top: 0;
}

.membership-join-steps {
  margin: var(--space-10) 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.membership-join-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
}

.membership-page-split :is(.membership-join, .membership-join-steps, .membership-join-step, .membership-renew-sidebar, .product-card__body) > p:empty {
  display: none;
}

.membership-join-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-cream), 0 0 0 5px var(--color-forest);
}

.membership-join-step__num {
  grid-column: 1;
  grid-row: 1;
}

.membership-join-step__body {
  grid-column: 2;
  min-width: 0;
}

.membership-join-step__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin: 0 0 var(--space-2);
}

.content-area .membership-join-step__title {
  margin-top: 0;
}

.membership-join-help__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin: var(--space-10) 0 var(--space-2);
}

.content-area .membership-join-help__title {
  margin-top: var(--space-10);
}

.membership-join-step__body p {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}

.membership-join-step__body p + p {
  margin-top: var(--space-3);
}

.membership-join-step__list {
  list-style: none;
  margin: var(--space-4) 0;
  padding: 0;
  color: var(--color-slate);
}

.membership-join-step__list li {
  position: relative;
  padding: 0 0 0 calc(var(--space-4) + 0.5rem);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.membership-join-step__list li + li {
  margin-top: var(--space-2);
}

.membership-join-step__list li::before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-forest);
  transform: translateY(-50%);
}

.membership-renew-sidebar {
  position: sticky;
  top: var(--space-10);
}

.membership-renew-sidebar .product-card + .product-card {
  margin-top: var(--space-6);
}

@media (max-width: 1024px) {
  .membership-renew-sidebar {
    position: static;
  }
}


/* ============================================================
   CONTACT PAGE — Get in Touch
   See assets/css/contact-get-in-touch.css (loaded after Gravity Forms on template-contact.php).
   ============================================================ */


/* ============================================================
   CONTACT — Leadership directory (ACF repeaters later)
   ============================================================ */
.leadership-directory {
  padding-bottom: var(--space-12);
  border-bottom: var(--border-rule);
}

.leadership-directory__header {
  margin-bottom: var(--space-10);
  max-width: 42rem;
}

.leadership-directory__header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-forest-deep);
  margin-bottom: var(--space-3);
}

.leadership-directory__deck {
  font-size: var(--text-md);
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 1024px) {
  .leadership-directory__header {
    max-width: calc(42rem + 100px);
  }
}

.leadership-group {
  margin-top: var(--space-12);
}

.leadership-group:first-of-type {
  margin-top: 0;
}

.leadership-directory .leadership-group__title {
  margin-top: 0;
  margin-bottom: var(--space-6);
}

.leadership-group__title {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-forest);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-forest);
}

.leadership-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .leadership-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .leadership-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.leadership-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-height: 100%;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.leadership-card:hover {
  border-color: rgba(27, 61, 47, 0.22);
  box-shadow: var(--shadow-md);
}

.leadership-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.3;
  margin: 0;
}

.leadership-card__role {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0;
  line-height: 1.45;
}

.leadership-card__contact {
  margin: 0;
  margin-top: auto;
  padding-top: var(--space-3);
}

.leadership-card__email {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  word-break: break-word;
}

/* ============================================================
   2025 SEASON AWARD WINNERS
   ============================================================ */
.awards-directory {
  padding-bottom: var(--space-12);
  border-bottom: var(--border-rule);
}

.award-special-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .award-special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .award-special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.award-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.award-card:hover {
  border-color: rgba(27, 61, 47, 0.22);
  box-shadow: var(--shadow-md);
}

.award-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bone);
  border-radius: 50%;
  color: var(--color-forest);
}

.award-card__body {
  min-width: 0;
}

.award-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.3;
  margin: 0 0 var(--space-2);
}

.award-card__honor {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0 0 var(--space-3);
  line-height: 1.45;
}

.award-card__winner {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.55;
  margin: 0;
}

.award-card__winner + .award-card__winner {
  margin-top: var(--space-2);
}

.awards-by-weapon {
  padding-top: var(--space-4);
  padding-bottom: var(--space-16);
}

.awards-by-weapon--typical {
  border-top: var(--border-rule);
  padding-top: var(--space-12);
}

.award-rank {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 var(--space-1);
}

.award-hunter-score {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-forest-deep);
  margin: 0;
}

.leadership-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 42rem;
}

@media (max-width: 639px) {
  .leadership-grid--two {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.leadership-grid--one {
  grid-template-columns: minmax(0, 18rem);
}


/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  text-align: center;
  padding: var(--space-32) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--color-parchment);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-page h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.error-page p {
  color: var(--color-slate);
  max-width: 480px;
  margin: 0 auto var(--space-8);
}


/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results__form {
  margin-bottom: var(--space-8);
}

.search-bar {
  display: flex;
  gap: var(--space-3);
  max-width: 600px;
}

.search-bar input {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  min-height: 52px;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--color-forest);
}

.search-result {
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.search-result__type {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.search-result__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.search-result__title a {
  color: var(--color-forest);
}

.search-result__title a:hover {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.search-result__excerpt {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.6;
}


/* ============================================================
   BANQUET PAGE
   ============================================================ */
.banquet-hero {
  background: var(--color-forest-deep);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banquet-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(184,148,62,0.1), transparent 60%);
}

.banquet-awards-teaser {
  background: var(--color-cream);
  padding: var(--space-10) 0;
  border-bottom: 1px solid rgba(27, 61, 47, 0.08);
}

.banquet-awards-teaser h2 {
  margin-bottom: var(--space-3);
}

.banquet-awards-teaser__copy {
  margin-bottom: var(--space-6);
  max-width: 42rem;
  font-size: var(--text-lg);
  color: var(--color-sage);
  line-height: 1.65;
}

.banquet-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: 1024px;
  margin: var(--space-10) auto 0;
  position: relative;
  z-index: 1;
}

.banquet-detail {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.banquet-detail__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.banquet-detail__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-cream);
}

@media (max-width: 640px) {
  .banquet-details {
    grid-template-columns: 1fr;
  }
}

.banquet-gallery-section {
  background:
    linear-gradient(180deg, rgba(15, 28, 20, 0.96), rgba(15, 28, 20, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(184, 148, 62, 0.14), transparent 35%);
  color: var(--color-cream);
  padding: var(--space-16) 0;
}

.banquet-gallery-section__header {
  margin-bottom: var(--space-8);
}

.banquet-gallery-section__header h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-4);
}

.banquet-gallery-section__header p {
  max-width: 78ch;
  color: rgba(245, 240, 232, 0.78);
}

.banquet-gallery-section__header a {
  color: var(--color-gold);
}

.banquet-gallery-section__header a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.banquet-gallery {
  position: relative;
}

.banquet-gallery__controls {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.banquet-gallery__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 240, 232, 0.25);
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.08);
  color: var(--color-cream);
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.banquet-gallery__btn:hover,
.banquet-gallery__btn:focus-visible {
  background: rgba(184, 148, 62, 0.22);
  border-color: rgba(184, 148, 62, 0.62);
  transform: translateY(-1px);
}

.banquet-gallery__btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.banquet-gallery__rail.swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding-bottom: var(--space-2);
  box-sizing: border-box;
}

.banquet-gallery__rail.swiper:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.banquet-gallery .swiper-slide {
  width: 22%;
  min-width: 190px;
  height: auto;
  box-sizing: border-box;
}

.banquet-gallery__scrollbar.swiper-scrollbar {
  position: relative;
  margin-top: var(--space-2);
  height: 9px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 999px;
}

.banquet-gallery__scrollbar .swiper-scrollbar-drag {
  background: rgba(184, 148, 62, 0.72);
  border-radius: 999px;
  cursor: grab;
}

.banquet-gallery__scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}

.banquet-gallery .gallery-item {
  margin-bottom: 0;
}

.banquet-gallery .gallery-item__caption {
  z-index: 1;
}

.banquet-gallery__item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(245, 240, 232, 0.08);
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.banquet-gallery__item.gallery-item img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: transform var(--duration-med) var(--ease-out),
              filter var(--duration-med) var(--ease-out);
}

.banquet-gallery__item:hover img {
  transform: scale(1.02);
  filter: saturate(1.06);
}

@media (max-width: 960px) {
  .banquet-gallery .swiper-slide {
    width: 38%;
    min-width: 180px;
  }
}

@media (max-width: 640px) {
  .banquet-gallery-section {
    padding: var(--space-12) 0;
  }

  .banquet-gallery__controls {
    display: none;
  }

  .banquet-gallery .swiper-slide {
    width: 72%;
    min-width: 0;
  }
}

.raffle-page__grid {
  display: grid;
  gap: var(--space-12);
  align-items: start;
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .raffle-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 17.5rem);
    gap: var(--space-16);
    max-width: none;
  }
}

.raffle-page__copy .text-overline {
  margin-bottom: var(--space-3);
}

.raffle-page__note {
  font-size: var(--text-sm);
  color: var(--color-sage);
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-4);
  margin-top: var(--space-6);
}

.raffle-page__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.raffle-page__qr-card {
  background: var(--color-cream);
  border: 1px solid rgba(27, 61, 47, 0.12);
  border-radius: 4px;
  padding: var(--space-8);
  text-align: center;
  box-shadow: 0 12px 40px rgba(21, 37, 28, 0.08);
}

.raffle-page__qr-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-forest-deep);
  margin: 0 0 var(--space-2);
}

.raffle-page__qr-desc {
  font-size: var(--text-sm);
  color: var(--color-sage);
  margin: 0 0 var(--space-6);
  line-height: 1.5;
}

.raffle-page__qr-mount {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-3);
  background: #fff;
  border-radius: 2px;
  margin-inline: auto;
}

.raffle-page__qr-mount img,
.raffle-page__qr-mount canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   SCORER PORTAL (private page — scorers.html)
   ============================================================ */

.scorer-portal-callout {
  border-left-color: var(--color-buckeye);
  background: var(--color-cream);
  margin: var(--space-8) 0;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

body.scorer-portal .content-area .scorer-portal-callout__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-midnight);
  margin-top: 0;
  margin-bottom: var(--space-4);
}

.scorer-portal-callout__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.scorer-portal-callout__list li {
  margin: 0;
}

.scorer-client-script {
  margin: var(--space-6) 0 var(--space-8);
}

.scorer-client-script blockquote {
  margin: 0;
  padding: var(--space-6) var(--space-6) var(--space-5);
  background: var(--color-bone);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-gold);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  color: var(--color-slate);
  line-height: 1.65;
}

.scorer-client-script blockquote p {
  margin: 0 0 var(--space-4);
}

.scorer-client-script blockquote p:last-child {
  margin-bottom: 0;
}

.scorer-client-script__caption {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--color-sage);
  font-family: var(--font-ui);
}

.scorer-portal-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
}

.scorer-portal-table thead {
  background: var(--color-forest-deep);
  color: var(--color-cream);
}

.scorer-portal-table th {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
}

.scorer-portal-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(21, 37, 28, 0.12);
  vertical-align: top;
}

.scorer-portal-table tbody tr:hover td {
  background: rgba(21, 37, 28, 0.04);
}

/* Facebook section — card layout, clear link treatment */
.scorer-portal-social__grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-5);
  margin-bottom: 45px;
}

@media (min-width: 640px) {
  .scorer-portal-social__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.scorer-portal-social__card {
  padding: var(--space-5) var(--space-6);
  background: var(--color-bone);
  border: 1px solid rgba(21, 37, 28, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.scorer-portal-social__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0 0 var(--space-3);
}

.scorer-portal-social__link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-forest-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.15em;
  margin-bottom: var(--space-3);
  transition: color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.scorer-portal-social__link:hover {
  color: var(--color-buckeye);
  border-bottom-color: var(--color-buckeye);
  text-decoration: none;
}

.scorer-portal-social__link:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: 3px;
  border-radius: 2px;
}

.scorer-portal-social__group {
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-forest-deep);
  margin: 0 0 var(--space-3);
  line-height: 1.35;
}

.scorer-portal-social__desc {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin: 0;
  line-height: 1.55;
  max-width: none;
}

/* Scorer portal only: h3 25% smaller than site default */
body.scorer-portal .content-area h3 {
  font-size: calc(var(--text-2xl) * 0.75);
}

.scorers-privacy-note {
  max-width: 83ch;
  margin-bottom: var(--space-6);
}

/* Lifetime members directory (scorers.html) */
.lifetime-members-panel {
  margin-top: var(--space-2);
}

.lifetime-members-toolbar {
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lifetime-members-search-label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-forest-deep);
}

.lifetime-members-search {
  width: 100%;
  max-width: 28rem;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  border: 1px solid rgba(21, 37, 28, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  box-sizing: border-box;
}

.lifetime-members-search::placeholder {
  color: var(--color-sage);
}

.lifetime-members-search:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(38, 115, 0, 0.18);
}

.lifetime-members-count {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-sage);
  margin: 0;
}

.lifetime-members-scroll {
  max-height: min(28rem, 52vh);
  overflow: auto;
  border: 1px solid rgba(21, 37, 28, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: var(--color-forest) var(--color-bone);
}

.lifetime-members-scroll:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: 2px;
}

.lifetime-members-scroll::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

.lifetime-members-scroll::-webkit-scrollbar-track {
  background: var(--color-bone);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.lifetime-members-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-forest) 0%, var(--color-forest-deep) 100%);
  border-radius: 6px;
  border: 2px solid var(--color-bone);
}

.lifetime-members-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-buckeye);
}

.lifetime-members-scroll::-webkit-scrollbar-corner {
  background: var(--color-bone);
}

/* Sticky green header bar: rows scroll beneath solid forest header */
.lifetime-members-table.scorer-portal-table {
  border-collapse: separate;
  border-spacing: 0;
}

.lifetime-members-table.scorer-portal-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--color-forest-deep);
  color: var(--color-cream);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
  background-clip: padding-box;
}

.lifetime-members-table.scorer-portal-table thead th:first-child {
  border-top-left-radius: calc(var(--radius-sm) - 1px);
}

.lifetime-members-table.scorer-portal-table thead th:last-child {
  border-top-right-radius: calc(var(--radius-sm) - 1px);
}

.lifetime-members-name {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.lifetime-members-name .lifetime-members-name-part {
  font-weight: 700;
}

.lifetime-members-address {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-slate);
}

.lifetime-members-address .lifetime-members-note {
  font-weight: 700;
}


/* ============================================================
   MERCHANDISE PAGE
   ============================================================ */

.merch-filters {
  margin-bottom: var(--space-10);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.merch-grid--isotope {
  display: block;
}

.merch-grid--isotope.merch-grid--isotope-pending {
  opacity: 0;
}

.merch-grid--isotope .merch-card-wrap {
  width: calc((100% - (2 * var(--space-8))) / 3);
  margin-bottom: var(--space-8);
}

@media (max-width: 1024px) {
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .merch-grid--isotope .merch-card-wrap {
    width: calc((100% - var(--space-6)) / 2);
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 480px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .merch-grid--isotope .merch-card-wrap {
    width: 100%;
    margin-bottom: var(--space-6);
  }
}

.merch-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.merch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.merch-card--featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold);
}

.merch-card__img {
  aspect-ratio: 4 / 3;
  background: var(--color-parchment);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Block + line-height:0 avoids baseline gap under <img> inside <a>. Fill cell so parchment doesn’t show under the photo. */
.merch-card__img-link {
  display: block;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  line-height: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.merch-card__img-link:focus-visible {
  outline: 2px solid var(--color-forest);
  outline-offset: -2px;
}

/* Placeholder “image coming soon” blocks (no product link wrapper). */
.merch-card__img:not(:has(.merch-card__img-link)) {
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.merch-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(107, 125, 94, 0.07) 18px,
    rgba(107, 125, 94, 0.07) 19px
  );
}

.merch-card__placeholder-icon {
  width: 72px;
  height: 54px;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

.merch-card__placeholder-text {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-sage);
  position: relative;
  z-index: 1;
}

.merch-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-card__category {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.merch-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0 0 var(--space-2);
  line-height: 1.25;
}

.merch-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.merch-card__price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-forest);
  margin-bottom: var(--space-4);
}

/* Size pricing table for custom sticker */
.merch-card__sizes {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.merch-card__size-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-slate);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.merch-card__size-row:last-child {
  border-bottom: none;
}

.merch-card__size-row span:last-child {
  font-weight: 600;
  color: var(--color-forest);
}

.merch-card__color-note {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  color: var(--color-sage);
  margin-bottom: var(--space-4);
  font-style: italic;
}

/* Hidden cards when filtered */
.merch-card[hidden] {
  display: none;
}

.merch-ordering-note {
  margin-top: var(--space-12);
  padding: var(--space-6);
  background: var(--color-bone);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-tan);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}


/* ============================================================
   EVENTS SLIDER SECTION
   ============================================================ */
.events-slider-section {
  background: var(--color-bone);
  position: relative;
  overflow: hidden;
}

.events-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(31, 58, 43, 0.035) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(31, 58, 43, 0.025) 0 1px, transparent 1px);
  background-size: 14px 14px, 18px 18px;
  opacity: 0.5;
}

.events-slider-section .container {
  position: relative;
  z-index: 1;
}

.events-slider-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.events-slider {
  position: relative;
  margin-bottom: 0;
}

.events-slider-cta {
  display: flex;
  justify-content: center;
}

.events-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex: 1;
  margin-bottom: 45px;
}

.events-slider__track {
  display: flex;
  align-items: stretch;
  touch-action: pan-y;
  user-select: none;
}

.events-slider__item {
  height: auto;
  display: flex;
}

.events-slider__item .event-card {
  width: 100%;
}

/* Events Slider Controls */
.events-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.events-slider__btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-forest);
  border: 2px solid var(--color-forest);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.events-slider__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
}

.events-slider__btn:hover,
.events-slider__btn:active {
  background: var(--color-forest-light);
  border-color: var(--color-forest-light);
  transform: translateY(-2px);
}

.events-slider__dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.events-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sage);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}

.events-slider__dot.is-active {
  background: var(--color-forest);
  width: 24px;
  border-radius: 5px;
}

.hero-slider__touch {
  touch-action: pan-y;
}

/* ============================================================
  SINGLE EVENT PAGE
  ============================================================ */
.event-single__layout {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.event-single__meta-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.event-single__meta-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.event-single__meta-label {
  margin: 0 0 var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
}

.event-single__meta-value {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-forest);
}

.event-single__content {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}

.event-single__content h2,
.event-single__content h3 {
  margin-bottom: var(--space-3);
}

.event-single__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.event-single__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: var(--space-2);
}

.event-single__list li:last-child {
  margin-bottom: 0;
}

.event-single__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(184, 148, 62, 0.18);
}

.event-single__sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-4));
}

.event-single__panel {
  background: var(--color-forest-deep);
  color: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.event-single__panel-title {
  margin-bottom: var(--space-4);
  color: var(--color-cream);
}

.event-single__actions {
  display: grid;
  gap: var(--space-3);
}

.event-single__actions .btn {
  width: 100%;
  justify-content: center;
}

.event-single__ics-btn {
  color: var(--color-charcoal);
  border-color: var(--color-gold);
}

@media (max-width: 1024px) {
  .event-single__layout {
    grid-template-columns: 1fr;
  }

  .event-single__meta-cards {
    grid-template-columns: 1fr;
  }

  .event-single__sidebar {
    position: static;
  }
}

/* ============================================================
  RECORD BOOK HERO
  ============================================================ */
.record-book-hero .page-hero__video-fallback {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(245,240,232,0.75);
}

.record-book-hero .page-hero__video-fallback a {
  color: var(--color-buckeye);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.record-book-hero .page-hero__video-fallback a:hover {
  color: var(--color-gold);
}

@media (min-width: 960px) {
  .record-book-hero .page-hero__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6) var(--space-8);
  }

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

/* ============================================================
   WOOCOMMERCE SHOP — align loop with merch reference layout
   ============================================================ */

.woocommerce ul.products.merch-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Keep CSS grid when Isotope is not active (Woo defaults use floats + % widths). */
.woocommerce ul.products.merch-grid:not(.merch-grid--isotope) {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
  clear: none;
  align-items: stretch;
}

.woocommerce ul.products.merch-grid::before,
.woocommerce ul.products.merch-grid::after {
  display: none;
  content: none;
}

/* Grid items: reset Woo float/% widths so CSS Grid controls columns. */
.woocommerce ul.products.merch-grid:not(.merch-grid--isotope) li.product {
  width: auto !important;
  max-width: none !important;
}

.woocommerce ul.products.merch-grid li.product {
  float: none;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

/* Equal-height rows: stretch <li> to grid track, fill with card (see bbbc_html/merchandise.html). */
.woocommerce ul.products.merch-grid:not(.merch-grid--isotope) > li.product {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  transition: opacity 0.38s ease;
}

/* Merch filters set [hidden] on <li> when Isotope is off; flex rule above must not override it. */
.woocommerce ul.products.merch-grid:not(.merch-grid--isotope) > li.product[hidden] {
  display: none !important;
}

.woocommerce ul.products.merch-grid:not(.merch-grid--isotope) > li.product .merch-card {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
}

/* Isotope fitRows: same math as static .merch-grid--isotope .merch-card-wrap (must beat li.product + Woo % widths). */
.woocommerce ul.products.merch-grid.merch-grid--isotope li.product {
  display: flex;
  flex-direction: column;
  width: calc((100% - (2 * var(--space-8))) / 3) !important;
  margin-right: 0;
  margin-bottom: var(--space-8);
}

.woocommerce ul.products.merch-grid.merch-grid--isotope li.product .merch-card {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .woocommerce ul.products.merch-grid:not(.merch-grid--isotope) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
  }

  .woocommerce ul.products.merch-grid.merch-grid--isotope li.product {
    width: calc((100% - var(--space-6)) / 2) !important;
    margin-bottom: var(--space-6);
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products.merch-grid:not(.merch-grid--isotope) {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products.merch-grid.merch-grid--isotope li.product {
    width: 100% !important;
    margin-bottom: var(--space-6);
  }
}

.woocommerce ul.products.merch-grid .merch-card__img {
  position: relative;
}

.woocommerce ul.products.merch-grid .merch-card__img .onsale {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--color-buckeye);
  color: var(--color-cream);
  line-height: 1.2;
  min-height: 0;
}

.woocommerce ul.products.merch-grid .merch-card__img-link .merch-card__product-thumb {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.woocommerce ul.products.merch-grid .merch-card__name a {
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products.merch-grid .merch-card__name a:hover {
  color: var(--color-forest);
}

.woocommerce ul.products.merch-grid .merch-card__desc p {
  margin: 0 0 var(--space-2);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.woocommerce ul.products.merch-grid .merch-card__desc p:last-child {
  margin-bottom: 0;
}

.woocommerce ul.products.merch-grid .merch-card__desc--empty {
  min-height: 0.1px;
}

.woocommerce ul.products.merch-grid .merch-card__price .price {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.woocommerce ul.products.merch-grid .merch-card__price .price del {
  opacity: 0.65;
  font-weight: 500;
  margin-right: var(--space-2);
}

.woocommerce ul.products.merch-grid .merch-card__price .price ins {
  text-decoration: none;
}

.woocommerce ul.products.merch-grid .merch-card__actions {
  margin-top: auto;
}

/* Match .btn.btn--secondary.btn--sm (merchandise.html); Woo keeps its own strings (e.g. Select options). */
.woocommerce ul.products.merch-grid .merch-card__actions > a.button:not(.added_to_cart) {
  font-family: var(--font-ui);
  font-size: var(--text-xs) !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5) !important;
  min-height: 36px;
  border-radius: var(--radius-sm) !important;
  background: transparent !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-forest) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 1.25;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color var(--duration-med) var(--ease-out),
    color var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out),
    transform var(--duration-med) var(--ease-out);
}

.woocommerce ul.products.merch-grid .merch-card__actions > a.button:not(.added_to_cart):hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
  transform: translateY(-1px);
}

.woocommerce ul.products.merch-grid .merch-card__actions > a.button:not(.added_to_cart)::after {
  content: '\2192';
  font-weight: 400;
  line-height: 1;
  transition: transform var(--duration-fast) var(--ease-out);
}

.woocommerce ul.products.merch-grid .merch-card__actions > a.button:not(.added_to_cart):hover::after {
  transform: translateX(3px);
}

.woocommerce ul.products.merch-grid .merch-card__actions .added_to_cart {
  display: inline-block;
  margin-top: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-forest);
}

.woocommerce .woocommerce-pagination {
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
}

.woocommerce .woocommerce-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.woocommerce .woocommerce-pagination ul li {
  margin: 0;
  list-style: none;
}

.woocommerce .woocommerce-pagination a,
.woocommerce .woocommerce-pagination span {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-slate);
  text-decoration: none;
}

.woocommerce .woocommerce-pagination a:hover {
  border-color: var(--color-forest);
  color: var(--color-forest);
}

.woocommerce .woocommerce-pagination span.current {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-cream);
}

/* ============================================================
   WOOCOMMERCE SINGLE PRODUCT — BBBC merch layout
   ============================================================ */

.bbbc-single-product-main .content-area {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
}

.bbbc-single-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
  margin: 0;
}

@media (min-width: 960px) {
  .bbbc-single-product {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-12);
  }
}

.bbbc-single-product::before,
.bbbc-single-product::after {
  display: none;
  content: none;
}

.bbbc-single-product .woocommerce-product-gallery,
.bbbc-single-product .summary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.bbbc-single-product .woocommerce-product-gallery {
  position: relative;
  background: var(--color-parchment);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bbbc-single-product .woocommerce-product-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(107, 125, 94, 0.06) 18px,
    rgba(107, 125, 94, 0.06) 19px
  );
}

.bbbc-single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.bbbc-single-product .woocommerce-product-gallery .flex-viewport {
  position: relative;
  z-index: 2;
}

.bbbc-single-product .woocommerce-product-gallery .flex-viewport {
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Allow Flexslider arrows to sit over the main image without opening a lightbox */
.bbbc-single-product .woocommerce-product-gallery {
  overflow: visible;
}

.bbbc-single-product .woocommerce-product-gallery ul.flex-direction-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--bbbc-pg-viewport-half, 12rem) * 2);
  pointer-events: none;
  z-index: 5;
}

.bbbc-single-product .woocommerce-product-gallery .flex-direction-nav li {
  position: absolute;
  top: var(--bbbc-pg-viewport-half, 12rem);
  transform: translateY(-50%);
  margin: 0;
  pointer-events: auto;
}

.bbbc-single-product .woocommerce-product-gallery .flex-nav-prev {
  left: var(--space-2);
}

.bbbc-single-product .woocommerce-product-gallery .flex-nav-next {
  right: var(--space-2);
}

.bbbc-single-product .woocommerce-product-gallery .flex-direction-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: rgba(27, 61, 47, 0.88);
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 1;
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.bbbc-single-product .woocommerce-product-gallery .flex-direction-nav a:hover {
  background: var(--color-forest);
  color: var(--color-gold-light);
}

.bbbc-single-product .woocommerce-product-gallery .flex-direction-nav a.flex-disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: default;
}

.bbbc-single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  cursor: default;
}

.bbbc-single-product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: 0 var(--space-3) var(--space-3);
  list-style: none;
}

.bbbc-single-product .woocommerce-product-gallery .flex-control-thumbs li {
  width: 72px !important;
  margin: 0 !important;
  float: none !important;
}

.bbbc-single-product .woocommerce-product-gallery .flex-control-thumbs img {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0.85;
  transition: opacity var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.bbbc-single-product .woocommerce-product-gallery .flex-control-thumbs img:hover,
.bbbc-single-product .woocommerce-product-gallery .flex-control-thumbs .flex-active {
  opacity: 1;
  border-color: var(--color-forest);
}

.bbbc-single-product .woocommerce-product-gallery .onsale {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 4;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  color: var(--color-forest);
  border: none;
  line-height: 1.3;
  min-height: 0;
}

.bbbc-single-product__summary {
  font-family: var(--font-ui);
}

.bbbc-single-product__category {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin: 0 0 var(--space-4);
}

.bbbc-single-product__summary .woocommerce-product-rating {
  margin-bottom: var(--space-4);
}

.bbbc-single-product__summary .star-rating {
  color: var(--color-gold);
}

/* Beat WooCommerce `.woocommerce div.product p.price` (higher specificity). */
.woocommerce div.product.bbbc-single-product .bbbc-single-product__summary p.price,
.woocommerce div.product.bbbc-single-product .summary.entry-summary p.price {
  font-family: var(--font-display);
  font-size: clamp(1.47rem, 2.94vw, 1.95rem) !important;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: var(--space-5);
}

.woocommerce div.product.bbbc-single-product .bbbc-single-product__summary p.price .woocommerce-Price-amount,
.woocommerce div.product.bbbc-single-product .summary.entry-summary p.price .woocommerce-Price-amount {
  font-size: inherit !important;
}

.woocommerce div.product.bbbc-single-product .bbbc-single-product__summary p.price del,
.woocommerce div.product.bbbc-single-product .summary.entry-summary p.price del {
  opacity: 0.55;
  font-size: 0.65em;
  margin-right: var(--space-2);
}

.woocommerce div.product.bbbc-single-product .bbbc-single-product__summary p.price ins,
.woocommerce div.product.bbbc-single-product .summary.entry-summary p.price ins {
  text-decoration: none;
}

.bbbc-single-product__summary .woocommerce-product-details__short-description {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-slate);
  margin-bottom: var(--space-6);
}

.bbbc-single-product__summary .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.bbbc-single-product__summary form.cart {
  margin-bottom: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-4);
}

/* Lifetime membership: highlighted eligibility attestation (italic + callout panel) */
.bbbc-single-product__summary form.cart .bbbc-lifetime-attestation {
  flex: 1 1 100%;
  margin: 0 0 var(--space-2);
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(
    145deg,
    var(--color-parchment) 0%,
    rgba(196, 169, 125, 0.22) 55%,
    var(--color-bone) 100%
  );
  border: 1px solid rgba(27, 61, 47, 0.12);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bbbc-lifetime-attestation__label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin: 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-charcoal);
}

.bbbc-lifetime-attestation__label .woocommerce-form__input-checkbox {
  margin: 0.2rem 0 0;
  flex-shrink: 0;
}

.bbbc-lifetime-attestation__label .woocommerce-form__label-text {
  font-style: italic;
}

.bbbc-single-product__summary .quantity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.bbbc-single-product__summary .quantity input.qty {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  width: 4rem;
  min-height: 44px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
}

.bbbc-single-product__summary form.cart .button,
.bbbc-single-product__summary form.cart button[type='submit'],
.bbbc-single-product__summary form.cart input[type='submit'] {
  font-family: var(--font-ui) !important;
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: var(--space-3) var(--space-8) !important;
  min-height: 44px !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-gold) !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: none !important;
  line-height: 1.25 !important;
  cursor: pointer;
  transition: background-color var(--duration-med) var(--ease-out),
    color var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out),
    transform var(--duration-med) var(--ease-out);
}

.bbbc-single-product__summary form.cart .button:hover,
.bbbc-single-product__summary form.cart button[type='submit']:hover,
.bbbc-single-product__summary form.cart input[type='submit']:hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
  transform: translateY(-1px);
}

.bbbc-single-product__summary .variations_form .variations {
  margin-bottom: var(--space-4);
}

.bbbc-single-product__summary .variations_form .variations td,
.bbbc-single-product__summary .variations_form .variations th {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}

.bbbc-single-product__summary .variations_form .variations label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: var(--space-2);
}

.bbbc-single-product__summary .variations_form select {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  width: 100%;
  max-width: 20rem;
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
}

.bbbc-single-product__summary .product_meta {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-slate);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bbbc-single-product__summary .product_meta .sku_wrapper {
  display: none;
}

.bbbc-single-product__summary .product_meta a {
  color: var(--color-forest);
  font-weight: 600;
}

.bbbc-single-product__summary .product_meta a:hover {
  text-decoration: underline;
}

.bbbc-single-product .woocommerce-tabs {
  margin-top: var(--space-12);
  grid-column: 1 / -1;
  font-family: var(--font-body);
}

.bbbc-single-product .woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bbbc-single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  list-style: none;
  background: transparent;
  border: none;
}

.bbbc-single-product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--color-slate);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.bbbc-single-product .woocommerce-tabs ul.tabs li.active a,
.bbbc-single-product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--color-forest);
  border-bottom-color: var(--color-forest);
}

.bbbc-single-product .woocommerce-Tabs-panel {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-slate);
  padding: 0;
}

.bbbc-single-product .woocommerce-Tabs-panel h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-forest);
  margin: 0 0 var(--space-4);
}

.bbbc-single-product section.upsells,
.bbbc-single-product section.related {
  grid-column: 1 / -1;
  margin-top: var(--space-14);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bbbc-single-product section.upsells > h2,
.bbbc-single-product section.related > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-forest);
  text-align: center;
  margin: 0 0 var(--space-8);
}

/* ============================================================
   WOOCOMMERCE CART, CHECKOUT & NOTICES (classic + blocks)
   ============================================================ */

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  line-height: 1.55;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-4);
  /* Left inset for ::before icon (WooCommerce dingbat); symmetric padding had caused overlap). */
  padding: var(--space-4) var(--space-5) var(--space-4) 3.75rem;
  margin: 0 0 var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
  background: var(--color-white);
  color: var(--color-slate);
  box-sizing: border-box;
}

.woocommerce .woocommerce-message {
  border-color: rgba(196, 169, 125, 0.45);
  background: var(--color-parchment);
  color: var(--color-forest);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
  font-family: 'WooCommerce', sans-serif;
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  line-height: 2.25rem;
  text-align: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
}

/* Error notices are a <ul>; pin icon to first line instead of vertical center of whole list. */
.woocommerce ul.woocommerce-error::before {
  top: var(--space-4);
  transform: none;
}

.woocommerce .woocommerce-message::before {
  content: '\e015';
  background: var(--color-forest);
  color: var(--color-cream) !important;
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-message a.button {
  float: none !important;
  margin-left: auto;
}

.woocommerce .woocommerce-message a.button {
  font-family: var(--font-ui) !important;
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: var(--space-2) var(--space-5) !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-gold) !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  line-height: 1.25 !important;
  transition: background-color var(--duration-med) var(--ease-out),
    color var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out),
    transform var(--duration-med) var(--ease-out);
}

.woocommerce .woocommerce-message a.button:hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
  transform: translateY(-1px);
}

.woocommerce .woocommerce-info {
  border-color: rgba(27, 61, 47, 0.25);
  background: var(--color-cream);
}

.woocommerce .woocommerce-info::before {
  content: '\e028';
  background: rgba(27, 61, 47, 0.12);
  color: var(--color-forest) !important;
}

.woocommerce .woocommerce-info .button {
  float: none !important;
  margin-left: auto;
}

.woocommerce .woocommerce-error {
  border-color: rgba(139, 37, 0, 0.35);
  background: #fdf6f4;
  color: var(--color-buckeye);
}

.woocommerce .woocommerce-error::before {
  content: '\e016';
  background: rgba(139, 37, 0, 0.12);
  color: var(--color-buckeye) !important;
}

.woocommerce .woocommerce-error .button {
  float: none !important;
  margin-left: auto;
}

/* —— Classic cart —— */

body.woocommerce-cart .woocommerce,
body.woocommerce-page.woocommerce-cart .woocommerce {
  font-family: var(--font-body);
  color: var(--color-charcoal);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table,
body.woocommerce-cart table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 0 var(--space-8);
  border-collapse: separate;
  border-spacing: 0;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table th,
body.woocommerce-cart table.shop_table th {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
  background: var(--color-forest);
  padding: var(--space-5) var(--space-4);
  border: none;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td,
body.woocommerce-cart table.shop_table td {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  padding: var(--space-6) var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: top;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name {
  font-size: var(--text-md);
  line-height: 1.45;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name a {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: none;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-forest);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-subtotal {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-forest);
  text-align: right;
  vertical-align: top;
  background: transparent;
  border-left: none;
  box-shadow: none;
  min-width: 5rem;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td.product-subtotal .woocommerce-Price-amount {
  font-weight: 500;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-thumbnail img {
  max-width: 88px;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-name a:hover {
  text-decoration: underline;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove a.remove {
  font-size: 1.35rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-slate) !important;
  text-decoration: none !important;
  background: var(--color-parchment);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .product-remove a.remove:hover {
  background: var(--color-buckeye);
  color: var(--color-cream) !important;
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table .quantity .qty {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  width: 4rem;
  min-height: 44px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions {
  background: var(--color-parchment);
  padding: var(--space-5) var(--space-4);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

body.woocommerce-cart .woocommerce-cart-form table.shop_table td.actions .coupon .input-text {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  max-width: 14rem;
}

body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce input.button {
  font-family: var(--font-ui) !important;
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: var(--space-3) var(--space-6) !important;
  min-height: 44px !important;
  border-radius: var(--radius-sm) !important;
  line-height: 1.25 !important;
  cursor: pointer;
  transition: background-color var(--duration-med) var(--ease-out),
    color var(--duration-med) var(--ease-out),
    border-color var(--duration-med) var(--ease-out),
    transform var(--duration-med) var(--ease-out);
}

body.woocommerce-cart .woocommerce button.button[name='update_cart'],
body.woocommerce-cart .woocommerce button.button[name='apply_coupon'] {
  background: transparent !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-forest) !important;
  box-shadow: none !important;
}

body.woocommerce-cart .woocommerce button.button[name='update_cart']:hover,
body.woocommerce-cart .woocommerce button.button[name='apply_coupon']:hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  transform: translateY(-1px);
}

body.woocommerce-cart .cart-collaterals {
  margin-top: var(--space-4);
}

@media (min-width: 960px) {
  body.woocommerce-cart .cart-collaterals {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: var(--space-10);
    align-items: start;
  }

  body.woocommerce-cart .cart-collaterals .cross-sells {
    grid-column: 1;
    grid-row: 1;
  }

  body.woocommerce-cart .cart-collaterals .cart_totals {
    grid-column: 2;
    grid-row: 1;
  }
}

body.woocommerce-cart .cart_totals {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: var(--space-6) 0 var(--space-5);
  box-shadow: none;
  text-shadow: none;
}

body.woocommerce-cart .cart_totals > h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin: 0 0 var(--space-5);
  padding: 0;
  border: none;
  text-shadow: none;
}

body.woocommerce-cart .cart_totals table.shop_table {
  border: none;
  margin: 0;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
body.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: none;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-forest);
  padding-top: var(--space-4);
  text-shadow: none;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding: var(--space-5) 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-family: var(--font-ui) !important;
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: block !important;
  text-align: center !important;
  padding: var(--space-4) var(--space-6) !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-gold) !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
}

body.woocommerce-cart .cross-sells > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-forest);
  margin: 0 0 var(--space-6);
}

/* —— Classic checkout —— */

body.woocommerce-checkout .woocommerce,
body.woocommerce-page.woocommerce-checkout .woocommerce {
  font-family: var(--font-body);
  color: var(--color-charcoal);
}

body.woocommerce-checkout .woocommerce form.checkout_coupon,
body.woocommerce-checkout .woocommerce form.login {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  background: var(--color-parchment);
  margin-bottom: var(--space-8);
}

body.woocommerce-checkout .woocommerce form .form-row label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: var(--space-2);
}

body.woocommerce-checkout .woocommerce form .form-row input.input-text,
body.woocommerce-checkout .woocommerce form .form-row textarea,
body.woocommerce-checkout .woocommerce form .form-row select {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
  box-sizing: border-box;
}

body.woocommerce-checkout .woocommerce form .form-row textarea {
  min-height: 6rem;
  padding-top: var(--space-3);
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
}

body.woocommerce-checkout #customer_details.col2-set {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

@media (min-width: 900px) {
  body.woocommerce-checkout #customer_details.col2-set {
    grid-template-columns: 1fr 1fr;
  }
}

body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout .woocommerce-shipping-fields > h3,
body.woocommerce-checkout .woocommerce-additional-fields > h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-forest);
  margin: 0 0 var(--space-5);
}

body.woocommerce-checkout #order_review_heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-forest);
  margin: var(--space-10) 0 var(--space-5);
}

body.woocommerce-checkout #order_review {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: var(--space-6) 0;
  box-shadow: none;
  margin-bottom: var(--space-8);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table.shop_table {
  border: none;
  margin: 0 0 var(--space-6);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table.shop_table thead th {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table.shop_table td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table.shop_table th {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-2);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  color: var(--color-charcoal);
}

body.woocommerce-checkout #payment {
  background: var(--color-parchment) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: var(--space-5) !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 0 var(--space-4);
  list-style: none;
}

body.woocommerce-checkout #payment div.payment_box {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  background: var(--color-white) !important;
  color: var(--color-slate) !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--color-white) !important;
}

body.woocommerce-checkout #place_order {
  font-family: var(--font-ui) !important;
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  width: 100%;
  padding: var(--space-4) var(--space-6) !important;
  min-height: 48px !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-gold) !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-gold) !important;
  box-shadow: none !important;
}

body.woocommerce-checkout #place_order:hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  background: var(--color-white) !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  line-height: 42px !important;
  padding-left: var(--space-4);
  color: var(--color-charcoal);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

/* —— Order received (thank you) —— */

body.woocommerce-order-received .woocommerce-order {
  font-family: var(--font-body);
}

body.woocommerce-order-received .woocommerce-order-overview {
  list-style: none;
  margin: 0 0 var(--space-8);
  padding: var(--space-5);
  background: var(--color-parchment);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
}

body.woocommerce-order-received .woocommerce-order-overview li {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  color: var(--color-slate);
}

body.woocommerce-order-received .woocommerce-order-overview li strong {
  color: var(--color-forest);
}

body.woocommerce-order-received .woocommerce-table--order-details.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

body.woocommerce-order-received .woocommerce-table--order-details.shop_table thead th {
  background: var(--color-forest);
  color: var(--color-cream);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-4);
}

body.woocommerce-order-received .woocommerce-table--order-details.shop_table td,
body.woocommerce-order-received .woocommerce-table--order-details.shop_table th {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  padding: var(--space-4);
}

/* —— WooCommerce Blocks (cart / checkout pages) —— */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-cart,
.wc-block-checkout {
  font-family: var(--font-body);
  color: var(--color-charcoal);
}

.wc-block-cart__totals-title,
.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-checkout-step__description {
  font-family: var(--font-display) !important;
  color: var(--color-forest) !important;
}

.wc-block-components-checkout-step__description {
  font-family: var(--font-body) !important;
  color: var(--color-slate) !important;
}

.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-form .wc-block-components-text-input input {
  font-family: var(--font-ui) !important;
  border-radius: var(--radius-sm) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  min-height: 44px;
}

.wc-block-components-text-input label,
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
  font-family: var(--font-ui) !important;
  color: var(--color-slate) !important;
}

.wc-block-components-button:not(.wc-block-cart-item__remove-link):not(.is-link),
.wp-block-woocommerce-cart .wc-block-components-button:not(.is-link),
.wp-block-woocommerce-checkout .wc-block-components-button:not(.is-link) {
  font-family: var(--font-ui) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius-sm) !important;
  min-height: 44px !important;
  padding-left: var(--space-6) !important;
  padding-right: var(--space-6) !important;
}

.wc-block-components-button:not(.wc-block-cart-item__remove-link):not(.is-link):not(.wc-block-components-button--link) {
  background: var(--color-gold) !important;
  color: var(--color-forest) !important;
  border: 2px solid var(--color-gold) !important;
}

.wc-block-components-button:not(.wc-block-cart-item__remove-link):not(.is-link):not(.wc-block-components-button--link):hover {
  background: var(--color-forest) !important;
  color: var(--color-cream) !important;
  border-color: var(--color-forest) !important;
}

.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-totals-wrapper {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Cart sidebar: no white cards — flat on page (background / border / shadow). */
.wc-block-cart .wc-block-components-sidebar .wc-block-components-panel,
.wc-block-cart .wc-block-components-totals-wrapper,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-totals-block,
.wc-block-cart .wc-block-components-totals-coupon,
.wc-block-cart .wc-block-components-sidebar .components-card,
.wc-block-cart .wc-block-cart__sidebar .components-card {
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  filter: none !important;
  outline: none !important;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-panel,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-coupon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-components-sidebar,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-formatted-money-amount,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-item,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-footer-item,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-item__label,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-cart__totals-title {
  text-shadow: none !important;
}

.wc-block-cart .wc-block-components-combobox,
.wc-block-cart .wc-block-components-combobox-control,
.wc-block-cart .wc-block-components-combobox .wc-block-components-combobox-control,
.wc-block-cart .wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-cart .wc-block-components-form .wc-block-components-combobox {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.wc-block-cart .wc-block-components-totals-footer-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-components-sidebar .wc-block-components-panel__content,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-panel__header {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-components-sidebar .wc-block-components-select,
.wc-block-cart .wc-block-components-sidebar .wc-block-components-select .components-select-control__input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-cart__totals-title {
  font-family: var(--font-display) !important;
  font-size: var(--text-xl) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--color-forest) !important;
  margin-bottom: var(--space-5) !important;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  color: var(--color-forest) !important;
}

.wc-block-cart__main table.wc-block-cart-items th,
.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__header {
  font-family: var(--font-ui) !important;
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: var(--color-forest) !important;
}

.wc-block-cart__main table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total {
  text-align: right !important;
}

.wc-block-components-product-name,
.wc-block-cart-item__product .wc-block-components-product-name {
  color: var(--color-forest) !important;
  font-weight: 600 !important;
  font-family: var(--font-display) !important;
  font-size: var(--text-md) !important;
  line-height: 1.35 !important;
}

.wc-block-cart-item__product .wc-block-cart-item__prices {
  font-family: var(--font-display) !important;
  font-size: var(--text-base) !important;
  font-weight: 500 !important;
  color: var(--color-forest) !important;
  margin-top: var(--space-2) !important;
}

.wc-block-cart-item__product .wc-block-components-product-price,
.wc-block-cart-item__product .wc-block-components-product-price__value {
  font-size: inherit !important;
}

.wc-block-cart-item__product .wc-block-components-product-metadata,
.wc-block-cart .wc-block-components-product-metadata {
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  line-height: 1.55 !important;
  color: var(--color-slate) !important;
  margin-top: var(--space-2) !important;
}

.wc-block-cart .wc-block-cart-items__row .wc-block-cart-item__quantity {
  margin-top: var(--space-4) !important;
  gap: var(--space-3) !important;
  align-items: center !important;
}

.wc-block-cart .wc-block-components-quantity-selector {
  width: auto !important;
  min-width: 8.75rem !important;
  min-height: 44px !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid rgba(27, 61, 47, 0.2) !important;
  background: var(--color-cream) !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  min-width: 44px !important;
  min-height: 44px !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--color-forest) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.wc-block-cart .wc-block-components-quantity-selector .wc-block-components-quantity-selector__input,
.wc-block-cart .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  border-radius: 0 !important;
  border: none !important;
  border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-family: var(--font-ui) !important;
  font-size: var(--text-base) !important;
  font-weight: 600 !important;
  min-height: 44px !important;
  color: var(--color-charcoal) !important;
}

.wc-block-cart .wc-block-cart-item__remove-link {
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--color-slate) !important;
}

.wc-block-cart .wc-block-cart-item__remove-link:hover {
  color: var(--color-buckeye) !important;
}

/* Line total column: plain price (no chiclet), top-aligned with product block */
.wc-block-cart__main table.wc-block-cart-items td.wc-block-cart-item__total {
  vertical-align: top !important;
  padding-top: var(--space-5) !important;
  padding-left: var(--space-5) !important;
  width: 1% !important;
}

.wc-block-cart__main .wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  flex-direction: column !important;
  align-items: flex-end !important;
  text-align: right !important;
  gap: var(--space-1) !important;
  padding: 0 !important;
  min-width: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wc-block-cart__main .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
  font-family: var(--font-display) !important;
  font-size: var(--text-lg) !important;
  font-weight: 500 !important;
  color: var(--color-forest) !important;
  line-height: 1.25 !important;
  text-shadow: none !important;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart .wc-block-components-totals-coupon {
  font-size: var(--text-sm) !important;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
  font-family: var(--font-display) !important;
  font-size: var(--text-xl) !important;
  font-weight: 500 !important;
  color: var(--color-forest) !important;
}

.wc-block-cart .wc-block-components-totals-item__label {
  font-family: var(--font-display) !important;
  font-size: var(--text-sm) !important;
  font-weight: 500 !important;
  color: var(--color-forest) !important;
}

.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  background: transparent;
}

/* ============================================================
   Checkout (block) — order summary: no white cards; light dividers
   ============================================================ */

.wc-block-checkout .wc-block-components-sidebar {
  background: transparent !important;
  box-shadow: none !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-panel,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-panel,
.wc-block-checkout .wc-block-components-order-summary .components-card,
.wc-block-checkout .wc-block-components-sidebar .components-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none !important;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-panel__content,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-panel__header,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-panel__content,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-panel__header {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-combobox,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-combobox-control,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-combobox .wc-block-components-combobox-control,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-combobox .wc-block-components-combobox-control input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-select,
.wc-block-checkout .wc-block-components-sidebar .wc-block-components-select .components-select-control__input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-checkout .wc-block-components-sidebar .wc-block-components-formatted-money-amount,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-item,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-totals-footer-item {
  text-shadow: none !important;
}

.wc-block-checkout .wc-block-components-checkout-order-summary__title,
.wc-block-checkout .wc-block-components-order-summary .wc-block-components-title {
  font-family: var(--font-display) !important;
  color: var(--color-forest) !important;
}

.wc-block-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  background: var(--color-cream) !important;
  border: 1px solid rgba(27, 61, 47, 0.18) !important;
  box-shadow: none !important;
}

/* Section dividers (replace stacked “cards”) */
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  border-top: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-bottom: var(--space-6) !important;
  margin-bottom: var(--space-4) !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-bottom: var(--space-5) !important;
  margin-bottom: var(--space-4) !important;
}

.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
  border: none !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-top: var(--space-2) !important;
  padding-bottom: var(--space-5) !important;
  margin-bottom: var(--space-2) !important;
}

.wc-block-checkout .wc-block-components-totals-footer-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-top: 1px solid rgba(27, 61, 47, 0.12) !important;
  padding-top: var(--space-5) !important;
  margin-top: var(--space-3) !important;
}

@container (min-width: 700px) {
  .wc-block-cart__main .wc-block-cart-items__row .wc-block-cart-item__image img {
    min-width: 88px;
    width: 88px !important;
    height: auto !important;
  }
}

/* --- Scorer resources gate --- */
.bbbc-sr-gate__page-content {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.55;
  color: var(--color-slate);
  margin-bottom: var(--space-4);
}

.bbbc-sr-gate__page-content p {
  margin-bottom: var(--space-4);
}

.bbbc-sr-gate__page-content p:last-child {
  margin-bottom: 0;
}

.bbbc-sr-gate__page-content strong {
  font-weight: 600;
  color: var(--color-charcoal);
}

.bbbc-sr-gate__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-slate);
  opacity: 0.92;
  margin-bottom: var(--space-6);
}

.bbbc-sr-gate__error {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-buckeye);
  background: rgba(139, 37, 0, 0.08);
  border: var(--border-thin) rgba(139, 37, 0, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}

.bbbc-sr-gate {
  max-width: 22rem;
}

.bbbc-sr-gate__field {
  margin-bottom: var(--space-6);
}

.bbbc-sr-gate__label {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.bbbc-sr-gate__input {
  display: block;
  width: 100%;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: var(--border-thin) rgba(27, 61, 47, 0.35);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  color: var(--color-charcoal);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bbbc-sr-gate__input:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(27, 61, 47, 0.15);
}

body.scorer-resources-gate .bbbc-sr-gate .btn--primary {
  width: 100%;
  justify-content: center;
}

