/* Shenango Lake — 1960s resort / lakeside leisure design
   Aqua lakes, coral accents, lodge glamour, clean mid-century modern type. */

:root {
  --aqua: #1eb8c7;
  --aqua-deep: #0e8a96;
  --aqua-soft: #d4f4f7;
  --coral: #e85a6b;
  --coral-deep: #c93d4e;
  --coral-soft: #ffd6dc;
  --sun: #f5c542;
  --sun-soft: #ffe9a8;
  --navy: #1a2744;
  --navy-mid: #2a3d66;
  --ink: #243044;
  --cream: #fffcf5;
  --white: #ffffff;
  --sand: #f3ebe0;
  --teak: #8b5e3c;
  --mint: #7ec8a3;
  --line: rgba(26, 39, 68, 0.12);
  --shadow: 0 18px 40px rgba(26, 39, 68, 0.12);
  --shadow-soft: 0 8px 24px rgba(26, 39, 68, 0.08);
  --radius: 2px;
  --pill: 999px;
  --max: 1120px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Josefin Sans", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(212, 244, 247, 0.92) 0%, rgba(255, 252, 245, 0.94) 28%, rgba(243, 235, 224, 0.96) 100%),
    url("images/gear/pattern.svg");
  background-size: auto, 360px 360px;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, fixed;
  background-position: center top, 0 0;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  font-size: 1.02rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--aqua-deep); text-underline-offset: 3px; transition: color 0.15s ease; }
a:hover { color: var(--coral); }

/* —— Shell —— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-frame {
  width: min(100%, 1280px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.88) 0%, rgba(255, 252, 245, 0.92) 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

/* gear watermark layer inside frame (extra subtle, non-interactive) */
.site-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("images/gear/pattern.svg");
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.22;
}

.site-frame > * {
  position: relative;
  z-index: 1;
}

/* Diagonal mid-century stripe accent under top edge */
.site-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--aqua) 0 40px,
    var(--coral) 40px 80px,
    var(--sun) 80px 120px,
    var(--navy) 120px 160px
  );
  z-index: 20;
  pointer-events: none;
}

/* —— Top banner —— */
.top-banner {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 0.65rem 1rem 0.55rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-top: 6px;
}

.top-banner strong {
  color: var(--sun);
  font-weight: 600;
}

/* —— Header —— */
.site-header {
  position: relative;
  z-index: 5;
  padding: 1.15rem 1.5rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin-inline: auto;
}

.brand {
  text-decoration: none;
  color: var(--navy);
  display: grid;
  gap: 0.05rem;
}

.brand-kicker {
  font-family: var(--font-script);
  color: var(--coral);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 400;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--navy);
}

.brand-sub {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  border-radius: var(--pill);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  padding: 0.45rem 0.65rem;
  border-radius: var(--pill);
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--aqua);
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--navy);
  color: var(--cream);
  min-height: 420px;
}

.hero-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(30, 184, 199, 0.35), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(232, 90, 107, 0.2), transparent 45%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
}

/* Atomic-era decorative arc */
.hero-copy::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(245, 197, 66, 0.25);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--pill);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero h1 em,
.hero h1 .accent {
  font-style: italic;
  color: var(--sun);
  font-weight: 500;
}

.hero-lead {
  margin: 0;
  font-size: 1.1rem;
  max-width: 38ch;
  color: rgba(255, 252, 245, 0.88);
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.hero-art {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(1.08) contrast(1.04);
}

.hero-stamp {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  min-width: 7.25rem;
  min-height: 7.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  padding: 0.85rem;
  line-height: 1.25;
  border: 3px solid var(--white);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 0.8rem 1.35rem;
  cursor: pointer;
  border-radius: var(--pill);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(232, 90, 107, 0.35);
}

.btn-primary:hover { color: var(--white); background: var(--coral-deep); }

.btn-secondary {
  background: var(--sun);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 252, 245, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 252, 245, 0.1);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}

.btn-dark:hover { color: var(--cream); background: var(--navy-mid); }

/* —— Sections —— */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(2.25rem, 5vw, 3.75rem) 1.5rem;
  max-width: calc(var(--max) + 3rem);
  margin-inline: auto;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 38rem;
  margin-inline: auto;
}

