/* ==========================================================================
   Gold Coast Buddhist Council — Shared Stylesheet
   Palette: forest green, warm gold & saffron, teal, maroon, cream, sage
   ========================================================================== */

:root {
  --forest: #0D4A39;
  --forest-dark: #093528;
  --gold: #C49A45;
  --gold-light: #DCB86A;
  --cream: #FFF8E8;
  --sage: #8A9B73;
  --charcoal: #2D332F;
  --white: #FFFFFF;

  /* Vibrant accent palette drawn from the Council logo & prayer flags */
  --saffron: #E08A1E;
  --saffron-dark: #B5680F;
  --saffron-light: #F7C877;
  --teal: #1F7A8C;
  --teal-dark: #145A69;
  --teal-light: #7FC4D1;
  --maroon: #8C2F39;
  --maroon-dark: #6B2029;
  --sand: #FBEAD0;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-script: "Dancing Script", cursive;

  --max-width: 1180px;
  --radius: 14px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --shadow-soft: 0 10px 30px rgba(13, 74, 57, 0.10);
  --focus-ring: 3px solid #1a6b52;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest);
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 var(--space-2); }

a {
  color: var(--forest);
  text-decoration-color: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
}

.script {
  font-family: var(--font-script);
  color: #93701F;
  font-weight: 700;
  font-size: 1.35em;
  line-height: 1;
  display: inline-block;
}

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-block { width: 100%; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(13,74,57,0.12);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: var(--gold);
  color: var(--forest);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-cta .btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}

@media (min-width: 901px) {
  .nav-enquiry { display: none; }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--forest);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--forest);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: 6rem var(--space-4) var(--space-4);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a {
    color: var(--cream);
    font-size: 1.15rem;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--gold-light);
  }
  .nav-links .nav-enquiry {
    margin-top: var(--space-2);
  }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-block; }
  .site-header { position: sticky; }
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 20, 17, 0.45);
  z-index: 400;
}
.nav-scrim.is-open { display: block; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FDF1DA 0%, #F7DFAE 30%, #E9C27E 55%, #CDA15F 78%, var(--sage) 100%);
  padding: var(--space-6) 0 var(--space-5);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-3);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--forest);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,74,57,0.25);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.hero h1 {
  margin-bottom: 0.3rem;
}

.hero .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin-bottom: var(--space-3);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin: var(--space-3) 0 var(--space-4);
  list-style: none;
  padding: 0;
}

.hero-facts li {
  background: var(--white);
  color: var(--forest-dark);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.hero-actions .btn-secondary {
  color: var(--forest);
  border-color: var(--forest);
}
.hero-actions .btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

/* ---------------- Page banner (interior pages) ---------------- */
.page-banner {
  background: linear-gradient(160deg, #FDF1DA 0%, #F3DFAF 45%, #E3C68B 100%);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner--teal { background: linear-gradient(160deg, #1F7A8C 0%, #145A69 100%); }
.page-banner--teal h1, .page-banner--teal .subtitle, .page-banner--teal .hero-eyebrow { color: var(--cream); }
.page-banner--teal .hero-eyebrow { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); }
.page-banner--teal .script { color: var(--gold-light); }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 0.4rem; }
.page-banner .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}
.page-banner-leaf {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  opacity: 0.5;
  z-index: 0;
}

/* ---------------- Sections ---------------- */
section {
  padding: var(--space-5) 0;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-forest {
  background: var(--forest);
  color: var(--cream);
}
.section-forest h2, .section-forest h3 { color: var(--cream); }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-4);
}

.section-heading .eyebrow {
  color: #8A6A2C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.lede {
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto var(--space-2);
}

.intro-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.welcome-banner {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  max-width: 760px;
  margin: var(--space-4) auto 0;
  box-shadow: var(--shadow-soft);
}
.welcome-banner p { margin: 0; font-weight: 500; }

/* ---------------- Curved dividers ---------------- */
.divider {
  display: block;
  width: 100%;
  line-height: 0;
}
.divider svg { width: 100%; height: auto; display: block; }

