/* ==========================================================================
   Wolkara Elders Group — stylesheet
   Palette and fonts extracted from the live Canva-designed Google Site.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Colours */
  --cream: #ECE5D2;
  --cream-light: #F2E9D0;
  --cream-dark: #DDD3BB;
  --green-deep: #2F3D1F;
  --green-mid: #3D4A2A;
  --terracotta: #B05130;
  --terracotta-light: #C9684A;
  --brown-dark: #3D2A1E;
  --brown-deep: #5C2A1F;
  --tan: #C9A98C;
  --white: #FFFFFF;

  /* Fonts */
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', 'Kalam', cursive;

  /* Sizing */
  --container-max: 1180px;
  --section-pad-y: clamp(3rem, 8vw, 6rem);
  --section-pad-x: clamp(1.25rem, 5vw, 3rem);
  --radius: 6px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--brown-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brown-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--terracotta);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.section { padding: var(--section-pad-y) 0; }

.section--cream { background: var(--cream); color: var(--brown-dark); }
.section--green { background: var(--green-deep); color: var(--cream-light); }
.section--green h2,
.section--green h3 { color: var(--cream-light); }
.section--green a:not(.btn) { color: var(--tan); }
.section--green a:not(.btn):hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.6rem var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--brown-dark);
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.brand span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brown-dark);
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .brand span { display: none; }
}

.nav-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: none;
  color: var(--brown-dark);
}

.nav-toggle svg { display: block; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  color: var(--brown-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
  font-weight: 700;
  color: var(--green-deep);
}

.main-nav a:hover { color: var(--terracotta); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }
  .main-nav a {
    display: block;
    padding: 0.85rem var(--section-pad-x);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
}

/* ---------- Hero section (uses PDF backgrounds) ---------- */
.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--cream);
  min-height: clamp(420px, 70vh, 760px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

.hero--home          { background-image: url('../images/backgrounds/bg-home.jpg'); aspect-ratio: 1241 / 1755; max-height: 90vh; }
.hero--about         { background-image: url('../images/backgrounds/bg-about.jpg'); }
.hero--programs      { background-image: url('../images/backgrounds/bg-programs.jpg'); }
.hero--cultural-education { background-image: url('../images/backgrounds/bg-home-secondary.jpg'); }
.hero--community     { background-image: url('../images/backgrounds/bg-community.jpg'); }
.hero--get-involved  { background-image: url('../images/backgrounds/bg-get-involved.jpg'); }
.hero--volunteers    { background-image: url('../images/backgrounds/bg-story.jpg'); }
.hero--membership    { background-image: url('../images/backgrounds/bg-about.jpg'); }
.hero--contact       { background-image: url('../images/backgrounds/bg-contact.jpg'); }

.hero-title {
  /* Hidden visually but kept for screen readers. The PDF background already contains the styled title. */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* These pages reuse backgrounds without a baked-in title, so we show the H1 visibly */
.hero--contact .hero-title,
.hero--volunteers .hero-title,
.hero--membership .hero-title,
.hero--cultural-education .hero-title {
  position: static;
  width: auto;
  height: auto;
  padding: 0.7rem 1.6rem;
  margin: 0 auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  flex: 1;
  align-self: center;
  max-width: 800px;
  background: rgba(47, 61, 31, 0.86);
  color: var(--cream-light);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.hero--membership .hero-title {
  background: rgba(176, 81, 48, 0.88);
}

.hero--cultural-education .hero-title {
  background: rgba(47, 61, 31, 0.88);
}

/* ---------- Welcome / dark green feature panel ---------- */
.feature-panel {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: var(--section-pad-y) 0;
  position: relative;
}

.feature-panel h2 { color: var(--cream-light); }

.panel-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

.panel-content.left { text-align: left; }

.panel-content p {
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ---------- Two-column block (logo art + text) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}

.two-col .col-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.two-col.alt .col-image { order: 2; }
.two-col.alt .col-text  { order: 1; }

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--brown-deep);
  border-left: 3px solid var(--terracotta);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.5rem 0;
  max-width: 640px;
}

.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  margin-top: 0.6rem;
  color: var(--terracotta);
  font-weight: 600;
}

.section--green .pull-quote,
.feature-panel .pull-quote {
  color: var(--cream-light);
  border-left-color: var(--tan);
}