.section-kicker {
  font-family: var(--font-script);
  color: var(--coral);
  font-size: 1.75rem;
  margin: 0 0 0.15rem;
  line-height: 1;
}

.section-head h2,
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 0.6rem;
  line-height: 1.12;
  font-weight: 700;
}

.section-head p,
.lede {
  margin: 0;
  color: rgba(36, 48, 68, 0.78);
  font-size: 1.05rem;
  font-weight: 300;
}

.page-hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(30, 184, 199, 0.4), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--aqua-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.75rem) 1.5rem;
  position: relative;
  z-index: 2;
}

.page-hero .section-kicker { color: var(--sun); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  margin: 0 0 0.6rem;
  color: var(--white);
  font-weight: 700;
}
.page-hero p {
  margin: 0 auto;
  max-width: 44ch;
  color: rgba(255, 252, 245, 0.88);
  font-weight: 300;
}

/* —— Cards / grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.grid-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.flyer-card {
  background: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.flyer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua), var(--coral));
  z-index: 1;
}

.flyer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flyer-card .card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--aqua-soft);
}

.flyer-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  filter: saturate(1.06);
}

.flyer-card:hover .card-img img { transform: scale(1.04); }

.flyer-card .card-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}

.flyer-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.flyer-card .tag {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.flyer-card p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(36, 48, 68, 0.85);
}

.flyer-card .card-link {
  margin-top: auto;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coral);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.flyer-card .card-link:hover { color: var(--navy); }

/* —— Feature rows —— */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-media { order: 1; }

.feature-media {
  border-radius: 4px;
  overflow: visible;
  box-shadow: var(--shadow);
  background: var(--aqua-soft);
  position: relative;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.06);
}

.feature-copy h2,
.feature-copy h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.55rem;
  line-height: 1.15;
  font-weight: 700;
}

.feature-copy .eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.4rem;
}

.feature-copy p {
  margin: 0 0 0.9rem;
  font-weight: 300;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.checklist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 3px var(--aqua-soft);
}

/* —— Stats —— */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-ticket {
  background: var(--white);
  border: 0;
  text-align: center;
  padding: 1.35rem 0.75rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
  overflow: hidden;
}

.stat-ticket::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--aqua);
}

.stat-ticket:nth-child(2)::before { background: var(--coral); }
.stat-ticket:nth-child(3)::before { background: var(--sun); }
.stat-ticket:nth-child(4)::before { background: var(--mint); }

.stat-ticket::after { display: none; }

.stat-ticket .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy);
  line-height: 1;
  display: block;
  font-weight: 700;
}

.stat-ticket .label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-top: 0.45rem;
  display: block;
}

/* —— Distance band —— */
.distance-band {
  background:
    linear-gradient(120deg, var(--aqua-deep) 0%, var(--aqua) 45%, var(--navy-mid) 45%, var(--navy) 100%);
  color: var(--cream);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.distance-band .inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 1fr);
  gap: 1.15rem;
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.distance-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 700;
}

.distance-band p {
  margin: 0;
  color: rgba(255, 252, 245, 0.88);
  font-weight: 300;
}

.distance-card {
  background: rgba(255, 252, 245, 0.1);
  border: 1px solid rgba(255, 252, 245, 0.28);
  padding: 1.15rem;
  text-align: center;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.distance-card .city {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sun);
}

.distance-card .time {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.3rem 0;
  font-weight: 700;
}

/* —— Species —— */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.species-card {
  background: var(--white);
  border: 0;
  padding: 1.2rem 1.15rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
  border-top: 3px solid var(--aqua);
}

.species-card:nth-child(2n) { border-top-color: var(--coral); }
.species-card:nth-child(3n) { border-top-color: var(--sun); }

.species-card::after { display: none; }

.species-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
}

.species-card .meta {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-bottom: 0.45rem;
}

.species-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
}

/* —— Events —— */
.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 7.75rem 1fr;
  gap: 0;
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow-soft);
  overflow: visible;
  border-radius: 4px;
}

.event-date {
  background: linear-gradient(180deg, var(--aqua) 0%, var(--aqua-deep) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem 0.55rem;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sun);
  letter-spacing: 0;
  font-weight: 700;
}

.event-body { padding: 1.1rem 1.25rem; }
.event-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
}
.event-body p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
}

