/*
Theme Name: Muurrbay Language & Culture
Theme URI: https://muurrbay.org.au
Author: Muurrbay Aboriginal Language and Culture Co-operative
Author URI: https://muurrbay.org.au
Description: A modern, indigenous-inspired theme for Muurrbay Aboriginal Language and Culture Co-operative. Reflects the colours and spirit of Gumbaynggirr Country — coastal NSW.
Version: 8.6.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muurrbay
Tags: indigenous, language, culture, aboriginal, responsive, accessibility-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — MUURRBAY COLOUR SYSTEM
   Drawn from Gumbaynggirr Country: coastal NSW
   ============================================================ */
:root {
  /* Primary palette */
  --clr-forest:    #111111;   /* near-black — bold, strong, modern */
  --clr-ochre:     #E06A2A;   /* red ironstone */   /* red ironstone ochre */
  --clr-purple:   #9B7AB0;   /* from Muurrbay logo, lightened for text */
  --clr-gold:      #C9921A;   /* sandstone gold / spinifex */
  --clr-teal:      #1B5C6B;   /* ocean / deep river pools */
  --clr-bark:      #1A0F08;   /* dark river bark / near-black */
  --clr-earth:     #8B3A2A;   /* red earth / deeper ochre */

  /* Art circle palette — from Muurrbay artwork */
  --clr-art-orange:  #E06A2A;
  --clr-art-purple:  #7A6B8A;
  --clr-art-yellow:  #C8B44A;
  --clr-art-brown:   #7A4E32;
  --clr-art-olive:   #B5A050;
  --clr-art-slate:   #9A8EA0;

  /* Neutral / background */
  --clr-paperbark: #F5EDD6;   /* warm paperbark cream */
  --clr-sand:      #EAD9B8;   /* sandflat warm grey */
  --clr-smoke:     #F0EDE8;   /* light coastal haze */
  --clr-white:     #FFFFFF;

  /* Text */
  --clr-text:      #1C1A17;   /* warm near-black */
  --clr-text-muted:#5C5347;

  /* Typography */
  --font-heading:  'Lora', 'Georgia', serif;
  --font-body:     'Nunito', 'Segoe UI', system-ui, sans-serif;
  --font-mono:     'Courier New', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45,27,14,.12);
  --shadow-md: 0 6px 24px rgba(45,27,14,.15);
  --shadow-lg: 0 12px 40px rgba(45,27,14,.2);

  /* Transitions */
  --transition: 0.25s ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
}

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

a { color: var(--clr-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-ochre); }
a:focus-visible { outline: 3px solid var(--clr-gold); outline-offset: 2px; border-radius: 2px; }

ul, ol { padding-left: 1.5em; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-bark);
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 4px solid var(--clr-ochre);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  background: var(--clr-paperbark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* ============================================================
   DECORATIVE PATTERNS — ABORIGINAL-INSPIRED
   CSS-only dot patterns representing Country and connection
   ============================================================ */
.dot-border {
  position: relative;
}
.dot-border::before {
  content: '';
  display: block;
  height: 8px;
  background-image:
    radial-gradient(circle, var(--clr-ochre) 2px, transparent 2px),
    radial-gradient(circle, var(--clr-gold) 2px, transparent 2px);
  background-size: 24px 8px, 24px 8px;
  background-position: 0 0, 12px 0;
  opacity: 0.7;
}

.dot-border--bottom::after {
  content: '';
  display: block;
  height: 8px;
  background-image:
    radial-gradient(circle, var(--clr-ochre) 2px, transparent 2px),
    radial-gradient(circle, var(--clr-gold) 2px, transparent 2px);
  background-size: 24px 8px, 24px 8px;
  background-position: 0 0, 12px 0;
  opacity: 0.7;
}

/* Concentric circle pattern for feature backgrounds */
.circle-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,98,45,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,146,26,.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(27,92,107,.06) 0%, transparent 45%);
}

/* ============================================================
   CULTURAL SENSITIVITY NOTICE
   ============================================================ */
.cultural-notice {
  background: var(--clr-bark);
  color: var(--clr-paperbark);
  padding: 0.6rem var(--space-md);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.cultural-notice a { color: var(--clr-gold); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111111 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: box-shadow var(--transition);
}


.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-sm);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  height: 52px;
  width: auto;
}

