:root {
  --navy: #0B2545;
  --navy-2: #13315C;
  --gold: #C9A227;
  --gold-soft: #F3E7BF;
  --green: #2E7D4F;
  --ink: #1B2430;
  --muted: #5B6675;
  --line: #DDE3EA;
  --tint: #F5F3EC;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(11, 37, 69, .06), 0 8px 24px rgba(11, 37, 69, .08);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3, .h3 { font-size: 1.3rem; }
.h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }
p { margin: 0 0 1em; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--navy); padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip-link:focus { left: 8px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.2rem; }
.brand-text small { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.site-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.site-nav a { display: block; padding: 8px 12px; border-radius: 8px; text-decoration: none; color: var(--ink); font-size: .95rem; font-weight: 500; }
.site-nav a:hover { background: var(--tint); }
.site-nav a[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 10px; cursor: pointer; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: transform .2s, opacity .2s; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--line); display: none; box-shadow: var(--shadow); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 8px 16px 16px; }
  .site-nav a { padding: 12px; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold); background: var(--tint); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ---------- Buttons & links ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .15s, background .15s, color .15s; font-family: var(--sans); }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #D8B23A; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.text-link { font-weight: 600; color: var(--navy-2); text-decoration: none; border-bottom: 2px solid var(--gold); }
.text-link:hover { color: var(--navy); }

/* ---------- Typography helpers ---------- */
.eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6em; }
.eyebrow a { color: inherit; }
.eyebrow-light { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.6rem; margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.meta { font-size: .85rem; color: var(--muted); margin-bottom: .3em; }
.tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .6em; }
.tag-gold { color: var(--gold); }
.empty { padding: 40px; text-align: center; background: var(--tint); border-radius: var(--radius); color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(86vh, 720px); display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--navy) var(--hero-image, none) center / cover no-repeat; }
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,37,69,.88) 0%, rgba(11,37,69,.55) 50%, rgba(11,37,69,.1) 100%); }
.hero-content { position: relative; z-index: 1; padding: 80px 0; max-width: 1180px; }
.hero h1 { color: var(--white); max-width: 14ch; }
.hero-text { font-size: 1.15rem; max-width: 560px; color: rgba(255,255,255,.9); margin-bottom: 1.5em; }

.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; border-radius: 50%; border: 2px solid rgba(201,162,39,.35); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0 72px; }
.section-tint { background: var(--tint); }
.section-navy { background: var(--navy); color: var(--white); padding: 56px 0; }
.section-head { margin-bottom: 36px; }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.section-head-row h2 { margin: 0; }
.spaced { margin-top: 64px; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split-top { align-items: start; }
.split .prose { margin-bottom: 1.5em; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { border-left: 3px solid var(--gold); padding-left: 18px; }
.stat-value { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; margin: 0; color: var(--white); line-height: 1.1; }
.stat-label { margin: 4px 0 0; font-weight: 600; }
.stat-note { margin: 2px 0 0; font-size: .88rem; color: rgba(255,255,255,.7); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; list-style: none; padding: 0; margin: 0; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card p:last-child { margin-bottom: 0; }
.card h3 { margin-bottom: .4em; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--navy-2); text-decoration: underline; text-decoration-color: var(--gold); }
.card-accent { border-top: 4px solid var(--gold); }
.card-number { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 700; margin-bottom: .4em; }
.card-sub { color: var(--muted); font-weight: 500; }
.card-media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card-image { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--tint); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card-media:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 20px 24px 24px; }
.photo-count { position: absolute; right: 12px; bottom: 12px; background: rgba(11,37,69,.85); color: var(--white); font-size: .78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.priorities { counter-reset: none; }

.playo-band { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 32px 36px; flex-wrap: wrap; }
.playo-band h3 { color: var(--white); font-size: 1.6rem; }
.playo-band p { color: rgba(255,255,255,.85); max-width: 680px; margin: 0; }

/* ---------- FAQ ---------- */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: 0 22px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--gold); }
.faq details[open] summary::after { content: "–"; }
.faq details .prose { padding-bottom: 18px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(120deg, var(--navy) 0%, #1B4D33 100%); color: var(--white); padding: 64px 0; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.85); margin: 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ---------- About / side card ---------- */
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 96px; }
.side-card > img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.side-card-body, .side-card-pad { padding: 24px; }
.side-card-pad { position: static; }
.facts li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: 0; margin-bottom: 16px; }
.facts strong { color: var(--navy); font-family: var(--serif); font-size: 1.2rem; margin-right: 6px; }
.plain-list { list-style: none; padding: 0; margin: 0; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 500; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }

/* ---------- Committee ---------- */
.committee-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.person { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow); }
.person-photo { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--gold-soft); }
.person-initials { display: grid; place-items: center; background: var(--navy); color: var(--gold); font-family: var(--serif); font-size: 2.4rem; font-weight: 700; }
.person-initials img { width: 70%; }
.person-post { font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .3em; }
.person-name { font-size: 1.2rem; margin-bottom: .2em; }
.person-designation { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Gallery ---------- */
.photo-grid { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.photo-grid a { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--tint); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.photo-grid a:hover img { transform: scale(1.04); }
.photo-caption { font-size: .88rem; color: var(--muted); margin: 8px 2px 0; }
.narrow-left { max-width: 780px; margin-bottom: 32px; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5, 15, 30, .94); display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-height: 82vh; max-width: 100%; margin: 0 auto; border-radius: 6px; }
.lightbox figcaption { color: #fff; margin-top: 12px; }
.lightbox button { background: none; border: 0; color: #fff; font-size: 3rem; cursor: pointer; line-height: 1; padding: 8px; }
.lightbox-close { position: absolute; top: 12px; right: 16px; }

/* ---------- Post ---------- */
.post-cover { border-radius: var(--radius); margin-bottom: 32px; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item p, .contact-item address { margin: 0 0 .4em; font-style: normal; }
.contact-form { background: var(--tint); border-radius: var(--radius); padding: 32px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.contact-form input, .contact-form select, .contact-form textarea { font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid #C8D1DB; border-radius: 10px; background: var(--white); color: var(--ink); width: 100%; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.contact-form .btn { justify-self: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-frame { margin-top: 48px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 860px) { .contact-grid, .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #071A31; color: rgba(255,255,255,.78); padding: 64px 0 0; font-size: .95rem; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.brand-footer { color: var(--white); }
.brand-footer .brand-text strong { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-title { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1em; }
.footer-tagline { margin-top: 16px; max-width: 300px; }
.site-footer address { font-style: normal; margin-bottom: 10px; }
.site-footer .text-link { color: var(--white); }
.site-footer .plain-list li { margin-bottom: 6px; }
.social { list-style: none; padding: 0; margin: 14px 0 0; display: flex; gap: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 20px 0; font-size: .85rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .section { padding: 64px 0; } body { font-size: 16px; } }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }

/* ---------- Course ---------- */
.muted-light { color: rgba(255,255,255,.6); font-size: .9em; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.holes { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--white); }
.holes th, .holes td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.holes thead th { background: var(--navy); color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.holes tbody tr:nth-child(even) { background: #FAF9F5; }
.holes tbody td:nth-child(2) { font-weight: 600; color: var(--navy); }
.holes tfoot th, .holes tfoot td { background: var(--gold-soft); font-weight: 700; color: var(--navy); border-bottom: 0; }
.hole-no { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 700; font-size: .9rem; }
.stack { display: grid; gap: 20px; }
.framed { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); text-decoration: none; background: var(--white); }
.framed span { display: block; padding: 10px 16px; font-weight: 600; color: var(--navy); font-size: .9rem; }
