/* ===== Design tokens ===== */
:root {
  /* Core brand */
  --brand:        #0ca678;   /* vivid teal-green */
  --brand-dark:   #087f5b;

  /* Vibrant accent palette */
  --c-coral:      #ff6b6b;
  --c-orange:     #ff922b;
  --c-yellow:     #ffd43b;
  --c-green:      #51cf66;
  --c-cyan:       #22b8cf;
  --c-blue:       #4dabf7;
  --c-purple:     #9775fa;
  --c-pink:       #f06595;

  --ink:          #1f2933;
  --muted:        #5b6b73;
  --bg:           #ffffff;
  --bg-alt:       #fff7f0;   /* warm off-white */
  --border:       #eee3da;
  --radius:       16px;
  --shadow:       0 10px 35px rgba(20, 40, 60, 0.10);
  --shadow-color: 0 12px 30px rgba(255, 107, 107, 0.25);
  --maxw:         1080px;
  --font:         system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Reusable gradients */
  --grad-warm:  linear-gradient(135deg, #ff6b6b, #ff922b);
  --grad-cool:  linear-gradient(135deg, #22b8cf, #4dabf7);
  --grad-fun:   linear-gradient(135deg, #9775fa, #f06595);
  --grad-brand: linear-gradient(135deg, #0ca678, #22b8cf);
  --grad-rainbow: linear-gradient(120deg, #ff6b6b, #ff922b, #ffd43b, #51cf66, #22b8cf, #9775fa);
}

/* ===== Loading screen ===== */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: #d4ebf2;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .45s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }

/* ===== Cute decorative accents (ribbons, hearts, sparkles) ===== */
.decor { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.decor span {
  position: absolute;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  opacity: .45;
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}
@media (max-width: 760px) { .decor { display: none; } }
.loader-logo {
  width: 150px; height: auto;
  animation: loaderPulse 1.1s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1);    opacity: .85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-family: 'Philosopher', 'Segoe UI', serif; }
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .75em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted  { color: var(--muted); }
.small  { font-size: .9rem; }

/* Gradient text accent */
.accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-coral); /* fallback */
}

/* Colorful underline under section headings */
.section h2.center, .cta h2, #mission h2 { position: relative; }
.section h2.center::after {
  content: "";
  display: block;
  width: 72px; height: 5px;
  margin: .6rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #a5d8ff, #d0bfff, #fcc2d7);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--grad-warm);
  color: #fff;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  box-shadow: var(--shadow-color);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 34px rgba(255,107,107,.35); }
.btn-ghost { background: #fff; color: var(--brand-dark); border: 2px solid var(--brand); box-shadow: none; }
.btn-ghost:hover { background: rgb(255,218,224); color: #1b3a6b; border-color: rgb(255,218,224); }
.btn-small { padding: .55rem 1.2rem; font-size: .95rem; box-shadow: none; }

/* Pink donate buttons */
.btn-donate, .cta .btn-donate {
  background: linear-gradient(135deg, #a5d8ff, #74c0fc);
  color: #1b3a6b;
  box-shadow: none;
  border: 2px solid rgb(255,218,224);
}
.btn-donate:hover, .cta .btn-donate:hover {
  background: linear-gradient(135deg, #8fcdff, #5bb0fa);
  color: #1b3a6b;
  filter: none;
}
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #d4ebf2;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: none; padding-left: .5rem; }
.logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-img-footer { height: 64px; }
.logo-text { font-family: 'Philosopher', 'Segoe UI', serif; font-weight: 700; font-size: 1.55rem; color: #000; }
.logo-mark {
  font-size: 1.3rem;
  background: var(--grad-fun);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-pink);
}
.nav { display: flex; align-items: center; gap: 1.05rem; }
.nav a { color: var(--ink); font-weight: 700; font-family: 'Philosopher', 'Segoe UI', serif; }
.nav a:hover { color: rgb(255,218,224); text-decoration: none; }
.nav a.active { color: rgb(255,218,224); font-weight: 700; }
.nav a.btn.active { color: #1b3a6b; } /* keep donate button text readable */
.nav a.btn { color: #fff; }
.nav a.btn.btn-donate { color: #000; font-weight: 700; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    url("images/community.svg") bottom center / min(1200px, 130%) auto no-repeat,
    linear-gradient(135deg, #845ef7 0%, #5c7cfa 30%, #22b8cf 65%, #0ca678 100%);
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}
/* soft glow blobs for extra color depth */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .45;
  pointer-events: none;
}
.hero::before { background: var(--c-pink);   top: -120px; right: -80px; }
.hero::after  { background: var(--c-yellow); bottom: -160px; left: -100px; opacity: .35; }
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-grid {
  max-width: 920px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-logo {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  transform: translateX(-1in);
}
.hero-logo-name {
  margin: 0;
  font-family: 'Philosopher', 'Segoe UI', serif;
  font-weight: 700; font-size: 1.6rem; color: #fff;
}
.hero-logo-box {
  width: 230px; height: 230px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid rgb(255,218,224);
  border-radius: 50%;
  overflow: hidden;
}
.hero-logo-box img { height: 100%; width: auto; max-width: none; }
@media (max-width: 680px) {
  .hero-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-logo { transform: none; }
  .hero-logo-box { width: 170px; height: 170px; }
  .hero-text .hero-actions { justify-content: center; }
}
.hero h1 { color: #fff; font-family: 'Philosopher', 'Segoe UI', serif; }
.hero .accent { -webkit-text-fill-color: rgb(255,218,224); color: rgb(255,218,224); background: none; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700;
  color: #1b3a6b;
  background: rgb(255,218,224);
  padding: .35rem .9rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.lead { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgb(255,218,224); }
.hero .btn-ghost:hover { background: rgb(255,218,224); color: #1b3a6b; border-color: rgb(255,218,224); }

/* ===== Sections ===== */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section.alt { background: var(--bg-alt); }
/* keep section tops clear of the sticky header when jumping via nav links */
section[id] { scroll-margin-top: 80px; }
#mission { background: #fff; }
#work { background: linear-gradient(135deg, #d4ebf2 0%, #a9c7e8 45%, #f6b8cd 100%); }

/* ===== Per-page backgrounds (home page is left unchanged) ===== */
.page-grad { background: var(--bg-alt); }
/* let the cream page background show through the content sections */
.page-grad #mission,
.page-grad #work,
.page-grad .section.alt { background: transparent; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.mission-img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  border: 4px solid rgb(255,218,224);
  box-shadow: var(--shadow);
}
.mission-text h2::after {
  content: ""; display: block;
  width: 72px; height: 5px; margin: .6rem 0 0;
  border-radius: 999px; background: linear-gradient(90deg, #a5d8ff, #d0bfff, #fcc2d7);
}
@media (max-width: 760px) {
  .mission-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.card {
  position: relative;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,40,60,.14); }
/* colored top stripe per card */
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.card:nth-child(1)::before { background: var(--grad-warm); }
.card:nth-child(2)::before { background: var(--grad-cool); }
.card:nth-child(3)::before { background: var(--grad-fun); }
/* Start a Chapter step cards: one continuous blue -> purple -> pink gradient
   spanning all three bars (left blue, middle purple, right pink, blended) */
#chapter .card::before {
  background-image: linear-gradient(90deg, #a5d8ff, #d0bfff, #fcc2d7);
  background-size: 300% 100%;
}
#chapter .card:nth-child(1)::before { background-position: left center; }
#chapter .card:nth-child(2)::before { background-position: center center; }
#chapter .card:nth-child(3)::before { background-position: right center; }
/* What We Will Do cards: same blended blue -> purple -> pink gradient */
#work .card::before {
  background-image: linear-gradient(90deg, #a5d8ff, #d0bfff, #fcc2d7);
  background-size: 300% 100%;
}
#work .card:nth-child(1)::before { background-position: left center; }
#work .card:nth-child(2)::before { background-position: center center; }
#work .card:nth-child(3)::before { background-position: right center; }
/* Start a Chapter reason cards: same blended gradient */
#start-chapter .card::before {
  background-image: linear-gradient(90deg, #a5d8ff, #d0bfff, #fcc2d7);
  background-size: 300% 100%;
}
#start-chapter .card:nth-child(1)::before { background-position: left center; }
#start-chapter .card:nth-child(2)::before { background-position: center center; }
#start-chapter .card:nth-child(3)::before { background-position: right center; }
/* Light blue "Start a chapter" and "Get directions" buttons */
#start-chapter .btn,
#where .btn,
.event-actions .btn:not(.btn-ghost) {
  background: linear-gradient(135deg, #a5d8ff, #74c0fc);
  color: #1b3a6b;
  box-shadow: 0 12px 30px rgba(116,192,252,.3);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 18px;
  font-size: 2rem; margin-bottom: 1rem;
}
.card:nth-child(1) .card-icon { background: #fff0f0; }
.card:nth-child(2) .card-icon { background: #e7f9fb; }
.card:nth-child(3) .card-icon { background: #f5f0ff; }
.card p { color: var(--muted); margin: 0; }
.card.linkcard { display: block; text-decoration: none; color: inherit; }
.card.linkcard:hover { text-decoration: none; }
.card.linkcard h3 { color: var(--ink); }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; text-align: center; }
.stat {
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  color: #fff;
}
.stat:nth-child(1) { background: var(--grad-warm); }
.stat:nth-child(2) { background: var(--grad-cool); }
.stat:nth-child(3) { background: var(--grad-fun); }
.stat:nth-child(4) { background: var(--grad-brand); }
.stat-num { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; }
.stat-label { color: rgba(255,255,255,.92); font-weight: 600; }

/* ===== CTA ===== */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #d4ebf2 0%, #a9c7e8 45%, #f6b8cd 100%);
  color: #1b3a6b; padding: clamp(3rem, 7vw, 5rem) 0;
}
.cta h2 { color: #1b3a6b; }
.cta p { color: #2a4a78; }
.cta .btn { background: #fff; color: #1b3a6b; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.cta .btn:hover { background: #fff; color: #11264a; }
.fine { font-size: .85rem; color: #3a5a88; margin-top: 1rem; }
.coming-soon {
  display: inline-block;
  background: rgb(255,218,224);
  color: #1b3a6b;
  font-weight: 800;
  padding: .3rem .9rem;
  border-radius: 999px;
}

/* ===== Meet the Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; box-shadow: var(--shadow); text-align: center;
}
.team-photo {
  width: 96px; height: 96px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: #d4ebf2;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
/* Pastel rainbow circles, in order */
.team-grid .team-card:nth-child(1) .team-photo { background: rgb(243, 207, 198); }
.team-grid .team-card:nth-child(2) .team-photo { background: rgb(250, 200, 152); }
.team-grid .team-card:nth-child(3) .team-photo { background: rgb(255, 250, 160); }
.team-grid .team-card:nth-child(4) .team-photo { background: rgb(175, 225, 175); }
.team-grid .team-card:nth-child(5) .team-photo { background: #D3EEFF; }
.team-grid .team-card:nth-child(6) .team-photo { background: rgb(204, 204, 255); }
.team-card h3 { margin-bottom: .15rem; }
.team-role { color: var(--brand-dark); font-weight: 600; margin-bottom: .6rem; }
.team-card p { color: var(--muted); }
.team-card .team-role { color: var(--brand-dark); }

/* ===== Callout (cute highlighted note) ===== */
.callout {
  max-width: 640px; margin: 2.25rem auto 0;
  background: rgb(255,218,224); color: #1b3a6b;
  border-radius: 22px; padding: 1.25rem 1.6rem;
  text-align: center; font-weight: 600; font-size: 1.05rem;
  box-shadow: var(--shadow);
}
/* Meet the Team callout: blue -> pink gradient */
#team .callout { background: linear-gradient(135deg, #a5d8ff, #fcc2d7); color: #1b3a6b; }
/* Event callout: blue -> pink gradient */
#event .callout { background: linear-gradient(135deg, #a5d8ff, #fcc2d7); color: #1b3a6b; }
/* Mission callout: blue -> pink gradient */
#mission .callout { background: linear-gradient(135deg, #a5d8ff, #fcc2d7); color: #1b3a6b; }
/* What We Will Do callout: blue -> pink gradient */
#work .callout { background: linear-gradient(135deg, #a5d8ff, #fcc2d7); color: #1b3a6b; }

.page-intro { max-width: 640px; margin: 0 auto; }
.feature-list { max-width: 620px; margin: 1.5rem auto 0; display: grid; gap: .6rem; padding: 0; list-style: none; }
.feature-list li {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: .85rem 1.1rem; display: flex; gap: .65rem; align-items: flex-start;
  box-shadow: var(--shadow);
}
.feature-list li span.fi { font-size: 1.3rem; line-height: 1.4; }

/* ===== Contact form ===== */
.contact-bubble {
  max-width: 560px; margin: 2.5rem auto 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 28px; padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 600; color: #1b3a6b; }
.contact-form input,
.contact-form textarea {
  font: inherit; color: var(--ink);
  padding: .7rem .9rem;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77,171,247,.2);
}
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; cursor: pointer; }
#contact .contact-form button {
  background: linear-gradient(135deg, #4dabf7, #9775fa);
  color: #fff;
  box-shadow: 0 12px 30px rgba(135,117,250,.3);
}
.contact-or { text-align: center; color: var(--muted); font-weight: 600; margin: 1.25rem 0 .75rem; }
.contact-bubble { text-align: center; }
.contact-form { text-align: left; }
.contact-alt { margin: .5rem 0; color: var(--muted); }
.contact-alt a { color: #1b3a6b; font-weight: 700; text-decoration: underline; }
.contact-alt a:hover { color: #e89ab8; }

/* ===== Calendar ===== */
.calendar {
  max-width: 380px; margin: 2rem auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.25rem;
}
.cal-header { text-align: center; font-weight: 800; color: #1b3a6b; font-size: 1.2rem; margin-bottom: .75rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.cal-dow { text-align: center; font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: .25rem 0; }
.cal-day { text-align: center; padding: .5rem 0; border-radius: 8px; font-size: .9rem; }
.cal-day.cal-event { background: rgb(255,218,224); color: #1b3a6b; font-weight: 800; }
.cal-note { text-align: center; margin: 1rem 0 0; font-weight: 600; color: #1b3a6b; }

/* ===== Upcoming Event ===== */
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
  font-size: .8rem; color: #1b3a6b; margin: 0 0 .3rem;
}
.event-card {
  display: flex; align-items: stretch;
  max-width: 860px; margin: 2.5rem auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.event-date {
  flex: 0 0 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--grad-cool); color: #fff; text-align: center;
}
.event-month { text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: 1.1rem; }
.event-day { font-size: 3.4rem; font-weight: 800; line-height: 1; }
.event-body { padding: 1.9rem; }
.event-body h3 { font-size: 1.45rem; margin-bottom: .2rem; }
.event-host { color: var(--muted); margin-bottom: 1rem; }
.event-host a { color: var(--brand-dark); text-decoration: underline; }
.event-host a:hover { color: #e89ab8; }
.event-host strong { color: var(--brand-dark); }
.event-meta { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: .45rem; }
.event-meta li { display: flex; gap: .55rem; align-items: center; font-weight: 500; }
.event-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }

@media (max-width: 640px) {
  .event-card { flex-direction: column; }
  .event-date { flex-basis: auto; flex-direction: row; gap: .6rem; padding: 1rem; }
  .event-day { font-size: 2rem; }
}

/* Event flyer image */
.event-flyer { max-width: 480px; margin: 2.5rem auto 0; text-align: center; }
.event-flyer img {
  width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;
}
.event-flyer a:hover img { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,40,60,.18); }
.event-flyer figcaption { margin-top: .6rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cdd8d3; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.site-footer .logo { color: #fff; }
.footer-name { color: rgb(255,218,224); font-weight: 800; margin-top: .4rem; }
.site-footer a { color: rgb(255,218,224); }
.footer-contact .muted { color: rgb(255,218,224); }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: .4rem 2.5rem; align-content: start; }
.footer-nav h4 { grid-column: 1 / -1; color: #fff; margin: 0 0 .5rem; font-size: 1rem; }
.footer-nav a { color: #cdd8d3; font-weight: 500; }
.footer-nav a:hover { color: rgb(255,218,224); text-decoration: none; }

.footer-contact { text-align: right; }
.footer-contact, .footer-contact a, .footer-contact .muted { font-weight: 700; }
.footer-contact .small { margin-top: 1in; }
.social-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgb(255,218,224); font-weight: 600;
}
.social-link:hover { color: #fff; text-decoration: none; }
.social-icon { flex: 0 0 auto; }
@media (max-width: 600px) {
  .footer-contact { text-align: left; }
  .social-link { justify-content: flex-start; }
}

/* ===== Mobile nav ===== */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: .5rem 1.25rem 1rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem 0; border-bottom: 1px solid var(--border); }
  .nav a.btn { text-align: center; margin-top: .75rem; }
}
