/* ==========================================================================
   AJ2028 NSW Contingent — site stylesheet
   Palette, type and the wave motif are taken directly from the AJ2028 NSW
   Contingent Brand Kit. Heading font uses Baloo 2 as a rounded stand-in for
   the brand's "Blueberry" display font (not a webfont), matching the
   approach already used in the email signature generator tool.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,600&display=swap');

:root {
  --teal: #00B5CC;
  --teal-deep: #048A9C;
  --navy: #28265C;
  --navy-live: #262661; /* exact value used on the live Cost page */
  --white: #FFFFFF;
  --waratah-red: #FF0D40;
  --scouts-green: #0CAE4B;
  --ink: #1B1A33;
  --paper: #FBFDFE;
  --line: #D8EEF2;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", Arial, Helvetica, sans-serif;

  --radius: 18px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--teal); text-decoration-thickness: 2px; }
a:hover { color: var(--navy); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- Skip link / focus ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-deep);
  color: var(--white);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--waratah-red);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { height: 78px; width: auto; }
.brand-text {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--teal);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: var(--teal-deep);
  color: var(--white);
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-family: var(--font-body);
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; padding-bottom: 12px; }
  .site-header .container { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .brand img { height: 52px; }
  .brand-text small { display: none; }
  .brand-text { font-size: 0.95rem; }
}

/* ---------- Hero ---------- */
.hero {
  background-color: var(--teal-deep);
  background-image: url("../images/brand/wave-band.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.hero h1 { color: var(--white); }
.hero .eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
}
.hero p.lede {
  font-size: 1.15rem;
  max-width: 60ch;
  color: #E7F8FB;
}
.hero-wave { display: block; width: 100%; height: auto; }

.countdown { display: flex; flex-wrap: wrap; gap: 14px; }
.countdown-unit {
  background: var(--navy);
  border-radius: 12px;
  padding: 14px 22px;
  min-width: 84px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.countdown-label {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A9A6D6;
}
@media (max-width: 480px) {
  .countdown-unit { padding: 10px 14px; min-width: 62px; }
  .countdown-value { font-size: 1.6rem; }
}

.section-navy { overflow: hidden; }

.page-hero {
  background-color: var(--teal-deep);
  background-image: url("../images/brand/wave-band.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: var(--white);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.2em; }
.page-hero .lede { color: #E7F8FB; max-width: 65ch; margin: 0; }

/* ---------- Eligibility tabs ---------- */
.elig-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}
.elig-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.elig-tab:hover { transform: translateY(-1px); border-color: var(--teal); }
.elig-tab.active {
  background: var(--elig-color, var(--teal));
  border-color: var(--elig-color, var(--teal));
  color: var(--white);
}
.elig-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--elig-color, var(--teal));
  flex-shrink: 0;
}
.elig-tab.active .elig-dot { background: var(--white); }

.elig-panel { display: none; }
.elig-panel.active { display: block; }
.elig-panel-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,26,51,0.08);
}
.elig-panel-head {
  padding: 28px 28px 22px;
  background: var(--elig-color, var(--teal));
}
.elig-panel-head .elig-eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--white);
  background: rgba(0,0,0,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.elig-panel-head h3 { color: var(--white); margin: 0; }
.elig-panel-body { padding: 26px 28px 30px; }
.elig-panel-body > p:first-child { font-size: 1.05rem; }

/* ---------- Photo & video placeholders ---------- */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8fa, #bfe9ef);
  border: 2px dashed var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--teal-deep);
  padding: 20px;
  aspect-ratio: 4 / 3;
}
.photo-placeholder.square { aspect-ratio: 1 / 1; }
.photo-placeholder.wide { aspect-ratio: 16 / 9; }

.photo-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.photo-img.square { aspect-ratio: 1 / 1; }
.photo-img.wide { aspect-ratio: 16 / 9; }
.photo-placeholder .ph-icon { font-size: 2.4rem; margin-bottom: 8px; line-height: 1; }
.photo-placeholder .ph-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.photo-placeholder .ph-caption { font-size: 0.8rem; opacity: 0.8; margin-top: 4px; max-width: 24ch; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 780px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Jambassador testimonials ---------- */
.jambassador-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .jambassador-grid { grid-template-columns: 1fr; }
}
.jambassador-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27,26,51,0.08);
}
.jambassador-quote { padding: 22px 22px 20px; }
.jambassador-quote p { font-style: italic; color: var(--ink); margin-bottom: 14px; }
.jambassador-name { font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.jambassador-role { font-size: 0.85rem; color: var(--teal-deep); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--waratah-red); color: var(--white); }
.btn-primary:hover { background: #e00b39; color: var(--white); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #009fb3; color: var(--white); }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-alt { background: #F0FBFC; }
.section-navy {
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
}
.section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow-label {
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; align-items: start; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.price-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
}
.price-card h3 { color: var(--white); font-size: 1.1rem; }
.price-card .age { opacity: 0.9; margin-bottom: 16px; }
.price-tag {
  display: block;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.8rem;
  padding: 10px;
  border-radius: 12px;
  margin: 16px 0;
}
.price-card.navy { background: var(--navy-live); }
.price-card.teal { background: var(--teal); }
.price-card.red { background: var(--waratah-red); }

.price-card ul {
  text-align: left;
  padding-left: 1.1em;
  margin: 0;
}

/* ---------- Team ---------- */
.team-member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.team-member img {
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--line);
}
.team-member blockquote {
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--teal);
  margin: 12px 0 0;
  padding-left: 16px;
}
@media (max-width: 620px) {
  .team-member { grid-template-columns: 1fr; }
  .team-member img { max-width: 180px; }
}

