/* ============================================================
   DVCTA — Global styles & design tokens
   Heritage equestrian: white, brand blue, deep navy, saddle gold.
   Ported from the approved Astro design system (global.css + component styles).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..700;1,9..144,400..600&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand (from logo audit) */
  --blue:      #498DC9;
  --navy:      #498DC9;   /* one blue only — the logo blue */
  --midnight:  #498DC9;   /* one blue only — the logo blue */
  --sky:       #DCEAF6;
  --sage:      #8CA583;
  --sage-tint: #E4EADF;
  --gold:      #D19A3C;
  --gold-deep: #A9741F;

  /* Neutrals — warm heritage base */
  --ink:    #1C2430;
  --slate:  #5C6B7A;
  --paper:  #FFFFFF;
  --paper-2:#EFF4FB;
  --card:   #FFFFFF;
  --blue-btn:#498DC9;
  --line:   rgba(18, 57, 91, .14);
  --line-soft: rgba(18, 57, 91, .08);

  /* Type */
  --display: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(18,57,91,.06), 0 4px 14px rgba(18,57,91,.06);
  --shadow-md: 0 2px 6px rgba(18,57,91,.08), 0 18px 44px rgba(18,57,91,.12);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; background: #ffffff; overscroll-behavior-y: none; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%20width%3D'1100'%20height%3D'820'%20viewBox%3D'0%200%201100%20820'%3E%3Cdefs%3E%3Cg%20id%3D'hs'%3E%3Cpath%20d%3D'M%2027.5%2039.3%20A%2048%2048%200%201%200%20-27.5%2039.3%20L%20-17.2%2024.6%20A%2030%2030%200%201%201%2017.2%2024.6%20Z'%20fill%3D'%23498DC9'%20fill-opacity%3D'0.06'%2F%3E%3Cg%20fill%3D'%23498DC9'%20fill-opacity%3D'0.15'%3E%3Ccircle%20cx%3D'-38.7'%20cy%3D'-4.8'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'-33.1'%20cy%3D'-20.7'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'-19.5'%20cy%3D'-33.8'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'0'%20cy%3D'-39'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'19.5'%20cy%3D'-33.8'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'33.1'%20cy%3D'-20.7'%20r%3D'2.7'%2F%3E%3Ccircle%20cx%3D'38.7'%20cy%3D'-4.8'%20r%3D'2.7'%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fdefs%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(160%20165)%20rotate(15)%20scale(1.4)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(560%2090)%20rotate(-40)%20scale(1.25)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(970%20250)%20rotate(65)%20scale(1.5)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(300%20490)%20rotate(-20)%20scale(1.3)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(790%20570)%20rotate(130)%20scale(1.35)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(1070%20720)%20rotate(-55)%20scale(1.5)'%2F%3E%3Cuse%20href%3D'%23hs'%20transform%3D'translate(110%20740)%20rotate(210)%20scale(1.3)'%2F%3E%3C%2Fsvg%3E");
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  padding-top: 180px; /* fallback; JS sets the exact fixed-header height */
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--midnight);
  font-optical-sizing: auto;
}

a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout helpers ------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow:not(.center) { display: none; }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.section { padding-block: clamp(26px, 3.5vw, 52px); position: relative; border-top: 3px solid var(--gold); }
.eyebrow + h2 { margin-top: 0; }
.section-head { max-width: 62ch; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 50px); margin-top: 16px; }
.section-head p { color: var(--slate); font-size: 18px; margin-top: 16px; }

/* Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #241a08; box-shadow: 0 6px 18px rgba(209,154,60,.34); }
.btn-gold:hover { background: #dfa845; box-shadow: 0 10px 24px rgba(209,154,60,.42); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--midnight); }
.btn-blue { background: var(--blue-btn); color: #fff; box-shadow: 0 6px 18px rgba(49,120,184,.30); }
.btn-blue:hover { background: #2b6ea6; box-shadow: 0 10px 24px rgba(49,120,184,.4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--sky); }

.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Reveal on scroll --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.rule { height: 1px; background: var(--line-soft); border: 0; }

.grain::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .04; pointer-events: none; mix-blend-mode: overlay;
}

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--gold); color: #241a08;
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 6px 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ============================================================
   HEADER / NAV (from Header.astro)
   ============================================================ */