/* —— Facts —— */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.fact-card {
  background: var(--white);
  border: 0;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border-radius: 4px;
  border-left: 4px solid var(--aqua);
}

.fact-card:nth-child(even) { border-left-color: var(--coral); }

.fact-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}

.fact-card p {
  margin: 0;
  font-weight: 300;
}

/* —— CTA —— */
.cta-band {
  background:
    linear-gradient(105deg, var(--coral) 0 48%, var(--navy) 48% 100%);
  color: var(--cream);
  padding: 2.75rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.55rem;
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 700;
}

.cta-band p {
  margin: 0 auto 1.15rem;
  max-width: 42ch;
  font-weight: 300;
}

.cta-band .hero-actions { justify-content: center; }

/* —— Pillars —— */
.pillar-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.pillar-block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar-block .media {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--aqua-soft);
}

.pillar-block .media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.06);
}

.pillar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}

.chip {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  padding: 0.35rem 0.7rem;
  background: var(--aqua-soft);
  color: var(--aqua-deep);
  border-radius: var(--pill);
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* —— Map —— */
.map-frame {
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: var(--white);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: rgba(255, 252, 245, 0.86);
  padding: 2.5rem 1.5rem 1.5rem;
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: "";
  display: block;
  height: 4px;
  margin: -2.5rem -1.5rem 2rem;
  background: repeating-linear-gradient(
    90deg,
    var(--aqua) 0 40px,
    var(--coral) 40px 80px,
    var(--sun) 80px 120px,
    var(--navy-mid) 120px 160px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  max-width: var(--max);
  margin-inline: auto  ;
  margin-bottom: 1.75rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: var(--sun);
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.site-footer a:hover { color: var(--aqua); }

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer p { font-weight: 300; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 252, 245, 0.12);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 500;
  max-width: var(--max);
  margin-inline: auto;
}

/* —— Utility —— */
.sunburst {
  display: inline-block;
  background: var(--sun);
  color: var(--navy);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
}

.note {
  font-size: 0.92rem;
  color: rgba(36, 48, 68, 0.7);
  font-style: italic;
  font-weight: 300;
}

.two-col-text {
  columns: 2;
  column-gap: 2.25rem;
}

.two-col-text p {
  margin: 0 0 0.9rem;
  break-inside: avoid;
  font-weight: 300;
}

/* Explore page inline heading helpers */
.pillar-block .eyebrow {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.pillar-block h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.55rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero,
  .feature-row,
  .feature-row.reverse,
  .pillar-block,
  .distance-band .inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media { order: unset; }

  .hero-art img { min-height: 280px; }

  .grid-3,
  .stat-row,
  .fact-grid { grid-template-columns: 1fr 1fr; }

  .two-col-text { columns: 1; }

  .cta-band {
    background: linear-gradient(180deg, var(--coral) 0 42%, var(--navy) 42% 100%);
  }

  .distance-band {
    background: linear-gradient(180deg, var(--aqua-deep) 0 40%, var(--navy) 40% 100%);
  }
}

@media (max-width: 700px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--sand);
    border-radius: 8px;
    padding: 0.4rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    border-radius: 6px;
  }

  .grid-3,
  .grid-2,
  .stat-row,
  .fact-grid { grid-template-columns: 1fr; }

  .event-item { grid-template-columns: 1fr; }
  .event-body { padding: 0 1.1rem 1.1rem; }
  .event-date { padding: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .flyer-card:hover { transform: none; }
  .flyer-card:hover .card-img img { transform: none; }
}

/* —— Kitchi-Amik hide & seek easter egg —— */
.kitchi-seek {
  position: fixed;
  z-index: 9999;
  width: min(110px, 26vw);
  max-width: 120px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 12px 16px rgba(15, 36, 56, 0.28));
}

.kitchi-seek.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.kitchi-seek.is-leaving {
  opacity: 0;
  pointer-events: none;
}

/* Spot anchors (base off-screen transforms) */
.kitchi-seek[data-spot="br"] { right: 0.4rem; bottom: 0.2rem; transform: translateY(115%); }
.kitchi-seek[data-spot="bl"] { left: 0.4rem; bottom: 0.2rem; transform: translateY(115%); }
.kitchi-seek[data-spot="tr"] { right: 0.6rem; top: 5.2rem; transform: translateX(120%); }
.kitchi-seek[data-spot="tl"] { left: 0.6rem; top: 5.2rem; transform: translateX(-120%); }
.kitchi-seek[data-spot="mr"] { right: -0.4rem; top: 40%; transform: translateX(95%); }
.kitchi-seek[data-spot="ml"] { left: -0.4rem; top: 46%; transform: translateX(-95%); }