/* Logo blend — removes white background so it sits naturally on dark header/footer */
.site-logo__img-wrap {
  display: flex;
  align-items: center;
}

.site-logo__img-wrap--blend img,
.site-logo__img-wrap--blend .custom-logo {
  height: 58px;
  width: auto;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  object-fit: contain;
}

/* Footer logo — slightly larger */
.footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-logo img,
.footer-logo .custom-logo {
  height: 64px;
  width: auto;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
  object-fit: contain;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-paperbark);
  letter-spacing: 0.01em;
}

.site-logo__tagline {
  font-size: 0.7rem;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Primary navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  height: var(--header-height);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245,237,214,.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: block;
  line-height: var(--header-height);
}

.primary-nav > li > a:hover,
.primary-nav > li > a:focus,
.primary-nav > li.current-menu-item > a,
.primary-nav > li.current-menu-ancestor > a {
  color: var(--clr-gold);
  background: rgba(255,255,255,.06);
}

/* Active indicator bar */
.primary-nav > li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--clr-ochre);
  border-radius: 2px 2px 0 0;
}

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--clr-bark);
  border-top: 3px solid var(--clr-ochre);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 100;
}

.primary-nav > li:hover .sub-menu,
.primary-nav > li:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(245,237,214,.8);
  font-size: 0.875rem;
  transition: color var(--transition), padding-left var(--transition);
}

.primary-nav .sub-menu a:hover {
  color: var(--clr-gold);
  padding-left: 1.75rem;
}

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--clr-ochre);
  color: var(--clr-white) !important;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--clr-earth); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--clr-paperbark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION — FULL-SCREEN IMPACT
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0D0D0D !important;
}

/* Photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}

/* Strong left-side darkness so text is always readable */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,10,10,.98) 0%,
    rgba(10,10,10,.88) 38%,
    rgba(10,10,10,.5)  65%,
    rgba(10,10,10,.1)  100%
  );
}

/* Subtle dot grid */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,146,26,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 1;
}

/* Glowing ochre accent line on left edge */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--clr-ochre) 30%, var(--clr-gold) 70%, transparent);
  z-index: 3;
}

/* ── TEXT CONTENT ── */
.hero__content {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding: var(--space-xl) 0;
}

.hero__language {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-gold);
  font-style: italic;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.hero__heading {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--clr-paperbark);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__heading em {
  font-style: normal;
  color: var(--clr-ochre);
  display: block;
}

/* Animated underline on heading */
.hero__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-ochre), var(--clr-gold));
  border-radius: 3px;
  margin-top: 1rem;
}

.hero__subtext {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245,237,214,.72);
  margin-bottom: var(--space-md);
  max-width: 500px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}



/* ── STATS BAR inside hero bottom ── */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  border-top: 1px solid rgba(224,106,42,.2);
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__stats-inner {
  display: flex;
  align-items: stretch;
}

.hero__stat {
  flex: 1;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(224,106,42,.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: rgba(245,237,214,.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,237,214,.4);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: fadeUpDown 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 16px; height: 16px; }

@keyframes fadeUpDown {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%       { opacity: 0.8; transform: translateY(6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-ochre);
  color: var(--clr-white);
  border-color: var(--clr-ochre);
}
.btn--primary:hover { background: var(--clr-earth); border-color: var(--clr-earth); color: var(--clr-white); }

.btn--secondary {
  background: transparent;
  color: var(--clr-paperbark);
  border-color: rgba(245,237,214,.5);
}
.btn--secondary:hover { background: rgba(245,237,214,.1); border-color: var(--clr-paperbark); color: var(--clr-paperbark); }

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-bark);
  border-color: var(--clr-gold);
}
.btn--gold:hover { background: #b5820f; border-color: #b5820f; color: var(--clr-bark); }

.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--clr-forest);
  color: var(--clr-forest);
  border-radius: var(--radius-sm);
  padding: .6rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.btn--outline-dark:hover { background: var(--clr-forest); color: var(--clr-paperbark); }

