:root {
  --green: #01351f;
  --green-2: #06452a;
  --gold: #d79b24;
  --cream: #f7efe2;
  --ink: #10271d;
  --muted: #5b675f;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(1, 53, 31, .96);
  color: white;
  border-bottom: 1px solid rgba(215, 155, 36, .45);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: 900;
  line-height: .9;
  letter-spacing: .04em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 30px;
}
.nav { display: flex; gap: 28px; font-family: Arial, sans-serif; font-weight: 700; font-size: 14px; }
.nav a { text-decoration: none; opacity: .92; }
.nav a:hover { color: var(--gold); }
.nav-toggle { display: none; }

.hero {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: white;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-camp.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,53,31,.9) 0%, rgba(1,53,31,.62) 45%, rgba(1,53,31,.16) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.05));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  padding-left: 5vw;
}
.eyebrow, .section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, sans-serif;
  font-weight: 900;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(52px, 8vw, 106px);
  line-height: .92;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 22px rgba(0,0,0,.35);
}
.subtitle {
  color: var(--gold);
  font-size: clamp(24px, 3vw, 42px);
  margin: 18px 0 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.date-line {
  font-size: clamp(18px, 2vw, 26px);
  margin: 0 0 30px;
}
.date-line span { color: var(--gold); padding: 0 10px; }
.hero-actions, .contact-links { display: flex; flex-wrap: wrap; gap: 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.primary { background: var(--gold); color: #1d1a10; }
.secondary { border: 2px solid var(--gold); color: white; background: rgba(1,53,31,.55); }

.section { padding: 76px 0; }
.container { width: min(1180px, 90vw); margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.reverse { grid-template-columns: .85fr 1.15fr; }
h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--green);
}
p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}
.small { font-size: 14px; color: var(--muted); }
.center { text-align: center; }
.intro { background: var(--cream); }
.vision-card, .contact-card, 
.sponsor-download {
  margin-top: 20px;
}
.sponsor-download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #10261a;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
}
.sponsor-download a:hover {
  transform: translateY(-1px);
}

.promise-card {
  background: white;
  border: 1px solid rgba(215, 155, 36, .35);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.vision-card img {
  max-width: 300px;
  margin: 0 auto 24px;
}

.schedule, .budget, .sponsors {
  background: var(--green);
  color: white;
}
.schedule h2, .budget h2, .sponsors h2 { color: white; }
.cards {
  display: grid;
  gap: 16px;
}
.seven { grid-template-columns: repeat(7, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.cards article {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(215, 155, 36, .45);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
}
.cards span {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--gold);
}
.cards strong {
  display: block;
  font-size: 20px;
  margin: 10px 0;
}
.cards p { font-size: 14px; margin: 0; line-height: 1.45; }

.locations { background: #fffaf1; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.location-grid div {
  border: 2px solid rgba(215, 155, 36, .55);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  background: white;
}
.location-grid strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  text-transform: uppercase;
}
.location-grid span { font-family: Arial, sans-serif; color: var(--muted); }

.map-section { background: var(--green-2); color: white; }
.map-section h2 { color: white; }
.feature-list {
  font-family: Arial, sans-serif;
  line-height: 1.8;
  font-size: 18px;
  padding-left: 22px;
}
.map-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid rgba(215, 155, 36, .55);
}