.announce { position: relative; background: var(--midnight); color: #eaf1f8; font-size: 14px; z-index: 60; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding-block: 9px; text-align: center; }
.announce strong { color: #fff; letter-spacing: .01em; }
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.announce-close { position: absolute; right: var(--gutter); background: none; border: 0; color: #9db6cd; font-size: 22px; line-height: 1; cursor: pointer; padding: 2px 6px; }
.announce-close:hover { color: #fff; }

.site-top { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #ffffff; padding-top: env(safe-area-inset-top, 0px); }
.header {
  position: relative; background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%3E%3Cg%20fill='none'%20stroke='%23498DC9'%20stroke-opacity='0.16'%3E%3Cpath%20d='M50%2048%20C46%2072%2074%2072%2070%2048'%20stroke-width='6'%20stroke-linecap='round'/%3E%3C/g%3E%3Cg%20fill='%23498DC9'%20fill-opacity='0.16'%3E%3Ccircle%20cx='49'%20cy='52'%20r='1.3'/%3E%3Ccircle%20cx='52'%20cy='65'%20r='1.3'/%3E%3Ccircle%20cx='60'%20cy='69'%20r='1.3'/%3E%3Ccircle%20cx='68'%20cy='65'%20r='1.3'/%3E%3Ccircle%20cx='71'%20cy='52'%20r='1.3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px; transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(18,57,91,.07); }
.header-inner { display: flex; flex-direction: column; align-items: stretch; gap: 8px; padding-block: 12px; max-width: none; }

.brand-row { position: relative; display: flex; align-items: center; justify-content: center; min-height: 72px; }
.brand-mark-link { position: absolute; left: 0; display: inline-flex; align-items: center; }
.brand-word-link { display: inline-flex; align-items: center; }
.brand-mark { height: 72px; width: auto; transition: height .25s ease; }
.brand-word { height: 54px; width: auto; transition: height .25s ease; }

.header-ad {
  position: absolute; right: clamp(16px, 3vw, 44px); top: 50%; transform: translateY(-44%); z-index: 65;
  line-height: 0; border-radius: 10px; overflow: hidden;
  box-shadow: 0 14px 32px rgba(18,57,91,.22); border: 3px solid #fff;
}
.header-ad img { height: 104px; width: auto; display: block; }
@media (max-width: 1200px) {
  .header-ad { position: static; transform: none; z-index: auto; display: block; width: fit-content; margin: 2px auto 16px; border-width: 2px; box-shadow: 0 5px 14px rgba(18,57,91,.15); }
  .header-ad img { height: 72px; width: auto; }
}
@media (max-width: 600px) { .header-ad img { height: 60px; } }

.nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.nav > ul { display: flex; gap: 26px; list-style: none; }
.nav > ul > li > a { font-size: 15px; font-weight: 600; color: var(--ink); position: relative; padding-block: 8px; display: inline-flex; align-items: center; }
.nav > ul > li > a::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0; background: var(--gold); transition: width .22s ease; }
.nav > ul > li > a:hover { color: var(--navy); }
.nav > ul > li > a:hover::after { width: 100%; }
.caret { font-size: 9px; margin-left: 5px; opacity: .65; }
.nav-join { padding: 11px 20px; }

.has-dd { position: relative; }
.has-dd::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 14px; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 215px; background: #fff; border: 1px solid var(--line-soft); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; list-style: none; display: grid; gap: 2px; z-index: 70;
  opacity: 0; visibility: hidden; transform-origin: top; transition: opacity .16s ease, top .16s ease;
}
.has-dd:hover .dropdown, .has-dd:focus-within .dropdown { opacity: 1; visibility: visible; top: calc(100% + 4px); }
.dropdown a { display: block; padding: 9px 13px; border-radius: 7px; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.dropdown a:hover { background: var(--sky); color: var(--navy); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); z-index: 60; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(18,57,91,.4); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 54; }
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
@media (min-width: 941px) { .nav-backdrop { display: none; } }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--midnight); margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 4px; padding: 84px var(--gutter) 40px; overflow-y: auto;
    background: var(--paper); box-shadow: -20px 0 60px rgba(18,57,91,.18);
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.1,1); z-index: 55;
  }
  body.nav-open .nav { transform: none; }
  .nav > ul { flex-direction: column; gap: 2px; width: 100%; }
  .nav > ul > li > a { font-size: 19px; font-family: var(--display); font-weight: 700; padding-block: 10px; }
  .caret { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 0 0 8px 12px; min-width: 0; display: block; }
  .dropdown a { padding: 6px 0; font-weight: 500; color: var(--slate); white-space: normal; }
  .dropdown a:hover { background: transparent; color: var(--navy); }
  .nav-join { margin-top: 18px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .brand-word { display: none; }
  .brand-mark { height: 52px; }
}

/* ============================================================
   HERO SLIDESHOW (from Hero.astro)
   ============================================================ */
.hero { position: relative; width: 100%; max-width: 1500px; margin-inline: auto; aspect-ratio: 1100 / 500; background: var(--paper); overflow: hidden; }
.slides, .slide { position: absolute; inset: 0; }
.slide { margin: 0; opacity: 0; transition: opacity 1s ease; will-change: opacity; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(10,35,56,.14), transparent 22% 78%, rgba(10,35,56,.28)); }
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: rgba(18,57,91,.42); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease; }
.nav-arrow:hover { background: var(--gold); color: #241a08; border-color: var(--gold); }
.nav-arrow svg { width: 24px; height: 24px; }
.nav-arrow.prev { left: clamp(14px, 3vw, 34px); }
.nav-arrow.next { right: clamp(14px, 3vw, 34px); }
.nav-arrow:hover { transform: translateY(-50%) scale(1.06); }
.hero-cta { position: absolute; z-index: 4; left: clamp(16px, 4vw, 44px); bottom: 26px; box-shadow: 0 8px 24px rgba(18,57,91,.32); }
.dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: 11px; }
@media (max-width: 640px) { .hero-cta { display: none; } }
.dot { width: 11px; height: 11px; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.55); border: 0; transition: background .2s ease, transform .2s ease; }
.dot:hover { background: #fff; }
.dot.active { background: var(--gold); transform: scale(1.2); }
@media (max-width: 640px) { .nav-arrow { width: 42px; height: 42px; } .nav-arrow svg { width: 20px; height: 20px; } }

/* ============================================================
   SPONSOR STRIP (from Sponsors.astro)
   ============================================================ */
.sponsor-strip { background: transparent; border-top: 3px solid var(--gold); padding-block: clamp(18px, 2.6vw, 30px); text-align: center; }
.strip-label { justify-content: center; margin-bottom: 22px; }
.sponsor-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 30px); }
.sponsor-logo { background: #fff; border: 1px solid var(--line-soft); border-radius: 10px; height: 92px; width: clamp(200px, 26vw, 260px); display: grid; place-items: center; padding: 16px 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.sponsor-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sponsor-logo img { max-width: 100%; max-height: 60px; width: auto; height: auto; object-fit: contain; }
.strip-cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-weight: 700; font-size: 14.5px; color: var(--gold-deep); }
.strip-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 560px) { .sponsor-logo { width: min(320px, 80vw); } }

