/* ============================================================
   Caron's Community — site styles
   Community Today. Leaders Tomorrow.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
  /* Caron's Community brand v2 — from client logos */
  --teal:      #3d1568;   /* primary (royal purple) */
  --teal-dark: #160427;   /* darkest plum — dark bands/footer */
  --gold:      #d9a441;   /* metallic accent */
  --gold-dark: #b7862f;
  --ink:       #241041;   /* body/heading text on light */
  --slate:     #5a4a68;   /* muted text */
  --cream:     #f4eef7;   /* light section background (lilac-cream) */
  --paper:     #ffffff;
  --line:      #e7e0ec;
  --shadow:    0 6px 24px rgba(22, 4, 39, 0.12);
  --radius:    14px;
  --wrap:      1120px;
  --ember:     linear-gradient(90deg,#ee7a1e,#d23a2a,#c0246a,#7a2d8f);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
  line-height: 1.15;
  color: var(--teal-dark);
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--teal); }
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.section { padding: 72px 0; }
.section.cream { background: var(--cream); }
.section.teal  { background: var(--teal); color: #efe6d6; }
.section.teal h2, .section.teal h3 { color: #fff; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .6rem;
}
.section.teal .eyebrow { color: var(--gold); }
.lead { font-size: 1.2rem; color: var(--slate); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: #3a2c05; box-shadow: var(--shadow); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-teal  { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 50px; height: 50px; flex: none;
  background: center/contain no-repeat url("/assets/logo-badge.svg");
  color: transparent; font-size: 0;
}
.brand-name { font-family: "Cinzel", serif; font-weight: 600; color: var(--teal-dark); font-size: 1.15rem; line-height: 1.1; }
.brand-tag  { display: block; font-family: "Montserrat", sans-serif; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--teal-dark); cursor: pointer; }
.hero {
  background:
    linear-gradient(180deg, rgba(22,4,39,.82), rgba(22,4,39,.72)),
    var(--teal-dark);
  color: #fff; text-align: center;
  padding: 110px 0 96px;
}
.hero h1 { color: #fff; max-width: 16ch; margin-inline: auto; }
.hero .lead { color: #cbb9dd; margin: 1rem auto 2rem; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.imgph {
  background: repeating-linear-gradient(45deg, #efe7f4, #efe7f4 12px, #f6f0f9 12px, #f6f0f9 24px);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  min-height: 240px;
  display: grid; place-items: center;
  color: var(--gold-dark); font-weight: 700; text-align: center; padding: 20px;
}
.imgph small { display:block; font-weight:600; color: var(--slate); margin-top:4px; }
.ph {
  background: #fbeecb; color: #8a6d16;
  border-bottom: 2px dotted var(--gold-dark);
  padding: 0 3px; border-radius: 3px; font-weight: 600;
}
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .ic { font-size: 1.8rem; }
.card h3 { margin-top: .5rem; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-family: "Cinzel", serif; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.section.teal .stat .num { color: var(--gold); }
.stat .lbl { font-weight: 600; color: #cbb9dd; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 5px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.callout {
  background: var(--gold); color: #3a2c05;
  border-radius: var(--radius); padding: 40px; text-align: center;
}
.callout h2 { color: #3a2c05; }
.site-footer { background: var(--teal-dark); color: #cbb9dd; padding: 56px 0 28px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.foot-grid h4 { color: #fff; font-size: 1rem; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 8px; }
.legal-line {
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 36px; padding-top: 20px; font-size: .85rem; color: #a99cb8;
}
.legal-line strong { color: #fff; }
.credit-line {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; font-size: .82rem; color: #a99cb8; text-align: center;
}
.credit-line a.credtxt { color: #e6ddf0; text-decoration: underline; text-underline-offset: 3px; }
.credit-line a.credtxt:hover { color: #fff; }
.credit-line img.a1m-logo { height: 24px; display: block; }
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
.tags { display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.tag { background: var(--cream); border:1px solid var(--line); border-radius:999px; padding:5px 14px; font-size:.85rem; font-weight:600; color: var(--teal-dark); }
@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 6%; gap: 6px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 6px 0; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .stats, .split, .foot-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .section { padding: 52px 0; }
}