.kitchi-seek[data-spot="br"].is-visible,
.kitchi-seek[data-spot="bl"].is-visible { transform: translateY(0); }
.kitchi-seek[data-spot="tr"].is-visible,
.kitchi-seek[data-spot="tl"].is-visible { transform: translateX(0); }
.kitchi-seek[data-spot="mr"].is-visible { transform: translateX(12%); }
.kitchi-seek[data-spot="ml"].is-visible { transform: translateX(-12%); }

.kitchi-seek-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.kitchi-seek-sprite {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  transform-origin: 50% 85%;
  animation: none;
  user-select: none;
  -webkit-user-drag: none;
}

.kitchi-seek.is-visible .kitchi-seek-sprite {
  animation: kitchi-bob 1.15s ease-in-out infinite;
}

.kitchi-seek.is-visible[data-spot="mr"] .kitchi-seek-sprite,
.kitchi-seek.is-visible[data-spot="tr"] .kitchi-seek-sprite {
  animation-name: kitchi-bob-flip;
  transform: scaleX(-1);
}

.kitchi-seek.is-visible[data-spot="mr"] .kitchi-seek-sprite {
  animation: kitchi-bob-flip 1.15s ease-in-out infinite;
}

.kitchi-seek.is-visible[data-spot="tr"] .kitchi-seek-sprite {
  animation: kitchi-bob-flip 1.15s ease-in-out infinite;
}

@keyframes kitchi-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  40% { transform: translateY(-7px) rotate(2.5deg) scale(1.03); }
  70% { transform: translateY(-2px) rotate(-1deg) scale(1.01); }
}

@keyframes kitchi-bob-flip {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(2deg) scale(1); }
  40% { transform: scaleX(-1) translateY(-7px) rotate(-2.5deg) scale(1.03); }
  70% { transform: scaleX(-1) translateY(-2px) rotate(1deg) scale(1.01); }
}

.kitchi-seek-badge {
  position: absolute;
  left: 50%;
  bottom: -0.15rem;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-label, "Josefin Sans", sans-serif);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy, #1a2744);
  background: rgba(255, 252, 245, 0.94);
  border: 1.5px solid var(--aqua, #1eb8c7);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  line-height: 1.2;
  box-shadow: 0 3px 10px rgba(15, 36, 56, 0.15);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.kitchi-seek.is-visible .kitchi-seek-badge {
  opacity: 1;
  animation: kitchi-badge-pop 0.45s ease 0.25s both;
}

@keyframes kitchi-badge-pop {
  from { transform: translateX(-50%) scale(0.7); opacity: 0; }
  to { transform: translateX(-50%) scale(1); opacity: 1; }
}

.kitchi-seek-close {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 0;
  border-radius: 50%;
  background: var(--coral, #e85a6b);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.15s ease;
}

.kitchi-seek.is-visible:hover .kitchi-seek-close,
.kitchi-seek.is-visible:focus-within .kitchi-seek-close {
  opacity: 1;
}

.kitchi-seek-close:hover { background: var(--coral-deep, #c93d4e); }

.kitchi-seek-close:focus-visible {
  opacity: 1;
  outline: 2px solid var(--sun, #f5c542);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .kitchi-seek { width: min(118px, 32vw); }
  .kitchi-seek[data-spot="tr"],
  .kitchi-seek[data-spot="tl"] {
    top: auto;
    bottom: 5.2rem;
  }
  .kitchi-seek[data-spot="tr"] { right: 0.4rem; left: auto; transform: translateX(120%); }
  .kitchi-seek[data-spot="tl"] { left: 0.4rem; right: auto; transform: translateX(-120%); }
  .kitchi-seek[data-spot="tr"].is-visible,
  .kitchi-seek[data-spot="tl"].is-visible { transform: translateX(0); }
  .kitchi-seek.is-visible .kitchi-seek-close { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .kitchi-seek { display: none !important; }
}