/* ---------------- Cards ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(13,74,57,0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-2);
  color: var(--forest);
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.center-cta {
  text-align: center;
  margin-top: var(--space-4);
}

/* ---------------- Notice / callouts ---------------- */
.notice {
  background: #FBF1DC;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto var(--space-4);
}
.notice svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--gold); margin-top: 2px; }
.notice p { margin: 0; }

/* ---------------- Program table ---------------- */
.program-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

table.program-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

table.program-table th,
table.program-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(13,74,57,0.1);
}

table.program-table th {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 600;
}

table.program-table tr:last-child td { border-bottom: none; }
table.program-table td.placeholder { color: var(--sage); font-style: italic; }

/* ---------------- Feature / film section ---------------- */
.feature-panel {
  background: var(--forest);
  color: var(--cream);
  border-radius: 24px;
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-panel .script { font-size: 2em; }

.feature-panel--teal { background: var(--teal-dark); }
.feature-panel--teal h3 { color: var(--gold-light); }
.feature-panel--maroon { background: var(--maroon-dark); }
.feature-panel--maroon h3 { color: var(--gold-light); }

.feature-panel h3 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* ---------------- Info sections (Plan your visit) ---------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3);
  border-top: 4px solid var(--sage);
}

.info-card h3 { display: flex; align-items: center; gap: 0.6rem; }
.info-card .icon { width: 26px; height: 26px; color: var(--forest); flex-shrink: 0; }
.info-card .tbc {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7A5A1E;
  background: #FBF1DC;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}

.key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.key-fact {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.key-fact .icon { width: 30px; height: 30px; color: var(--gold); margin: 0 auto 0.6rem; }
.key-fact strong { display: block; font-family: var(--font-serif); color: var(--forest); font-size: 1.05rem; }

.map-placeholder {
  background: var(--white);
  border: 2px dashed var(--sage);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  color: var(--charcoal);
}

/* ---------------- Forms ---------------- */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: var(--space-3);
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--forest-dark);
}

.form-row .hint {
  font-weight: 400;
  color: #5B6650;
  font-size: 0.85rem;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(13,74,57,0.25);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--forest);
  outline: var(--focus-ring);
  outline-offset: 1px;
}

.form-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.checkbox-row input { margin-top: 0.3rem; width: 18px; height: 18px; flex-shrink: 0; }
.checkbox-row label { font-weight: 400; margin: 0; }

.form-note {
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--cream);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: var(--space-3);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-4);
}
.form-success .icon {
  width: 56px; height: 56px;
  color: var(--forest);
  margin: 0 auto var(--space-2);
}
.form-success.is-visible { display: block; }
.form-card.is-submitted form { display: none; }

.form-error {
  display: none;
  background: #FBEAEA;
  border: 1px solid var(--maroon);
  color: var(--maroon-dark);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-top: var(--space-3);
  font-size: 0.92rem;
}

/* honeypot field, hidden from sighted users and screen readers */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: var(--space-5) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--cream);
  opacity: 0.9;
}

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

.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.88rem;
  opacity: 0.85;
}

.supporter-note {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: var(--space-2);
}

/* ---------------- Photo panels ---------------- */
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.photo-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.photo-grid img { width: 100%; height: 260px; object-fit: cover; display: block; }
.photo-grid figcaption {
  background: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.85;
}

.photo-banner { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); margin: var(--space-4) 0; }
.photo-banner img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.photo-banner figcaption {
  background: var(--white);
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--charcoal);
  opacity: 0.8;
}

.section-forest--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.section-forest--photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,74,57,0.88) 0%, rgba(9,53,40,0.93) 100%);
  z-index: 0;
}
.section-forest--photo .container { position: relative; z-index: 1; }

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-3);
}
.logo-badge img { height: 48px; width: auto; display: block; }

.logo-badge--lg img { height: 72px; }

.feature-panel--with-image { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .feature-panel--with-image { grid-template-columns: 1fr 1.2fr; }
}
.feature-panel__poster { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.feature-panel__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  margin-bottom: var(--space-3);
}
.footer-logo-badge img { height: 40px; width: auto; display: block; }

