/* =============================================
   The ROI of Sponsoring — Main CSS
   ============================================= */
:root {
  --bg:            #f0efe9;
  --bg-dark:       #1c2031;
  --accent:        #5a6835;
  --accent-light:  #f0f2e8;
  --text:          #2c2c2c;
  --muted:         #6b6b6b;
  --white:         #ffffff;
  --border:        #d8d7d1;
  --radius:        6px;
  --shadow:        0 2px 12px rgba(0,0,0,0.07);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; }
h3 { font-size: 1.8rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; font-family: 'Inter', sans-serif; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary  { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }
.btn-primary:hover { opacity: 0.85; }
.btn-accent   { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { opacity: 0.85; }
.btn-outline  { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-sm  { padding: 8px 16px; font-size: 1rem; }
.btn-lg  { padding: 13px 28px; font-size: 1.05rem; }
.btn-register {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-register:hover { opacity: 0.85; }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
/* Op homepage: absoluut over de foto */
.site-header--over-image {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
/* Logo is donker over de beige achtergrond — geen filter nodig */
.site-header--over-image .site-logo { filter: none; }
/* Gewone links donker; knoppen (.btn) behouden hun eigen kleur */
.site-header--over-image .main-nav a:not(.btn) { color: var(--text); }
.site-header--over-image .main-nav a:not(.btn):hover { color: var(--accent); }
/* Knop: groen achtergrond + witte tekst, zowel normaal als hover */
.site-header--over-image .main-nav .btn { color: #fff; }
.site-header--over-image .main-nav .btn:hover { opacity: 0.88; color: #fff; }
.site-header--over-image .hamburger span { background: var(--text); }
/* Bij scrollen: donkere balk → logo en tekst wit */
.site-header--over-image.scrolled .site-logo { filter: brightness(0) invert(1); }
.site-header--over-image.scrolled .main-nav a:not(.btn) { color: rgba(255,255,255,0.9); }
.site-header--over-image.scrolled .main-nav a:not(.btn):hover { color: #fff; }
.site-header--over-image.scrolled .main-nav .btn { color: #fff; }
.site-header--over-image.scrolled .hamburger span { background: #fff; }
/* Na scrollen: donkere achtergrond + fixed zodat het niet mee scrollt */
.site-header--over-image.scrolled {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(42,45,46,0.97);
  border-bottom-color: transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  transition: height 0.3s ease;
}
.site-header.scrolled .header-inner { height: 72px; }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo  { height: 120px; width: auto; transition: height 0.3s ease; }
.site-header.scrolled .site-logo { height: 48px; }
.main-nav   { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--text); }
.main-nav .btn { color: #fff; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 40px 24px;
  gap: 0;
}
.mobile-nav a {
  font-size: 1rem; font-weight: 500;
  color: var(--text); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* =============================================
   FLASH
   ============================================= */
.flash-messages { position: fixed; top: 76px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.flash { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: var(--radius); font-size: 1.05rem; font-weight: 500; max-width: 360px; box-shadow: var(--shadow); }
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error   { background: #fee2e2; color: #991b1b; }
.flash-info    { background: #dbeafe; color: #1e40af; }
.flash-close   { background: none; border: none; cursor: pointer; font-size: 1.1rem; margin-left: auto; opacity: 0.6; }

/* =============================================
   SECTIONS
   ============================================= */
.section         { padding: 96px 0; border-top: 1px solid var(--border); }
.section-white   { background: var(--white); }
.section-dark    { background: var(--bg-dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
/* Scheidingslijn op donkere en volle secties */
.cause-split     { border-top: 1px solid var(--border); }
.exposure-section { border-top: 1px solid var(--border); }
.cta-section     { border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer     { border-top: 1px solid var(--border); }

/* =============================================
   HERO — volledige achtergrond afbeelding, tekst blok zweeft bovenop
   ============================================= */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
/* Achtergrond afbeelding — volledig breedte, cover */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
/* Tekst blok — geen achtergrond, foto toont door */
.hero-left {
  position: relative;
  z-index: 2;
  width: 50%;
  min-height: 580px;
  padding-top: 180px;
  padding-bottom: 72px;
  padding-right: 72px;
  padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Decoratieve stippelcirkel */
.hero-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 2px dashed rgba(90,104,53,0.55);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  pointer-events: none;
  z-index: 3;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 10px;
  text-shadow: 0 1px 12px rgba(240,239,233,0.7);
}
/* Gebogen streep onder "Without Excuses" */
.hero-underline {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 18px;
  margin-bottom: 28px;
  overflow: visible;
}
.hero-left p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.65;
  max-width: 440px;
  text-shadow: 0 1px 8px rgba(240,239,233,0.6);
}
.hero-not-later {
  color: var(--text) !important;
  font-size: 1rem !important;
  margin-top: 4px;
  margin-bottom: 1.5rem !important;
}
.hero-cta { margin-top: 8px; }

/* =============================================
   SECTION 1: LET'S BE HONEST
   ============================================= */
.honest-grid {
  display: grid;
  grid-template-columns: 280px 240px 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.honest-heading h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 14px; }
.honest-heading p  { font-size: 1.05rem; color: var(--muted); }
.honest-list ul    { display: flex; flex-direction: column; gap: 10px; }
.honest-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.05rem;
}
.honest-list li::before {
  content: '✕';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.honest-text p { font-size: 1.1rem; line-height: 2; color: var(--muted); }
.honest-quote {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  display: flex;
  align-items: center;
}
.honest-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
}

/* =============================================
   SECTION 2: CAUSE AND EFFECT (split)
   ============================================= */
.cause-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cause-dark {
  background: #2A2D2E;
  padding: 80px 64px 80px 56px;
}
.cause-dark h2 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
}
.cause-dark h2 .green { color: var(--accent); }
.cause-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.cause-step { flex: 1; }
.cause-step .icon {
  width: 52px; height: 52px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.8);
}
.cause-step .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.cause-step p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.cause-arrow { color: rgba(255,255,255,0.35); font-size: 1.8rem; margin-top: 14px; flex-shrink: 0; }
.cause-dark > p { font-size: 1rem; color: rgba(255,255,255,0.6); font-style: italic; }

.cause-light {
  background: var(--bg);
  padding: 80px 56px 80px 64px;
}
.cause-light h3 { font-size: 2rem; line-height: 1.3; margin-bottom: 28px; }
.cause-numbered { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cause-numbered-item { display: flex; gap: 14px; align-items: flex-start; }
.cause-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.cause-numbered-item p { font-size: 1.05rem; margin: 0; }
.cause-note {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.cause-note svg { flex-shrink: 0; color: var(--muted); margin-top: 2px; }
.cause-note p { font-size: 1rem; color: var(--muted); }

/* =============================================
   SECTION 3: WHAT YOU'LL FIND
   ============================================= */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 240px;
  gap: 56px;
  align-items: start;
}
.find-col h3 { margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 1.05rem; line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.find-aside { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.find-aside-icon {
  font-size: 6rem;
  color: var(--accent);
}
.find-aside .icon-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.find-aside blockquote {
  border-left: none;
  padding-left: 0;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.4;
  color: var(--text);
}

/* =============================================
   SECTION 4: TWO GEARS
   ============================================= */
.gears-section h2 { margin-bottom: 40px; }
.gears-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.gears-marathon p,
.gears-sprint p { font-size: 1.25rem; color: var(--muted); line-height: 1.7; }
.gears-marathon strong,
.gears-sprint strong {
  display: block; font-size: 1.4rem;
  margin-bottom: 14px; color: var(--text);
  font-family: 'Playfair Display', serif;
}
.gears-img { width: 280px; }
.gears-img img { width: 100%; }
.gears-quote {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  font-size: 1.2rem;
  line-height: 1.7;
}
.gears-quote strong { display: block; margin-top: 6px; }

/* =============================================
   SECTION 5: THIS IS FOR YOU IF
   ============================================= */
.for-you-section h2 { margin-bottom: 40px; }
.for-you-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.for-you-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.for-item { display: flex; flex-direction: column; gap: 18px; }
.for-item .icon { width: 120px; height: 120px; font-size: 4.5rem; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.for-item p { font-size: 1.1rem; color: var(--muted); line-height: 1.6; }
.for-aside {
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.for-aside .icon-circle {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.for-aside p { font-size: 1.05rem; color: var(--muted); }
.for-aside .clarity {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--accent); line-height: 1.15;
}

/* =============================================
   SECTION 6: EXPOSURE IS BOUGHT
   ============================================= */
.exposure-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
/* Afbeelding: volledig scherm breed als achtergrond */
.exposure-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.exposure-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Container die boven de foto zweeft */
.exposure-inner {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 88px;
}
/* Tekst binnen de container — halve breedte voor leesbaarheid */
.exposure-text {
  max-width: 680px;
}
.exposure-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
  text-shadow: 0 1px 6px rgba(240,239,233,0.6);
}
.exposure-text h2 em { font-style: italic; color: var(--accent); }
.exposure-text p { font-size: 1.05rem; color: var(--text); margin-bottom: 0.7rem; }
.exposure-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.05rem; font-weight: 600; color: var(--accent);
  margin-top: 12px;
}
.exposure-link:hover { text-decoration: underline; }

/* =============================================
   SECTION 7: ARTICLES
   ============================================= */
.articles-section h2 { margin-bottom: 28px; }
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; color: inherit; display: flex; flex-direction: column; }
.article-card:hover { box-shadow: var(--shadow); }
.article-img { aspect-ratio: 16/9; overflow: hidden; background: var(--border); }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-img img { transform: scale(1.03); }
.article-body { padding: 20px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.article-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 16px; }
.article-read-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; margin-top: auto;
  width: fit-content;
}
.article-read-btn:hover { opacity: 0.85; }

/* =============================================
   SECTION 8: READY TO STOP GUESSING
   ============================================= */
.cta-section {
  background: #2A2D2E;
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-heading h2 { color: #fff; font-size: 3.2rem; line-height: 1.15; margin-bottom: 14px; }
.cta-heading p  { color: rgba(255,255,255,0.55); font-size: 1rem; }
.cta-list { display: flex; flex-direction: column; gap: 14px; }
.cta-list-label { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.cta-list-item { display: flex; gap: 10px; align-items: flex-start; }
.cta-list-item svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.cta-list-item span { font-size: 1rem; color: rgba(255,255,255,0.85); }
.cta-register { display: flex; flex-direction: column; gap: 14px; }
.cta-nospam { font-size: 1.05rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--bg); padding: 52px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.footer-detail { font-size: 1.05rem; color: var(--muted); display: block; line-height: 1.8; }
.footer-detail a { color: var(--muted); }
.footer-detail a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; font-size: 1rem; color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); }
.footer-bottom-links a:hover { color: var(--text); }
.footer-logo { height: 22px; width: auto; margin-bottom: 12px; opacity: 0.6; }

/* =============================================
   PAGE HEADER (binnenste pagina's)
   ============================================= */
.page-header { background: #2A2D2E; border-bottom: none; padding: 40px 0; }
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.page-header p  { color: rgba(255,255,255,0.6); margin-top: 8px; }
.breadcrumb { display: flex; gap: 8px; font-size: 1rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb span { opacity: 0.4; }

/* =============================================
   BLOG / ARTICLES PAGINA
   ============================================= */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.article-category {
  display: inline-block; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}

/* =============================================
   BLOG POST
   ============================================= */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.post-article {}
.post-featured-image { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden; }
.post-featured-image img { width: 100%; }
.post-header { margin-bottom: 28px; }
.post-header h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 10px 0; }
.post-meta { display: flex; gap: 16px; font-size: 1rem; color: var(--muted); flex-wrap: wrap; }
.post-content { font-size: 1.05rem; line-height: 1.8; }
.post-content h2, .post-content h3 { margin: 1.8rem 0 0.8rem; }
.post-content p { margin-bottom: 1.1rem; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 1.05rem; }
.post-content th, .post-content td { padding: 9px 12px; border: 1px solid var(--border); text-align: left; }
.post-content th { background: var(--white); font-weight: 600; }
.post-footer { display: flex; gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sidebar-card h4 { margin-bottom: 8px; }
.sidebar-card p { font-size: 1.05rem; color: var(--muted); }
.sidebar-author strong { display: block; font-size: 1rem; }
.sidebar-author span { font-size: 1rem; color: var(--muted); display: block; }
.sidebar-author a { font-size: 1rem; color: var(--accent); display: block; margin-top: 3px; }

/* =============================================
   JOIN THE LIST
   ============================================= */
.join-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.join-intro h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.join-intro .lead { font-size: 1rem; color: var(--muted); margin-bottom: 20px; }
.join-promises { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.join-promise { display: flex; gap: 10px; align-items: flex-start; font-size: 1rem; }
.join-promise svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.join-nospam { font-size: 1rem; color: var(--muted); font-style: italic; }
.join-form-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.join-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 1rem; font-weight: 600; }
.form-group input { padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; background: var(--bg); transition: border-color 0.2s; }
.form-group input:focus { outline: none; border-color: var(--accent); background: var(--white); }
.required { color: var(--accent); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { display: flex; flex-direction: column; gap: 3px; }
.contact-card strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 5px; }
.contact-card span { font-size: 1rem; color: rgba(255,255,255,0.55); }
.contact-card a { font-size: 1rem; color: rgba(255,255,255,0.7); margin-top: 3px; }
.contact-card a:hover { color: #fff; }

/* =============================================
   CMS PAGE / 404
   ============================================= */
.cms-content { max-width: 760px; }
.cms-content h2 { margin-bottom: 1rem; }
.cms-content p { margin-bottom: 1rem; }
.not-found { text-align: center; padding: 100px 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-left { width: 70%; padding-top: 160px; padding-right: 40px; }
  .hero-circle { display: none; }
  .cause-split { grid-template-columns: 1fr; }
  .cause-dark, .cause-light { padding: 48px 40px; }
  .gears-layout { grid-template-columns: 1fr 1fr; }
  .gears-img { display: none; }
  .exposure-section { min-height: 400px; }
  .exposure-text { max-width: 80%; }
  .cta-inner { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .join-layout { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .hero-left { width: 100%; min-height: 0; padding-right: 20px; }
  .exposure-text { width: 100%; padding-right: 20px; }
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .honest-grid { grid-template-columns: 1fr; gap: 24px; }
  .find-grid { grid-template-columns: 1fr; }
  .for-you-layout { grid-template-columns: 1fr; }
  .for-you-items { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .join-form-wrap { padding: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}


/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 28px;
}
.thankyou-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.thankyou-wrap h1 { margin-bottom: 8px; }
.thankyou-wrap .hero-underline { margin: 0 auto 40px; }
.thankyou-body { margin-bottom: 40px; }
.thankyou-body p { font-size: 1.1rem; color: var(--muted); }
.thankyou-sign { margin-top: 32px; font-size: 1.1rem; color: var(--text) !important; }