.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: var(--space-lg) 0; }
.section--sm { padding: var(--space-md) 0; }
.section--xl { padding: var(--space-xl) 0; }

.section--light { background: var(--clr-smoke); }
.section--cream { background: var(--clr-paperbark); }
.section--smoke { background: var(--clr-smoke); }
.section--forest { background: var(--clr-forest); }
.section--bark   { background: var(--clr-bark); }
.section--teal   { background: var(--clr-teal); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-ochre);
  margin-bottom: 0.75rem;
}

.section__heading {
  color: var(--clr-bark);
  margin-bottom: 1rem;
}

.section__heading--light { color: var(--clr-paperbark); }

.section__intro {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-md);
}

.section__intro--light { color: rgba(245,237,214,.8); }

/* Ochre underline accent */
.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: var(--clr-ochre);
  border-radius: 2px;
}

/* ============================================================
   WELCOME STRIP — GUMBAYNGGIRR WELCOME
   ============================================================ */
.welcome-strip {
  background: var(--clr-ochre);
  color: var(--clr-white);
  padding: var(--space-md) 0;
}

.welcome-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.welcome-strip__text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  opacity: 0.95;
}

.welcome-strip__translation {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* ============================================================
   FEATURE CARDS (Section navigation, like AIATSIS)
   ============================================================ */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--clr-forest);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-card__img { transform: scale(1.06); }

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.92) 0%, rgba(26,58,42,.4) 60%, transparent 100%);
}

.feature-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-ochre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-card__icon svg { width: 20px; height: 20px; fill: white; }

.feature-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 0.4rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--clr-paperbark);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: rgba(245,237,214,.75);
  line-height: 1.55;
}

.feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.feature-card__link::after { content: '→'; transition: transform var(--transition); }
.feature-card:hover .feature-card__link::after { transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: #FFFFFF; }

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-section__media {
  position: relative;
}

.about-section__img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Decorative frame */
.about-section__media::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--clr-ochre);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-section__img { position: relative; z-index: 1; }

.about-section__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--clr-ochre);
  color: white;
  padding: 1.25rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
}
.about-section__badge strong { font-size: 1.75rem; display: block; }

.about-section__quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--clr-forest);
  border-left: 4px solid var(--clr-gold);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   LANGUAGES GRID
   ============================================================ */
.languages-section { background: var(--clr-bark); }

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid rgba(201,146,26,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.language-tile {
  background: rgba(255,255,255,.03);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition);
  cursor: pointer;
  border: 1px solid rgba(201,146,26,.1);
  text-decoration: none;
}
.language-tile:hover { background: rgba(196,98,45,.2); }

.language-tile__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-paperbark);
  line-height: 1.25;
}

.language-tile__region {
  font-size: 0.75rem;
  color: rgba(245,237,214,.5);
  line-height: 1.4;
}

