/* ===========================
   Monde Méandre – styles.css
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

:root {
  /* Monde Méandre palette */
  --mm-indigo: #1F2E46;
  --mm-enamel-blue: #24395F;
  --mm-french-blue: #AAB8C8;
  --mm-expedition-gold: #8E846F;
  --mm-champagne-gold: #D8C078;
  --mm-pale-yellow: #FFF4B8;
  --mm-gallery-mist: #EEEEEB;
  --mm-aged-map: #CDBB96;
  --mm-charcoal-ink: #2B2A25;
  --mm-ivory-cloud: #F8F3E8;

  /* Semantic aliases */
  --gold: #8E846F;
  --gold-light: #D8C078;
  --dark: #1F2E46;
  --text: #2B2A25;
  --text-light: #7A7268;
  --bg-light: #EEEEEB;
  --border: #D0C4AE;
  --white: #F8F3E8;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }


/* ══════════════════════════════
   LOGO
══════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  object-fit: contain;
  display: block !important;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.logo-tagline {
  display: none;
}


/* ══════════════════════════════
   HERO (HOME PAGE)
══════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero--home {
  background: #0e1a2b;
}

.hero--journal {
  min-height: 88vh;
  background-image: url('../images/Angkor-Thom-1-of-1.jpg');
  background-size: cover;
  background-position: center 35%;
}

.hero--journal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.5) 100%
  );
  pointer-events: none;
}

/* Header bar inside hero */
.hero-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 3rem;
  gap: 1rem;
}

/* Home hero: globe left / text right */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 100px 4rem 100px;
  position: relative;
  z-index: 10;
}

.hero-globe-col {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-nav {
  display: flex;
  gap: 2.25rem;
  justify-content: center;
}

.hero-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.hero-nav a:hover,
.hero-nav a.active { color: var(--gold-light); }

/* Bottom text block in hero */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 3.5rem 3.5rem 0;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 3.2vw, 3rem);
  color: #fff;
  line-height: 1.2;
  max-width: 540px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-desc {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.hero-lets-go {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mm-pale-yellow);
  letter-spacing: 0.04em;
}

.btn-hero {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid #D8C078;
  color: #D8C078;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero:hover {
  background: #D8C078;
  color: #0e1a2b;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.35);
}


/* ══════════════════════════════
   STICKY NAV (scrolled state)
══════════════════════════════ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(31,46,70,0.96);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 3rem;
  gap: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-nav.visible { transform: translateY(0); }

.sticky-nav .logo-name { color: var(--mm-pale-yellow); }
.sticky-nav .logo-tagline { color: rgba(255,255,255,0.45); }

.sticky-nav .hero-nav a { color: rgba(255,255,255,0.75); }
.sticky-nav .hero-nav a:hover { color: var(--gold-light); }


/* ══════════════════════════════
   INTRO SECTION
══════════════════════════════ */
.intro {
  background: var(--bg-light);
  padding: 6rem 3rem;
  text-align: center;
}

.intro-inner { max-width: 680px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.intro p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.intro p:last-child { margin-bottom: 0; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}


/* ══════════════════════════════
   BLOG GRID
══════════════════════════════ */
.blog-section {
  padding: 5rem 3rem;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { font-size: 2rem; color: var(--dark); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.post-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.post-card-body {
  padding: 1.25rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #EFEEEB;
}

.post-meta {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.post-card h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.post-card h3 a {
  text-decoration: none;
  transition: color 0.2s;
}

.post-card h3 a:hover { color: var(--gold); }

.post-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.read-more::after { content: '→'; }
.read-more:hover { gap: 0.65rem; color: var(--gold-light); }

/* View all link */
.view-all-wrap { text-align: center; margin-top: 3rem; }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* Tool feature cards on homepage — solid fill matching .tool-submit style */
.tool-feature-card .btn-outline {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transition: background 0.2s, transform 0.15s;
}

.tool-feature-card .btn-outline:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
}


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0e1a2b;
  padding: 3.5rem 3rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-logo .logo-name { color: var(--mm-pale-yellow); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-logo .logo-img { opacity: 0.85; }

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-social a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}


/* ══════════════════════════════
   PAGE HEADER (non-hero pages)
══════════════════════════════ */
.page-header {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 3rem;
  gap: 1rem;
}

.page-header .logo-name { color: var(--mm-pale-yellow); }
.page-header .logo-tagline { color: rgba(255,255,255,0.45); }

.page-nav {
  display: flex;
  gap: 2.25rem;
  justify-content: center;
}

.page-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

.page-nav a:hover,
.page-nav a.active { color: var(--gold-light); }

/* Page title banner */
.page-intro {
  margin-bottom: 1.5rem;
}

.page-intro h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin: 0.4rem 0 0;
}

.page-intro h1::after,
.page-intro h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.75rem;
  margin-bottom: 0.9rem;
}

.page-intro h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin: 0.4rem 0 0;
}

