:root {
  --bg: #f5f3ef;
  --surface: rgba(255, 255, 255, 0.84);
  --ink: #111111;
  --muted: #68615a;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #8f1116;
  --max: 1380px;
  --pad: clamp(20px, 3vw, 44px);
  --header-h: 82px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 22px 58px rgba(0, 0, 0, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.48);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--pad);
  background: rgba(248, 246, 242, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 40px;
}

.brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.site-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #111;
  display: block;
}

main {
  padding-bottom: 40px;
}

/* =========================
   SECTION SPACING
   ========================= */

.season-hero,
.population-summary-section,
.season-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.season-hero {
  padding-top: clamp(56px, 7vw, 88px);
}

/* =========================
   HERO
   ========================= */

.season-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  align-items: start;
}

.season-hero-main {
  max-width: 700px;
}

.season-hero-main h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.season-hero-intro {
  width: min(100%, 560px); /* slightly tighter line length */
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.72); /* darker than muted */
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.season-hero-stats {
  display: grid;
  gap: 12px;
}

.hero-stat-card {
  padding: 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-stat-card-strong {
  background: rgba(255, 255, 255, 0.92);
}

.hero-stat-label {
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stat-value {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 500;
}

.hero-stat-note {
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

/* =========================
   REVIEW BLOCK
   ========================= */

.season-review-block {
  margin-top: 36px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 400px;
}

.season-review-banner {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.03);
}

.season-review-status {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1f5b2f;
}

.season-review-list {
  padding: 12px 14px 8px;
  display: grid;
  gap: 4px;
}

.season-review-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.season-review-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.season-review-value {
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.season-review-link {
  display: inline;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.32);
  padding-bottom: 1px;

  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.season-review-link:hover {
  border-bottom-color: var(--accent);
}

.season-last-updated {
  padding: 8px 16px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}

/* =========================
   POPULATION SUMMARY
   ========================= */

.population-summary-section {
  padding-top: 10px;
}

.population-summary-card {
  border: 1px solid rgba(17, 17, 17, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.population-summary-head {
  padding: 28px 28px 20px;
  margin-bottom: 10px;
}

.population-summary-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.population-summary-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.population-table-wrap {
  overflow-x: auto;
  padding: 0 28px 28px;
}

.population-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.population-table th,
.population-table td {
  padding: 10px 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  text-align: left;
}

.population-table th {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.population-table td {
  font-size: 17px;
  line-height: 1.45;
}

.table-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.table-status.is-complete {
  background: rgba(31, 91, 47, 0.08);
  color: #1f5b2f;
}

.table-status.is-progress {
  background: rgba(17, 17, 17, 0.06);
  color: rgba(17, 17, 17, 0.6);
}

/* =========================
   SECTION HEADERS / STRIPS
   ========================= */

.section-divider {
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.05),
    rgba(17, 17, 17, 0.14),
    rgba(17, 17, 17, 0.05)
  );
}

.section-strip {
  margin-bottom: -6px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.section-strip img {
  width: 100%;
  height: clamp(72px, 10vw, 110px);
  object-fit: cover;
  opacity: 0.86;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* =========================
   STYLE SUMMARY
   ========================= */

.style-summary-card {
  margin-top: -10px;
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.style-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.style-summary-label {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.54);
}

.style-summary-value {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
}

/* =========================
   ENTRY CARDS
   ========================= */

.entry-card {
  margin-bottom: 26px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: stretch;
}

.entry-image {
  min-width: 0;
  background: transparent;
  border-right: 0;
  display: flex;
  flex-direction: column;
}

.entry-image-media {
  display: grid;
  place-items: center;
  padding: 16px 16px 12px;
  min-height: 0;
  background: transparent;
}

.entry-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.entry-caption {
  margin: 0;
  padding: 12px 16px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  background: transparent;
  border-top: 0;
}

.entry-content {
  min-width: 0;
  padding: 16px 16px 18px;
  background: transparent;
  margin-top: 12px;
}

.entry-meta {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.entry-meta > div {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.meta-label {
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.48);
}

.meta-value {
  text-align: right;
  font-size: 14px;
  line-height: 1.3;
  color: #111;
  overflow-wrap: anywhere;
}

.entry-callout {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-left: 2px solid rgba(143, 17, 22, 0.34);
  background: rgba(17, 17, 17, 0.03);
  font-size: 16px;
  line-height: 1.42;
  color: #222;
}

.entry-block + .entry-block {
  margin-top: 18px;
}

.entry-block h3 {
  margin: 10px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 8px;
}

.data-list,
.note-list {
  margin: 0;
  padding-left: 18px;
}

.data-list li,
.note-list li {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.muted-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
/* =========================
   EXTERNAL REFS / AUCTION LINKS
   ========================= */

.external-ref {
  display: inline;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.32);
  padding-bottom: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================
   BACK LINK / FOOTER
   ========================= */

.back-link-wrap {
  margin-top: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.64);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--pad) 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}
.section-head-wrap {
  margin-bottom: 24px;
}

.section-head-wrap .section-head {
  margin-bottom: 0;
}

.section-head-wrap .section-kicker {
  margin-bottom: 8px;
}

.section-head-wrap .section-head h2 {
  margin: 0;
}
/* --- your normal styles --- */

/* ENTRY CARD TAP FEEDBACK (add here) */
.entry-card {
  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.entry-card:active {
  transform: scale(0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ======================================
   Entry Card Carousel Bridge
   ====================================== */

.entry-image-media.is-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.entry-image-media.is-carousel .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.entry-image-media.is-carousel .carousel-track::-webkit-scrollbar {
  display: none;
}

.entry-image-media.is-carousel .carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}

.entry-image-media.is-carousel img {
  width: 100%;
  display: block;
  height: auto;
}

.entry-image-media.is-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.entry-image-media.is-carousel .carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.back-link-wrap {
  margin-top: 40px;
}
.registry-item,
.population-toggle summary,
.designation-toggle summary,
.registry-sort {
  cursor: pointer;
}
/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .entry-image {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  }

  .entry-image-media {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 10px 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: rgba(248, 246, 242, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 250ms ease,
      transform 250ms ease;
  }

  .site-nav a {
    padding: 14px 18px;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .season-hero-grid {
    grid-template-columns: 1fr;
  }

  .season-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .season-hero,
  .population-summary-section,
  .season-section {
    padding: 44px 0;
  }

  .season-hero-main h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .season-hero-intro,
  .population-summary-head p {
    font-size: 16px;
    line-height: 1.65;
  }

  .season-review-block {
    max-width: none;
  }

  .season-review-text,
  .season-review-value,
  .season-review-link {
    font-size: 16px;
  }

  .season-hero-stats {
    grid-template-columns: 1fr;
  }

  .population-summary-head {
    padding: 22px 20px 18px;
  }

  .population-table-wrap {
    padding: 0 20px 20px;
  }

  .entry-image-media {
    padding: 12px;
  }

  .entry-content {
    padding: 18px 16px 20px;
  }

  .entry-meta {
    gap: 6px;
    margin-bottom: 14px;
  }

  .entry-meta > div {
    gap: 12px;
    padding-bottom: 7px;
  }

  .meta-label {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .meta-value {
    font-size: 14px;
    line-height: 1.3;
  }

  .entry-callout {
    font-size: 16px;
    line-height: 1.5;
    padding: 14px;
  }

  .entry-block h3 {
    font-size: 22px;
  }

  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (hover: hover) {
  .entry-card {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease;
  }

  .entry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  }

  .entry-image img {
    transition: transform 400ms ease;
  }

  .entry-card:hover img {
    transform: scale(1.01);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(54px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