.language-tile__dot {
  width: 8px;
  height: 8px;
  background: var(--clr-ochre);
  border-radius: 50%;
  margin-top: auto;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--clr-ochre);
  padding: var(--space-md) 0;
  color: white;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.85rem;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* ============================================================
   NEWS / BLOG SECTION
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--clr-forest) 0%, var(--clr-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__date {
  font-size: 0.78rem;
  color: var(--clr-ochre);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--clr-bark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.news-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.news-card__link:hover { color: var(--clr-ochre); }
.news-card__link::after { content: '→'; transition: transform var(--transition); }
.news-card:hover .news-card__link::after { transform: translateX(3px); }

/* ============================================================
   PUBLICATIONS / SHOP STRIP
   ============================================================ */
.publications-strip {
  background: #1A0E06;
  padding: var(--space-lg) 0;
}

.publications-strip__inner {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.publications-strip__books {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.book-cover {
  width: 100px;
  height: 130px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: 4px 4px 16px rgba(0,0,0,.4);
  transition: transform var(--transition);
}
.book-cover:hover { transform: translateY(-4px) rotate(-1deg); }

/* Placeholder book covers */
.book-placeholder {
  width: 100px;
  height: 130px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-ochre), var(--clr-earth));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-weight: 600;
  box-shadow: 4px 4px 16px rgba(0,0,0,.4);
  line-height: 1.3;
}

/* ============================================================
   COURSES SECTION
   ============================================================ */
.courses-section { background: var(--clr-smoke); }

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 4px solid var(--clr-forest);
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.course-card__tag {
  display: inline-block;
  background: rgba(26,58,42,.1);
  color: var(--clr-forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.course-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--clr-bark);
  line-height: 1.3;
}

.course-card__desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  flex: 1;
  line-height: 1.6;
}

/* ============================================================
   ACKNOWLEDGEMENT / FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--clr-forest);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-cta .circle-pattern {
  background-image:
    radial-gradient(circle at 10% 50%, rgba(201,146,26,.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(196,98,45,.08) 0%, transparent 40%);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #1A0F08 !important;
  color: rgba(245,237,214,.75);
}

.footer-top {
  padding: var(--space-lg) 0 var(--space-md);
  border-bottom: 1px solid rgba(245,237,214,.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
}

.footer-brand__logo {
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: rgba(245,237,214,.65);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(245,237,214,.1);
  border-radius: 50%;
  color: rgba(245,237,214,.75);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--clr-ochre); color: white; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245,237,214,.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--clr-gold); padding-left: 4px; }

.footer-contact {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a { color: rgba(245,237,214,.65); }
.footer-contact a:hover { color: var(--clr-gold); }

/* Acknowledgement of Country */
.footer-acknowledgement {
  background: rgba(245,237,214,.05);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(245,237,214,.08);
}

.footer-acknowledgement__text {
  font-size: 0.85rem;
  color: rgba(245,237,214,.6);
  text-align: center;
  line-height: 1.7;
  max-width: 800px;
  margin-inline: auto;
  font-style: italic;
}

.footer-acknowledgement__text strong {
  color: var(--clr-gold);
  font-style: normal;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(245,237,214,.4);
}

.footer-bottom a { color: rgba(245,237,214,.5); }
.footer-bottom a:hover { color: var(--clr-gold); }

.footer-funded {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(245,237,214,.4);
}

/* ============================================================
   INNER PAGE TEMPLATES
   ============================================================ */
.page-hero {
  background: var(--clr-forest);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,146,26,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.page-hero__heading {
  color: var(--clr-paperbark);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero__sub {
  color: rgba(245,237,214,.7);
  font-size: 1.05rem;
  max-width: 560px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(245,237,214,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(245,237,214,.6); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* Main content area */
.page-content {
  padding: var(--space-lg) 0;
}

.page-content .entry-content {
  max-width: 780px;
}

.entry-content h2 { margin-top: var(--space-md); margin-bottom: 0.75rem; color: var(--clr-forest); }
.entry-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--clr-bark); }
.entry-content img { border-radius: var(--radius-md); margin: var(--space-sm) 0; box-shadow: var(--shadow-sm); }
.entry-content ul, .entry-content ol { margin-bottom: 1rem; }
.entry-content li { margin-bottom: 0.4rem; }

/* Sidebar layout */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-lg);
  align-items: start;
}

.sidebar { display: flex; flex-direction: column; gap: var(--space-md); }

.sidebar-widget {
  background: var(--clr-smoke);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.sidebar-widget__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-bark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-ochre);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.post-category-tag {
  display: inline-block;
  background: var(--clr-ochre);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
}

.post-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  list-style: none !important;
}

.woocommerce ul.products li.product {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.woocommerce ul.products li.product a img {
  height: 260px;
  object-fit: contain;
  object-position: center top;
  background: #1a1a1a;
  border-radius: 0;
  padding: 0.5rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  color: var(--clr-bark) !important;
  padding: 1rem 1rem 0.25rem !important;
}

.woocommerce ul.products li.product .price {
  color: var(--clr-teal) !important;
  font-weight: 700;
  padding: 0 1rem;
}

/* Product card footer — pin button to bottom of card */
.woocommerce ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce ul.products li.product > a:first-child {
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .button {
  display: block !important;
  margin: auto 1rem 1rem !important;
  width: calc(100% - 2rem) !important;
  background: var(--clr-ochre) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.825rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  transition: background var(--transition) !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-sizing: border-box !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--clr-earth) !important; }

/* Single product */
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--radius-lg); overflow: hidden; }
.woocommerce div.product h1.product_title { font-family: var(--font-heading) !important; color: var(--clr-bark) !important; }
.woocommerce div.product .price { color: var(--clr-teal) !important; font-size: 1.5rem !important; font-weight: 700; }
.woocommerce .single_add_to_cart_button {
  background: var(--clr-ochre) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--clr-earth) !important; }