/* ---------------- Utilities ---------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 640px) {
  .hero-facts li { font-size: 0.85rem; }
  section { padding: var(--space-4) 0; }
}

/* ==========================================================================
   Council brand additions — colour-block sections, values, quotes, events
   ========================================================================== */

/* ---------------- Colour-block sections ---------------- */
.section-teal { background: var(--teal); color: var(--cream); }
.section-teal h2, .section-teal h3 { color: var(--cream); }
.section-teal .eyebrow { color: var(--gold-light); }
.section-teal a:not(.btn) { color: var(--gold-light); }

.section-maroon { background: var(--maroon); color: var(--cream); }
.section-maroon h2, .section-maroon h3 { color: var(--cream); }
.section-maroon .eyebrow { color: var(--gold-light); }

.section-sand { background: var(--sand); }

.section-saffron-tint { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); }

/* ---------------- Mission strip (three-part tagline) ---------------- */
.mission-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 0;
  margin: var(--space-3) 0 var(--space-4);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}
.mission-strip span { padding: 0 0.9rem; }
.mission-strip span:nth-child(1) { color: var(--maroon); }
.mission-strip span:nth-child(2) { color: var(--teal-dark); }
.mission-strip span:nth-child(3) { color: var(--forest); }
.mission-strip .sep { color: var(--gold); font-weight: 400; opacity: 0.7; }

/* ---------------- Values grid (Compassion / Wisdom / Harmony / Wellbeing) ---------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-top: 5px solid var(--accent, var(--gold));
}
.value-card--compassion { --accent: var(--maroon); }
.value-card--wisdom { --accent: var(--gold); }
.value-card--harmony { --accent: var(--teal); }
.value-card--wellbeing { --accent: var(--forest); }

.value-card .value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-2);
  color: var(--accent, var(--gold));
}
.value-card h3 {
  color: var(--accent, var(--forest));
  margin-bottom: 0.4rem;
}
.value-card p { margin: 0; font-size: 0.96rem; }

/* ---------------- Quote block ---------------- */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-block .quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: -0.5rem;
}
.quote-block p.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: var(--space-2);
}
.quote-block .quote-attribution {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}

/* ---------------- Featured event callout ---------------- */
.event-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(13,74,57,0.08);
}
@media (min-width: 780px) {
  .event-callout { grid-template-columns: 1fr 1.15fr; }
}
.event-callout__media { position: relative; min-height: 220px; }
.event-callout__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-callout__date-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: var(--saffron);
  color: var(--white);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.event-callout__body { padding: var(--space-4); display: flex; flex-direction: column; justify-content: center; }
.event-callout__eyebrow {
  color: var(--teal-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  display: block;
}
.event-callout__body h2 { margin-bottom: 0.4rem; }
.event-callout__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.8rem 0 1.2rem;
  list-style: none;
  padding: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest-dark);
}
.event-callout__facts li { display: flex; align-items: center; gap: 0.4rem; }
.event-callout__facts li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.event-callout__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------------- Coloured photo strip ---------------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-2);
}
.photo-strip figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.photo-strip img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.35s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }

/* ---------------- Ribbon eyebrow variants ---------------- */
.hero-eyebrow--teal { background: rgba(31,122,140,0.14); border-color: rgba(31,122,140,0.35); color: var(--teal-dark); }
.hero-eyebrow--maroon { background: rgba(140,47,57,0.1); border-color: rgba(140,47,57,0.3); color: var(--maroon); }

/* ---------------- Buttons: extra colour variants ---------------- */
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); box-shadow: var(--shadow-soft); }

.btn-maroon { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.btn-maroon:hover { background: var(--maroon-dark); box-shadow: var(--shadow-soft); }

/* ---------------- Stat / affiliation strip ---------------- */
.affiliation-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  text-align: center;
}
.affiliation-strip img { height: 40px; width: auto; }
.affiliation-strip p { margin: 0; font-size: 0.95rem; color: var(--charcoal); }

@media (max-width: 640px) {
  .event-callout__body { padding: var(--space-3); }
  .mission-strip { flex-direction: column; gap: 0.2rem; }
  .mission-strip .sep { display: none; }
}
