:root,
[data-theme="light"] {
  /* ── Primitives ───────────────────────────────────── */
  --bcr-ivory:        #FDFAF5;   /* near-white warm base          */
  --bcr-ivory-dark:   #F2EAD8;   /* warm cream for alt sections   */
  --bcr-gold:         #C5A55A;   /* champagne gold                */
  --bcr-gold-lt:      #D9BC7A;   /* lighter champagne / hover     */
  --bcr-charcoal:     #1C1C1C;   /* charcoal black text           */
  --bcr-charcoal-lt:  #3A3A3A;   /* medium charcoal               */
  --bcr-slate:        #6A6A6A;   /* muted secondary text          */
  --bcr-slate-lt:     #9A9A9A;   /* light muted / captions        */
  --bcr-dark:         #0F1A10;   /* hero / footer deep background */
  --bcr-white:        #FFFFFF;
  --bcr-burgundy:     #2B4A2B;   /* deep forest green (primary)   */
  --bcr-burgundy-dk:  #1A3320;   /* darker forest green           */
  --bcr-forest:       #2B4A2B;   /* deep forest green             */
  --bcr-forest-lt:    #3D6B3D;   /* lighter forest green / hover  */

  /* ── Semantic tokens ──────────────────────────────── */
  --bcr-bg:           #FFFFFF;        /* pure white main background  */
  --bcr-bg-alt:       #F8F3EB;        /* warm cream alternate rows   */
  --bcr-surface:      #FFFFFF;        /* card / panel background     */
  --bcr-text:         #2A2420;        /* primary body text           */
  --bcr-text-muted:   #6A5B4D;        /* secondary / caption text    */
  --bcr-border:       #E8DCCC;        /* soft visible dividers       */

  /* ── Typography ──────────────────────────────────── */
  --bcr-font-serif: 'Cormorant Garamond', Georgia, serif;
  --bcr-font-sans:  'Inter', system-ui, sans-serif;

  /* ── Radii / motion ──────────────────────────────── */
  --bcr-radius:          4px;
  --bcr-radius-lg:       8px;
  --bcr-transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bcr-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout ──────────────────────────────────────── */
  --bcr-max-width: 1280px;
  --bcr-gutter:    2rem;

  --bcr-font-scale: 1;
}

[data-theme="dark"] {
  --bcr-ivory: #F7F3EC;
  --bcr-ivory-dark: #EAE1D2;
  --bcr-charcoal: #2F2A24;
  --bcr-charcoal-lt: #585047;
  --bcr-slate: #7A7066;
  --bcr-slate-lt: #A3988D;
  --bcr-dark: #221D18;
  --bcr-white: #F5F0E8;

  --bcr-bg: #1E1A14;
  --bcr-bg-alt: #2A2318;
  --bcr-surface: #2E2820;
  --bcr-text: #EDE8DF;
  --bcr-text-muted: #A89F94;
  --bcr-border: #3A3028;
}

[data-contrast="high"] {
  --bcr-gold: #D4B86A;
  --bcr-gold-lt: #E8CC8E;
  --bcr-burgundy: #1E3D1E;
  --bcr-burgundy-dk: #122612;
  --bcr-forest: #1E3D1E;
  --bcr-forest-lt: #2E5E2E;
  --bcr-slate: #555555;
  --bcr-slate-lt: #888888;
}

[data-contrast="high"][data-theme="light"] {
  --bcr-bg: #FFFFFF;
  --bcr-bg-alt: #F0EBE0;
  --bcr-surface: #FFFFFF;
  --bcr-text: #0D0D0D;
  --bcr-text-muted: #333333;
  --bcr-border: #0D0D0D;
  --bcr-charcoal: #2F2A24;
}

[data-contrast="high"][data-theme="dark"] {
  --bcr-bg: #000000;
  --bcr-bg-alt: #111111;
  --bcr-surface: #111111;
  --bcr-text: #FFFFFF;
  --bcr-text-muted: #DDDDDD;
  --bcr-border: #FFFFFF;
  --bcr-charcoal: #2F2A24;
  --bcr-charcoal-lt: #585047;
  --bcr-dark: #221D18;
  --bcr-white: #FFFFFF;
}

[data-fontsize="large"] {
  font-size: 112.5%;
}

[data-fontsize="xl"] {
  font-size: 125%;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

[data-motion="off"] *,
[data-motion="off"] *::before,
[data-motion="off"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

[data-motion="off"] .fade-in,
[data-motion="off"] .fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--bcr-font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bcr-text);
  background-color: var(--bcr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--bcr-transition);
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--bcr-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

[data-contrast="high"] :focus-visible {
  outline: 4px solid var(--bcr-gold);
  outline-offset: 4px;
}

.bcr-skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 99999;
  padding: 0.75rem 1.5rem;
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--bcr-radius);
  white-space: nowrap;
  text-decoration: none;
}

.bcr-skip-link:focus {
  top: 1rem;
  left: 1rem;
  outline: 3px solid var(--bcr-gold);
  outline-offset: 3px;
}

.bcr-a11y-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0;
}

.bcr-a11y-bar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 44px;
  padding: 0.6rem 0.5rem;
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
  border: none;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color var(--bcr-transition);
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.bcr-a11y-bar__toggle:hover {
  background-color: var(--bcr-burgundy-dk);
}

.bcr-a11y-bar__toggle:focus-visible {
  outline: 3px solid var(--bcr-gold);
  outline-offset: 2px;
}

.bcr-a11y-bar__toggle-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.55rem;
  margin-top: 4px;
}

.bcr-a11y-bar__controls {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
}

.bcr-a11y-bar__controls.is-open {
  display: flex;
}

.bcr-a11y-bar__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bcr-a11y-bar__group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
}