.buy {
  background: var(--cream);
  text-align: center;
}
.buy h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(26px, 3vw, 42px);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.program-grid div {
  background: rgba(255, 250, 241, .08);
  border: 1px solid rgba(215, 155, 36, .45);
  border-radius: 16px;
  padding: 22px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.program-grid span {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
}

.sponsor-box {
  margin-top: 24px;
  display: inline-grid;
  gap: 6px;
  padding: 28px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  background: rgba(0,0,0,.2);
}
.sponsor-box strong {
  color: var(--gold);
  font-size: 30px;
}
.sponsor-box span { font-family: Arial, sans-serif; }
.promise-card {
  color: var(--ink);
}
.promise-card h3 {
  color: var(--green);
  font-size: 32px;
  margin: 0 0 18px;
}
.promise-card ol {
  font-family: Arial, sans-serif;
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 26px;
  line-height: 1.4;
}
.contact { background: linear-gradient(180deg, var(--cream), #fff); text-align: center; }
.contact-card { max-width: 850px; }
.contact-links { justify-content: center; }
.contact-links a {
  background: var(--green);
  color: white;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-weight: 800;
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  background: #001f13;
  color: white;
  padding: 26px 5vw;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.site-footer span:not(:last-child)::after {
  content: " |";
  color: var(--gold);
  margin-left: 18px;
}

@media (max-width: 900px) {
  .site-header { height: auto; min-height: 70px; }
  .nav-toggle {
    display: block;
    color: white;
    background: transparent;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 8px;
    font-size: 24px;
    padding: 6px 10px;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: var(--green);
    padding: 20px 5vw;
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .hero { min-height: 620px; }
  .hero-content { padding: 90px 5vw 60px; }
  .two-col, .reverse, .seven, .four, .program-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
}


/* MOBILE READABILITY FIX V2 */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  min-width: 0;
}

body {
  position: relative;
}

.container,
.two-col,
.reverse,
.cards,
.seven,
.four,
.location-grid,
.program-grid,
.vision-card,
.contact-card,
.promise-card,
.map-image,
img {
  max-width: 100%;
}

.two-col,
.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

p,
li,
h1,
h2,
h3,
strong,
span,
a {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 900px) {
  .two-col,
  .reverse,
  .seven,
  .four,
  .program-grid,
  .location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .container {
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 46px 0;
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.05;
    max-width: 100%;
  }

  p {
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1.55;
    max-width: 100%;
  }

  .intro p,
  .map-section p,
  .buy p,
  .sponsors p,
  .contact p,
  .feature-list {
    font-size: 18px;
    line-height: 1.6;
  }

  .vision-card {
    margin-top: 20px;
    padding: 24px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .subtitle {
    font-size: clamp(20px, 6vw, 30px);
  }

  .date-line {
    font-size: 17px;
  }

  .location-grid div {
    padding: 24px 14px;
  }

  .location-grid strong {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.05;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    text-align: center;
  }

  .site-footer span::after {
    content: "" !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .intro p,
  .map-section p,
  .buy p,
  .sponsors p,
  .contact p,
  .feature-list {
    font-size: 17px;
  }

  .brand span:last-child {
    font-size: 20px;
    line-height: .95;
  }

  .nav-toggle {
    margin-left: 10px;
  }
}


/* DETAILED SCHEDULE SECTION */
.detailed-schedule {
  background: var(--green);
  color: white;
}

.detailed-schedule h2 {
  color: white;
  margin-bottom: 14px;
}

.schedule-intro {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
  color: rgba(255, 250, 241, .92);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.day-card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(215, 155, 36, .55);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow: hidden;
}

.day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fff6e6, #f4deab);
  border-bottom: 1px solid rgba(215, 155, 36, .5);
}

.day-head span {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.day-head strong {
  font-size: 20px;
  color: var(--green);
  text-align: right;
}

.day-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(1, 53, 31, .12);
}

.schedule-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.schedule-item time {
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
  background: rgba(215, 155, 36, .15);
  border: 1px solid rgba(215, 155, 36, .35);
  border-radius: 999px;
  padding: 7px 8px;
  text-align: center;
  height: fit-content;
  white-space: nowrap;
}

.schedule-item b {
  display: block;
  color: var(--green);
  font-size: 18px;
  margin-bottom: 2px;
}

.schedule-item p {
  margin: 0;
  color: #2e3a33;
  font-size: 14px;
  line-height: 1.45;
}

.schedule-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.schedule-summary article {
  background: rgba(255, 250, 241, .08);
  border: 1px solid rgba(215, 155, 36, .45);
  border-radius: 20px;
  padding: 28px;
}

.schedule-summary h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 30px;
}

.schedule-summary p,
.schedule-summary li {
  color: rgba(255, 250, 241, .92);
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

.schedule-summary ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .schedule-grid,
  .schedule-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .day-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .day-head strong {
    text-align: left;
  }

  .schedule-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }

  .schedule-item time {
    font-size: 13px;
  }

  .schedule-summary article {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .schedule-intro {
    text-align: left;
  }

  .schedule-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-item time {
    width: fit-content;
  }

  .schedule-summary h3 {
    font-size: 26px;
  }
}


/* TWO-SCHEDULE LAYOUT: TREATY TENT + MAIN TENT */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  flex-wrap: wrap;
}

.schedule-tabs span {
  font-family: Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(215, 155, 36, .6);
  border-radius: 999px;
  padding: 10px 18px;
}

.two-schedule-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.dual-day-card {
  overflow: hidden;
}

.dual-schedule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
}

.tent-column {
  padding: 20px;
}

.tent-column + .tent-column {
  border-left: 1px solid rgba(1, 53, 31, .16);
}

.tent-column h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 24px;
  border-bottom: 2px solid rgba(215, 155, 36, .55);
  padding-bottom: 8px;
}

.main-tent {
  background: linear-gradient(180deg, rgba(215, 155, 36, .09), rgba(255,255,255,0));
}

@media (max-width: 760px) {
  .dual-schedule {
    grid-template-columns: minmax(0, 1fr);
  }

  .tent-column + .tent-column {
    border-left: 0;
    border-top: 1px solid rgba(1, 53, 31, .16);
  }

  .tent-column {
    padding: 18px;
  }

  .schedule-tabs {
    justify-content: flex-start;
  }
}


/* 54-HOUR TREATY + MAIN TENT DETAIL CARDS */
.schedule-summary-54 {
  align-items: stretch;
}

.hours-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hours-list div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
  background: rgba(255, 250, 241, .07);
  border: 1px solid rgba(215, 155, 36, .28);
  border-radius: 14px;
  padding: 14px;
}