/* Cart & Checkout */
.woocommerce-cart table.cart, .woocommerce-checkout form { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }

/* ============================================================
   LEARNPRESS OVERRIDES
   ============================================================ */
.learnpress .learn-press-courses .course-item,
.learnpress .lp-course-item {
  background: white !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--clr-sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(27,92,107,.15);
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
}

.form-group { margin-bottom: 1.25rem; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text);
  background: white;
  border: 2px solid var(--clr-sand);
  transition: all var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--clr-forest);
  color: white;
  border-color: var(--clr-forest);
}

/* ===========================
/* ============================================================
   RESPONSIVE WOOCOMMERCE GRID
   ============================================================ */
@media (max-width: 900px) {
  .woocommerce ul.products,
  .woocommerce .products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  .woocommerce ul.products,
  .woocommerce .products {
    grid-template-columns: 1fr !important;
  }
}

/* Force WooCommerce to use our grid — neutralise float fallback */
.woocommerce ul.products li.product {
  float: none !important;
  clear: none !important;
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================================
   COMPACT NAV — handle 7+ items gracefully
   ============================================================ */
.primary-nav > li > a,
.primary-nav > .menu-item > a {
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
@media (max-width: 1100px) {
  .primary-nav > li > a,
  .primary-nav > .menu-item > a {
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
  }
  .nav-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }
}

/* ============================================================
   PRODUCT CARD — tighter padding, readable title
   ============================================================ */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.95rem !important;
  line-height: 1.3 !important;
  padding: 0.85rem 0.85rem 0.25rem !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 0.85rem 0.5rem !important;
  font-size: 1rem !important;
}
.woocommerce ul.products li.product .button {
  margin: auto 0.85rem 0.85rem !important;
  width: calc(100% - 1.7rem) !important;
}

/* ============================================================
   ABORIGINAL DESIGN ENHANCEMENTS
   ============================================================ */
.section__label {
  background: linear-gradient(90deg, var(--clr-ochre), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.heading-underline::after {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--clr-ochre), var(--clr-gold));
}
.feature-card:hover .feature-card__overlay {
  opacity: 0.7;
}

/* ============================================================
   ABOUT SECTION — artwork panel fallback (no photo uploaded)
   ============================================================ */
.about-section__artwork-panel {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--clr-bark);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-section__artwork-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(224,106,42,.18) 2px, transparent 2px),
    radial-gradient(circle, rgba(201,146,26,.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
}
.about-section__artwork-panel svg {
  width: 75%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 24px rgba(224,106,42,.3));
  animation: gentleSpin 60s linear infinite;
}
@keyframes gentleSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-section__artwork-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(245,237,214,.55);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 2;
}



/* ============================================================
   NAV — handle very long menu item text (e.g. Strategic Plan)
   ============================================================ */
.primary-nav > li > a {
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1200px) {
  .primary-nav > li > a {

    font-size: 0.75rem;
    padding: 0.35rem 0.4rem;
  }
}

/* ============================================================
   WORDMARK LOGO — fallback when no logo uploaded
   ============================================================ */
.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo__wordmark-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-paperbark);
  letter-spacing: -0.01em;
}
.site-logo__wordmark-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ============================================================
   NAV — bigger, more readable, handle long items
   ============================================================ */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.primary-nav > li > a,