.bcr-a11y-bar__btn-group {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.bcr-a11y-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  font-family: var(--bcr-font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  background-color: var(--bcr-bg-alt);
  color: var(--bcr-text-muted);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  cursor: pointer;
  transition: all var(--bcr-transition);
  white-space: nowrap;
}

.bcr-a11y-btn:hover {
  border-color: var(--bcr-charcoal);
  color: var(--bcr-text);
}

.bcr-a11y-btn[aria-pressed="true"] {
  background-color: var(--bcr-charcoal);
  color: var(--bcr-bg);
  border-color: var(--bcr-charcoal);
}

[data-theme="dark"] .bcr-a11y-btn[aria-pressed="true"] {
  background-color: var(--bcr-gold);
  color: var(--bcr-dark);
  border-color: var(--bcr-gold);
}

.bcr-a11y-btn:focus-visible {
  outline: 2px solid var(--bcr-gold);
  outline-offset: 2px;
}

.bcr-a11y-btn--reset {
  width: 100%;
  justify-content: center;
  border-color: var(--bcr-burgundy);
  color: var(--bcr-burgundy);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bcr-a11y-btn--reset:hover {
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
  border-color: var(--bcr-burgundy);
}

.container {
  width: 100%;
  max-width: var(--bcr-max-width);
  margin-inline: auto;
  padding-inline: var(--bcr-gutter);
}

.bcr-main {
  padding-top: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.bcr-heading-1 {
  font-family: var(--bcr-font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bcr-charcoal);
}

.bcr-heading-2 {
  font-family: var(--bcr-font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bcr-charcoal);
}

.bcr-heading-3 {
  font-family: var(--bcr-font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--bcr-charcoal);
}

.bcr-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--bcr-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--bcr-radius);
  cursor: pointer;
  transition: all var(--bcr-transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.bcr-btn--gold {
  background-color: var(--bcr-gold);
  color: var(--bcr-charcoal);
  border-color: var(--bcr-gold);
}

.bcr-btn--gold:hover {
  background-color: var(--bcr-gold-lt);
  border-color: var(--bcr-gold-lt);
}

.bcr-btn--outline {
  background-color: transparent;
  color: var(--bcr-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.bcr-btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--bcr-white);
}

.bcr-btn--outline-dark {
  background-color: transparent;
  color: var(--bcr-charcoal);
  border-color: var(--bcr-charcoal);
}

.bcr-btn--outline-dark:hover {
  background-color: var(--bcr-charcoal);
  color: var(--bcr-bg);
}

.bcr-btn--ghost {
  background-color: transparent;
  color: var(--bcr-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.bcr-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.bcr-btn--solid {
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
  border-color: var(--bcr-burgundy);
}

.bcr-btn--solid:hover {
  background-color: var(--bcr-burgundy-dk);
  border-color: var(--bcr-burgundy-dk);
}

.bcr-btn--full {
  width: 100%;
  text-align: center;
  display: block;
}

.bcr-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bcr-gold);
  transition: gap var(--bcr-transition);
}

.bcr-link-arrow::after {
  content: '->';
  transition: transform var(--bcr-transition);
}

.bcr-link-arrow:hover::after {
  transform: translateX(4px);
}

.bcr-link-arrow--sm {
  font-size: 0.75rem;
}

.bcr-section {
  padding: 6rem 0;
}

.bcr-section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.bcr-section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bcr-gold);
  margin-bottom: 0.75rem;
}

.bcr-section__desc {
  margin-top: 1rem;
  color: var(--bcr-text-muted);
  font-size: 1.05rem;
}

.bcr-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.bcr-badge--available {
  background-color: var(--bcr-gold);
  color: var(--bcr-charcoal);
}

.bcr-badge--breeding {
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
}

.bcr-badge--sold {
  background-color: var(--bcr-slate);
  color: var(--bcr-white);
}

.bcr-badge--sm {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
}

.bcr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--bcr-transition), box-shadow var(--bcr-transition);
}

.bcr-header.is-scrolled,
.bcr-header.is-page {
  background-color: rgba(var(--bcr-header-rgb, 250, 248, 243), 0.97);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .bcr-header.is-scrolled,
[data-theme="dark"] .bcr-header.is-page {
  background-color: rgba(30, 26, 20, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bcr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding-inline: var(--bcr-gutter);
  max-width: var(--bcr-max-width);
  margin-inline: auto;
}

.bcr-logo {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.4rem;
  background: rgba(20, 16, 12, 0.62);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.bcr-logo__text {
  font-family: var(--bcr-font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bcr-white);
  transition: color var(--bcr-transition);
}

.bcr-header.is-scrolled .bcr-logo__text,
.bcr-header.is-page .bcr-logo__text {
  color: var(--bcr-charcoal);
}

.bcr-header .custom-logo {
  height: 64px;
  width: auto;
}

.bcr-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bcr-nav__list a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--bcr-transition);
}

.bcr-nav__list a:hover,
.bcr-nav__list .current-menu-item a {
  color: var(--bcr-gold);
}

.bcr-header.is-scrolled .bcr-nav__list a,
.bcr-header.is-page .bcr-nav__list a {
  color: var(--bcr-text-muted);
}

.bcr-header.is-scrolled .bcr-nav__list a:hover,
.bcr-header.is-page .bcr-nav__list a:hover {
  color: var(--bcr-burgundy);
}

.bcr-header.is-scrolled .bcr-nav__list .current-menu-item a,
.bcr-header.is-page .bcr-nav__list .current-menu-item a {
  color: var(--bcr-burgundy);
}

.bcr-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bcr-header .bcr-btn--outline {
  font-size: 0.75rem;
  padding: 0.6rem 1.4rem;
}

.bcr-header.is-scrolled .bcr-btn--outline,
.bcr-header.is-page .bcr-btn--outline {
  color: var(--bcr-burgundy);
  border-color: var(--bcr-burgundy);
}

.bcr-header.is-scrolled .bcr-btn--outline:hover,
.bcr-header.is-page .bcr-btn--outline:hover {
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white);
}

.bcr-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bcr-mobile-toggle__line {
  width: 24px;
  height: 1.5px;
  background-color: var(--bcr-white);
  transition: background-color var(--bcr-transition);
}

.bcr-header.is-scrolled .bcr-mobile-toggle__line,
.bcr-header.is-page .bcr-mobile-toggle__line {
  background-color: var(--bcr-charcoal);
}

.bcr-mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--bcr-bg);
  border-top: 1px solid var(--bcr-border);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.bcr-mobile-menu.is-open {
  display: block;
}

.bcr-mobile-menu__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.bcr-mobile-menu__list li {
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-mobile-menu__list a {
  display: block;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bcr-text);
}

.bcr-mobile-menu__list a:hover {
  color: var(--bcr-burgundy);
}

.bcr-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bcr-dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bcr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.3) 0%, rgba(26, 18, 8, 0.6) 100%);
}

.bcr-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.bcr-hero__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bcr-gold-lt);
  margin-bottom: 1.5rem;
}

.bcr-hero__title {
  font-family: var(--bcr-font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--bcr-white);
  margin-bottom: 1rem;
}

.bcr-hero__tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}

.bcr-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bcr-hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bcr-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.bcr-page-hero {
  position: relative;
  background-color: var(--bcr-dark);
  padding: 10rem 2rem 6rem;
  text-align: center;
  color: var(--bcr-white);
  background-size: cover;
  background-position: center;
}

.bcr-page-hero--short {
  padding: 9rem 2rem 5rem;
}