.hours-list span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--gold);
  color: #1d1a10;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

.hours-list strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.hours-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.hours-list.compact div {
  grid-template-columns: 70px minmax(0, 1fr);
}

.total-line {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(215, 155, 36, .45);
  color: var(--gold) !important;
}

.fire-summary {
  grid-template-columns: minmax(0, 1fr);
}

.fire-summary article {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .hours-list div,
  .hours-list.compact div {
    grid-template-columns: minmax(0, 1fr);
  }

  .hours-list span {
    width: fit-content;
    padding: 0 14px;
  }
}


/* MORNING FIRE + AFTERNOON TENT PROGRAMS */
.fire-day-card .day-head {
  background: linear-gradient(135deg, #fff6e6, #f1d694);
}

.morning-fire-block {
  padding: 20px;
  background: linear-gradient(135deg, rgba(1, 53, 31, .96), rgba(9, 83, 49, .94));
  color: white;
  border-bottom: 1px solid rgba(215, 155, 36, .5);
}

.morning-fire-block h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 26px;
}

.opening-note {
  margin: 0 0 16px;
  color: rgba(255, 250, 241, .92);
  font-size: 15px;
  line-height: 1.5;
}

.morning-fire-block .schedule-item {
  border-bottom: 0;
  padding-bottom: 0;
}

.morning-fire-block .schedule-item time {
  background: var(--gold);
  color: #1d1a10;
}

.morning-fire-block .schedule-item b {
  color: white;
}

.morning-fire-block .schedule-item p {
  color: rgba(255, 250, 241, .9);
}

.afternoon-tents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.afternoon-tents .tent-column {
  padding: 20px;
}

.afternoon-tents .tent-column + .tent-column {
  border-left: 1px solid rgba(1, 53, 31, .16);
}

@media (max-width: 760px) {
  .afternoon-tents {
    grid-template-columns: minmax(0, 1fr);
  }

  .afternoon-tents .tent-column + .tent-column {
    border-left: 0;
    border-top: 1px solid rgba(1, 53, 31, .16);
  }
}


/* AROUND THE FIRE DETAIL */
.fire-hours-list {
  margin-top: 22px;
}

.fire-summary .total-line {
  color: var(--gold) !important;
}


/* DAY 0 ARRIVAL + SETTLE-IN CARD */
.day-zero-card .settle-block {
  padding: 20px;
  background: linear-gradient(135deg, rgba(1, 53, 31, .96), rgba(9, 83, 49, .94));
  color: white;
  border-bottom: 1px solid rgba(215, 155, 36, .5);
}

.day-zero-card .settle-block h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 26px;
}

.day-zero-card .settle-block .schedule-item {
  border-bottom: 1px solid rgba(255, 250, 241, .16);
}

.day-zero-card .settle-block .schedule-item:last-child {
  border-bottom: 0;
}

.day-zero-card .settle-block .schedule-item time {
  background: var(--gold);
  color: #1d1a10;
}

.day-zero-card .settle-block .schedule-item b {
  color: white;
}

.day-zero-card .settle-block .schedule-item p {
  color: rgba(255, 250, 241, .9);
}

.closed-tents-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.closed-tents-note div {
  padding: 20px;
}

.closed-tents-note div + div {
  border-left: 1px solid rgba(1, 53, 31, .16);
}

.closed-tents-note h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 24px;
  border-bottom: 2px solid rgba(215, 155, 36, .55);
  padding-bottom: 8px;
}

.closed-tents-note p {
  margin: 0;
  color: #2e3a33;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .closed-tents-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .closed-tents-note div + div {
    border-left: 0;
    border-top: 1px solid rgba(1, 53, 31, .16);
  }
}


/* REDONE SEPTEMBER SCHEDULE: FIRE 5-1 + TENTS 1-10 */
.sequence-day-card .fire-window {
  padding: 20px;
  background: linear-gradient(135deg, rgba(1, 53, 31, .96), rgba(9, 83, 49, .94));
  color: white;
  border-bottom: 1px solid rgba(215, 155, 36, .5);
}

.fire-window h3,
.settle-block h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 26px;
}

.fire-window .schedule-item {
  border-bottom: 1px solid rgba(255, 250, 241, .15);
}

.fire-window .schedule-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fire-window .schedule-item time {
  background: var(--gold);
  color: #1d1a10;
}

.fire-window .schedule-item b {
  color: white;
}