.primary-nav > .menu-item > a {
  display: block;
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem !important;
  font-weight: 600;
  color: rgba(245,237,214,.85);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.primary-nav > li > a:hover,
.primary-nav > .menu-item > a:hover,
.primary-nav > .current-menu-item > a {
  color: var(--clr-gold) !important;
}
.primary-nav > .current-menu-item > a {
  border-bottom: 2px solid var(--clr-ochre);
  padding-bottom: calc(0.5rem - 2px);
}
@media (min-width: 900px) and (max-width: 1300px) {
  .primary-nav > li > a,
  .primary-nav > .menu-item > a {
    padding: 0.45rem 0.45rem;
    font-size: 0.78rem !important;
  }
  .nav-cta {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }
  .site-logo__wordmark-name {
    font-size: 1.25rem;
  }
}

/* ============================================================
   ABOUT SECTION — clean photo placeholder
   ============================================================ */
.about-section__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
  border: 2px dashed rgba(201,146,26,.35);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section__placeholder-inner {
  text-align: center;
  padding: 2rem;
}
.about-section__placeholder-inner p {
  color: rgba(245,237,214,.5);
  font-size: 0.9rem;
  margin: 0.75rem 0 0.5rem;
}
.about-section__placeholder-inner code {
  font-size: 0.72rem;
  color: var(--clr-gold);
  opacity: 0.6;
  display: block;
}
body:not(.logged-in) .about-section__placeholder-inner code,
body:not(.logged-in) .about-section__placeholder-inner p,
body:not(.logged-in) .about-section__placeholder-inner svg {
  display: none;
}
body:not(.logged-in) .about-section__placeholder {
  border: none;
  background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  padding: 3rem 2rem;
}
body:not(.logged-in) .about-section__placeholder::after {
  content: '"Our language comes from our Country. Language gives us our identity and makes us strong."';
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(201,146,26,.75);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
  display: block;
}



/* ============================================================
   FOOTER WORDMARK
   ============================================================ */
.footer-wordmark {
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.footer-wordmark__name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--clr-paperbark);
  letter-spacing: -0.01em;
}
.footer-wordmark__sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.1rem;
}



/* ============================================================
   PILLAR CARDS — 4 solid-colour cards (no images)
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .pillars-grid { grid-template-columns: 1fr; } }

.pillar-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
}

.pillar-card--ochre { background: #1C1209; border-top-color: var(--clr-ochre); }
.pillar-card--teal  { background: #0A1614; border-top-color: var(--clr-teal); }
.pillar-card--gold  { background: #161108; border-top-color: var(--clr-gold); }
.pillar-card--bark  { background: #120E0A; border-top-color: var(--clr-bark); }

.pillar-card__icon {
  color: var(--clr-ochre);
  margin-bottom: 1.25rem;
  opacity: .85;
}
.pillar-card--teal  .pillar-card__icon { color: var(--clr-teal); }
.pillar-card--gold  .pillar-card__icon { color: var(--clr-gold); }
.pillar-card--bark  .pillar-card__icon { color: #B07A55; }

.pillar-card__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #F5A623;
  margin-bottom: .5rem;
}
.pillar-card--teal  .pillar-card__label { color: var(--clr-teal); }
.pillar-card--gold  .pillar-card__label { color: var(--clr-gold); }
.pillar-card--bark  .pillar-card__label { color: #B07A55; }

.pillar-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-paperbark);
  margin-bottom: .75rem;
}

.pillar-card p {
  font-size: .9rem;
  color: var(--clr-earth);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.pillar-card__link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-ochre);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: opacity var(--transition);
  margin-top: auto;
}
.pillar-card--teal  .pillar-card__link { color: var(--clr-teal); }
.pillar-card--gold  .pillar-card__link { color: var(--clr-gold); }
.pillar-card--bark  .pillar-card__link { color: #B07A55; }
.pillar-card__link:hover { opacity: .7; }

/* ============================================================
   ABOUT — Two-column text + facts (no image)
   ============================================================ */
.about-text-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .about-text-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-text-grid__left .section__label { margin-bottom: .75rem; display: block; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-fact {
  padding: 1.5rem;
  border-left: 3px solid var(--clr-ochre);
  background: var(--clr-smoke);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-fact__num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--clr-ochre);
  line-height: 1;
  margin-bottom: .35rem;
}

.about-fact__label {
  font-size: .78rem;
  color: var(--clr-earth);
  line-height: 1.45;
}

/* ============================================================
   BTN VARIANTS
   ============================================================ */


/* ============================================================
   NEWS CARD updates
   ============================================================ */
.news-card__more {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--clr-ochre);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.news-card__more:hover { opacity: .7; }

/* ============================================================
   ABOUT SECTION quote
   ============================================================ */
