:root {
  --bg: #fbfaf6;
  --bg-alt: #f1ede2;
  --bg-dark: #14302a;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #6b6b6b;
  --accent: #2f7a5f;
  --accent-dark: #1f5a45;
  --accent-soft: #d6ebe1;
  --border: #e3ddc9;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 48, 42, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
a:hover { border-bottom-color: currentColor; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem); margin-bottom: .6em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: .35rem .7rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  border: none;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
}
.brand-tld { color: var(--accent); font-weight: 500; }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0; padding: 0;
}
.primary-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  border: none;
}
.primary-nav a:hover { color: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: .75rem; }
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(47, 122, 95, 0.18) 0%, rgba(47, 122, 95, 0) 60%),
    radial-gradient(70% 90% at 10% 100%, rgba(214, 235, 225, 0.6) 0%, rgba(214, 235, 225, 0) 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 820px; }
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.accent { color: var(--accent); }

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2.5rem;
}

.btn {
  display: inline-block;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .1s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { border-bottom: 1px solid transparent; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink-soft); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-stats > div { text-align: left; }
.hero-stats dt {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 .15rem;
}
.hero-stats dd {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: #e8efe9;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p,
.section-dark li { color: #cdd9d3; }
.section-dark .eyebrow {
  background: rgba(255,255,255,0.08);
  color: #b8e0cd;
}
.section-dark a { color: #a4d8c2; }

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head .eyebrow { display: inline-block; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }
.section-dark .section-sub { color: #cdd9d3; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; gap: 2rem; } }

/* Feature list (about) */
.feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.feature-list h3 { margin-bottom: .25rem; }
.feature-list p { margin: 0; font-size: .95rem; }

@media (max-width: 520px) { .feature-list { grid-template-columns: 1fr; } }

/* Business cards */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) { .biz-grid { grid-template-columns: 1fr; } }

.biz-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.biz-card header { border-bottom: 1px solid var(--border); padding-bottom: .75rem; margin-bottom: 1rem; }
.biz-card h3 { color: var(--accent-dark); margin: 0; }
.biz-card ul { list-style: none; padding: 0; margin: 0; }
.biz-card li {
  display: flex;
  flex-direction: column;
  padding: .75rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .95rem;
}
.biz-card li:last-child { border-bottom: 0; }
.biz-card li strong { color: var(--ink); }
.biz-card li span { color: var(--muted); font-size: .88rem; }

.callout {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  background: var(--accent-soft);
  border: 1px solid #b9dccc;
  border-radius: var(--radius);
  text-align: center;
  color: var(--accent-dark);
  font-size: .98rem;
}

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 820px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amenity-grid { grid-template-columns: 1fr; } }

.amenity {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.amenity:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.amenity h3 { color: var(--accent-dark); margin-bottom: .35rem; }
.amenity p { margin: 0 0 .75rem; font-size: .95rem; color: var(--ink-soft); flex: 1; }
.amenity-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
}

/* Timeline */
.timeline {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
.timeline ol {
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
}
.timeline ol::before {
  content: '';
  position: absolute;
  top: 6px; bottom: 6px;
  left: 7px;
  width: 2px;
  background: var(--accent-soft);
}
.timeline li {
  position: relative;
  padding: .4rem 0 .9rem 1.75rem;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 0; top: .85rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--accent);
}
.timeline span {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.timeline p { margin: .15rem 0 0; font-size: .92rem; }

/* Community */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .community-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .community-grid { grid-template-columns: 1fr; } }
.community-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.community-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.community-card h3 { margin-bottom: .25rem; color: var(--accent-dark); }
.community-card p { margin: 0 0 .75rem; font-size: .92rem; color: var(--ink-soft); flex: 1; }

/* Visit */
.visit-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.visit-list li {
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.visit-list strong { color: #fff; }

.visit-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}
@media (max-width: 820px) { .visit-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .visit-list-grid { grid-template-columns: 1fr; } }
.visit-list-grid li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.visit-list-grid li strong {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
}
.visit-list-grid li span { color: #cdd9d3; font-size: .92rem; }
.disclaimer {
  text-align: center;
  color: #9ab5a8 !important;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: #0e231f;
  color: #cdd9d3;
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
.footer-inner nav ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-inner a { color: #cdd9d3; }
.footer-inner a:hover { color: #fff; }
.brand-footer { color: #fff; }
.brand-footer .brand-text { color: #fff; }
.copyright { text-align: right; }
@media (max-width: 700px) { .copyright { text-align: center; } }

.micro {
  font-size: .82rem;
  color: var(--muted);
  margin: .5rem 0 0;
}

/* Bins section */
.bins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 980px) { .bins-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bins-grid { grid-template-columns: 1fr; } }

.bin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.bin-swatch {
  width: 48px;
  height: 56px;
  border-radius: 6px 6px 4px 4px;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.15);
}
.bin-swatch::before {
  content: '';
  position: absolute;
  top: -6px; left: -4px; right: -4px;
  height: 8px;
  background: inherit;
  border-radius: 4px 4px 2px 2px;
  filter: brightness(0.85);
}
.bin-black .bin-swatch { background: #2c2c2c; }
.bin-blue .bin-swatch { background: #1f4f8f; }
.bin-green .bin-swatch { background: #2f7a3f; }
.bin-grey .bin-swatch { background: #8a8a8a; }

.bin-card h3 { margin-bottom: .25rem; }
.bin-what {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .5rem;
}
.bin-when {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.bin-list {
  list-style: none;
  padding: 0; margin: 0;
}
.bin-list li {
  padding: .35rem 0 .35rem 1.25rem;
  position: relative;
  font-size: .92rem;
  color: var(--ink-soft);
}
.bin-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: .35rem;
  color: var(--accent);
  font-weight: 700;
}

.bins-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 760px) { .bins-info { grid-template-columns: 1fr; } }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-card h3 { margin-bottom: .5rem; }
.info-card p { font-size: .95rem; }
.info-list {
  list-style: none;
  padding: 0; margin: .5rem 0 0;
}
.info-list li {
  padding: .4rem 0;
  border-top: 1px solid var(--border);
  font-size: .92rem;
}
.info-list li:first-child { border-top: 0; }

/* Next collection hero */
.next-collection {
  margin: 0 0 2rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.next-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.85);
}
.next-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.next-when {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.next-weekday {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.next-date {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.next-relative {
  font-size: .9rem;
  color: rgba(255,255,255,0.85);
  margin-top: .25rem;
}
.next-pips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.next-pips li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
}
.next-pips .bin-pip {
  border-color: rgba(255,255,255,0.25);
}
.next-note {
  margin: 1rem 0 0;
  padding: .55rem .9rem;
  background: #fff4e0;
  color: #6b4a10;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
}

/* Schedule (collapsible) */
.schedule {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin: 0 0 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.schedule > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Fraunces', serif;
  transition: background .15s ease;
}
.schedule > summary::-webkit-details-marker { display: none; }
.schedule > summary::after {
  content: '+';
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  margin-left: auto;
  transition: transform .2s ease;
}
.schedule[open] > summary::after {
  content: '−';
}
.schedule > summary:hover { background: var(--bg-alt); }
.schedule-summary-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.schedule-summary-hint {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--muted);
  margin-left: 1rem;
}
.schedule[open] > .schedule-head,
.schedule[open] > .schedule-grid,
.schedule[open] > .micro {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.schedule[open] > .micro { margin-bottom: 1.5rem; }
.schedule-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.schedule-head h3 { margin: 0 0 .25rem; }
.schedule-head .micro { margin: 0; max-width: 60ch; }

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 760px) { .schedule-grid { grid-template-columns: 1fr; } }

.schedule-column {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.schedule-col-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px dashed var(--border);
  font-size: .95rem;
  color: var(--ink);
}
.bin-pip {
  width: 14px; height: 14px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.15);
}
.bin-pip-black { background: #2c2c2c; }
.bin-pip-blue { background: #1f4f8f; }
.bin-pip-green { background: #2f7a3f; }
.bin-pip-grey { background: #8a8a8a; }

.schedule-dates {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.schedule-dates li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid transparent;
}
.schedule-dates time {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.schedule-dates .bh-shift {
  color: #6b4a10;
  font-size: .82rem;
  background: #fff4e0;
  padding: .15rem .5rem;
  border-radius: 999px;
  border: 1px solid #f1d089;
}
.schedule-dates li.next {
  background: var(--accent-soft);
  border-color: #b9dccc;
}
.schedule-dates li.next time::before {
  content: 'NEXT · ';
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent-dark);
  margin-right: .25rem;
}

/* Representatives section */
.reps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.reps-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .reps-grid,
  .reps-grid-2 { grid-template-columns: 1fr; }
}

.ward-head {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 720px;
}
.ward-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: .5rem 0 .5rem;
}

.ward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 760px) { .ward-grid { grid-template-columns: 1fr; } }

.rep-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.rep-card.rep-mp { border-top: 4px solid #e4003b; }
.rep-card.rep-county { border-top: 4px solid #12b6cf; }

.rep-card.rep-ward {
  text-align: center;
  align-items: center;
  padding: 1.5rem 1.25rem;
  border-top: 4px solid #e4003b;
}
.rep-card.rep-ward .rep-photo {
  margin-bottom: 1rem;
}
.rep-card.rep-ward h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.rep-card.rep-ward .rep-party {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: .5rem;
  justify-content: center;
}
.rep-title {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 1rem;
  min-height: 2.6em;
}
.rep-links {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  width: 100%;
  text-align: center;
}
.rep-links li {
  padding: .4rem 0;
  font-size: .88rem;
  word-break: break-word;
}
.rep-links li + li {
  border-top: 1px solid var(--border);
}
.rep-role {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
}
.rep-card h3 { margin-bottom: .5rem; }
.rep-party {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border);
}
.party-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.party-lab { background: #e4003b; }
.party-con { background: #0087dc; }
.party-lib { background: #faa61a; }
.party-grn { background: #6ab023; }
.party-ref { background: #12b6cf; }
.party-ind { background: #888; }
.party-unknown { background: var(--border); border: 1px dashed var(--muted); }

.rep-card p { font-size: .94rem; }
.rep-contact {
  list-style: none;
  padding: 0; margin: auto 0 0;
}
.rep-contact li {
  padding: .45rem 0;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  color: var(--ink-soft);
  word-break: break-word;
}
.rep-contact li:first-child { border-top: 0; }

.rep-actions {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.rep-card.rep-ward .rep-actions {
  justify-content: center;
  margin-bottom: .75rem;
}
.rep-actions li { margin: 0; }
.rep-actions a {
  display: inline-block;
  padding: .4rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #b9dccc;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.rep-actions a:hover {
  background: #c8e4d6;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.callout-warn {
  background: #fff4e0;
  border-color: #f1d089;
  color: #6b4a10;
}

/* Representative photos */
.rep-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 1rem;
  background: var(--bg-alt);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border);
}
.rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Schools */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .schools-grid { grid-template-columns: 1fr; } }

.school-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.school-stage {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
}
.school-card h3 {
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.school-meta {
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  flex: 1;
}
.school-meta > div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.school-meta dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.school-meta dd {
  margin: 0;
  font-size: .94rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.school-meta dd a {
  border-bottom: none;
  display: inline-block;
}
.school-meta dd a:hover .ofsted-badge {
  filter: brightness(1.05);
}
.meta-sub {
  color: var(--muted);
  font-size: .85rem;
}

.ofsted-badge {
  display: inline-block;
  padding: .2rem .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
}
.ofsted-good { background: #2f7a5f; }
.ofsted-outstanding { background: #1f4f8f; }
.ofsted-requires-improvement { background: #d97706; }
.ofsted-inadequate { background: #b91c1c; }

.school-card .btn {
  align-self: flex-start;
}
.btn-sm {
  padding: .55rem 1rem;
  font-size: .85rem;
}

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

.bin-actions {
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
.bin-actions .btn { white-space: normal; }
.bin-actions-hint { margin: 0; max-width: 60ch; opacity: .8; }