.bcr-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.bcr-page-hero .bcr-heading-1 {
  color: var(--bcr-white);
  margin-top: 0.5rem;
}

.bcr-page-hero .bcr-section__label {
  color: var(--bcr-gold-lt);
}

.bcr-page-hero__desc {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin-inline: auto;
}

.bcr-intro__inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.bcr-intro .bcr-section__label {
  margin-bottom: 1rem;
}

.bcr-intro__text {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--bcr-text-muted);
  line-height: 1.8;
}

.bcr-intro .bcr-link-arrow {
  margin-top: 2rem;
}

.bcr-stats {
  background-color: var(--bcr-charcoal);
  padding: 4rem 2rem;
}

.bcr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.bcr-stat__value {
  font-family: var(--bcr-font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--bcr-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bcr-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .bcr-stats {
  background-color: var(--bcr-bg-alt);
}

[data-theme="dark"] .bcr-stat__label {
  color: var(--bcr-text-muted);
}

.bcr-horses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bcr-horse-card {
  background-color: var(--bcr-surface);
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44, 36, 22, 0.06);
  transition: transform var(--bcr-transition), box-shadow var(--bcr-transition),
    opacity 0.3s ease, visibility 0.3s ease;
  border: 1px solid var(--bcr-border);
}

.bcr-horse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 36, 22, 0.12);
}

.bcr-horse-card__link {
  display: block;
}

.bcr-horse-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bcr-bg-alt);
}

.bcr-horse-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bcr-horse-card:hover .bcr-horse-card__image {
  transform: scale(1.04);
}

.bcr-horse-card__image-wrap .bcr-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.bcr-horse-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bcr-bg-alt), var(--bcr-bg));
  color: var(--bcr-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.bcr-horse-card__body {
  padding: 1.5rem;
}

.bcr-horse-card__meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.bcr-horse-card__gender,
.bcr-horse-card__age {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
}

.bcr-horse-card__gender::after {
  content: '|';
  margin-left: 0.75rem;
  color: var(--bcr-border);
}

.bcr-horse-card__name {
  font-family: var(--bcr-font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bcr-text);
  margin-bottom: 0.25rem;
}

.bcr-horse-card__breed {
  font-size: 0.85rem;
  color: var(--bcr-text-muted);
  margin-bottom: 0.5rem;
}

.bcr-horse-card__bloodline {
  font-size: 0.82rem;
  color: var(--bcr-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bcr-horse-card__summary {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--bcr-text-muted);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcr-horse-card .bcr-link-arrow {
  margin-top: 1rem;
}

.bcr-horse-card.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.bcr-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.bcr-filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--bcr-border);
  background-color: transparent;
  color: var(--bcr-text-muted);
  border-radius: var(--bcr-radius);
  cursor: pointer;
  transition: all var(--bcr-transition);
}

.bcr-filter-btn:hover {
  border-color: var(--bcr-charcoal);
  color: var(--bcr-text);
}

.bcr-filter-btn--active {
  background-color: var(--bcr-charcoal);
  border-color: var(--bcr-charcoal);
  color: var(--bcr-bg);
}

.bcr-featured__cta {
  text-align: center;
  margin-top: 3rem;
}

.bcr-program-highlights {
  background: linear-gradient(180deg, var(--bcr-bg) 0%, var(--bcr-bg-alt) 100%);
}

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

.bcr-highlight-card {
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(21, 15, 10, 0.08);
}

.bcr-highlight-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bcr-bg-alt);
}

.bcr-highlight-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bcr-highlight-card:hover .bcr-highlight-card__media img {
  transform: scale(1.04);
}

.bcr-highlight-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bcr-bg-alt), var(--bcr-bg));
  color: var(--bcr-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.bcr-highlight-card__body {
  padding: 1.5rem;
}

.bcr-highlight-card__body .bcr-heading-3 {
  margin: 0.6rem 0 0.8rem;
}

.bcr-highlight-card__body p {
  margin-bottom: 1rem;
  color: var(--bcr-text-muted);
}

.bcr-breeding-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.bcr-breeding-teaser__image {
  background-color: var(--bcr-bg-alt);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.bcr-breeding-teaser__image--placeholder {
  background: linear-gradient(135deg, var(--bcr-burgundy-dk) 0%, var(--bcr-charcoal) 100%);
}

.bcr-breeding-teaser__content {
  background-color: var(--bcr-charcoal);
  color: var(--bcr-ivory);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.bcr-breeding-teaser__content .bcr-section__label {
  color: var(--bcr-gold-lt);
}

.bcr-breeding-teaser__content .bcr-heading-2 {
  color: var(--bcr-ivory);
}

.bcr-breeding-teaser__content p {
  color: rgba(250, 248, 243, 0.7);
  line-height: 1.8;
}

[data-theme="dark"] .bcr-breeding-teaser__content {
  background-color: var(--bcr-bg-alt);
}

[data-theme="dark"] .bcr-breeding-teaser__content .bcr-heading-2 {
  color: var(--bcr-text);
}

[data-theme="dark"] .bcr-breeding-teaser__content p {
  color: var(--bcr-text-muted);
}

.bcr-cta-section {
  background-color: var(--bcr-bg-alt);
}

.bcr-cta-section__inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.bcr-cta-section__inner .bcr-heading-2 {
  margin: 0.75rem 0 1rem;
}

.bcr-cta-section__inner p {
  color: var(--bcr-text-muted);
  margin-bottom: 2.5rem;
}

.bcr-cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bcr-horse-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background-color: var(--bcr-dark);
}

.bcr-horse-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bcr-horse-hero__image--placeholder {
  background: linear-gradient(135deg, var(--bcr-burgundy-dk), var(--bcr-charcoal));
}

.bcr-horse-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.1) 0%, rgba(26, 18, 8, 0.75) 100%);
}

.bcr-horse-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem var(--bcr-gutter);
  max-width: var(--bcr-max-width);
  margin-inline: auto;
}

.bcr-horse-hero__title {
  font-family: var(--bcr-font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--bcr-white);
  margin: 0.5rem 0 0.25rem;
}