.fire-window .schedule-item p {
  color: rgba(255, 250, 241, .9);
}

.tent-window {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tent-window .tent-column {
  padding: 20px;
}

.tent-window .tent-column + .tent-column {
  border-left: 1px solid rgba(1, 53, 31, .16);
}

.tent-window h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 23px;
  border-bottom: 2px solid rgba(215, 155, 36, .55);
  padding-bottom: 8px;
}

.day-zero-card .settle-block {
  padding: 20px;
  background: linear-gradient(135deg, rgba(1, 53, 31, .96), rgba(9, 83, 49, .94));
  color: white;
  border-bottom: 1px solid rgba(215, 155, 36, .5);
}

.day-zero-card .settle-block .schedule-item {
  border-bottom: 1px solid rgba(255, 250, 241, .16);
}

.day-zero-card .settle-block .schedule-item:last-child {
  border-bottom: 0;
}

.day-zero-card .settle-block .schedule-item time {
  background: var(--gold);
  color: #1d1a10;
}

.day-zero-card .settle-block .schedule-item b {
  color: white;
}

.day-zero-card .settle-block .schedule-item p {
  color: rgba(255, 250, 241, .9);
}

.closed-tents-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.closed-tents-note div {
  padding: 20px;
}

.closed-tents-note div + div {
  border-left: 1px solid rgba(1, 53, 31, .16);
}

.closed-tents-note h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 24px;
  border-bottom: 2px solid rgba(215, 155, 36, .55);
  padding-bottom: 8px;
}

.closed-tents-note p {
  margin: 0;
  color: #2e3a33;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .tent-window,
  .closed-tents-note {
    grid-template-columns: minmax(0, 1fr);
  }

  .tent-window .tent-column + .tent-column,
  .closed-tents-note div + div {
    border-left: 0;
    border-top: 1px solid rgba(1, 53, 31, .16);
  }
}


/* DAY 7 REGINA MOVE UPDATE */
.day-seven-card .tent-window h3 {
  color: var(--green);
}



.logo-brand {
  gap: 0;
  width: min(360px, 62vw);
  max-width: 360px;
}

.logo-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-header .brand-mark {
  display: none;
}

.vision-card img {
  width: min(440px, 100%);
  max-width: 440px;
  border-radius: 14px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .logo-brand {
    width: min(300px, 64vw);
  }

  .logo-brand img {
    max-height: 52px;
  }
}

@media (max-width: 480px) {
  .logo-brand {
    width: min(250px, 62vw);
  }

  .logo-brand img {
    max-height: 46px;
  }
}


/* LOGO READABILITY FIX */
.site-header {
  gap: 16px;
}

.logo-brand {
  flex: 0 1 auto;
  width: min(320px, calc(100vw - 112px));
  max-width: 320px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  border: 1px solid rgba(215, 155, 36, .35);
  overflow: hidden;
}

.logo-brand img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
    min-height: 84px;
  }

  .logo-brand {
    width: min(270px, calc(100vw - 98px));
    padding: 7px 10px;
    border-radius: 12px;
  }

  .logo-brand img {
    max-height: 48px;
  }
}

@media (max-width: 420px) {
  .logo-brand {
    width: min(235px, calc(100vw - 92px));
    padding: 6px 9px;
  }

  .logo-brand img {
    max-height: 42px;
  }
}

/* Extra mobile hero guard so the header/logo cannot push the page sideways */
@media (max-width: 900px) {
  .hero-content,
  .hero-actions,
  .date-line,
  .subtitle,
  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}


/* WHITE HEADER REFINEMENT */
.site-header {
  background: #ffffff !important;
  color: var(--green) !important;
  border-bottom: 2px solid rgba(215, 155, 36, .55) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  backdrop-filter: none !important;
}

.logo-brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: min(380px, calc(100vw - 120px)) !important;
  max-width: 380px !important;
}

.logo-brand img {
  max-height: 68px !important;
}

.nav-toggle {
  border: 1.5px solid rgba(1,53,31,.28) !important;
  color: var(--green) !important;
  background: rgba(255,255,255,.96) !important;
}

.nav a {
  color: var(--green) !important;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 88px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .logo-brand {
    width: min(300px, calc(100vw - 104px)) !important;
  }

  .logo-brand img {
    max-height: 58px !important;
  }
}

@media (max-width: 420px) {
  .logo-brand {
    width: min(265px, calc(100vw - 98px)) !important;
  }

  .logo-brand img {
    max-height: 52px !important;
  }
}


