/* ================================================================
   JOHN T. MALLON — Shared Stylesheet
   Political & Civic Website · Deep Ellum, Dallas, TX
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #141414;
  --bg-3:        #1c1c1c;
  --text:        #ede8e0;
  --text-muted:  #7a7570;
  --text-dim:    #3a3530;
  --accent:      #b8965a;
  --accent-dim:  #8a6e3e;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.12);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
  --nav-h:       68px;
  --max-w:       1240px;
  --r:           3px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.15; }
p { color: var(--text-muted); line-height: 1.85; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  font-weight: 300;
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  transition: background 0.4s var(--ease);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-item {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.nav-item:hover { color: var(--text); }

.nav-arrow {
  font-size: 0.6rem;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.25s var(--ease);
  vertical-align: middle;
}
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  min-width: 210px;
  padding: 0.6rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover { color: var(--text); padding-left: 1.7rem; }

.dropdown-label {
  display: block;
  padding: 0.9rem 1.4rem 0.3rem;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.dropdown-label:first-child { padding-top: 0.4rem; }
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.nav-cta {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--accent) !important;
  border-radius: var(--r);
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover {
  background: rgba(184,150,90,0.1);
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text);
  padding: 0.4rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-mid);
  padding: 1.25rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.65rem 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.mobile-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 1.1rem 0 0.2rem;
  font-weight: 500;
}


/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-image: url('images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 10s var(--ease);
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(237,232,224,0.6);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  opacity: 0.6;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ================================================================
   BLOG / LATEST POSTS
   ================================================================ */
.blog-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2.5rem;
}
.blog-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-section .section-header { margin-bottom: 4rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-3);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.blog-card:hover {
  border-color: rgba(184,150,90,0.28);
  transform: translateY(-4px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.blog-category {
  font-size: 0.63rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.blog-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
}

.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.84rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}
.read-more {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.blog-card:hover .read-more { gap: 12px; }

/* Blog index page — all posts listing */
.blog-index-section {
  padding: 6rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-index-section .section-header { margin-bottom: 3.5rem; }

/* Blog index — full-width card variant */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.blog-list-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-3);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.blog-list-card:hover {
  border-color: rgba(184,150,90,0.28);
  transform: translateY(-2px);
}
.blog-list-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-list-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.blog-list-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}
.blog-list-side {
  text-align: right;
  flex-shrink: 0;
  padding-top: 0.25rem;
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  padding: 7rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}
.about-text p {
  font-size: 0.92rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}
.about-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.25rem;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--r);
  transition: background 0.25s, border-color 0.25s;
}
.about-cta:hover {
  background: rgba(184,150,90,0.08);
  border-color: var(--accent);
}
.about-image-wrap {
  height: 560px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem;
}
.about-placeholder small { font-size: 0.72rem; color: var(--text-dim); }


/* ================================================================
   RESOURCES DIRECTORY
   ================================================================ */
.resources-section {
  padding: 6rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.resources-section .section-header { margin-bottom: 3.5rem; }

.resources-category {
  margin-bottom: 4rem;
}
.resources-category-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-3);
  transition: border-color 0.3s, transform 0.3s var(--ease);
  cursor: pointer;
}
.resource-card:hover {
  border-color: rgba(184,150,90,0.28);
  transform: translateY(-2px);
}
.resource-card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.resource-card-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.1rem;
}
.resource-card-link {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s;
  margin-top: auto;
}
.resource-card:hover .resource-card-link { gap: 10px; }


/* ================================================================
   CALENDAR
   ================================================================ */
.calendar-section {
  padding: 6rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.calendar-section .section-header { margin-bottom: 3rem; }

.calendar-embed-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-3);
}
.calendar-embed-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Placeholder shown before Google Calendar is connected */
.calendar-placeholder {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--r);
}
.calendar-placeholder strong {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
}
.calendar-placeholder small { font-size: 0.72rem; color: var(--text-dim); }


/* ================================================================
   INNER PAGE HERO
   ================================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.4)  55%,
    rgba(10,10,10,0.15) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4rem 4rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  animation: heroFadeUp 1s var(--ease) both;
}
.page-hero-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.9rem;
  max-width: 760px;
  line-height: 1.1;
}
.page-hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237,232,224,0.6);
  max-width: 520px;
  font-style: italic;
  line-height: 1.7;
}


/* ================================================================
   BLOG POST PAGE
   ================================================================ */
.post-hero {
  position: relative;
  height: 72vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.4)  55%,
    rgba(10,10,10,0.1)  100%
  );
}
.post-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4rem 4.5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  animation: heroFadeUp 1s var(--ease) both;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.post-hero-sep { color: var(--text-dim); font-size: 0.75rem; }
.post-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.post-hero-lede {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237,232,224,0.62);
  font-style: italic;
  line-height: 1.7;
  max-width: 580px;
}

.post-body { padding: 5rem 2.5rem 4rem; }
.post-body-inner { max-width: 720px; margin: 0 auto; }

.post-back {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  transition: color 0.2s;
}
.post-back:hover { color: var(--accent); }

.post-intro {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.post-body-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin: 3rem 0 1.1rem;
  line-height: 1.2;
}
.post-body-inner p {
  font-size: 0.97rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.post-figure { margin: 3rem 0; }
.post-figure img { width: 100%; border-radius: var(--r); }
figcaption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.03em;
}

.post-pullquote {
  border-left: 2px solid var(--accent);
  margin: 3rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.post-footer-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
.post-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.post-author { display: flex; align-items: center; gap: 1.25rem; }
.post-author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-avatar-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.post-author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.post-author-bio { font-size: 0.8rem; line-height: 1.6; max-width: 340px; margin: 0; }


/* ================================================================
   CTA BAND
   ================================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 7rem 2.5rem;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--text);
  margin: 1rem 0;
  line-height: 1.15;
}
.cta-section p { max-width: 460px; margin: 0 auto 2.75rem; font-size: 0.9rem; line-height: 1.85; }
.cta-btn {
  display: inline-block;
  padding: 0.95rem 2.75rem;
  background: transparent;
  border: 1px solid rgba(184,150,90,0.55);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--r);
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}
.cta-btn:hover {
  background: rgba(184,150,90,0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 2.5rem 2.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 230px;
}
.footer-col-label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: block;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-muted); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .blog-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { height: 380px; }

  .resource-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .page-hero-content { padding: 0 2rem 3rem; }
  .post-hero-content { padding: 0 2rem 3rem; }
  .post-footer-inner { flex-direction: column; align-items: flex-start; }

  .blog-list-card { grid-template-columns: 1fr; gap: 0.5rem; }
  .blog-list-side { text-align: left; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 1.5rem; }
  .about-section, .resources-section, .blog-index-section { padding: 4rem 1.5rem; }
  .blog-section, .cta-section, .calendar-section { padding: 4rem 1.5rem; }
  .footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .resource-grid { grid-template-columns: 1fr; }
  .post-body { padding: 3.5rem 1.5rem 3rem; }
  .post-pullquote { padding-left: 1.25rem; }
  .post-footer-section { padding: 3rem 1.5rem; }
  .page-hero { height: 44vh; min-height: 300px; }
}