.bcr-horse-hero__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.bcr-horse-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.bcr-horse-spec-card {
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.bcr-horse-spec-card__header {
  background-color: var(--bcr-charcoal);
  color: var(--bcr-ivory);
  padding: 1.5rem;
}

[data-theme="dark"] .bcr-horse-spec-card__header {
  background-color: var(--bcr-bg-alt);
  color: var(--bcr-text);
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-horse-spec-card__title {
  font-family: var(--bcr-font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bcr-horse-spec-card__subtitle {
  font-size: 0.82rem;
  opacity: 0.6;
}

.bcr-horse-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcr-horse-spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--bcr-border);
  font-size: 0.9rem;
}

.bcr-horse-spec-list li:last-child {
  border-bottom: none;
}

.bcr-horse-spec-list strong {
  font-weight: 600;
  color: var(--bcr-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bcr-horse-spec-list span {
  color: var(--bcr-text);
}

.bcr-horse-detail__excerpt {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bcr-text-muted);
  margin-bottom: 2rem;
}

.bcr-horse-detail__body {
  color: var(--bcr-text);
  line-height: 1.8;
}

.bcr-horse-detail__body p {
  margin-bottom: 1.25rem;
}

.bcr-pedigree {
  display: flex;
  gap: 2px;
  align-items: stretch;
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

.bcr-pedigree__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bcr-pedigree__col--subject {
  flex: 1.5;
}

.bcr-pedigree__col--grand {
  flex: 1.5;
}

.bcr-pedigree__node {
  flex: 1;
  padding: 1rem 1.25rem;
  background-color: var(--bcr-surface);
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.bcr-pedigree__node--subject {
  background-color: var(--bcr-charcoal);
  color: var(--bcr-ivory);
}

.bcr-pedigree__node--sire {
  background-color: var(--bcr-bg-alt);
}

.bcr-pedigree__node--dam {
  background-color: var(--bcr-bg);
}

.bcr-pedigree__name {
  font-family: var(--bcr-font-serif);
  font-size: 0.95rem;
  font-weight: 600;
}

.bcr-pedigree__role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bcr-gold);
}

.bcr-pedigree__node--subject .bcr-pedigree__role {
  color: var(--bcr-gold-lt);
}

[data-theme="dark"] .bcr-pedigree__node--subject {
  background-color: var(--bcr-bg-alt);
  color: var(--bcr-text);
}

.bcr-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

.bcr-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--bcr-bg-alt);
}

.bcr-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bcr-gallery__item:hover img {
  transform: scale(1.06);
}

.bcr-gallery__item--captioned {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  background-color: var(--bcr-surface);
}

.bcr-gallery__item--captioned figcaption {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.82rem;
  color: var(--bcr-text-muted);
  background-color: var(--bcr-surface);
}

.bcr-gallery-clusters {
  display: grid;
  gap: 4rem;
}

.bcr-gallery-cluster .bcr-section__header {
  margin-bottom: 1.75rem;
}

.bcr-gallery-page__intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  color: var(--bcr-text-muted);
  line-height: 1.8;
}

.bcr-gallery--narrow {
  max-width: 720px;
  margin: 0 auto;
}

.bcr-gallery--two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bcr-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bcr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bcr-service-card {
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  padding: 2rem;
}

.bcr-service-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--bcr-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--bcr-gold);
}

.bcr-service-card h3 {
  font-family: var(--bcr-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bcr-text);
  margin-bottom: 0.75rem;
}

.bcr-service-card p {
  font-size: 0.95rem;
  color: var(--bcr-text-muted);
  line-height: 1.7;
}

.bcr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.bcr-contact-image {
  margin: 0 0 2rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bcr-border);
  box-shadow: 0 10px 30px rgba(44, 36, 22, 0.08);
  background-color: var(--bcr-bg-alt);
}

.bcr-contact-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bcr-contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bcr-contact-info__icon {
  width: 40px;
  height: 40px;
  background-color: var(--bcr-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bcr-gold);
}

.bcr-contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
  margin-bottom: 0.25rem;
}

.bcr-contact-info__value {
  font-size: 0.95rem;
  color: var(--bcr-text);
}

.bcr-contact-info__value a {
  color: var(--bcr-text);
}

.bcr-contact-info__value a:hover {
  color: var(--bcr-burgundy);
}

.bcr-contact-info__block {
  margin-bottom: 2rem;
}

.bcr-contact-info__heading {
  font-family: var(--bcr-font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bcr-text);
  margin-bottom: 0.85rem;
}

.bcr-contact-info__note {
  margin-top: 1rem;
  color: var(--bcr-text-muted);
}

.bcr-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bcr-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--bcr-border);
  background-color: var(--bcr-surface);
  color: var(--bcr-text);
  transition: all var(--bcr-transition);
}

.bcr-social-link:hover {
  background-color: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-dark);
}

.bcr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bcr-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.bcr-form__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
}

.bcr-form__input,
.bcr-form__textarea,
.bcr-form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--bcr-font-sans);
  font-size: 0.95rem;
  color: var(--bcr-text);
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  transition: border-color var(--bcr-transition), box-shadow var(--bcr-transition),
    background-color 0.3s ease, color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.bcr-form__input:focus,
.bcr-form__select:focus {
  outline: none;
  border-color: var(--bcr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.bcr-form__textarea:focus {
  outline: none;
  border-color: var(--bcr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.bcr-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.bcr-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7168' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.bcr-form__message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--bcr-radius);
  font-size: 0.9rem;
  display: none;
}

.bcr-form__message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
}

.bcr-form__message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
}

.bcr-form__message.sending {
  display: block;
  background-color: var(--bcr-bg-alt);
  color: var(--bcr-text-muted);
}

[data-theme="dark"] .bcr-form__message.success {
  background-color: #1a3d26;
  color: #7dcea0;
}

[data-theme="dark"] .bcr-form__message.error {
  background-color: #3d1a1e;
  color: #e88a94;
}

.bcr-form-section {
  background-color: var(--bcr-bg-alt);
}

.bcr-form-section__inner {
  max-width: 720px;
  margin-inline: auto;
}

.bcr-form-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.bcr-form-section__header .bcr-heading-2 {
  margin: 0.75rem 0 1rem;
}

.bcr-form-section__header p {
  color: var(--bcr-text-muted);
}

.bcr-no-horses,
.bcr-no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--bcr-text-muted);
}

.bcr-no-results-text {
  text-align: center;
  color: var(--bcr-text-muted);
  margin-top: 2rem;
}

.bcr-reset-filter {
  color: var(--bcr-burgundy);
  text-decoration: underline;
}

.bcr-footer {
  background-color: var(--bcr-dark);
  color: var(--bcr-white);
  padding: 5rem 0 0;
}

[data-theme="dark"] .bcr-footer {
  background-color: #0E0C08;
  border-top: 1px solid var(--bcr-border);
}

.bcr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bcr-footer__logo {
  font-family: var(--bcr-font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.bcr-footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bcr-gold);
  margin-bottom: 1.25rem;
}