/* MOBILE MENU FIX — show links on white dropdown, no blank green block */
@media (max-width: 900px) {
  .site-header {
    position: sticky;
    overflow: visible !important;
  }

  .nav {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(1, 53, 31, .16) !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.18) !important;
    padding: 12px !important;
    gap: 0 !important;
    z-index: 999 !important;
  }

  .nav.open {
    display: grid !important;
  }

  .nav a {
    display: block !important;
    color: var(--green) !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(1, 53, 31, .10) !important;
    padding: 16px 14px !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    opacity: 1 !important;
    text-decoration: none !important;
  }

  .nav a:last-child {
    border-bottom: 0 !important;
  }

  .nav a:hover,
  .nav a:focus {
    color: #1d1a10 !important;
    background: rgba(215, 155, 36, .16) !important;
    outline: none !important;
  }

  .nav-toggle {
    color: var(--green) !important;
    background: #ffffff !important;
    border-color: rgba(1,53,31,.25) !important;
  }

  .hero {
    overflow: hidden !important;
  }
}


/* CONTACT EMAIL FIX */
.contact-links-single {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.contact-links-single .email-button {
  min-width: min(340px, 100%);
  text-align: center;
  background: var(--green);
  color: #ffffff;
  border-radius: 999px;
  padding: 16px 34px;
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.email-display {
  display: block;
  max-width: 100%;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-align: center;
}

@media (max-width: 480px) {
  .contact-links-single .email-button {
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
  }
}


/* SIGN UP FORM */
.signup {
  background: linear-gradient(180deg, #fffaf1, var(--cream));
}

.signup-card {
  max-width: 860px;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 36, .35);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
  text-align: center;
}

.signup-card h2 {
  margin-left: auto;
  margin-right: auto;
}

.signup-form-title {
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.signup-card > .section-kicker.center {
  display: block;
  text-align: center;
}


.signup-intro {
  max-width: 700px;
  margin: 0 auto 26px;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  text-align: left;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
}

.signup-form input {
  width: 100%;
  border: 2px solid rgba(1, 53, 31, .18);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
}

.signup-form input:focus {
  outline: 3px solid rgba(215, 155, 36, .28);
  border-color: var(--gold);
}

.signup-form button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #1d1a10;
  padding: 18px 26px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.form-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(1, 53, 31, .06);
  color: var(--green);
  font-family: Arial, sans-serif;
  display: grid;
  gap: 4px;
  text-align: left;
}

.hidden-field {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--cream);
  padding: 24px;
}

.thank-you-card {
  max-width: 680px;
  text-align: center;
}

.thank-you-card h1 {
  color: var(--green);
  font-size: clamp(42px, 8vw, 72px);
  margin: 0 0 14px;
}

.thank-you-card .button {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .signup-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-card {
    width: min(100%, calc(100vw - 28px));
  }
}


/* SIMPLE THANK YOU MESSAGE */
.signup-success {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(1, 53, 31, .08);
  border: 1px solid rgba(1, 53, 31, .18);
  color: var(--green);
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.25;
}

.signup-success[hidden] {
  display: none !important;
}


/* COMMUNITY BONDS SECTION */
.community-bonds-section {
  background: linear-gradient(180deg, var(--cream), #fffaf1);
  text-align: center;
}

.community-bonds-card {
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(215, 155, 36, .38);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.community-bonds-card h2 {
  margin-left: auto;
  margin-right: auto;
}

.bond-intro {
  max-width: 820px;
  margin: 0 auto 26px;
}

.bond-price-box {
  display: grid;
  gap: 8px;
  justify-items: center;
  max-width: 520px;
  margin: 0 auto 28px;
  padding: 28px;
  border-radius: 24px;
  background: var(--green);
  color: #ffffff;
  border: 2px solid var(--gold);
}

.bond-price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 12vw, 104px);
  line-height: .9;
  color: var(--gold);
  font-weight: 900;
}

.bond-price-box strong {
  font-size: clamp(22px, 4vw, 34px);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bond-price-box p {
  margin: 0;
  color: rgba(255,250,241,.9);
  font-size: 16px;
}

.bond-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.bond-option {
  display: grid;
  gap: 8px;
  padding: 20px 14px;
  border-radius: 18px;
  border: 2px solid rgba(215, 155, 36, .45);
  background: #fffaf1;
  color: var(--green);
  text-decoration: none;
}

.bond-option span {
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bond-option strong {
  font-size: 34px;
  color: var(--gold);
}

.etransfer-box {
  text-align: left;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background: rgba(1, 53, 31, .06);
  border: 1px solid rgba(1, 53, 31, .12);
}

.etransfer-box h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(28px, 5vw, 42px);
}

.etransfer-box ol {
  margin: 0 0 22px;
  padding-left: 24px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
}

.bond-email-button {
  width: 100%;
}

.bond-note {
  margin: 18px auto 0;
  max-width: 760px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .bond-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .bond-quick-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .community-bonds-card {
    width: min(100%, calc(100vw - 28px));
  }
}


/* COMMUNITY BOND ORDER FORM */
.bond-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background: rgba(1, 53, 31, .06);
  border: 1px solid rgba(1, 53, 31, .14);
  text-align: left;
}

.bond-form h3,
.bond-form-intro {
  grid-column: 1 / -1;
}

.bond-form h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(28px, 5vw, 42px);
  text-align: center;
}

