/* =====================================================
   LAKE SHORE GREAT DANE CLUB — Design System
   LIGHT THEME — Warm, bright, refined
   Palette: Gold #C9A84C · Royal Blue #2E6AB4 · Black #0B0B0B
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand */
  --gold:         #C9A84C;
  --gold-light:   #D9BE70;
  --gold-dark:    #A68A30;
  --gold-subtle:  #F8F2E0;
  --blue:         #2E6AB4;
  --blue-light:   #4A8AD6;
  --blue-dark:    #1D4F8A;
  --blue-subtle:  #EAF0F9;
  --black:        #0B0B0B;

  /* Light theme surfaces */
  --bg:           #FDFCF9;
  --bg-warm:      #F9F6F0;
  --surface:      #FFFFFF;
  --surface-alt:  #F5F1EA;
  --surface-raised: #FFFFFF;
  --border:       #E5DFD3;
  --border-light: #EDE9E0;

  /* Text on light */
  --text:         #3A3630;
  --text-muted:   #7A756B;
  --heading:      #1A1815;
  --cream:        #1A1815;
  --white:        #FDFCF9;

  /* Dark footer */
  --footer-bg:    #111114;
  --footer-surface: #1A1A1E;
  --footer-border: #2A2A32;
  --footer-text:  #E8E4DC;
  --footer-muted: #9B978E;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Raleway', 'Helvetica Neue', sans-serif;
  --font-accent:  'Libre Baskerville', 'Georgia', serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:  1280px;
  --nav-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--gold-dark);
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  max-width: 68ch;
  margin-bottom: var(--space-md);
}

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

.lead {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.gold-text { color: var(--gold-dark); }
.blue-text { color: var(--blue); }

/* --- Decorative Elements --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: var(--space-md) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 0.85rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.text-center { text-align: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(253, 252, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 252, 249, 0.97);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo svg {
  width: 48px;
  height: 48px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--heading);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: default;
  pointer-events: auto;
}

.nav-dropdown > a::after {
  display: none !important;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 190px;
  padding: 0.4rem 0;
  padding-top: 0.6rem;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

/* Invisible bridge so mouse can travel from link to dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  display: none;
}

.nav-dropdown:hover::after {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

/* Nested sub-dropdown (flyout) */
.nav-dropdown-menu .nav-sub-dropdown {
  position: relative;
}
.nav-dropdown-menu .nav-sub-dropdown > a::after {
  content: '›';
  display: inline-block !important;
  margin-left: 0.5em;
  font-size: 1em;
}
.nav-sub-dropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 150px;
  padding: 0.4rem 0;
  z-index: 1001;
  list-style: none;
  margin: 0;
}
.nav-sub-dropdown:hover > .nav-sub-dropdown-menu {
  display: block;
}
.nav-sub-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-sub-dropdown-menu a:hover,
.nav-sub-dropdown-menu a.active {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--heading);
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 106, 180, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--heading);
  padding: 0.5rem 0;
  letter-spacing: 0.08em;
}

.btn-ghost::after {
  content: ' \2192';
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--gold-dark);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--heading);
}

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

/* --- Slideshow --- */
.slideshow {
  background: var(--surface);
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: slideFade 84s infinite;
}

@keyframes slideFade {
  0%   { opacity: 0; }
  1.2%  { opacity: 1; }
  3.6%  { opacity: 1; }
  4.76% { opacity: 0; }
  100% { opacity: 0; }
}

/* --- FAQ --- */
.faq-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: var(--space-sm);
}

.faq-header h3 {
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: var(--space-xl);
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 40%, var(--gold-subtle) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(46, 106, 180, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.4) 60px, rgba(201,168,76,0.4) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.4) 60px, rgba(201,168,76,0.4) 61px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--heading);
}

.hero .lead {
  margin-bottom: var(--space-lg);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-2xl);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-logo {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg) 0%, var(--gold-subtle) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(46, 106, 180, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
  color: var(--heading);
}

.page-hero .lead {
  max-width: 600px;
}

/* --- Footer (DARK for contrast) --- */
.footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--gold);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--footer-muted);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--footer-muted);
  font-size: 0.9rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--footer-muted);
}

.footer-links a:hover {
  color: var(--footer-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--footer-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--footer-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--footer-border);
  color: var(--footer-muted);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Feature Row --- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item {
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid var(--border);
  transition: background 0.3s var(--ease-out);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: var(--gold-subtle);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
  color: var(--gold-dark);
}

.feature-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--heading);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Color Swatches (Breed Page) --- */
/* --- Breed Overview Image --- */
.breed-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.breed-hero-img-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -1rem;
}

.breed-hero-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