.bcr-footer__desc {
  color: rgba(250, 248, 243, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 360px;
}

.bcr-footer__heading {
  font-family: var(--bcr-font-serif);
  font-size: 1rem;
  color: var(--bcr-gold);
  margin-bottom: 1.25rem;
}

.bcr-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcr-footer__links li {
  margin-bottom: 0.75rem;
}

.bcr-footer__links a {
  color: rgba(250, 248, 243, 0.55);
  font-size: 0.9rem;
  transition: color var(--bcr-transition);
}

.bcr-footer__links a:hover {
  color: var(--bcr-white);
}

.bcr-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcr-footer__contact-list li {
  color: rgba(250, 248, 243, 0.55);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.bcr-footer__contact-list a {
  color: rgba(250, 248, 243, 0.55);
  transition: color var(--bcr-transition);
}

.bcr-footer__contact-list a:hover {
  color: var(--bcr-gold);
}

.bcr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(250, 248, 243, 0.3);
}

.bcr-footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bcr-footer__social a {
  color: rgba(250, 248, 243, 0.4);
  transition: color var(--bcr-transition);
}

.bcr-footer__social a:hover {
  color: var(--bcr-gold);
}

[data-contrast="high"] .bcr-horse-card {
  border: 2px solid var(--bcr-border);
}

[data-contrast="high"] .bcr-btn--gold {
  background-color: var(--bcr-gold);
  color: #000000;
  border: 2px solid var(--bcr-gold);
}

[data-contrast="high"] .bcr-link-arrow {
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-contrast="high"] .bcr-nav__list a,
[data-contrast="high"] .bcr-mobile-menu__list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-contrast="high"] .bcr-form__input,
[data-contrast="high"] .bcr-form__textarea,
[data-contrast="high"] .bcr-form__select {
  border-width: 2px;
}

[data-contrast="high"] .bcr-filter-btn {
  border-width: 2px;
}

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

  .bcr-about-grid,
  .bcr-about-notes {
    grid-template-columns: 1fr;
  }

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

  .bcr-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .bcr-horse-detail__grid {
    grid-template-columns: 1fr;
  }

  .bcr-horse-spec-card {
    position: static;
  }

  .bcr-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bcr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .bcr-two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  :root {
    --bcr-gutter: 1.25rem;
  }

  .bcr-header__inner {
    height: 82px;
  }

  .bcr-header .custom-logo {
    height: 56px;
  }

  .bcr-nav {
    display: none;
  }

  .bcr-mobile-toggle {
    display: flex;
  }

  .bcr-header .bcr-btn--outline {
    display: none;
  }

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

  .bcr-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .bcr-horses-grid {
    grid-template-columns: 1fr;
  }

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

  .bcr-breeding-teaser {
    grid-template-columns: 1fr;
  }

  .bcr-services-grid {
    grid-template-columns: 1fr;
  }

  .bcr-form__row {
    grid-template-columns: 1fr;
  }

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

  .bcr-gallery--two-up {
    grid-template-columns: 1fr;
  }

  .bcr-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bcr-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .bcr-pedigree {
    flex-direction: column;
  }

  .bcr-pedigree__col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bcr-pedigree__col--subject {
    align-items: stretch;
  }

  .bcr-accessibility-toggle {
    width: 3.1rem;
    padding: 0.75rem;
  }
}

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

  .bcr-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.bcr-accessibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.35rem;
  padding: 0.8rem 0.95rem;
  justify-content: center;
  overflow: hidden;
  background: rgba(36, 27, 18, 0.94);
  border: 1px solid rgba(212, 185, 131, 0.35);
  color: var(--bcr-white);
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--bcr-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: width 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  z-index: 10000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.bcr-accessibility-toggle:hover {
  width: 10.5rem;
  background: rgba(56, 42, 29, 0.98);
  border-color: rgba(212, 185, 131, 0.7);
  transform: translateY(-2px);
}

.bcr-accessibility-toggle:focus-visible {
  outline: 3px solid var(--bcr-gold);
  outline-offset: 3px;
}

.bcr-accessibility-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
}

.bcr-accessibility-toggle__text {
  font-size: 0.73rem;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.2s ease, max-width 0.2s ease;
}

.bcr-accessibility-toggle:hover .bcr-accessibility-toggle__text,
.bcr-accessibility-toggle:focus-visible .bcr-accessibility-toggle__text {
  opacity: 1;
  max-width: 8rem;
}

.bcr-accessibility-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bcr-accessibility-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bcr-accessibility-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bcr-surface);
  color: var(--bcr-text);
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
  z-index: 10001;
  overflow-y: auto;
  pointer-events: none;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--bcr-border);
}

.bcr-accessibility-panel.is-open {
  right: 0;
  pointer-events: auto;
}

.bcr-accessibility-panel__inner {
  padding: 1.75rem;
}

.bcr-accessibility-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-accessibility-panel__title {
  font-family: var(--bcr-font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bcr-text);
  margin: 0;
}

.bcr-accessibility-panel__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--bcr-text-muted);
  padding: 0 0.2rem;
  transition: color var(--bcr-transition);
}

.bcr-accessibility-panel__close:hover {
  color: var(--bcr-text);
}

.bcr-accessibility-panel__close:focus-visible {
  outline: 2px solid var(--bcr-gold);
  border-radius: 2px;
}

.bcr-accessibility-panel__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-accessibility-panel__subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
  margin-bottom: 0.75rem;
}

.bcr-accessibility-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bcr-accessibility-buttons--inline {
  justify-content: flex-start;
  align-items: center;
}

.bcr-access-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--bcr-bg-alt);
  border: 1px solid var(--bcr-border);
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--bcr-font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bcr-text);
  transition: all 0.2s ease;
}

.bcr-access-btn:hover {
  background-color: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-charcoal);
}

.bcr-access-btn:focus-visible {
  outline: 2px solid var(--bcr-gold);
  outline-offset: 2px;
}

.bcr-access-btn.is-active {
  background-color: var(--bcr-charcoal);
  border-color: var(--bcr-charcoal);
  color: var(--bcr-bg);
}

[data-theme="dark"] .bcr-access-btn.is-active {
  background-color: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-dark);
}

.bcr-access-btn--reset {
  width: 100%;
  justify-content: center;
  border-color: var(--bcr-burgundy);
  color: var(--bcr-burgundy);
  border-radius: var(--bcr-radius);
  letter-spacing: 0.06em;
}

.bcr-access-btn--reset:hover {
  background-color: var(--bcr-burgundy);
  border-color: var(--bcr-burgundy);
  color: var(--bcr-white);
}

.bcr-access-btn__icon {
  font-size: 1rem;
}

.bcr-access-size-label {
  font-size: 0.7rem;
  color: var(--bcr-text-muted);
  margin: 0.5rem 0 0;
  min-height: 1.2em;
}