/* ============================================================
   EVENTS + SERVICES (from EventsServices.astro)
   ============================================================ */
.es { background: var(--paper-2); }
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: stretch; }
.es-col { display: flex; flex-direction: column; }
.es-services { position: relative; }
.es-services::before { content: ""; position: absolute; left: calc(-1 * clamp(18px, 3vw, 36px)); top: 6px; bottom: 6px; width: 1px; background: var(--line-soft); }
.es-head { margin-bottom: 22px; }
.es-head h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 12px; }
.ev-list { list-style: none; }
.ev-list li { border-top: 1px solid var(--line); }
.ev-list li:last-child { border-bottom: 1px solid var(--line); }
.ev { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 18px; padding: 15px 8px; color: var(--ink); transition: background .18s ease, padding .18s ease; }
.ev:hover { background: var(--sky); padding-inline: 14px; }
.ev-date { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.ev-mo { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.ev-day { font-family: var(--display); font-size: 27px; color: var(--midnight); margin-top: 3px; }
.ev-main { display: flex; flex-direction: column; gap: 2px; }
.ev-title { font-family: var(--display); font-size: 18px; color: var(--navy); line-height: 1.15; }
.ev-loc { font-size: 13.5px; color: var(--slate); }
.ev-chev { color: var(--blue); font-size: 17px; transition: transform .2s ease; }
.ev:hover .ev-chev { transform: translateX(3px); }
.svc-list { list-style: none; }
.svc-list li { border-top: 1px solid var(--line); }
.svc-list li:last-child { border-bottom: 1px solid var(--line); }
.svc { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 16px 8px; color: var(--ink); transition: background .18s ease, padding .18s ease; }
.svc:hover { background: var(--sky); padding-inline: 14px; }
.svc-main { display: flex; flex-direction: column; gap: 3px; }
.svc-title { font-family: var(--display); font-size: 19px; color: var(--navy); }
.svc-desc { font-size: 14px; color: var(--slate); }
.svc-chev { color: var(--blue); font-size: 17px; transition: transform .2s ease; }
.svc:hover .svc-chev { transform: translateX(3px); }
.ev-list, .svc-list { margin-bottom: 26px; }
.es-cta { margin-top: auto; align-self: flex-start; }
@media (max-width: 820px) { .es-grid { grid-template-columns: 1fr; gap: 48px; } .es-services::before { display: none; } }
@media (max-width: 520px) { .ev { grid-template-columns: 50px 1fr auto; gap: 12px; } }

/* ============================================================
   ACCREDITATIONS (from Accreditations.astro)
   ============================================================ */
.creds { padding-block: clamp(22px, 3vw, 38px); background: transparent; border-top: 3px solid var(--gold); text-align: center; }
.creds-label { justify-content: center; margin-bottom: 26px; }
.creds-row { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: clamp(16px, 3vw, 34px); }
.cred { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; padding: 24px 34px; min-width: 190px; box-shadow: var(--shadow-sm); }
.cred-logo { height: 80px; width: auto; max-width: 150px; object-fit: contain; }
.cred-role { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.creds-note { margin-top: 26px; font-size: 13px; letter-spacing: .02em; color: var(--slate); }
@media (max-width: 560px) { .cred { width: 100%; max-width: 320px; } }

/* ============================================================
   ABOUT: Happening Now + Join card (from About.astro)
   ============================================================ */
.about { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.news-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.news-head h2 { font-size: clamp(28px, 4vw, 44px); }
.news-list { list-style: none; }
.news-list li { border-top: 1px solid var(--line); }
.news-list li:last-child { border-bottom: 1px solid var(--line); }
.np { display: flex; flex-direction: column; gap: 4px; padding: 18px 6px; color: var(--ink); transition: background .18s ease, padding .18s ease; }
.np:hover { background: var(--sky); padding-inline: 12px; }
.np-meta { display: flex; align-items: center; gap: 11px; }
.np-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: rgba(209,154,60,.14); padding: 3px 9px; border-radius: 100px; }
.np-date { font-size: 12.5px; color: var(--slate); }
.np-title { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-top: 2px; }
.np-ex { font-size: 14.5px; color: var(--slate); line-height: 1.45; }
.np-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 14px; font-weight: 700; color: var(--gold-deep); }
.feature:hover .np-link .arrow { transform: translateX(3px); }
.feature { display: block; background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 22px; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-img { display: block; aspect-ratio: 11 / 5; overflow: hidden; background: var(--paper-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-body { display: block; padding: 15px 18px 17px; }
.feature-title { display: block; font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.18; margin-top: 7px; }
.feature-ex { display: block; color: var(--slate); font-size: 15px; margin-top: 7px; line-height: 1.5; }
.join-card { background: linear-gradient(165deg, var(--navy), var(--midnight)); color: #e9f1f8; border-radius: 16px; padding: clamp(28px, 3vw, 40px); box-shadow: var(--shadow-md); }
.join-card h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.join-copy { color: rgba(255,255,255,.9); margin-top: 12px; font-size: 16px; }
.benefits { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.benefits li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,.92); }
.benefits svg { width: 19px; height: 19px; color: #fff; flex-shrink: 0; margin-top: 2px; }
.join-btn { margin-top: 28px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .about-grid { gap: 30px; }
  .news-head h2 { font-size: 26px; }
  .join-card { padding: 26px 22px; }
  .join-card h3 { font-size: 24px; }
  .join-copy { font-size: 15px; }
  .benefits { gap: 11px; }
  .benefits li { font-size: 14.5px; }
  .np-title { font-size: 17px; }
  .np-ex { font-size: 14px; }
  .feature-title { font-size: 18px; }
  .feature-body { padding: 14px 16px 16px; }
}

/* ============================================================
   PROGRAMS (from Programs.astro)
   ============================================================ */
.programs { background: transparent; }
.events-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.events-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 14px; }
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prog-card { background-color: var(--card); background-size: cover; background-position: center; background-repeat: no-repeat; border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--line-soft); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; transition: transform .22s ease, box-shadow .22s ease; }
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.prog-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #46603f; margin-bottom: 14px; text-shadow: 0 1px 2px rgba(255,255,255,.9); }
.prog-card h3 { font-size: 26px; color: #1f5f96; text-shadow: 0 1px 2px rgba(255,255,255,.9); }
.prog-card p { color: #2a3540; font-weight: 500; font-size: 15.5px; margin-top: 12px; flex-grow: 1; text-shadow: 0 1px 2px rgba(255,255,255,.85); }
.prog-link { margin-top: 20px; font-weight: 800; font-size: 14.5px; color: var(--gold-deep); display: inline-flex; gap: 7px; align-items: center; text-shadow: 0 1px 2px rgba(255,255,255,.9); }
@media (max-width: 940px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .prog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   RESULTS (from Results.astro)
   ============================================================ */
.results { background: var(--paper-2); }
.res-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.res-head h2 { font-size: clamp(28px, 4vw, 44px); }
.res-list { list-style: none; }
.res-list li { border-top: 1px solid var(--line); }
.res-list li:last-child { border-bottom: 1px solid var(--line); }
.res { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 22px; padding: 15px 8px; color: var(--ink); transition: background .18s ease, padding .18s ease; }
.res:hover { background: #fff; padding-inline: 14px; }
.res-date { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--gold-deep); text-transform: uppercase; }
.res-main { display: flex; flex-direction: column; gap: 2px; }
.res-show { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.15; }
.res-venue { font-size: 13.5px; color: var(--slate); }
.res-link { font-size: 14px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.res:hover .res-link .arrow { transform: translateX(3px); }
@media (max-width: 620px) { .res { grid-template-columns: 1fr auto; } .res-date { grid-column: 1 / -1; } .res-link { display: none; } }

/* ============================================================
   YEAR-END AWARDS BAND (from Awards.astro)
   ============================================================ */
.awards-band { background: transparent; border-top: 3px solid var(--gold); padding-block: clamp(32px, 4.5vw, 56px); }
.awards-inner { display: flex; align-items: center; gap: 28px; background: linear-gradient(120deg, rgba(209,154,60,.14), rgba(209,154,60,.05)); border: 1px solid rgba(209,154,60,.32); border-radius: 14px; padding: 30px 34px; }
.awards-mark { width: 58px; height: 58px; flex-shrink: 0; border-radius: 12px; background: var(--gold); color: #241a08; display: grid; place-items: center; }
.awards-mark svg { width: 30px; height: 30px; }
.awards-text { flex-grow: 1; }
.awards-text h3 { font-size: 25px; color: var(--midnight); }
.awards-text p { color: var(--slate); font-size: 15.5px; margin-top: 6px; max-width: 68ch; }
.awards-text strong { color: var(--gold-deep); }
.awards-btn { flex-shrink: 0; }
@media (max-width: 760px) { .awards-inner { flex-direction: column; align-items: flex-start; gap: 18px; } }

/* ============================================================
   PAGE HERO (interior pages, from PageHero.astro)
   ============================================================ */
.page-hero { background: #498DC9; color: #fff; padding-block: clamp(30px, 4.5vw, 60px); }
.crumb { font-size: 13px; color: rgba(255,255,255,.82); margin-bottom: 14px; }
.crumb a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.crumb span { margin: 0 4px; }
.crumb .here { opacity: .9; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); }
.page-hero p { color: rgba(255,255,255,.92); margin-top: 12px; font-size: clamp(16px, 2vw, 19px); max-width: 60ch; }

/* ============================================================
   FOOTER (from Footer.astro)
   ============================================================ */
.footer { background: #498DC9; color: rgba(255,255,255,.85); position: relative; border-top: 3px solid var(--gold); padding-top: clamp(56px, 8vw, 88px); }
.footer-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: clamp(40px, 6vw, 80px); padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.wordmark { display: flex; align-items: center; gap: 14px; }
.foot-mark { height: 40px; width: auto; flex-shrink: 0; background: #fff; padding: 8px; border-radius: 10px; }
.wm-text { font-family: var(--display); font-size: 17px; line-height: 1.25; color: #fff; }
.footer-tag { margin-top: 22px; font-size: 15px; max-width: 38ch; color: rgba(255,255,255,.85); }
.footer-mail { display: inline-block; margin-top: 18px; color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.5); }
.footer-mail:hover { border-color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 40px; height: 40px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #cdddec; transition: background .2s ease, color .2s ease; }
.socials a:hover { background: var(--gold); color: #241a08; }
.socials svg { width: 19px; height: 19px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.82); font-size: 14.5px; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 26px; font-size: 13px; color: rgba(255,255,255,.75); flex-wrap: wrap; }
.footer-affil { letter-spacing: .04em; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 34px; } .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; } }
@media (max-width: 480px) {
  .footer { padding-top: 42px; }
  .footer-top { padding-bottom: 32px; gap: 28px; }
  .footer-cols { gap: 22px 16px; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col ul { gap: 8px; }
  .footer-col a { font-size: 14px; }
  .footer-tag { font-size: 14px; margin-top: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Generic WP content (interior pages / posts) ------------------ */
.entry-content { max-width: 72ch; margin-inline: auto; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 1.4em; }
.entry-content h3 { font-size: clamp(21px, 2.6vw, 27px); margin-top: 1.3em; }
.entry-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content img { border-radius: var(--radius-lg); }

/* ============================================================
   INTERIOR PAGE: ABOUT (from about.astro)
   ============================================================ */
.aboutpage-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.aboutpage-grid h2 { font-size: clamp(28px, 4vw, 46px); max-width: 15ch; }
.lead { color: var(--slate); font-size: 18px; margin-top: 18px; }
.stat-card { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.stat { background: var(--card); padding: 26px 22px; display: flex; flex-direction: column; }
.stat-n { font-weight: 700; font-size: clamp(28px, 4vw, 40px); color: var(--blue); line-height: 1; }
.stat-l { font-size: 13px; color: var(--slate); margin-top: 8px; letter-spacing: .02em; }
@media (max-width: 820px) { .aboutpage-grid { grid-template-columns: 1fr; } }
.band { background: var(--paper-2); }
.center-h { text-align: center; font-size: clamp(26px, 4vw, 40px); margin-bottom: 28px; }
.do-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.do { background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.do h3 { font-size: 20px; color: var(--navy); }
.do p { color: var(--slate); font-size: 15px; margin-top: 8px; }
@media (max-width: 820px) { .do-grid { grid-template-columns: 1fr; } }
.timeline { list-style: none; margin-top: 10px; }
.timeline li { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.tl-year { font-weight: 700; font-size: 18px; color: var(--gold-deep); }
.timeline p { color: var(--slate); font-size: 16px; }
@media (max-width: 560px) { .timeline li { grid-template-columns: 1fr; gap: 4px; } }

/* ============================================================
   INTERIOR PAGE: MEMBERSHIP (from membership.astro)
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.intro-grid h2 { font-size: clamp(28px, 4vw, 46px); max-width: 16ch; }
.intro-grid .lead { margin: 18px 0 28px; }
.types { background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px; padding: 28px 30px; box-shadow: var(--shadow-sm); }
.types h3 { font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.type { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid var(--line); }
.type-name { font-weight: 700; font-size: 18px; color: var(--navy); }
.type-desc { font-size: 14.5px; color: var(--slate); margin-top: 2px; }
.type-note { font-size: 13px; color: var(--slate); margin-top: 16px; }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; } }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; padding: 26px 24px; box-shadow: var(--shadow-sm); }
.benefit h3 { font-size: 19px; color: var(--navy); }
.benefit p { color: var(--slate); font-size: 15px; margin-top: 8px; }
@media (max-width: 820px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .benefit-grid { grid-template-columns: 1fr; } }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-n { font-weight: 700; font-size: 20px; color: var(--gold); }
.step h3 { font-size: 19px; color: var(--navy); }
.step p { color: var(--slate); font-size: 15px; margin-top: 6px; }
.join-cta { margin-top: 30px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   INTERIOR PAGE: EVENTS & CALENDAR (from events.astro / EventCalendar / VenueMap)
   ============================================================ */
.cal-map { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: clamp(16px, 2.5vw, 28px); align-items: start; }
.map-col h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 16px; }
@media (max-width: 820px) { .cal-map { grid-template-columns: 1fr; } }
.cal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.cal-head h3 { font-size: 15px; color: var(--navy); }
.cal-sub { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.cal-col .cal-key { display: none; }
.cal-col .cal-month { padding: 12px 12px 10px; }
.cal-col .cal-month-label { font-size: 13px; }
.cal-col .cal-weekday { font-size: 9px; }
.cal-col .cal-day { font-size: 11px; border-radius: 5px; }

.event-calendar { display: flex; flex-direction: column; gap: 14px; }
.cal-key { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--slate); }
.cal-key-dot { width: 12px; height: 12px; border-radius: 3px; background: var(--blue); flex-shrink: 0; }
.cal-grid { display: grid; gap: 14px; }
.cal-month { background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 14px 12px; box-shadow: var(--shadow-sm); }
.cal-month-label { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line-soft); }
.cal-weekday-row, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekday { font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--slate); text-align: center; padding: 2px 0; }
.cal-day { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ink); background: var(--paper-2); border-radius: 7px; text-decoration: none; transition: background .16s ease, transform .14s ease; }
.cal-day.out { color: transparent; background: transparent; }
.cal-day.today { outline: 2px solid var(--gold); outline-offset: -2px; font-weight: 700; }
.cal-day.event { background: var(--blue); color: #fff; font-weight: 700; cursor: pointer; }
.cal-day.event:hover { transform: scale(1.08); box-shadow: var(--shadow-sm); }
.cal-count { position: absolute; top: 2px; right: 4px; font-size: 9px; color: var(--gold); font-weight: 700; }
@media (min-width: 560px) { .cal-grid { grid-template-columns: 1fr; } }

.venue-map-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; z-index: 0; isolation: isolate; }
.venue-map { height: clamp(280px, 40vh, 440px); width: 100%; background: var(--paper-2); }
.venue-legend { list-style: none; padding: 16px 18px; display: grid; gap: 8px; }
.venue-legend li { font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 9px; }
.venue-legend strong { color: var(--navy); font-weight: 700; }
.vl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); flex-shrink: 0; }
.leaflet-container { font-family: var(--sans); }

.evlist-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 22px; }
.ev-month { margin-bottom: 30px; }
.ev-month-label { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.evlist .ev-list { list-style: none; }
.evlist .ev-list li { border-top: 1px solid var(--line); scroll-margin-top: 200px; }
.evlist .ev-list li:last-child { border-bottom: 1px solid var(--line); }
.evlist .ev-list li:target { background: var(--sky); }
.evlist .ev { display: grid; grid-template-columns: 58px 1fr auto auto; align-items: center; gap: 20px; padding: 15px 8px; color: var(--ink); transition: background .18s ease, padding .18s ease; }
.evlist .ev:hover { background: var(--paper-2); padding-inline: 14px; }
.evlist .ev-date { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.evlist .ev-mo { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.evlist .ev-day { font-weight: 700; font-size: 26px; color: var(--navy); margin-top: 3px; }
.evlist .ev-main { display: flex; flex-direction: column; gap: 2px; }
.evlist .ev-name { font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.15; }
.evlist .ev-loc { font-size: 13.5px; color: var(--slate); }
.tag { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; background: var(--sky); color: var(--navy); white-space: nowrap; }
.tag-gold { background: rgba(209,154,60,.16); color: var(--gold-deep); }
.evlist .ev-chev { color: var(--blue); font-size: 18px; transition: transform .2s ease; }
.evlist .ev:hover .ev-chev { transform: translateX(3px); }
@media (max-width: 620px) { .evlist .ev { grid-template-columns: 50px 1fr; gap: 14px; row-gap: 4px; } .evlist .tag, .evlist .ev-chev { display: none; } }

/* ============================================================
   IMPORTED CONTENT GUARDS + article body (news posts & pages)
   Migrated content was built with Spectra/UAGB blocks; keep any
   stray/oversized icons and media from breaking the layout.
   ============================================================ */
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); }
.entry-content svg { max-width: 100%; height: auto; }
/* Sizeless inline SVGs (e.g. Spectra button arrows) must never fill the screen */
.entry-content svg:not([width]):not([height]) { max-height: 1.4em; width: auto; vertical-align: middle; }
.entry-content .uagb-button__icon svg,
.entry-content .wp-block-button__link svg { max-height: 1em; width: auto; }
.entry-content .wp-block-button__link,
.entry-content .uagb-buttons-repeater { display: inline-flex; align-items: center; gap: 8px; }
.entry-content iframe, .entry-content embed, .entry-content object { max-width: 100%; }
.entry-content .wp-block-image, .entry-content figure { margin-inline: 0; }
.entry-content .wp-block-columns { gap: clamp(16px, 3vw, 32px); }
@media (max-width: 640px) {
  .entry-content .wp-block-columns { flex-wrap: wrap; }
  .entry-content .wp-block-column { flex-basis: 100% !important; }
}
/* Post featured image on single news article */
.post-hero-img { max-width: 72ch; margin: 0 auto clamp(20px,3vw,34px); }
.post-hero-img img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display:block; }

/* ============================================================
   SHOW GALLERIES (folders per show)
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-card-img { aspect-ratio: 4 / 3; background: var(--paper-2); display: block; overflow: hidden; }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-card-ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--slate); }
.gallery-card-ph svg { width: 46px; height: 46px; }
.gallery-card-body { padding: 16px 18px; }
.gallery-card-title { display: block; font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--navy); }
.gallery-card-meta { display: block; font-size: 13.5px; color: var(--slate); margin-top: 4px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-single .wp-block-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; }
.gallery-single .wp-block-gallery img { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
@media (max-width: 640px) { .gallery-single .wp-block-gallery { grid-template-columns: repeat(2, 1fr); } }