.bond-form-intro {
  margin: -6px 0 4px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

.bond-form label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
}

.bond-form input {
  width: 100%;
  border: 2px solid rgba(1, 53, 31, .18);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
}

.bond-form input:focus {
  outline: 3px solid rgba(215, 155, 36, .28);
  border-color: var(--gold);
}

.bond-form button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #1d1a10;
  padding: 18px 26px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
}

.bond-success {
  margin-top: -8px;
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .bond-form {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* INTEGRATED COMMUNITY BOND CHOICES */
.bond-choice-group {
  grid-column: 1 / -1;
  border: 0;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.bond-choice-group legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.bond-choice {
  position: relative;
  display: grid !important;
  place-items: center;
  gap: 6px !important;
  min-height: 112px;
  padding: 16px 10px;
  border: 2px solid rgba(215, 155, 36, .45);
  border-radius: 18px;
  background: #fffaf1;
  cursor: pointer;
  text-align: center;
}

.bond-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bond-choice span {
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bond-choice strong {
  font-size: clamp(28px, 7vw, 42px);
  color: var(--gold);
  line-height: 1;
}

.bond-choice:has(input:checked) {
  background: var(--green);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(1, 53, 31, .22);
}

.bond-choice:has(input:checked) span,
.bond-choice:has(input:checked) strong {
  color: #ffffff;
}

.bond-choice:has(input:focus-visible) {
  outline: 3px solid rgba(215, 155, 36, .45);
}

.bond-form .bond-choice input {
  width: auto;
  border: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .bond-choice-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bond-choice:first-of-type {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .bond-choice-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .bond-choice:first-of-type {
    grid-column: auto;
  }
}


/* COMMUNITY BOND CUSTOM AMOUNT + REQUIRED SELECTION */
.custom-bonds-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  gap: 18px;
  align-items: end;
}

.custom-bonds-label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
}

.bond-total-display {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 82px;
  border-radius: 18px;
  background: var(--green);
  color: #ffffff;
  border: 2px solid var(--gold);
  padding: 16px 18px;
  text-align: center;
}

.bond-total-display span {
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
  color: rgba(255, 250, 241, .88);
}

.bond-total-display strong {
  color: var(--gold);
  font-size: clamp(30px, 7vw, 46px);
  line-height: 1;
}

.bond-required-note {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(180, 30, 30, .08);
  border: 1px solid rgba(180, 30, 30, .25);
  color: #8a1f1f;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.bond-form.needs-bond-choice .bond-required-note {
  display: block;
}

.bond-form.needs-bond-choice .bond-choice-group,
.bond-form.needs-bond-choice .custom-bonds-label input {
  outline: 3px solid rgba(180, 30, 30, .20);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .custom-bonds-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* TOP NAVIGATION FIX */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  overflow: visible !important;
}

.logo-brand {
  flex: 0 0 auto;
}

.nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  min-width: 0;
}

.nav a {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1;
}

/* Use the hamburger menu earlier so links never split into bad two-line words. */
@media (max-width: 1180px) {
  .nav-toggle {
    display: block !important;
  }

  .nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(1, 53, 31, .16) !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.18) !important;
    padding: 12px !important;
    gap: 0 !important;
    z-index: 999 !important;
  }

  .nav.open {
    display: grid !important;
  }

  .nav a {
    display: block !important;
    color: var(--green) !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(1, 53, 31, .10) !important;
    padding: 16px 14px !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    opacity: 1 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
  }

  .nav a:last-child {
    border-bottom: 0 !important;
  }
}

@media (min-width: 1181px) {
  .nav-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
  }
}


/* POLISHED COMMUNITY BOND FORM LAYOUT */
.bond-form {
  align-items: start;
}

.custom-bonds-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  margin: 8px 0 2px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 241, .7);
  border: 1px solid rgba(215, 155, 36, .28);
}

.custom-bonds-label {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
}

.custom-bonds-label span {
  line-height: 1.25;
}

.custom-bonds-label input {
  height: 64px;
  align-self: end;
}

.bond-total-display {
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 6px;
  border-radius: 18px;
  background: var(--green);
  color: #ffffff;
  border: 2px solid var(--gold);
  padding: 18px;
  text-align: center;
}

.bond-total-display span {
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
  color: rgba(255, 250, 241, .88);
}

.bond-total-display strong {
  color: var(--gold);
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1;
}

.bond-notes-field {
  grid-column: 1 / -1;
}