.tool-section-break {
  border-top: 1px solid var(--border);
  margin: 5rem 0 4rem;
}

.tool-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.tool-column .page-intro h1,
.tool-column .page-intro h2 {
  font-size: 1.9rem;
}

.tool-column .tool-form-wrap {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .tool-columns { grid-template-columns: 1fr; }
}

.page-intro-tagline {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.6;
}

.page-intro > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}


/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.about-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.about-stories-grid .about-story {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 768px) {
  .about-stories-grid {
    grid-template-columns: 1fr;
  }
}

.about-story {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.about-story h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-story h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-story p:last-child { margin-bottom: 0; }

.about-intro-banner {
  margin: 0 -2rem 3.5rem;
  border-radius: 4px;
}

.about-intro {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.author-photo-wrap { flex-shrink: 0; }

.author-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center top;
  background: var(--bg-light);
  border: 4px solid var(--gold);
}

.author-info { padding-top: 0.5rem; }

.author-name {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.author-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.author-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-social a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.author-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-body p:last-child { margin-bottom: 0; }

.about-body h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
}


/* ══════════════════════════════
   CONTRIBUTORS SECTION
══════════════════════════════ */
.contributors-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 5rem 3rem 6rem;
}

.contributors-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contributors-inner h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.contributors-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contributor-card {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.contributor-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  flex-shrink: 0;
}

img.contributor-photo {
  object-fit: contain;
  object-position: center top;
  background: var(--white);
}

.contributor-info {
  padding-top: 0.5rem;
}

.contributor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.contributor-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contributor-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.contributor-social {
  display: flex;
  gap: 1rem;
}

.contributor-social a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contributor-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .contributor-card { flex-direction: column; align-items: center; text-align: center; }
  .contributor-social { justify-content: center; }
}


/* ══════════════════════════════
   BLOG LISTING PAGE
══════════════════════════════ */
.blog-listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}


/* ══════════════════════════════
   POST PAGE
══════════════════════════════ */

.post-cover {
  width: 100%;
  height: auto;
  display: block;
}