.bcr-accessibility-panel__shortcuts {
  background: var(--bcr-bg-alt);
  padding: 1rem 1.1rem;
  border-radius: var(--bcr-radius-lg);
  margin: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--bcr-text);
}

.bcr-accessibility-panel__shortcuts p {
  margin: 0 0 0.6rem;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bcr-text-muted);
}

.bcr-accessibility-panel__shortcuts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcr-accessibility-panel__shortcuts li {
  margin: 0.4rem 0;
}

.bcr-accessibility-panel__shortcuts kbd {
  display: inline-block;
  background: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-family: monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--bcr-text);
  box-shadow: 0 1px 0 var(--bcr-border);
}

.bcr-accessibility-panel__footer {
  padding-top: 0.25rem;
}

body.bcr-dark-mode {
  --bcr-bg: #1E1A14;
  --bcr-bg-alt: #2A2318;
  --bcr-surface: #2E2820;
  --bcr-text: #EDE8DF;
  --bcr-text-muted: #A89F94;
  --bcr-border: #3A3028;
  --bcr-charcoal: #2F2A24;
  --bcr-charcoal-lt: #585047;
  --bcr-dark: #221D18;
  --bcr-white: #F5F0E8;
  --bcr-ivory: #F7F3EC;
  --bcr-ivory-dark: #EAE1D2;
}

body.bcr-high-contrast {
  --bcr-bg: #000000;
  --bcr-bg-alt: #111111;
  --bcr-surface: #111111;
  --bcr-text: #FFFFFF;
  --bcr-text-muted: #DDDDDD;
  --bcr-border: #FFFFFF;
  --bcr-charcoal: #2F2A24;
  --bcr-gold: #C6A56B;
  --bcr-gold-lt: #DEC08D;
  --bcr-burgundy: #7B5A3A;
  --bcr-ivory: #F7F3EC;
  --bcr-ivory-dark: #EAE1D2;
  --bcr-dark: #221D18;
}

body.bcr-high-contrast img {
  filter: brightness(0.9) contrast(1.2);
}

body.bcr-underline-links a:not(.bcr-btn):not(.bcr-link-arrow) {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

.bcr-skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 99999;
  padding: 0.75rem 1.5rem;
  background-color: var(--bcr-burgundy);
  color: var(--bcr-white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--bcr-radius);
  white-space: nowrap;
  text-decoration: none !important;
}

.bcr-skip-link:focus {
  top: 1rem;
  left: 1rem;
  outline: 3px solid var(--bcr-gold);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--bcr-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.bcr-search-result {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-search-result__title {
  font-family: var(--bcr-font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

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

.bcr-search-result__title a:hover {
  color: var(--bcr-burgundy-dk);
}

.bcr-search-result__meta {
  font-size: 0.82rem;
  color: var(--bcr-text-muted);
  margin-bottom: 0.6rem;
}

.bcr-search-result__excerpt {
  color: var(--bcr-text-muted);
  margin-bottom: 0.75rem;
}

.bcr-archive-grid {
  display: grid;
  gap: 2rem;
}

.bcr-archive-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bcr-border);
}

.bcr-archive-item__title {
  font-family: var(--bcr-font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.bcr-archive-item__title a {
  color: var(--bcr-burgundy);
}

.bcr-archive-item__title a:hover {
  color: var(--bcr-burgundy-dk);
}

.bcr-archive-item__meta {
  font-size: 0.82rem;
  color: var(--bcr-text-muted);
  margin-bottom: 0.6rem;
}

.bcr-archive-item__excerpt {
  color: var(--bcr-text-muted);
  margin-bottom: 0.75rem;
}

.bcr-single-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.bcr-single-thumbnail {
  margin-bottom: 2rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

.bcr-prose {
  color: var(--bcr-text);
  line-height: 1.8;
}

.bcr-prose p {
  margin-bottom: 1.25rem;
}

.bcr-prose h2,
.bcr-prose h3 {
  font-family: var(--bcr-font-serif);
  color: var(--bcr-text);
  margin: 2rem 0 0.75rem;
}

.bcr-page-content {
  max-width: 860px;
  margin: 0 auto;
}

.bcr-about-intro {
  margin-bottom: 3.5rem;
}

.bcr-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bcr-about-card {
  background-color: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(44, 36, 22, 0.08);
}

.bcr-about-card__bloodline {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
  margin-bottom: 0.8rem;
}

.bcr-about-card__status {
  color: var(--bcr-text);
  margin-bottom: 1rem;
}

.bcr-about-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--bcr-text-muted);
  line-height: 1.8;
}

.bcr-about-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.bcr-about-note {
  background-color: var(--bcr-bg-alt);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  padding: 1.5rem;
}

.bcr-about-note p {
  margin: 0;
  color: var(--bcr-text-muted);
  line-height: 1.8;
}

.bcr-single-meta {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bcr-border);
  font-size: 0.9rem;
  color: var(--bcr-text-muted);
}

.bcr-single-meta p {
  margin-bottom: 0.4rem;
}

.bcr-sidebar-widget {
  background: var(--bcr-bg-alt);
  padding: 1.5rem;
  border-radius: var(--bcr-radius-lg);
  margin-bottom: 1.5rem;
  border: 1px solid var(--bcr-border);
}

.bcr-sidebar-widget__title {
  font-family: var(--bcr-font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bcr-text);
  margin-bottom: 1rem;
}

.bcr-sidebar-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcr-sidebar-widget__list li {
  margin-bottom: 0.6rem;
}

.bcr-sidebar-widget__list a {
  color: var(--bcr-text-muted);
  font-size: 0.9rem;
}

.bcr-sidebar-widget__list a:hover {
  color: var(--bcr-burgundy);
}

.bcr-pagination {
  margin-top: 2.5rem;
  text-align: center;
}

.bcr-pagination .page-numbers {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  margin: 0 0.15rem;
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  font-size: 0.85rem;
  color: var(--bcr-text-muted);
  transition: all var(--bcr-transition);
}

.bcr-pagination .page-numbers:hover,
.bcr-pagination .page-numbers.current {
  background: var(--bcr-burgundy);
  border-color: var(--bcr-burgundy);
  color: var(--bcr-white);
}

.bcr-video-section {
  background: var(--bcr-dark);
  color: var(--bcr-white);
  overflow: hidden;
}

.bcr-video-section .bcr-heading-2,
.bcr-video-section .bcr-section__desc {
  color: var(--bcr-white);
}

.bcr-video-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  overflow: hidden;
}

.bcr-video-track {
  display: flex;
  gap: 1.25rem;
  transition: transform var(--bcr-transition-slow);
  will-change: transform;
}

.bcr-video-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.bcr-video-thumb {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform var(--bcr-transition-slow);
}

.bcr-video-slide:hover .bcr-video-thumb {
  transform: scale(1.04);
}

.bcr-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 25%, rgba(0, 0, 0, 0.82) 100%);
}