.bond-form textarea {
  width: 100%;
  border: 2px solid rgba(1, 53, 31, .18);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
  resize: vertical;
  min-height: 116px;
}

.bond-form textarea:focus {
  outline: 3px solid rgba(215, 155, 36, .28);
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .custom-bonds-row {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .bond-total-display {
    min-height: 110px;
  }
}


/* HOMELESS SIGNUP FORM LAYOUT FIX */
.signup-form label:has(input[name="email"]) {
  grid-column: auto;
}

.signup-form label:has(input[name="city"]) {
  grid-column: auto;
}

.signup-notes-field {
  grid-column: 1 / -1;
}

.signup-form textarea {
  width: 100%;
  border: 2px solid rgba(1, 53, 31, .18);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
  resize: vertical;
  min-height: 112px;
}

.signup-form textarea:focus {
  outline: 3px solid rgba(215, 155, 36, .28);
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .signup-notes-field {
    grid-column: auto;
  }
}


/* COMMUNITY BOND ADDRESS + MAILING NOTICE */
.bond-address-field {
  grid-column: 1 / -1;
}

.bond-mailing-notice {
  margin: 24px 0 0;
  padding: 22px;
  border-radius: 20px;
  background: var(--green);
  color: #ffffff;
  border: 2px solid var(--gold);
  display: grid;
  gap: 8px;
  text-align: center;
}

.bond-mailing-notice strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.15;
}

.bond-mailing-notice span {
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

.bond-mailing-notice em {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
}


/* COMMUNITY BOND PROVINCE FIELD */
.bond-form label:has(input[name="province"]) {
  grid-column: auto;
}

@media (max-width: 760px) {
  .bond-form label:has(input[name="province"]) {
    grid-column: auto;
  }
}


/* FUTURE LOCATION EVENT DATE */
.location-date {
  display: block;
  margin-top: 8px;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--gold);
  font-size: clamp(15px, 2.4vw, 18px);
}


/* GRANDMOTHER / HOMELESS SIGNUP EXPANDED FORM */
.homeless-signup-expanded {
  align-items: start;
}

.signup-type-group {
  grid-column: 1 / -1;
  border: 0;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.signup-type-group legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 16px;
}

.signup-type-option {
  position: relative;
  display: grid !important;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  border: 3px solid rgba(215, 155, 36, .58);
  border-radius: 20px;
  background: #fffaf1;
  cursor: pointer;
  text-align: center;
}

.signup-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.signup-type-option span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.signup-type-option:has(input:checked) {
  background: var(--green);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(1, 53, 31, .22);
}

.signup-type-option:has(input:checked) span {
  color: #ffffff;
}

.signup-type-option:has(input:focus-visible) {
  outline: 4px solid rgba(215, 155, 36, .35);
}

.signup-address-field,
.treaty-select-field,
.signup-notes-field,
.chaperone-note {
  grid-column: 1 / -1;
}

.chaperone-note {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(1, 53, 31, .07);
  border: 1px solid rgba(1, 53, 31, .14);
  text-align: left;
  color: var(--green);
}

.chaperone-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4vw, 32px);
  line-height: 1.1;
}

.chaperone-note span {
  font-family: Arial, sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 2px solid rgba(1, 53, 31, .18);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: #fffaf1;
}

.signup-form select {
  min-height: 58px;
}

.signup-form textarea {
  resize: vertical;
  min-height: 112px;
}

.signup-form select:focus,
.signup-form textarea:focus {
  outline: 3px solid rgba(215, 155, 36, .28);
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .signup-type-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .signup-address-field,
  .treaty-select-field,
  .signup-notes-field,
  .chaperone-note {
    grid-column: auto;
  }
}