.intro-quote {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  border-left: 6px solid var(--teal);
  padding-left: 20px;
  margin: 0 0 32px;
}

/* ---------- FAQ ---------- */
.faq-jump { display: flex; flex-wrap: wrap; gap: 10px 8px; padding: 0; list-style: none; margin: 0 0 40px; }
.faq-jump li { list-style: none; }
.faq-jump a {
  display: inline-block;
  line-height: 1.2;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.faq-jump a:hover { background: var(--teal); color: var(--white); }

.faq-category { margin-bottom: 48px; scroll-margin-top: 100px; }
.faq-category > h2 {
  border-bottom: 3px solid var(--teal);
  padding-bottom: 8px;
}

details.faq-item {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 4px 20px;
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 800;
}
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item .faq-answer { padding-bottom: 16px; color: var(--ink); }
details.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  margin: 16px 0 24px;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
th { background: var(--teal-deep); color: var(--white); font-family: var(--font-display); font-weight: 600; }
td.num, th.num { text-align: right; }

.note-box {
  background: #FFF6E8;
  border: 2px solid #F1C878;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
.note-box strong { color: #8A5A00; }

.gap-box {
  background: #FFE9EC;
  border: 2px solid var(--waratah-red);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
}
.gap-box strong { color: var(--waratah-red); }

/* ---------- Lists ---------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--elig-color, var(--scouts-green));
}

/* ---------- Daily Bean archive articles ---------- */
.bean-body { max-width: 820px; margin: 0 auto; }
.bean-body > img:first-child {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.bean-body h3 { color: var(--navy); margin-top: 1.6em; }
.bean-body h4 { color: var(--teal); margin-top: 1.4em; }
.bean-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.bean-body ul li {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.bean-body ul li img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.bean-body ul li img:focus-visible {
  outline: 3px solid var(--waratah-red);
  outline-offset: -3px;
}
.bean-body ul li h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
  margin: 0;
  padding: 8px 10px;
}
.bean-body hr { border: 0; border-top: 2px solid var(--line); margin: 32px 0; }

/* ---------- Lightbox (click-to-expand photos) ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 18, 41, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: var(--white);
  color: var(--navy);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--teal); color: var(--white); }

/* ---------- Race to Jamboree dashboard ---------- */
.rtj-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .rtj-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
.rtj-kpi-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.rtj-kpi-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.rtj-kpi-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-deep, var(--teal));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rtj-kpi-sub { font-size: 0.78rem; color: #666; margin-top: 4px; }

.rtj-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.rtj-tab {
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.rtj-tab.active { background: var(--teal); color: var(--white); }
.rtj-tab:hover:not(.active) { background: #E3F7FA; }

.rtj-view { display: none; }
.rtj-view.active { display: block; }

.rtj-bar-row {
  display: grid;
  grid-template-columns: 190px 1fr 70px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 4px;
  border-radius: 10px;
}
.rtj-bar-row:hover { background: #F0FBFC; }
.rtj-bar-rank { font-weight: 800; color: var(--teal-deep, var(--teal)); text-align: right; margin-right: 4px; }
.rtj-bar-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rtj-bar-track { background: var(--paper, #F2FAFB); border-radius: 999px; height: 22px; overflow: hidden; }
.rtj-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transition: width 0.6s ease;
}
.rtj-bar-value { font-size: 0.85rem; font-weight: 800; color: var(--navy); text-align: right; }
@media (max-width: 620px) {
  .rtj-bar-row { grid-template-columns: 110px 1fr 54px; }
  .rtj-bar-label { font-size: 0.76rem; }
}

.rtj-donut-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.rtj-donut-svg { width: 260px; height: 260px; flex-shrink: 0; }
.rtj-donut-legend { list-style: none; padding: 0; margin: 0; }
.rtj-donut-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}
.rtj-donut-legend li:hover { background: #F0FBFC; }
.rtj-donut-swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.rtj-donut-pct { color: #666; font-weight: 600; margin-left: auto; padding-left: 12px; }

.rtj-table { width: 100%; }
.rtj-table th {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 24px;
}
.rtj-table th[aria-sort]::after {
  content: "\2195";
  position: absolute;
  right: 8px;
  opacity: 0.5;
}
.rtj-table th[aria-sort="ascending"]::after { content: "\2191"; opacity: 1; }
.rtj-table th[aria-sort="descending"]::after { content: "\2193"; opacity: 1; }
.rtj-table tr { cursor: pointer; }
.rtj-table tbody tr:hover { background: #F0FBFC; }

.rtj-detail {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  display: none;
}
.rtj-detail.active { display: block; }
.rtj-detail h3 { color: var(--white); margin-bottom: 4px; }
.rtj-detail .rtj-detail-close {
  float: right;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
}
.rtj-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .rtj-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
.rtj-detail-stat { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 14px; text-align: center; }
.rtj-detail-stat .num { font-family: var(--font-display); font-size: 1.5rem; }
.rtj-detail-stat .lbl { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--teal-deep);
  background-image: url("../images/brand/wave-band.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #C9E8ED;
  padding: 0 0 24px;
}
.site-footer .container { padding-top: 32px; }
.site-footer a { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-logo { height: 56px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background-color: var(--teal);
  background-image: url("../images/brand/wave-band.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }

/* ---------- Draft flag ---------- */
.draft-flag {
  background: var(--waratah-red);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

