/* ==========================================================================
   SREEPURAM BAR ASSOCIATION — Stylesheet
   Design tokens: navy / gold / burgundy on warm paper
   Display: Fraunces  |  Body: Source Sans 3  |  Utility: IBM Plex Mono
   ========================================================================== */

:root{
  --navy-deep:   #0b1f3a;
  --navy-mid:    #16325a;
  --navy-soft:   #24447a;
  --burgundy:    #7c2530;
  --burgundy-dark:#5c1a22;
  --gold:        #c9a227;
  --gold-light:  #e6c766;
  --paper:       #f7f4ee;
  --paper-dim:   #efe9dc;
  --ink:         #1b1b1e;
  --slate:       #5b6472;
  --line:        rgba(11,31,58,0.12);
  --radius:      6px;
  --shadow-sm:   0 2px 10px rgba(11,31,58,0.08);
  --shadow-md:   0 10px 30px rgba(11,31,58,0.14);
  --shadow-lg:   0 20px 50px rgba(11,31,58,0.22);
  --ease:        cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:"Fraunces", Georgia, serif;
  color:var(--navy-deep);
  line-height:1.15;
  margin:0 0 .5em;
  font-weight:600;
  letter-spacing:-0.01em;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:"IBM Plex Mono", monospace;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:12px;
  color:var(--gold);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--gold);
  display:inline-block;
}

/* ---------- Pillar motif (signature element) ----------
   A row of thin vertical rules of varying height, echoing the
   colonnade of the District Court building. Used as a divider,
   hero backdrop, and loading rhythm. */