.section--green .pull-quote cite,
.feature-panel .pull-quote cite { color: var(--tan); }

/* ---------- Values grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 0 var(--section-pad-x);
}

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

.value-block h3 {
  color: var(--cream-light);
  margin-bottom: 0.6rem;
}

.section--green .value-block h3 { color: var(--tan); }

/* ---------- Team cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 820px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
}

.team-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-card .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card .photo.placeholder::after {
  content: "Photo";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 0.9rem;
  opacity: 0.45;
}

.team-card .meta {
  padding: 1.2rem 1rem;
}

.team-card .meta h3 {
  color: var(--brown-deep);
  margin: 0 0 0.2rem;
  font-size: 1.35rem;
}

.team-card .meta .role {
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
}

/* ---------- Programs (photo + text rows) ---------- */
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto 4rem;
  padding: 0 var(--section-pad-x);
}

.program-row:last-child { margin-bottom: 0; }

.program-row.alt .col-text { order: 2; }
.program-row.alt .col-image { order: 1; }

@media (max-width: 820px) {
  .program-row,
  .program-row.alt {
    grid-template-columns: 1fr;
  }
  .program-row .col-image,
  .program-row.alt .col-image { order: 0; }
}

.feature-panel { color: var(--cream-light); }
.feature-panel h2,
.feature-panel h3 { color: var(--cream-light); }
.feature-panel a:not(.btn) { color: var(--tan); }
.feature-panel a:not(.btn):hover { color: var(--white); }

.feature-panel .program-row h2 { color: var(--cream-light); margin-bottom: 1rem; }

/* Film-strip frame for program photos */
.film-strip {
  position: relative;
  padding: 18px 12px;
  background: #1a1a1a;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background-image:
    radial-gradient(circle at 6px 6px, var(--cream-light) 3.5px, transparent 4px);
  background-size: 16px 12px;
  background-repeat: repeat-x;
}

.film-strip::before { top: 3px; }
.film-strip::after  { bottom: 3px; }

.film-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.film-strip.placeholder {
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}

.film-strip.placeholder .ph-fill {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 0.95rem;
  opacity: 0.55;
}

/* ---------- CTA buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover { background: var(--brown-deep); color: var(--white); transform: translateY(-1px); }

.btn--tan   { background: var(--tan); color: var(--brown-dark); }
.btn--tan:hover { background: var(--terracotta); color: var(--white); }

.btn--green { background: var(--green-deep); color: var(--cream-light); }
.btn--green:hover { background: var(--terracotta); color: var(--white); }

/* ---------- Get Involved CTA cards ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 3rem auto;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 900px) { .cta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--brown-dark);
}

.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--brown-dark);
}

.cta-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px dashed var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--terracotta);
}

.cta-card .icon svg { width: 32px; height: 32px; }

.cta-card h3 {
  color: var(--brown-deep);
  font-size: 1.15rem;
  margin: 0;
}

/* ---------- Video / video placeholder ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrap.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  background: linear-gradient(135deg, var(--green-deep), var(--brown-deep));
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.video-wrap.placeholder strong { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--cream-light); font-family: var(--font-display); }

/* ---------- Gallery ---------- */
.gallery {
  column-count: 4;
  column-gap: 0.8rem;
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 1000px) { .gallery { column-count: 3; } }
@media (max-width: 720px)  { .gallery { column-count: 2; } }
@media (max-width: 420px)  { .gallery { column-count: 1; } }

.gallery .item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