@media (max-width: 768px) {
  .breed-overview-grid {
    grid-template-columns: 1fr;
  }
  .breed-hero-img {
    max-width: 380px;
    margin: var(--space-md) auto 0;
  }
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.color-row {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.color-row-top {
  margin-bottom: var(--space-lg);
}

.color-row .color-swatch {
  flex: 0 0 auto;
  width: 180px;
}

@media (max-width: 768px) {
  .color-row {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .color-row .color-swatch {
    width: 42%;
  }
}

@media (max-width: 480px) {
  .color-row .color-swatch {
    width: 100%;
  }
}

.color-swatch {
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}

.color-swatch:hover {
  transform: translateY(-4px);
}

.color-dog-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.swatch-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.color-swatch h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.color-swatch p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Stat Bar --- */
.stat-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-xl) 0;
  background: var(--blue);
  border-top: none;
  border-bottom: none;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-xs);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--border));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}

.timeline-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--surface-alt);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Placeholder for gallery images */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface-alt) 0%, var(--border-light) 100%);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 106, 180, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Breed Traits Bar --- */
.trait-bar {
  margin-bottom: var(--space-md);
}

.trait-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.trait-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--heading);
}

.trait-level {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trait-track {
  height: 6px;
  background: var(--surface-alt);
  overflow: hidden;
  border-radius: 3px;
}

.trait-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 3px;
  transition: width 1s var(--ease-out);
}

/* --- Event Card --- */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  margin-bottom: var(--space-md);
}

.event-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.event-date {
  text-align: center;
  min-width: 80px;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.event-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading);
  line-height: 1;
}

.event-details h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--heading);
}

.event-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

.event-location strong {
  color: var(--heading);
  font-weight: 500;
  display: block;
}

/* --- Officer Card --- */
.officer-card {
  text-align: center;
  padding: var(--space-lg);
}

.officer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
}

.officer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--heading);
}

.officer-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
}

/* --- Pricing / Membership Tier --- */
.tier-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.tier-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.12);
}

.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: var(--space-xs);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
}

.tier-price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  margin: var(--space-lg) 0;
  text-align: left;
}

.tier-features li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text);
}

.tier-features li::before {
  content: '\2713';
  color: var(--gold-dark);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* --- Alternating Section Backgrounds --- */
.section-alt {
  background: var(--surface-alt);
}

.section-blue {
  background: var(--blue);
  color: #fff;
}

.section-blue h2,
.section-blue h3,
.section-blue h4,
.section-blue p {
  color: #fff;
}

.section-blue .section-label {
  color: var(--gold-light);
}

.section-blue .lead {
  color: rgba(255,255,255,0.8);
}

.section-blue .btn-primary {
  background: var(--gold);
  color: #fff;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.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; }

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(253, 252, 249, 0.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--heading);
  transition: color 0.3s var(--ease-out);
}

.mobile-menu a:hover {
  color: var(--gold-dark);
}

.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown-toggle {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--heading);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.mobile-dropdown-toggle:hover {
  color: var(--gold-dark);
}

.mobile-arrow {
  font-size: 0.6em;
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.mobile-dropdown.open > .mobile-dropdown-toggle .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-subdropdown .mobile-arrow {
  transform: rotate(0deg);
}

.mobile-subdropdown.open .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
}

.mobile-dropdown.open .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-content a {
  font-size: 1.3rem !important;
  color: var(--text-muted);
}

.mobile-dropdown-content a:hover {
  color: var(--gold-dark);
}

/* Mobile sub-dropdown (e.g. Past Specialties → 2025/2026) */
.mobile-subdropdown {
  width: 100%;
}

.mobile-subdropdown-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.mobile-subdropdown-link {
  font-family: var(--font-display);
  font-size: 1.3rem !important;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out);
}

.mobile-subdropdown-link:hover {
  color: var(--gold-dark);
}

.mobile-subdropdown-toggle {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.mobile-subdropdown-toggle:hover {
  color: var(--gold-dark);
}

.mobile-subdropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.3rem 0 0.3rem 1.5em;
}

.mobile-subdropdown.open .mobile-subdropdown-content {
  display: flex;
}

.mobile-subdropdown-content a {
  font-size: 1.1rem !important;
  color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: var(--space-lg); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stat-bar { gap: var(--space-xl); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .stat-bar { flex-direction: column; gap: var(--space-lg); }
  .event-card { grid-template-columns: 1fr; }
  .event-location { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { flex-direction: column; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-logo-wrap { order: -1; margin-right: 0; width: 100%; }
  .hero-logo { width: 150px; margin: 0 auto; display: block; }
  .container { padding: 0 var(--space-md); }
}