.post-header {
  max-width: 780px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.post-category {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.post-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.post-date {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.post-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

.post-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.post-body p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.post-body p:last-child { margin-bottom: 0; }

/* Post navigation (prev/next) */
.post-nav {
  border-top: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.post-nav-item { display: flex; flex-direction: column; gap: 0.4rem; }
.post-nav-item.next { text-align: right; }

.post-nav-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}

.post-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.35;
}

.post-nav-title:hover { color: var(--gold); }

.post-back {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.post-back a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.post-back a:hover { color: var(--gold-light); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-header,
  .sticky-nav,
  .page-header { grid-template-columns: 1fr; gap: 0.75rem; padding-left: 1.5rem; padding-right: 1.5rem; }

  .hero-nav,
  .page-nav { justify-content: flex-start; }

  .hero-body { padding: 0 1.5rem 3.5rem; }

  .intro,
  .blog-section { padding-left: 1.5rem; padding-right: 1.5rem; }

  .about-intro { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .author-social { justify-content: center; }

  .blog-listing { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .hero { min-height: 75vh; }
  .hero-title { font-size: 1.75rem; }
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
}


/* ══════════════════════════════
   TOOLS SECTION (homepage)
══════════════════════════════ */
.tools-section {
  background: #EFEEEB;
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.tool-feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tool-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.tool-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tool-feature-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.tool-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}


/* ══════════════════════════════
   GUIDES PAGE
══════════════════════════════ */
.guides-coming-soon {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}

.guides-coming-soon h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.guides-coming-soon p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.guides-coming-soon a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guides-placeholder-grid {
  opacity: 0.6;
}

.guide-card .post-card-body,
.guide-card-body {
  padding-top: 1.5rem;
}

.guide-tag-inline {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}


/* ══════════════════════════════
   TOOL PAGES (michelin + plan)
══════════════════════════════ */
.tool-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.page-white,
.page-michelin {
  background: #ffffff;
}

.page-plan {
  background: #ffffff;
}

.page-plan .form-input,
.page-plan .form-select {
  background: #ffffff;
  border-color: var(--gold);
}

.page-plan .interest-btn {
  background: #ffffff;
}

.page-plan .persona-card {
  background: #ffffff;
}

.page-michelin .tool-columns {
  gap: 2rem;
  align-items: stretch;
}

.page-michelin .tool-column {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.tool-intro {
  max-width: 660px;
  margin: 0 auto 3rem;
  text-align: center;
}

.tool-intro p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.tool-form-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
}

.tool-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-label-note {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: none;
  font-weight: 400;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row--main .form-input { font-size: 1.05rem; }

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.tool-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.tool-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.tool-submit:disabled { opacity: 0.55; cursor: not-allowed; }

/* Loading */
.tool-loading,
.tool-error {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.tool-loading.visible,
.tool-error.visible { display: block; }

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.tool-loading p { color: var(--text-light); font-size: 0.9rem; }
.tool-error p   { color: #b94040; font-size: 0.95rem; }

/* Results */
.tool-results,
.itinerary-output { display: none; }
.tool-results.visible,
.itinerary-output.visible { display: block; }

.results-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.results-header h2 { font-size: 1.75rem; color: var(--dark); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Michelin result cards */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.result-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }

.result-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.result-name {
  font-size: 1.1rem;
  color: var(--dark);
  flex: 1;
}

.michelin-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge--star     { background: #b91c1c; color: #fff; }
.badge--bib      { background: var(--gold); color: #fff; }
.badge--selected { background: var(--bg-light); color: var(--gold); border: 1px solid var(--gold); }

.result-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.result-cuisine,
.result-price {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.result-price { font-weight: 700; color: var(--gold); }

.result-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.result-tip {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-light);
  padding: 0.6rem 0.85rem;
  border-radius: 3px;
  border-left: 2px solid var(--gold);
}

/* Affiliate strip */
.tool-affiliates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.affiliate-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-light);
  border-radius: 4px;
}

.affiliate-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.affiliate-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.6; }

/* ── Plan form specifics ── */
.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

/* Priority order badges on interests and persona cards */
.order-badge {
  position: absolute;
  top: -7px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.persona-card .order-badge {
  top: 6px;
  right: 8px;
  background: var(--gold);
}

.interest-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.interest-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
}

.persona-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
}

.persona-card input[type="radio"] { display: none; }

.persona-card.selected,
.persona-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.persona-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.persona-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── Itinerary output ── */
.itinerary-header {
  text-align: center;
  margin-bottom: 3rem;
}

.itinerary-header h2 { font-size: 1.75rem; color: var(--dark); }

.itinerary-persona-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  font-weight: 700;
}

.day-block {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 0 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.day-block--teaser { margin-bottom: 0; }

.day-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.day-segment { margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.75; color: var(--text); }

.day-block p { font-size: 0.95rem; line-height: 1.75; color: var(--text-light); margin-bottom: 0.75rem; }

/* ── Email gate ── */
.email-gate { display: none; }
.email-gate.visible { display: block; }

.email-gate-inner {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.email-gate-inner h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.email-gate-inner p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.email-gate-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto 1rem;
}

.email-gate-note { font-size: 0.75rem; color: var(--text-light); margin: 0; }

#itinFull { display: none; }
#itinFull.visible { display: block; }
#itinAffiliates { display: none; }
#itinAffiliates.visible { display: block; }


/* ══════════════════════════════
   RESPONSIVE – new components
══════════════════════════════ */
@media (max-width: 1200px) {
  .persona-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .persona-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .tools-grid          { grid-template-columns: 1fr 1fr; }
  .results-grid        { grid-template-columns: 1fr; }
  .tool-affiliates     { grid-template-columns: 1fr; }
  .form-row-group      { grid-template-columns: 1fr; }
  .persona-grid        { grid-template-columns: repeat(3, 1fr); }
  .email-gate-form     { flex-direction: column; }
  .tools-section       { padding-left: 1.5rem; padding-right: 1.5rem; }
  .tool-page           { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 600px) {
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid   { grid-template-columns: 1fr; }
}


/* ══════════════════════════════
   NAV LOGIN BUTTON
══════════════════════════════ */
.nav-login {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-login {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-login:hover {
  border-color: #D8C078;
  color: #D8C078;
}


/* ══════════════════════════════
   LOGIN MODAL
══════════════════════════════ */
.login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.login-modal.open { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 2.5rem 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
}

.modal-close:hover { color: var(--text); }

.modal-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--mm-indigo);
  margin-bottom: 1.5rem;
}

.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

.modal-tab {
  background: none;
  border: none;
  padding: 0.55rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.modal-tab.active {
  color: var(--mm-indigo);
  border-bottom-color: var(--mm-champagne-gold);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-form .modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.modal-form .modal-input:focus { border-color: var(--mm-champagne-gold); }

.modal-submit {
  background: var(--mm-indigo);
  color: #fff;
  border: none;
  padding: 0.85rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.modal-submit:hover { background: var(--mm-enamel-blue); }

.modal-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.modal-note a { color: var(--gold); text-decoration: none; }
.modal-note a:hover { color: var(--gold-light); }


/* ══════════════════════════════
   PERSONAS PAGE
══════════════════════════════ */
.personas-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.personas-page .page-intro { margin-bottom: 2.5rem; }

.persona-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.persona-tile {
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.15s, transform 0.15s;
}

.persona-tile:hover { border-color: var(--mm-champagne-gold); transform: translateY(-2px); }

.persona-tile.selected {
  border-color: var(--mm-champagne-gold);
  background: var(--mm-ivory-cloud);
}

.persona-tile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mm-indigo);
  color: var(--mm-pale-yellow);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.persona-tile-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mm-indigo);
  line-height: 1.3;
}

.persona-tile-role {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* Profile panel */
.persona-profile-panel {
  display: none;
  animation: mmFadeUp 0.3s ease;
}

.persona-profile-panel.visible { display: block; }

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

.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

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

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--mm-indigo);
  color: var(--mm-pale-yellow);
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.profile-type {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.profile-card-right h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--mm-indigo);
  margin-bottom: 0.25rem;
}

.profile-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  border-left: 3px solid var(--mm-champagne-gold);
  padding-left: 1rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.65;
}

.profile-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.profile-works-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.profile-works {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.profile-works li a {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--mm-indigo);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.profile-works li a:hover { border-color: var(--mm-champagne-gold); color: var(--gold); }

@media (max-width: 768px) {
  .persona-tiles { grid-template-columns: repeat(2, 1fr); }
  .profile-card  { grid-template-columns: 1fr; gap: 1.5rem; }
  .profile-card-left { display: flex; align-items: center; gap: 1.5rem; text-align: left; }
}


/* ══════════════════════════════
   CONTRIBUTORS PAGE
══════════════════════════════ */
.contributors-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.contributors-hero-band {
  background: var(--mm-indigo);
  border-radius: 4px;
  padding: 3rem 3rem 2.75rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.contributors-hero-band h2 {
  color: var(--mm-pale-yellow);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.contributors-hero-band p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
}

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

.what-card {
  background: var(--bg-light);
  border-radius: 4px;
  padding: 1.75rem;
}

.what-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.what-card h3 {
  font-size: 1rem;
  color: var(--mm-indigo);
  margin-bottom: 0.5rem;
}

.what-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.contrib-apply-wrap {
  background: var(--bg-light);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 620px;
  margin: 0 auto;
}

.contrib-apply-wrap h2 { color: var(--mm-indigo); margin-bottom: 0.4rem; }

.contrib-apply-wrap > p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contrib-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contrib-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.contrib-input,
.contrib-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.contrib-input:focus,
.contrib-textarea:focus { border-color: var(--mm-champagne-gold); }

.contrib-textarea { resize: vertical; }

@media (max-width: 768px) {
  .what-grid { grid-template-columns: 1fr; }
  .contributors-hero-band { padding: 2rem 1.5rem; }
  .contrib-apply-wrap { padding: 1.75rem; }
}


/* ══════════════════════════════
   CONTRIBUTORS CALLOUT (homepage)
══════════════════════════════ */
.contrib-callout-section {
  background: var(--mm-indigo);
  padding: 5rem 3rem;
}

.contrib-callout-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contrib-callout-text .section-label {
  color: var(--mm-champagne-gold);
  opacity: 0.85;
}

.contrib-callout-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--mm-pale-yellow);
  margin: 0.5rem 0 1.25rem;
}

.contrib-callout-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 1rem;
}

.contrib-callout-text .btn-outline {
  margin-top: 0.75rem;
  border-color: var(--mm-champagne-gold);
  color: var(--mm-champagne-gold);
}

.contrib-callout-text .btn-outline:hover {
  background: var(--mm-champagne-gold);
  color: var(--mm-indigo);
}

.contrib-callout-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contrib-pillar {
  display: grid;
  grid-template-columns: 2rem 1fr;
  column-gap: 1rem;
  row-gap: 0.2rem;
  align-items: start;
}

.contrib-pillar-icon {
  font-size: 1.2rem;
  padding-top: 0.1rem;
}

.contrib-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--mm-pale-yellow);
  font-weight: 600;
  grid-column: 2;
}

.contrib-pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  grid-column: 2;
  margin: 0;
}

@media (max-width: 768px) {
  .contrib-callout-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contrib-callout-section { padding: 3.5rem 1.5rem; }
}