.pillars{
  display:flex;
  align-items:flex-end;
  gap:10px;
  height:46px;
  overflow:hidden;
}
.pillars span{
  width:2px;
  background:linear-gradient(to top, var(--gold), transparent);
  opacity:.55;
  display:block;
  transform-origin:bottom;
}
.pillars.dark span{ background:linear-gradient(to top, var(--navy-mid), transparent); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:2px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:all .25s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background:var(--gold);
  color:var(--navy-deep);
}
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline{
  border-color:rgba(247,244,238,0.4);
  color:var(--paper);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-navy{
  background:var(--navy-deep);
  color:var(--paper);
}
.btn-navy:hover{ background:var(--navy-mid); transform:translateY(-2px); box-shadow:var(--shadow-md); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.topbar{
  background:var(--navy-deep);
  color:rgba(247,244,238,0.75);
  font-size:13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
  flex-wrap:wrap;
  gap:8px;
}
.topbar a{ color:inherit; }
.topbar a:hover{ color:var(--gold-light); }
.topbar-left, .topbar-right{ display:flex; align-items:center; gap:18px; }
.topbar-right{ font-family:"IBM Plex Mono", monospace; letter-spacing:.03em; }

header.site-header{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:100;
  box-shadow:var(--shadow-sm);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:20px;
}
.brand{
  display:flex; align-items:center; gap:14px;
}
.brand-mark{ width:48px; height:48px; flex-shrink:0; }
.brand-text .name{
  font-family:"Fraunces", serif;
  font-weight:700;
  font-size:19px;
  color:var(--navy-deep);
  line-height:1.1;
}
.brand-text .sub{
  font-family:"IBM Plex Mono", monospace;
  font-size:11px;
  letter-spacing:.08em;
  color:var(--slate);
  text-transform:uppercase;
}

nav.main-nav ul{ display:flex; gap:2px; align-items:center; }
nav.main-nav a{
  padding:10px 16px;
  font-weight:600;
  font-size:14.5px;
  color:var(--navy-mid);
  border-radius:2px;
  transition:all .2s var(--ease);
  position:relative;
}
nav.main-nav a:hover{ color:var(--burgundy); }
nav.main-nav a.active{ color:var(--burgundy); }
nav.main-nav a.active::after{
  content:"";
  position:absolute; left:16px; right:16px; bottom:4px;
  height:2px; background:var(--gold);
}
.nav-cta{ margin-left:8px; }

.menu-toggle{
  display:none;
  background:none; border:none;
  width:40px; height:40px;
  position:relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
  content:""; position:absolute; left:8px; right:8px; height:2px; background:var(--navy-deep);
  transition:all .25s var(--ease);
}
.menu-toggle span{ top:19px; }
.menu-toggle span::before{ top:-7px; }
.menu-toggle span::after{ top:7px; }
.menu-toggle.open span{ background:transparent; }
.menu-toggle.open span::before{ transform:rotate(45deg) translate(-5px,6px); }
.menu-toggle.open span::after{ transform:rotate(-45deg) translate(-5px,-6px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  background:var(--navy-deep);
  color:var(--paper);
  overflow:hidden;
  min-height:88vh;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(0.35) brightness(0.55);
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,31,58,.55) 0%, rgba(11,31,58,.72) 55%, var(--navy-deep) 100%),
    linear-gradient(100deg, rgba(11,31,58,.95) 10%, rgba(11,31,58,.35) 55%, rgba(124,37,48,.25) 100%);
}
.hero .pillars{
  position:absolute; left:0; right:0; bottom:0;
  height:120px; padding:0 24px;
  justify-content:space-between;
  opacity:.5;
}
.hero-content{
  position:relative; z-index:2;
  padding:120px 0 90px;
}
.hero-content .eyebrow{ color:var(--gold-light); margin-bottom:22px; }
.hero-content h1{
  color:#fff;
  font-size:clamp(38px, 6vw, 68px);
  max-width:820px;
  margin-bottom:20px;
}
.hero-content h1 em{
  font-style:italic;
  color:var(--gold-light);
}
.hero-content p.lede{
  max-width:560px;
  font-size:18px;
  color:rgba(247,244,238,0.82);
  margin-bottom:38px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-motto{
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid rgba(247,244,238,0.18);
  display:flex; gap:28px; flex-wrap:wrap;
}
.hero-motto div{ min-width:140px; }
.hero-motto .stat{ font-family:"Fraunces", serif; font-size:30px; color:var(--gold-light); font-weight:600; }
.hero-motto .label{ font-family:"IBM Plex Mono", monospace; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:rgba(247,244,238,.65); }

/* page header for interior pages */
.page-hero{
  background:var(--navy-deep);
  color:var(--paper);
  padding:76px 0 54px;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  border:1px solid rgba(201,162,39,.25); border-radius:50%;
}
.page-hero .eyebrow{ color:var(--gold-light); margin-bottom:14px; }
.page-hero h1{ color:#fff; font-size:clamp(30px,4.5vw,46px); max-width:700px; }
.page-hero p{ color:rgba(247,244,238,.75); max-width:600px; margin-top:12px; font-size:16.5px; }
.breadcrumb{ font-family:"IBM Plex Mono", monospace; font-size:12.5px; color:rgba(247,244,238,.55); margin-bottom:18px; letter-spacing:.03em; }
.breadcrumb a:hover{ color:var(--gold-light); }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
section{ padding:96px 0; }
section.tight{ padding:64px 0; }
.section-head{
  max-width:680px;
  margin-bottom:56px;
}
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; }
.section-head p{ color:var(--slate); font-size:17px; margin-top:14px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.bg-navy{ background:var(--navy-deep); color:var(--paper); }
.bg-navy h2, .bg-navy h3{ color:#fff; }
.bg-navy .section-head p{ color:rgba(247,244,238,.7); }
.bg-dim{ background:var(--paper-dim); }

/* ---------- About / brief description ---------- */
.about-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.about-media{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.about-media img{ width:100%; height:460px; object-fit:cover; filter:saturate(.85); }
.about-media .frame{
  position:absolute; inset:14px;
  border:1px solid rgba(247,244,238,.55);
  pointer-events:none;
}
.about-copy p{ color:var(--ink); margin-bottom:18px; font-size:16.5px; }
.about-facts{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
  margin-top:32px;
}
.fact{
  border-left:2px solid var(--gold);
  padding:6px 0 6px 18px;
}
.fact .num{ font-family:"Fraunces", serif; font-size:26px; color:var(--navy-deep); font-weight:700; }
.fact .lbl{ font-size:13px; color:var(--slate); }

/* ---------- Quote / motto banner ---------- */
.quote-banner{
  background:var(--burgundy);
  color:var(--paper);
  position:relative;
  overflow:hidden;
}
.quote-banner::before{
  content:"“";
  position:absolute; left:24px; top:-40px;
  font-family:"Fraunces", serif;
  font-size:280px;
  color:rgba(247,244,238,.08);
  line-height:1;
}
.quote-banner blockquote{
  font-family:"Fraunces", serif;
  font-style:italic;
  font-size:clamp(24px,3.4vw,36px);
  max-width:820px;
  margin:0 0 20px;
  position:relative;
  z-index:1;
}
.quote-banner cite{ font-style:normal; font-family:"IBM Plex Mono", monospace; font-size:13px; letter-spacing:.06em; opacity:.8; }

/* ---------- Leadership / member cards ---------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }

.leader-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  border:1px solid var(--line);
}
.leader-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.leader-photo{ position:relative; aspect-ratio:4/4.6; overflow:hidden; background:var(--navy-mid); }
.leader-photo img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.leader-card:hover .leader-photo img{ transform:scale(1.05); }
.leader-photo::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(11,31,58,.85) 0%, rgba(11,31,58,0) 45%);
}
.leader-photo .role-tag{
  position:absolute; left:14px; bottom:14px; z-index:2;
  font-family:"IBM Plex Mono", monospace;
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold-light);
}
.leader-info{ padding:18px 20px 22px; }
.leader-info .lname{ font-family:"Fraunces", serif; font-size:19px; color:var(--navy-deep); font-weight:600; }
.leader-info .ldesig{ font-size:13.5px; color:var(--burgundy); font-weight:600; margin-top:2px; }
.leader-info .lmeta{ font-size:13px; color:var(--slate); margin-top:8px; }

/* Featured top leadership (President/Secretary) larger row */
.exec-featured{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:32px; }
.exec-featured .leader-photo{ aspect-ratio:4/4.8; }

/* Members directory (rows) */
.member-list{ border-top:1px solid var(--line); }
.member-row{
  display:grid; grid-template-columns:64px 1.6fr 1fr 1fr; gap:20px;
  align-items:center;
  padding:16px 8px;
  border-bottom:1px solid var(--line);
  transition:background .2s;
}
.member-row:hover{ background:#fff; }
.member-row .avatar{ width:52px; height:52px; border-radius:50%; overflow:hidden; box-shadow:var(--shadow-sm); }
.member-row .avatar img{ width:100%; height:100%; object-fit:cover; }
.member-row .mname{ font-weight:700; color:var(--navy-deep); font-family:"Fraunces",serif; font-size:16.5px; }
.member-row .menroll{ font-family:"IBM Plex Mono", monospace; font-size:12px; color:var(--slate); }
.member-row .mdesig{ font-size:13.5px; color:var(--burgundy); font-weight:600; }
.member-row .mspec{ font-size:13px; color:var(--slate); }
.member-head-row{
  display:grid; grid-template-columns:64px 1.6fr 1fr 1fr; gap:20px;
  padding:0 8px 12px;
  font-family:"IBM Plex Mono", monospace;
  font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--slate);
}

.filter-bar{
  display:flex; gap:12px; flex-wrap:wrap; margin-bottom:32px;
}
.filter-bar input, .filter-bar select{
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:2px;
  background:#fff;
  font-family:inherit;
  font-size:14.5px;
  color:var(--ink);
}
.filter-bar input{ flex:1; min-width:220px; }
.filter-bar input:focus, .filter-bar select:focus{ outline:2px solid var(--gold); outline-offset:1px; }

/* ---------- Judicial officers table style ---------- */
.officer-card{
  display:flex; gap:18px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow-sm);
}
.officer-card .avatar{ width:64px; height:64px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid var(--gold); }
.officer-card .avatar img{ width:100%; height:100%; object-fit:cover; }
.officer-card .oname{ font-family:"Fraunces", serif; font-weight:700; color:var(--navy-deep); font-size:16.5px; }
.officer-card .odesig{ font-size:13px; color:var(--burgundy); font-weight:600; margin-top:2px; }
.officer-card .ocourt{ font-size:12.5px; color:var(--slate); margin-top:4px; }

/* ---------- Gallery ---------- */
.gallery-filter{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.chip{
  padding:9px 18px; border-radius:20px; border:1px solid var(--line);
  font-size:13.5px; font-weight:600; color:var(--navy-mid); background:#fff;
  transition:all .2s var(--ease);
}
.chip:hover, .chip.active{ background:var(--navy-deep); color:#fff; border-color:var(--navy-deep); }
.gallery-grid{
  columns:4 220px; column-gap:18px;
}
.gallery-item{
  break-inside:avoid; margin-bottom:18px; border-radius:var(--radius); overflow:hidden;
  position:relative; box-shadow:var(--shadow-sm); cursor:pointer;
}
.gallery-item img{ width:100%; transition:transform .4s var(--ease); }
.gallery-item:hover img{ transform:scale(1.06); }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:14px;
  background:linear-gradient(0deg, rgba(11,31,58,.9), transparent);
  color:#fff; font-size:13px; opacity:0; transition:opacity .25s;
}
.gallery-item:hover .cap{ opacity:1; }

.lightbox{
  position:fixed; inset:0; background:rgba(11,31,58,.94);
  display:flex; align-items:center; justify-content:center;
  z-index:1000; opacity:0; pointer-events:none; transition:opacity .25s;
  padding:40px;
}
.lightbox.open{ opacity:1; pointer-events:all; }
.lightbox img{ max-width:100%; max-height:85vh; border-radius:4px; box-shadow:var(--shadow-lg); }
.lightbox-close{
  position:absolute; top:24px; right:32px; color:#fff; font-size:32px; background:none; border:none;
}

/* ---------- Events / Notifications ---------- */
.tab-bar{ display:flex; gap:8px; margin-bottom:40px; border-bottom:1px solid var(--line); }
.tab-btn{
  padding:14px 22px; font-weight:700; font-size:14.5px; color:var(--slate);
  border-bottom:2px solid transparent; margin-bottom:-1px;
}
.tab-btn.active{ color:var(--navy-deep); border-color:var(--gold); }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; animation:fadeIn .4s var(--ease); }
@keyframes fadeIn{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:none;} }

.event-card{
  display:grid; grid-template-columns:110px 1fr; gap:22px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:22px; margin-bottom:18px; box-shadow:var(--shadow-sm);
  transition:box-shadow .25s, transform .25s;
}
.event-card:hover{ box-shadow:var(--shadow-md); transform:translateX(4px); }
.event-date{
  background:var(--navy-deep); color:#fff; border-radius:4px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:14px 0; text-align:center;
}
.event-date .day{ font-family:"Fraunces", serif; font-size:28px; font-weight:700; line-height:1; }
.event-date .mon{ font-family:"IBM Plex Mono", monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; margin-top:4px; color:var(--gold-light); }
.event-title{ font-size:18px; font-weight:700; color:var(--navy-deep); font-family:"Fraunces", serif; }
.event-meta{ font-size:13px; color:var(--slate); margin:6px 0 10px; display:flex; gap:16px; flex-wrap:wrap; }
.event-desc{ font-size:14.5px; color:var(--ink); }
.tag{ display:inline-block; font-family:"IBM Plex Mono", monospace; font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; background:var(--paper-dim); color:var(--burgundy); padding:4px 10px; border-radius:20px; margin-bottom:8px; }

.notice-row{
  display:flex; align-items:center; gap:18px;
  padding:18px 0; border-bottom:1px solid var(--line);
}
.notice-row .nicon{
  width:42px; height:42px; border-radius:50%; background:var(--paper-dim);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--burgundy); font-weight:700;
}
.notice-row .ntitle{ font-weight:700; color:var(--navy-deep); }
.notice-row .ndate{ font-size:12.5px; color:var(--slate); font-family:"IBM Plex Mono", monospace; }
.notice-new{
  background:var(--gold); color:var(--navy-deep); font-size:10px; font-weight:800;
  padding:2px 8px; border-radius:10px; margin-left:10px; letter-spacing:.05em;
}

.marquee-wrap{
  background:var(--navy-deep); color:#fff; overflow:hidden; padding:12px 0;
  display:flex; align-items:center;
}
.marquee-label{
  background:var(--burgundy); padding:8px 20px; font-family:"IBM Plex Mono", monospace;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase; flex-shrink:0; white-space:nowrap;
}
.marquee-track{ overflow:hidden; flex:1; }
.marquee-content{ display:inline-flex; gap:60px; white-space:nowrap; animation:scroll-left 30s linear infinite; padding-left:100%; }
@keyframes scroll-left{ from{ transform:translateX(0);} to{ transform:translateX(-100%);} }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-info-card{
  background:var(--navy-deep); color:#fff; border-radius:var(--radius);
  padding:40px; position:relative; overflow:hidden;
}
.contact-info-card .pillars{ position:absolute; right:20px; top:20px; opacity:.25; }
.contact-line{ display:flex; gap:16px; margin-bottom:26px; align-items:flex-start; }
.contact-line .icon{ color:var(--gold-light); font-size:18px; margin-top:2px; }
.contact-line .lbl{ font-family:"IBM Plex Mono", monospace; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(247,244,238,.55); }
.contact-line .val{ font-size:15.5px; margin-top:2px; }
.map-embed{ border-radius:var(--radius); overflow:hidden; margin-top:28px; border:1px solid rgba(247,244,238,.2); }
.map-embed iframe{ width:100%; height:220px; border:0; filter:grayscale(.3); }

.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-size:13px; font-weight:700; color:var(--navy-deep); margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:14px 16px; border:1px solid var(--line); border-radius:2px;
  font-family:inherit; font-size:15px; background:#fff; color:var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:2px solid var(--gold); outline-offset:1px; border-color:var(--gold);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-note{ font-size:13px; color:var(--slate); margin-top:14px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer{ background:var(--navy-deep); color:rgba(247,244,238,.75); padding-top:72px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(247,244,238,.12); }
.footer-brand .brand-mark{ width:44px; height:44px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; max-width:280px; color:rgba(247,244,238,.6); }
.footer-col h4{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.08em; font-family:"IBM Plex Mono", monospace; margin-bottom:20px; font-weight:600; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14.5px; color:rgba(247,244,238,.72); transition:color .2s; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; color:rgba(247,244,238,.5); flex-wrap:wrap; gap:12px; }
.social-row{ display:flex; gap:14px; }
.social-row a{ width:36px; height:36px; border:1px solid rgba(247,244,238,.25); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; transition:all .2s; }
.social-row a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-deep); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Back to top ---------- */
.to-top{
  position:fixed; right:24px; bottom:24px; width:46px; height:46px; border-radius:50%;
  background:var(--gold); color:var(--navy-deep); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); opacity:0; pointer-events:none; transition:all .3s var(--ease); z-index:90; border:none; font-size:18px;
}
.to-top.show{ opacity:1; pointer-events:all; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1024px){
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .exec-featured{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .gallery-grid{ columns:3 180px; }
}
@media (max-width:860px){
  .menu-toggle{ display:block; }
  nav.main-nav{
    position:fixed; top:73px; left:0; right:0; bottom:0;
    background:var(--paper); padding:20px 24px;
    transform:translateX(100%); transition:transform .3s var(--ease);
    overflow-y:auto;
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; align-items:stretch; gap:4px; }
  nav.main-nav a{ padding:14px 8px; border-bottom:1px solid var(--line); border-radius:0; }
  .nav-cta{ margin:16px 8px 0; }
  .topbar-left span:not(:first-child){ display:none; }
}
@media (max-width:760px){
  section{ padding:64px 0; }
  .grid-3, .grid-4, .exec-featured{ grid-template-columns:repeat(2,1fr); }
  .form-row{ grid-template-columns:1fr; }
  .member-row, .member-head-row{ grid-template-columns:48px 1fr 1fr; }
  .member-row .mspec, .member-head-row .h-spec{ display:none; }
  .gallery-grid{ columns:2 160px; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
}
@media (max-width:520px){
  .grid-3, .grid-4, .exec-featured, .grid-2{ grid-template-columns:1fr; }
  .hero-content{ padding:90px 0 70px; }
  .event-card{ grid-template-columns:1fr; }
  .event-date{ flex-direction:row; gap:8px; width:fit-content; padding:8px 16px; }
}