.gallery .item.placeholder {
  aspect-ratio: var(--ar, 4 / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ---------- Partners strip ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
  justify-content: center;
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  padding: 0 var(--section-pad-x);
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  flex: 0 0 auto;
}

.partner img {
  max-width: 160px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.2s, transform 0.2s;
}

.partner img:hover { filter: none; transform: scale(1.05); }

.partner.placeholder {
  width: 160px;
  height: 80px;
  background: var(--cream-light);
  border: 1px dashed var(--cream-dark);
  border-radius: var(--radius);
  color: var(--brown-dark);
  font-size: 0.8rem;
  opacity: 0.7;
  padding: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

/* ---------- Contact info card ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  align-items: start;
}

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

.contact-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
  color: var(--brown-deep);
  font-size: 1.3rem;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-card h3:first-child { margin-top: 0; }

.contact-card a:not(.btn) {
  color: var(--terracotta);
  font-weight: 500;
}

/* Contact card rows — icon + label/value */
.contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-row:last-child { border-bottom: 0; padding-bottom: 0.4rem; }
.contact-row:first-child { padding-top: 0; }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-detail h3 {
  font-size: 1.05rem;
  color: var(--brown-deep);
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

/* ---------- Acknowledgement of Country (with flags) ---------- */
.acknowledgement {
  text-align: center;
}

.flags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.flag {
  width: 88px;
  height: 58px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: block;
}

/* SVG flags inline — defined per-page */

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: var(--cream-light);
  padding: 2.5rem var(--section-pad-x);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer .socials {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 1rem 0;
}

.site-footer .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  transition: background 0.2s;
}

.site-footer .socials a:hover { background: rgba(255, 255, 255, 0.18); color: var(--white); }

.site-footer .socials svg { width: 20px; height: 20px; }

.site-footer .credit {
  opacity: 0.7;
  font-size: 0.82rem;
  margin-top: 1rem;
}

.site-footer .credit a { color: inherit; text-decoration: underline; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Cultural Education: program cards ---------- */
.program-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

@media (max-width: 720px) {
  .program-card-grid { grid-template-columns: 1fr; }
}

.program-card {
  background: var(--cream-light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--terracotta);
}

.program-card:nth-child(2) {
  border-top-color: var(--green-deep);
}

.program-card__header {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.program-card__header h3 {
  color: var(--brown-deep);
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.program-card__meta {
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
  font-weight: 500;
}

.program-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-card__list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 1rem;
  color: var(--brown-dark);
}

.program-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(176, 81, 48, 0.18);
}

.program-card:nth-child(2) .program-card__list li::before {
  background: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(47, 61, 31, 0.18);
}

/* ---------- Cultural Education: booking contact ---------- */
.booking-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
}

@media (max-width: 720px) {
  .booking-contact { grid-template-columns: 1fr; gap: 1.4rem; }
}

.booking-contact > div {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 1.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-contact strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--tan);
  font-weight: 600;
}

/* ---------- Check-list (used on Volunteers and Membership) ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 560px;
}

.check-list li {
  padding: 0.7rem 0 0.7rem 2.2rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.section--cream .check-list li::before {
  background-color: var(--terracotta);
}

.feature-panel .check-list li::before {
  background-color: var(--tan);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F3D1F' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ---------- On-site application forms ---------- */
.application-form {
  max-width: 720px;
  margin: 2.5rem auto 0;
  background: var(--cream-light);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-panel .application-form {
  /* The card stays cream even inside the green panel */
  color: var(--brown-dark);
}

.application-form .form-group {
  margin-bottom: 1.4rem;
}

.application-form label,
.application-form legend {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
  margin-bottom: 0.5rem;
}

.application-form legend {
  margin-bottom: 0.7rem;
  padding: 0;
}

.application-form .required {
  color: var(--terracotta);
  margin-left: 0.1rem;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="date"],
.application-form textarea,
.application-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brown-dark);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  outline: 0;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(176, 81, 48, 0.15);
}

.application-form textarea {
  min-height: 100px;
  resize: vertical;
}

.application-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.application-form .radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.application-form .radio-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--brown-dark);
  margin: 0;
  cursor: pointer;
  padding: 0.4rem 0;
}

.application-form .radio-group input[type="radio"],
.application-form .radio-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--terracotta);
  cursor: pointer;
  flex-shrink: 0;
}

.application-form .checkbox-single {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--brown-dark);
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
  padding: 0.4rem 0;
}

.application-form .checkbox-single input {
  width: 18px;
  height: 18px;
  accent-color: var(--terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.application-form .form-help {
  display: block;
  font-size: 0.85rem;
  color: var(--brown-dark);
  opacity: 0.7;
  margin-top: 0.3rem;
  font-weight: 400;
}

.application-form .form-submit {
  margin-top: 2rem;
  text-align: center;
}

.application-form .form-submit .btn {
  font-size: 1.05rem;
  padding: 1rem 2.4rem;
}

.application-form .form-intro {
  margin: 0 0 1.8rem;
  font-size: 0.95rem;
  color: var(--brown-dark);
  opacity: 0.85;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Two-column field rows on wider screens */
.application-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 580px) {
  .application-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