.bcr-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.92);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform var(--bcr-transition), background-color var(--bcr-transition);
}

.bcr-play-btn::after {
  content: '|';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--bcr-dark);
}

.bcr-video-slide:hover .bcr-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--bcr-white);
}

.bcr-video-title {
  position: relative;
  z-index: 1;
  font-family: var(--bcr-font-serif);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  color: var(--bcr-white);
}

.bcr-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.bcr-carousel-controls button {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--bcr-white);
  cursor: pointer;
  transition: all var(--bcr-transition);
}

.bcr-carousel-controls button:hover {
  background: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-dark);
}

.bcr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--bcr-transition), visibility var(--bcr-transition);
}

.bcr-lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bcr-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  color: var(--bcr-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.bcr-lightbox-content {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

.bcr-lightbox-content.is-portrait {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
}

.bcr-lightbox-content iframe,
.bcr-lightbox-content #bcr-lightbox-player {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .bcr-accessibility-toggle {
    width: 3.1rem;
    padding: 0.75rem;
  }

  .bcr-accessibility-toggle:hover {
    width: 3.1rem;
  }

  .bcr-accessibility-toggle__text {
    display: none;
  }

  .bcr-single-grid {
    grid-template-columns: 1fr;
  }

  .bcr-video-overlay {
    padding: 1.25rem;
  }

  .bcr-play-btn {
    width: 60px;
    height: 60px;
  }

  .bcr-lightbox {
    padding: 1rem;
  }
}

.bcr-home-band {
  background: var(--bcr-bg-alt);
}

.bcr-home-story {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.bcr-home-story__copy p,
.bcr-home-featured-card p,
.bcr-home-highlight-card p,
.bcr-home-trust-card p,
.bcr-service-card p,
.bcr-cta-panel p,
.bcr-footer__spotlight p {
  color: var(--bcr-text-muted);
}

.bcr-home-story__aside,
.bcr-home-featured-card,
.bcr-home-highlight-card,
.bcr-home-trust-card,
.bcr-service-card,
.bcr-footer__spotlight {
  background: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  box-shadow: 0 14px 35px rgba(44, 36, 22, 0.08);
}

.bcr-home-story__card,
.bcr-home-featured-card,
.bcr-home-highlight-card,
.bcr-home-trust-card,
.bcr-service-card,
.bcr-footer__spotlight {
  padding: 1.75rem;
}

.bcr-home-featured-grid,
.bcr-home-highlight-grid,
.bcr-home-trust-grid,
.bcr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.bcr-home-featured-card__meta {
  margin-bottom: 0.75rem;
  color: var(--bcr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.bcr-collection-filters {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bcr-bg-alt);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
}

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

.bcr-collection-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bcr-text-muted);
}

.bcr-collection-filters input,
.bcr-collection-filters select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  background: var(--bcr-surface);
  color: var(--bcr-text);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
}

.bcr-collection-filters__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bcr-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bcr-bg-alt), var(--bcr-surface));
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
}

.bcr-footer__spotlight {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.bcr-footer__spotlight h3 {
  font-family: var(--bcr-font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--bcr-white);
}

.bcr-footer__spotlight p {
  margin-bottom: 1rem;
  color: rgba(250, 248, 243, 0.72);
}

@media (max-width: 1024px) {
  .bcr-home-featured-grid,
  .bcr-home-highlight-grid,
  .bcr-home-trust-grid,
  .bcr-services-grid,
  .bcr-collection-filters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bcr-home-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bcr-home-featured-grid,
  .bcr-home-highlight-grid,
  .bcr-home-trust-grid,
  .bcr-services-grid,
  .bcr-collection-filters__grid {
    grid-template-columns: 1fr;
  }

  .bcr-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bcr-page-feature-image {
  margin: 0 0 2rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44, 36, 22, 0.08);
}

.bcr-page-feature-image img,
.bcr-about-intro__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bcr-about-intro__image {
  margin: 0 0 2rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

/* ==========================================================================
   STALLION PROMO CARDS
   ========================================================================== */

.bcr-stallion-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.bcr-stallion-promo-card {
  position: relative;
  min-height: 480px;
  background-color: var(--bcr-charcoal-lt);
  background-size: cover;
  background-position: center;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bcr-stallion-promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,20,16,0.82) 0%, rgba(24,20,16,0.40) 55%, rgba(24,20,16,0.08) 100%);
  z-index: 1;
}

.bcr-stallion-promo-card__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bcr-stallion-promo-card__img-wrap--placeholder {
  background-color: var(--bcr-charcoal-lt);
}

.bcr-stallion-promo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bcr-stallion-promo-card__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--bcr-white);
}

.bcr-stallion-promo-card__body .bcr-section__label {
  color: var(--bcr-gold);
  margin-bottom: 0.5rem;
}

.bcr-stallion-promo-card__name {
  color: var(--bcr-white);
  margin-bottom: 0.35rem;
}

.bcr-stallion-promo-card__bloodline {
  font-family: var(--bcr-font-sans);
  font-size: 0.85rem;
  color: var(--bcr-slate-lt);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.bcr-stallion-promo-card__status {
  font-size: 0.9rem;
  color: var(--bcr-ivory-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bcr-stallion-promo-card__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.bcr-stallion-promo-card__list li {
  font-size: 0.875rem;
  color: var(--bcr-ivory);
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  line-height: 1.5;
}

.bcr-stallion-promo-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bcr-gold);
}

.bcr-stallion-promo-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
}

/* ==========================================================================
   LEGACY VIDEO GRID
   ========================================================================== */

.bcr-legacy-video-section {
  background-color: var(--bcr-bg-alt);
}

.bcr-legacy-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .bcr-legacy-video-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.bcr-legacy-video-item--wide {
  width: 100%;
}

.bcr-legacy-video-item--wide iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: var(--bcr-radius);
}

.bcr-legacy-video-item__group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bcr-legacy-video-item--portrait {
  display: flex;
  justify-content: center;
}

.bcr-legacy-video-item--portrait iframe {
  max-width: 100%;
  border-radius: var(--bcr-radius);
  display: block;
}

.bcr-video-placeholder {
  text-align: center;
  color: var(--bcr-text-muted);
  font-style: italic;
  padding: 2rem 0;
}

/* ==========================================================================
   RANCH SCENE BAND (About / Breeding)
   ========================================================================== */