.about-section__quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--clr-ochre);
  font-style: italic;
  border-left: 3px solid var(--clr-ochre);
  padding-left: 1rem;
  margin: 1.25rem 0 1.5rem;
  line-height: 1.5;
}

/* ============================================================
   HERO — Bold, large, blended logo (v6)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #0D0D0D !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* The logo — large, positioned right, blended with multiply/lighten */
.hero__logo-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-52%);
  width: clamp(420px, 52vw, 760px);
  height: clamp(420px, 52vw, 760px);
  z-index: 1;
  opacity: 0.20;
  filter: drop-shadow(0 0 60px rgba(122,92,138,.4));
  pointer-events: none;
}
.hero__logo-bg svg {
  width: 100%;
  height: 100%;
}

.hero__container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 3;
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.hero__language {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8A8E0;
  margin-bottom: 1.25rem;
  display: block;
}

.hero__heading {
  font-size: clamp(3rem, 7.5vw, 6.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.0 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.75rem !important;
}

.hero__heading em {
  color: var(--clr-ochre) !important;
  font-style: normal;
}

.hero__subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn--xl {
  padding: 1rem 2.25rem !important;
  font-size: 1rem !important;
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 4;
  background: rgba(13,8,3,.8);
  border-top: 3px solid var(--clr-ochre);
  padding: 1.5rem 0;
}
.hero__stats-inner {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-ochre);
  line-height: 1;
}
.hero__stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .2rem;
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero__logo-bg {
    right: -20%;
    top: auto;
    bottom: 4rem;
    transform: none;
    width: 320px;
    height: 320px;
    opacity: 0.3;
  }
  .hero__heading { font-size: clamp(2.8rem, 12vw, 4rem) !important; }
  .hero__container { padding-top: 6rem; padding-bottom: 6rem; }
}

/* Publications strip overrides for dark background */
.publications-strip .section__label { color: var(--clr-gold); }
.publications-strip .btn--outline-dark {
  border-color: rgba(245,237,214,.5);
  color: var(--clr-paperbark);
}
.publications-strip .btn--outline-dark:hover {
  background: rgba(245,237,214,.1);
  border-color: var(--clr-paperbark);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-paperbark);
  border-color: rgba(245,237,214,.65);
}
.btn--ghost:hover {
  background: rgba(245,237,214,.1);
  border-color: var(--clr-paperbark);
  color: var(--clr-paperbark);
}

/* ============================================================
   HIDE CART & ACCOUNT FROM PRIMARY NAV
   (WooCommerce items — accessible via Shop page instead)
   ============================================================ */
.primary-nav li a[href*="cart"],
.primary-nav li a[href*="my-account"],
.primary-nav li a[href*="checkout"],
.primary-nav li.menu-item-type-post_type a[href*="/cart"],
.primary-nav li.menu-item-type-post_type a[href*="/my-account"] {
  display: none !important;
}
.primary-nav li:has(a[href*="cart"]),
.primary-nav li:has(a[href*="my-account"]) {
  display: none !important;
}

/* Also hide WooCommerce account/cart nav widgets if injected */
.woocommerce-account .site-header .woocommerce-MyAccount-navigation { display: none; }

/* ============================================================
   HERO — Real logo watermark (uses actual uploaded WordPress logo)
   ============================================================ */
.hero__logo-bg {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-52%);
  width: clamp(400px, 48vw, 680px);
  height: clamp(400px, 48vw, 680px);
  z-index: 1;
  pointer-events: none;
}
.hero__logo-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 768px) {
  .hero__logo-bg {
    width: 280px;
    height: 280px;
    right: -15%;
    top: auto;
    bottom: 5rem;
    transform: none;
    opacity: 0.5;
  }
}

/* Full organisation name line in hero */
.hero__org-name {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem) !important;
  font-weight: 600 !important;
  color: var(--clr-ochre) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1.5rem !important;
  margin-bottom: 2rem !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-left: 3px solid var(--clr-ochre);
  padding-left: 0.75rem;
}

/* Header wordmark (replaces logo image) */
.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.site-logo__wordmark-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1;
}
.site-logo__wordmark-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--clr-ochre);
  text-transform: upperc