/* Signup type clearer selected state */
.signup-type-option {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.signup-type-option:hover {
  transform: translateY(-1px);
}

.signup-type-option.is-selected {
  background: var(--green);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(1, 53, 31, .24), 0 0 0 4px rgba(215, 155, 36, .18);
}

.signup-type-option.is-selected span {
  color: #ffffff;
}

.signup-type-option:not(.is-selected) {
  background: #fffaf1;
}

.signup-type-option.is-unselected {
  opacity: .78;
}

.signup-type-option.is-unselected span {
  color: var(--green);
}

.chaperone-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.chaperone-section[hidden] {
  display: none !important;
}

.chaperone-section .chaperone-note {
  grid-column: 1 / -1;
  margin: 0;
}

.chaperone-section label:last-child {
  grid-column: 1 / 2;
}

@media (max-width: 760px) {
  .chaperone-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .chaperone-section .chaperone-note,
  .chaperone-section label:last-child {
    grid-column: auto;
  }
}


.main-tent-events-card {
  display: flex;
  flex-direction: column;
}

.main-tent-poster {
  margin-top: auto;
  padding-top: 18px;
}

.main-tent-poster img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 18px;
  border: 2px solid rgba(215, 155, 36, .45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

@media (max-width: 900px) {
  .main-tent-poster img {
    max-width: 360px;
  }
}


/* MAIN / TREATY TENT CARD ALIGNMENT */
.schedule-summary-54 {
  align-items: stretch;
}

.schedule-summary-54 article {
  display: flex;
  flex-direction: column;
}

.schedule-summary-54 .total-line {
  margin-top: auto;
}

.main-tent-poster {
  margin-top: 18px;
  padding-top: 0;
  display: grid;
  place-items: center;
}

.main-tent-poster img {
  width: min(100%, 240px);
  max-width: 240px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .schedule-summary-54 {
    align-items: start;
  }

  .schedule-summary-54 article {
    min-height: auto;
  }

  .schedule-summary-54 .total-line {
    margin-top: 18px;
  }

  .main-tent-poster img {
    width: min(100%, 280px);
    max-width: 280px;
  }
}


/* MOBILE NAVIGATION PANEL FIX */
@media (max-width: 1180px) {
  .site-header {
    overflow: visible !important;
    z-index: 1000 !important;
  }

  .nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(1, 53, 31, .14) !important;
    border-radius: 0 0 20px 20px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18) !important;
    padding: 10px !important;
    gap: 0 !important;
    z-index: 9999 !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    align-items: stretch !important;
  }

  .nav.open {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .nav a {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
    color: var(--green) !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(1, 53, 31, .10) !important;
    padding: 15px 12px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .05em !important;
    line-height: 1.15 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .nav a:last-child {
    border-bottom: 0 !important;
  }

  .nav a:hover,
  .nav a:focus {
    background: rgba(215, 155, 36, .14) !important;
    color: var(--green) !important;
  }
}

@media (max-width: 420px) {
  .nav {
    left: 10px !important;
    right: 10px !important;
  }

  .nav a {
    font-size: 16px !important;
    padding: 14px 10px !important;
  }
}


/* CONTACT SECTION: SPONSOR + ARTIST PACKAGE */
.contact-stack {
  display: grid;
  gap: 28px;
  max-width: 900px;
}

.artist-package-card {
  background:
    linear-gradient(180deg, rgba(215, 155, 36, .10), rgba(255,255,255,1)),
    #ffffff;
}

.artist-package-card h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.artist-package-card p strong {
  color: var(--green);
}

@media (max-width: 760px) {
  .contact-stack {
    gap: 22px;
  }
}


/* ARTIST CALL SECTION */
.artists-call {
  background:
    radial-gradient(circle at 50% 0%, rgba(212,162,40,.20), transparent 42%),
    linear-gradient(180deg, #18120a 0%, #0f0d09 100%);
  color: white;
  border-top: 1px solid rgba(212,162,40,.25);
}
.artists-call h2 { color: white; }
.artist-box strong { color: var(--gold); }
.artist-promise-card ol { gap: 8px; }
.artist-promise-card li { margin-bottom: 2px; }
@media (max-width: 760px) {
  .artists-call .two-col { gap: 28px; }
}

/* SCHEDULE READABILITY UPDATE — stack sections vertically at every screen size */
.detailed-schedule .tent-window,
.detailed-schedule .closed-tents-note,
.detailed-schedule .dual-schedule {
  grid-template-columns: minmax(0, 1fr);
}

.detailed-schedule .tent-window .tent-column + .tent-column,
.detailed-schedule .closed-tents-note div + div,
.detailed-schedule .dual-schedule .tent-column + .tent-column {
  border-left: 0;
  border-top: 3px solid rgba(215, 155, 36, .55);
}

.detailed-schedule .tent-column,
.detailed-schedule .closed-tents-note > div {
  width: 100%;
}

.detailed-schedule .main-tent {
  background: linear-gradient(180deg, rgba(215, 155, 36, .12), rgba(255,255,255,.35));
}

.detailed-schedule .schedule-summary {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .detailed-schedule .tent-column,
  .detailed-schedule .closed-tents-note > div,
  .detailed-schedule .sequence-day-card .fire-window,
  .detailed-schedule .day-zero-card .settle-block {
    padding: 22px;
  }

  .detailed-schedule .schedule-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .detailed-schedule .tent-column,
  .detailed-schedule .closed-tents-note > div,
  .detailed-schedule .sequence-day-card .fire-window,
  .detailed-schedule .day-zero-card .settle-block {
    padding: 18px 16px;
  }

  .detailed-schedule .schedule-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .detailed-schedule .schedule-item time {
    width: fit-content;
    min-width: 82px;
  }

  .detailed-schedule .tent-window h3,
  .detailed-schedule .closed-tents-note h3,
  .detailed-schedule .fire-window h3,
  .detailed-schedule .settle-block h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}