.bcr-about-ranch-scene {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .bcr-about-ranch-scene {
    height: 200px;
    background-attachment: scroll;
  }
}

/* ==========================================================================
   ABOUT BANNER IMAGE (mares section)
   ========================================================================== */

.bcr-about-banner-image {
  margin: 0 0 2rem;
  border-radius: var(--bcr-radius-lg);
  overflow: hidden;
}

.bcr-about-banner-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   PAGE BUILDER BLOCKS
   ========================================================================== */

.bcr-page-builder {
  width: 100%;
}

/* --- Text Block --- */
.bcr-pb-text-block .bcr-prose {
  max-width: 72ch;
  margin: 0 auto;
}

/* --- Image + Text --- */
.bcr-pb-image-text__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bcr-pb-image-text__inner {
    grid-template-columns: 1fr 1fr;
  }

  .bcr-pb-image-text--right .bcr-pb-image-text__media {
    order: 2;
  }

  .bcr-pb-image-text--right .bcr-pb-image-text__body {
    order: 1;
  }
}

.bcr-pb-image-text__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--bcr-radius-lg);
  display: block;
}

.bcr-pb-image-text__media--placeholder {
  background-color: var(--bcr-bg-alt);
  height: 400px;
  border-radius: var(--bcr-radius-lg);
}

/* --- Background Image Section --- */
.bcr-pb-bg-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bcr-charcoal);
}

.bcr-pb-bg-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,29,24,0.65);
}

.bcr-pb-bg-section__content {
  position: relative;
  z-index: 1;
  color: var(--bcr-white);
  max-width: 680px;
}

.bcr-pb-bg-section__content h2,
.bcr-pb-bg-section__content p {
  color: var(--bcr-white);
}

/* --- Quote Block --- */
.bcr-pb-quote-block {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bcr-charcoal);
}

.bcr-pb-quote-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,29,24,0.70);
}

.bcr-pb-quote-block__content {
  position: relative;
  z-index: 1;
}

.bcr-pb-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.bcr-pb-quote p {
  font-family: var(--bcr-font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--bcr-white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.bcr-pb-quote cite {
  font-family: var(--bcr-font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bcr-gold);
  font-style: normal;
}

/* --- CTA Block --- */
.bcr-pb-cta-block {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bcr-charcoal);
}

.bcr-pb-cta-block__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,29,24,0.72);
}

.bcr-pb-cta-block__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.bcr-pb-cta-block h2,
.bcr-pb-cta-block p {
  color: var(--bcr-white);
}

/* --- Gallery Row --- */
.bcr-pb-gallery-row__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.bcr-pb-gallery-row__item {
  margin: 0;
  border-radius: var(--bcr-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.bcr-pb-gallery-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--bcr-transition);
}

.bcr-pb-gallery-row__item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   BREEDING PAGE — STEPS
   ========================================================================== */

.bcr-breeding-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.bcr-breeding-step {
  background: var(--bcr-surface);
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius-lg);
  padding: 2rem;
}

.bcr-breeding-step__number {
  font-family: var(--bcr-font-serif);
  font-size: 2.5rem;
  color: var(--bcr-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.bcr-breeding-step h3 {
  margin-bottom: 0.5rem;
}

.bcr-breeding-mares__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.bcr-breeding-mares__item {
  margin: 0;
  border-radius: var(--bcr-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.bcr-breeding-mares__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   GALLERY PAGE — TABS + GRID
   ========================================================================== */

.bcr-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bcr-border);
  padding-bottom: 0.75rem;
}

.bcr-gallery-tab {
  background: none;
  border: 1px solid var(--bcr-border);
  border-radius: var(--bcr-radius);
  padding: 0.5rem 1.25rem;
  font-family: var(--bcr-font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--bcr-text-muted);
  transition: background var(--bcr-transition), color var(--bcr-transition), border-color var(--bcr-transition);
}

.bcr-gallery-tab:hover,
.bcr-gallery-tab--active {
  background: var(--bcr-gold);
  color: var(--bcr-dark);
  border-color: var(--bcr-gold);
}

.bcr-gallery-panel {
  display: block;
}

.bcr-gallery-panel[hidden="true"] {
  display: none;
}

.bcr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.bcr-gallery-grid__item {
  margin: 0;
  border-radius: var(--bcr-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bcr-bg-alt);
}

.bcr-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--bcr-transition);
}

.bcr-gallery-grid__item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   LIGHT-MODE FIXES — sections that were forced to charcoal
   ========================================================================== */

/* Stats band: warm gold accent on cream instead of charcoal */
:root .bcr-stats,
[data-theme="light"] .bcr-stats {
  background-color: var(--bcr-bg-alt);
  border-top: 1px solid var(--bcr-border);
  border-bottom: 1px solid var(--bcr-border);
}

:root .bcr-stat__value,
[data-theme="light"] .bcr-stat__value {
  color: var(--bcr-gold);
}

:root .bcr-stat__label,
[data-theme="light"] .bcr-stat__label {
  color: var(--bcr-text-muted);
}

/* Breeding teaser content panel: ivory with dark text */
:root .bcr-breeding-teaser__content,
[data-theme="light"] .bcr-breeding-teaser__content {
  background-color: var(--bcr-charcoal); /* keep intentional dark panel */
  color: var(--bcr-ivory);
}

/* Hero overlay — slightly lighter so imagery shows more */
.bcr-hero__overlay {
  background: linear-gradient(180deg, rgba(26,18,8,0.20) 0%, rgba(26,18,8,0.55) 100%);
}

/* Stallion promo cards — reduce overlay from 0.92 → 0.68 so bg image is visible */
.bcr-stallion-promo-card__overlay {
  background: linear-gradient(to top, rgba(24,20,16,0.82) 0%, rgba(24,20,16,0.40) 55%, rgba(24,20,16,0.08) 100%);
}

/* Page builder — reduce overlay opacities for readability */
.bcr-pb-bg-section__overlay {
  background: rgba(24,20,16,0.52);
}

.bcr-pb-quote-block__overlay {
  background: rgba(24,20,16,0.58);
}

.bcr-pb-cta-block__overlay {
  background: rgba(24,20,16,0.60);
}

/* Filter buttons — use gold instead of charcoal for active state */
.bcr-filter-btn--active {
  background-color: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-white);
}

.bcr-filter-btn:hover {
  border-color: var(--bcr-gold);
  color: var(--bcr-gold);
}

/* Gallery tabs — gold active state */
.bcr-gallery-tab:hover,
.bcr-gallery-tab--active {
  background: var(--bcr-gold);
  border-color: var(--bcr-gold);
  color: var(--bcr-white);
}

