/*
Theme Name:        IMOLE Campaign
Theme URI:         https://waleadegoroye.com
Author:            Prince Adewale Adegoroye Campaign Team
Author URI:        https://waleadegoroye.com
Description:       Official campaign theme for Prince Adewale Adegoroye — IMOLE. Built for Elementor, WooCommerce, and all major WordPress plugins. Akure North Constituency, Ondo State House of Assembly 2027.
Version:           1.0.0
Requires at least: 5.8
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       imole-campaign
Tags:              one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready, elementor
*/

/* ── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  --imole-navy:        #1B2A4A;
  --imole-navy-dark:   #0F1A30;
  --imole-navy-light:  #243558;
  --imole-orange:      #E07B0A;
  --imole-orange-dark: #B86208;
  --imole-gold:        #C8960A;
  --imole-gold-light:  #E8B828;
  --imole-cream:       #F9F4EC;
  --imole-cream-dark:  #EDE4D4;
  --imole-white:       #FFFFFF;
  --imole-text:        #1B2A4A;
  --imole-text-muted:  #5A6A8A;
  --imole-border:      rgba(27, 42, 74, 0.12);

  --imole-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --imole-font-body:    'Barlow', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --imole-font-ui:      'Barlow Condensed', 'Segoe UI', system-ui, sans-serif;

  --imole-radius:   12px;
  --imole-radius-sm: 6px;
  --imole-shadow:   0 4px 24px rgba(27, 42, 74, 0.10);
  --imole-shadow-lg: 0 12px 48px rgba(27, 42, 74, 0.16);

  --imole-container: 1200px;
  --imole-gap:       clamp(16px, 4vw, 40px);
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--imole-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--imole-text);
  background-color: var(--imole-white);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--imole-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--imole-navy);
  margin: 0 0 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--imole-orange);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover { color: var(--imole-orange-dark); text-decoration: underline; }

strong, b { font-weight: 600; color: var(--imole-navy); }
em, i { font-style: italic; }

blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  border-left: 4px solid var(--imole-orange);
  background: var(--imole-cream);
  border-radius: 0 var(--imole-radius) var(--imole-radius) 0;
  font-family: var(--imole-font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--imole-navy);
}

blockquote cite {
  display: block;
  margin-top: 0.75em;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--imole-gold);
  letter-spacing: 0.05em;
}

hr {
  border: none;
  border-top: 2px solid var(--imole-border);
  margin: 2.5em 0;
}

/* ── Lists ──────────────────────────────────────────────────────────────── */
ul, ol { margin: 0 0 1.25em 1.5em; padding: 0; }
ul { list-style: disc; }
ol { list-style: decimal; }
li { margin-bottom: 0.5em; }
li > ul, li > ol { margin-top: 0.5em; margin-bottom: 0; }

/* ── Images & Media ─────────────────────────────────────────────────────── */
img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

figure { margin: 0 0 1.5em; }
figcaption {
  font-size: 0.875rem;
  color: var(--imole-text-muted);
  text-align: center;
  margin-top: 0.5em;
  font-style: italic;
}

/* ── Tables ─────────────────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.9375rem;
}
th {
  background: var(--imole-navy);
  color: var(--imole-white);
  padding: 0.75em 1em;
  text-align: left;
  font-family: var(--imole-font-ui);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
td {
  padding: 0.75em 1em;
  border-bottom: 1px solid var(--imole-border);
}
tr:nth-child(even) td { background: var(--imole-cream); }

/* ── Forms ──────────────────────────────────────────────────────────────── */
input, textarea, select, button {
  font-family: var(--imole-font-body);
  font-size: 1rem;
  line-height: 1.5;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--imole-border);
  border-radius: var(--imole-radius-sm);
  background: var(--imole-white);
  color: var(--imole-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--imole-orange);
  box-shadow: 0 0 0 3px rgba(224, 123, 10, 0.12);
}

textarea { min-height: 140px; resize: vertical; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn,
button[type="submit"],
input[type="submit"],
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 2em;
  border: 2px solid transparent;
  border-radius: var(--imole-radius-sm);
  font-family: var(--imole-font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary,
button[type="submit"],
input[type="submit"] {
  background: var(--imole-orange);
  color: var(--imole-white);
  border-color: var(--imole-orange);
}
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--imole-orange-dark);
  border-color: var(--imole-orange-dark);
  color: var(--imole-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 123, 10, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--imole-navy);
  border-color: var(--imole-navy);
}
.btn-secondary:hover {
  background: var(--imole-navy);
  color: var(--imole-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--imole-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--imole-white);
  color: var(--imole-white);
  text-decoration: none;
}

.btn-gold {
  background: var(--imole-gold);
  color: var(--imole-navy);
  border-color: var(--imole-gold);
}
.btn-gold:hover {
  background: var(--imole-gold-light);
  border-color: var(--imole-gold-light);
  color: var(--imole-navy);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-lg { padding: 1em 2.5em; font-size: 1.0625rem; }
.btn-sm { padding: 0.5em 1.25em; font-size: 0.8125rem; }

/* ── Layout Containers ──────────────────────────────────────────────────── */
.imole-container {
  width: 100%;
  max-width: var(--imole-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--imole-gap);
  padding-right: var(--imole-gap);
}

.imole-container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--imole-gap);
  padding-right: var(--imole-gap);
}

.imole-section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.imole-grid {
  display: grid;
  gap: var(--imole-gap);
}
.imole-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.imole-grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.imole-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ── Site Wrapper ───────────────────────────────────────────────────────── */
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content { flex: 1 0 auto; }

/* ── Skip Link ──────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 0.75em 1.5em;
  background: var(--imole-orange);
  color: var(--imole-white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--imole-radius-sm) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Site Header ────────────────────────────────────────────────────────── */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--imole-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: background 0.3s, box-shadow 0.3s;
}

#masthead.scrolled {
  background: rgba(15, 26, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 70px;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-branding .custom-logo {
  height: 44px;
  width: auto;
  border-radius: 50%;
}

.site-title {
  font-family: var(--imole-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--imole-gold-light);
  line-height: 1;
  margin: 0;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-title span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--imole-font-ui);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,244,236,0.55);
  margin-top: 2px;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.main-navigation ul li {
  position: relative;
  margin: 0;
}

.main-navigation ul li a {
  display: block;
  padding: 0.5em 0.875em;
  color: rgba(249,244,236,0.8);
  font-family: var(--imole-font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--imole-radius-sm);
  transition: color 0.2s, background 0.2s;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a {
  color: var(--imole-orange);
  background: rgba(224,123,10,0.08);
}

/* Dropdown */
.main-navigation ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--imole-navy-dark);
  border: 1px solid rgba(200,150,10,0.15);
  border-radius: var(--imole-radius);
  padding: 0.5rem;
  gap: 0;
  flex-direction: column;
  display: none;
  box-shadow: var(--imole-shadow-lg);
  z-index: 100;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li:focus-within > ul { display: flex; }
.main-navigation ul li ul li a { font-size: 0.8125rem; }

/* Donate CTA in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1.25em !important;
  background: var(--imole-orange) !important;
  color: var(--imole-white) !important;
  border-radius: 50px !important;
}
.nav-cta:hover {
  background: var(--imole-orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,123,10,0.3);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--imole-cream);
  border-radius: 2px;
  transition: all 0.25s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ───────────────────────────────────────────────────────── */
.imole-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--imole-navy);
  overflow: hidden;
}

.imole-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(224,123,10,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200,150,10,0.06) 0%, transparent 45%);
  pointer-events: none;
}

.hero-gold-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--imole-gold), var(--imole-orange), var(--imole-gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--imole-orange);
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--imole-font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--imole-gold-light);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.hero-imole {
  font-family: var(--imole-font-heading);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--imole-orange);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-shadow: 0 0 80px rgba(224,123,10,0.2);
  margin-bottom: 1.25rem;
}

.hero-slogan {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200,150,10,0.2);
}

.hero-slogan-yor {
  font-family: var(--imole-font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--imole-cream);
  margin-bottom: 0.3rem;
}

.hero-slogan-eng {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,244,236,0.5);
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(249,244,236,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--imole-gold), var(--imole-orange), var(--imole-gold));
  z-index: -1;
}

.hero-photo-frame img {
  width: 100%;
  max-width: 440px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero-photo-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--imole-navy-dark);
  border: 1px solid rgba(200,150,10,0.3);
  border-radius: 50px;
  padding: 0.6em 1.5em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-photo-badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
}

.hero-photo-badge span {
  font-family: var(--imole-font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--imole-gold-light);
}

/* ── Section Headings ───────────────────────────────────────────────────── */
.imole-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--imole-font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--imole-navy);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-title-light { color: var(--imole-cream); }

.section-lead {
  font-size: 1.125rem;
  color: var(--imole-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-lead-light { color: rgba(249,244,236,0.7); }

/* ── Declaration Section ────────────────────────────────────────────────── */
.imole-declaration {
  background: var(--imole-navy);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.imole-declaration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,123,10,0.08) 0%, transparent 65%);
}

.declaration-name {
  font-family: var(--imole-font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--imole-gold-light);
  position: relative;
  z-index: 1;
  margin-bottom: 0.25em;
}

.declaration-imole {
  font-family: var(--imole-font-heading);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 700;
  color: var(--imole-orange);
  line-height: 0.85;
  letter-spacing: 0.03em;
  text-shadow: 0 0 100px rgba(224,123,10,0.2);
  position: relative;
  z-index: 1;
  margin: 0.15em 0;
}

.declaration-slogan {
  font-family: var(--imole-font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--imole-cream);
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

.declaration-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--imole-orange), var(--imole-gold));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ── About Section ──────────────────────────────────────────────────────── */
.imole-about { background: var(--imole-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: var(--imole-radius);
  box-shadow: var(--imole-shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--imole-navy);
  border: 1px solid rgba(200,150,10,0.3);
  border-radius: var(--imole-radius);
  padding: 1.25em 1.5em;
  text-align: center;
  box-shadow: var(--imole-shadow-lg);
}

.about-badge-year {
  font-family: var(--imole-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--imole-orange);
  line-height: 1;
  margin-bottom: 0.2em;
}

.about-badge-label {
  font-family: var(--imole-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--imole-cream);
  opacity: 0.7;
}

.about-content .section-eyebrow { display: block; text-align: left; }
.about-content .section-title { text-align: left; }

.about-quote {
  font-family: var(--imole-font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--imole-navy);
  border-left: 3px solid var(--imole-orange);
  padding-left: 1.25em;
  margin: 1.5em 0;
  line-height: 1.6;
}

/* ── Issues Section ─────────────────────────────────────────────────────── */
.imole-issues { background: var(--imole-white); }

.issue-card {
  background: var(--imole-white);
  border: 1.5px solid var(--imole-border);
  border-radius: var(--imole-radius);
  padding: 2em;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--imole-orange), var(--imole-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.issue-card:hover {
  border-color: rgba(224,123,10,0.25);
  box-shadow: var(--imole-shadow);
  transform: translateY(-4px);
}

.issue-card:hover::before { transform: scaleX(1); }

.issue-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(224,123,10,0.1), rgba(200,150,10,0.05));
  border-radius: var(--imole-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25em;
  font-size: 1.75rem;
  color: var(--imole-orange);
}

.issue-title {
  font-family: var(--imole-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--imole-navy);
  margin-bottom: 0.6em;
}

.issue-desc {
  font-size: 0.9375rem;
  color: var(--imole-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Donation Section ───────────────────────────────────────────────────── */
.imole-donate {
  background: var(--imole-navy);
  position: relative;
  overflow: hidden;
}

.imole-donate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(224,123,10,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200,150,10,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.donate-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,10,0.2);
  border-radius: var(--imole-radius);
  padding: 1.25em;
  transition: all 0.22s;
  cursor: default;
  position: relative;
}

.tier-card:hover {
  border-color: rgba(224,123,10,0.5);
  background: rgba(224,123,10,0.06);
  transform: translateY(-2px);
}

.tier-card.featured {
  border-color: var(--imole-orange);
  background: rgba(224,123,10,0.08);
}

.tier-popular {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--imole-orange);
  color: var(--imole-navy);
  font-family: var(--imole-font-ui);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--imole-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--imole-gold);
  margin-bottom: 0.4em;
}

.tier-amount {
  font-family: var(--imole-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--imole-cream);
  line-height: 1;
  margin-bottom: 0.4em;
}

.tier-amount sup {
  font-size: 1.1rem;
  color: var(--imole-gold);
}

.tier-desc {
  font-size: 0.8125rem;
  color: rgba(249,244,236,0.55);
  line-height: 1.55;
  margin: 0;
}

.tier-full {
  background: linear-gradient(135deg, rgba(200,150,10,0.1), rgba(224,123,10,0.05));
  border: 1px solid rgba(200,150,10,0.25);
  border-radius: var(--imole-radius);
  padding: 1.25em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tier-full .tier-amount { font-size: 1.75rem; margin: 0; }
.tier-full-right { text-align: right; }
.tier-full-label {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--imole-gold-light);
  margin-bottom: 0.25em;
}
.tier-full-desc { font-size: 0.8125rem; color: rgba(249,244,236,0.55); }

/* Payment box */
.payment-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,150,10,0.15);
  border-radius: var(--imole-radius);
  padding: 1.5em;
  margin-top: 1.5em;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7em 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1em;
}
.payment-row:last-child { border-bottom: none; }

.payment-key {
  font-size: 0.8125rem;
  color: rgba(249,244,236,0.45);
  flex-shrink: 0;
}

.payment-val {
  font-family: var(--imole-font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--imole-cream);
  text-align: right;
  letter-spacing: 0.02em;
}

.payment-val.highlight {
  color: var(--imole-orange);
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

/* ── Events Section ─────────────────────────────────────────────────────── */
.imole-events { background: var(--imole-cream); }

.event-card {
  background: var(--imole-white);
  border-radius: var(--imole-radius);
  overflow: hidden;
  box-shadow: var(--imole-shadow);
  transition: all 0.25s;
}

.event-card:hover {
  box-shadow: var(--imole-shadow-lg);
  transform: translateY(-4px);
}

.event-date-badge {
  background: var(--imole-navy);
  padding: 1em;
  text-align: center;
  min-width: 72px;
  flex-shrink: 0;
}

.event-date-day {
  font-family: var(--imole-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--imole-orange);
  line-height: 1;
}

.event-date-month {
  font-family: var(--imole-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,244,236,0.65);
}

.event-info { padding: 1.25em 1.5em; flex: 1; }

.event-title {
  font-family: var(--imole-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--imole-navy);
  margin-bottom: 0.35em;
}

.event-meta {
  font-size: 0.8125rem;
  color: var(--imole-text-muted);
}

.event-card .event-inner {
  display: flex;
  align-items: stretch;
}

/* ── News / Blog Section ────────────────────────────────────────────────── */
.imole-news { background: var(--imole-white); }

.post-card {
  border-radius: var(--imole-radius);
  overflow: hidden;
  border: 1.5px solid var(--imole-border);
  transition: all 0.25s;
  background: var(--imole-white);
}

.post-card:hover {
  border-color: rgba(224,123,10,0.25);
  box-shadow: var(--imole-shadow);
  transform: translateY(-4px);
}

.post-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.post-card-body { padding: 1.5em; }

.post-meta {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 0.6em;
  display: flex;
  gap: 0.75em;
  align-items: center;
  flex-wrap: wrap;
}

.post-meta span::before {
  content: '·';
  margin-right: 0.75em;
  color: var(--imole-text-muted);
}
.post-meta span:first-child::before { display: none; }

.post-card-title {
  font-family: var(--imole-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--imole-navy);
  line-height: 1.3;
  margin-bottom: 0.6em;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
}
.post-card-title a:hover { color: var(--imole-orange); }

.post-card-excerpt {
  font-size: 0.9375rem;
  color: var(--imole-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Gallery Section ────────────────────────────────────────────────────── */
.imole-gallery { background: var(--imole-cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--imole-radius-sm);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ── Call to Action ─────────────────────────────────────────────────────── */
.imole-cta {
  background: linear-gradient(135deg, var(--imole-navy) 0%, var(--imole-navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.imole-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,123,10,0.1) 0%, transparent 65%);
}

/* ── Contact Section ────────────────────────────────────────────────────── */
.imole-contact { background: var(--imole-white); }

.contact-info-card {
  background: var(--imole-cream);
  border-radius: var(--imole-radius);
  padding: 2em;
}

.contact-detail {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  margin-bottom: 1.5em;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--imole-navy);
  border-radius: var(--imole-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--imole-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--imole-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 0.25em;
}

.contact-detail-val {
  font-size: 1rem;
  font-weight: 500;
  color: var(--imole-navy);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
#colophon {
  background: var(--imole-navy-dark);
  color: rgba(249,244,236,0.65);
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(200,150,10,0.1);
}

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

.footer-about {}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25em;
}

.footer-brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--imole-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--imole-gold-light);
  line-height: 1.1;
}
.footer-brand-name span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--imole-font-ui);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,244,236,0.45);
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25em;
}

.footer-heading {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 1.25em;
}

.footer-links {
  list-style: none;
  margin: 0; padding: 0;
}

.footer-links li { margin-bottom: 0.6em; }

.footer-links a {
  color: rgba(249,244,236,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--imole-orange); }

.footer-contact-item {
  font-size: 0.875rem;
  color: rgba(249,244,236,0.6);
  margin-bottom: 0.6em;
  display: flex;
  gap: 0.5em;
}

.footer-contact-item strong {
  color: var(--imole-gold);
  font-weight: 600;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.footer-copy {
  color: rgba(249,244,236,0.4);
}

.footer-election {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--imole-orange);
}

.footer-slogan {
  font-family: var(--imole-font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(249,244,236,0.45);
}

/* ── Main content layout ─────────────────────────────────────────────────── */
.content-area {
  padding: clamp(40px, 5vw, 80px) 0;
}

.entry-header { margin-bottom: 2em; }

.entry-title {
  font-family: var(--imole-font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--imole-navy);
  margin-bottom: 0.5em;
}

.entry-meta {
  font-family: var(--imole-font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--imole-text-muted);
}

.entry-meta a { color: var(--imole-orange); }

.entry-content { max-width: 740px; }

.entry-thumbnail {
  margin-bottom: 2em;
  border-radius: var(--imole-radius);
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
}

/* Pagination */
.navigation {
  margin: 3em 0;
}

.nav-links {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--imole-radius-sm);
  border: 1.5px solid var(--imole-border);
  font-family: var(--imole-font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--imole-text);
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--imole-orange);
  border-color: var(--imole-orange);
  color: var(--imole-white);
  text-decoration: none;
}

/* Comments */
.comments-area { margin-top: 3em; }
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label { font-weight: 600; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.widget {
  margin-bottom: 2.5em;
  padding: 1.75em;
  background: var(--imole-cream);
  border-radius: var(--imole-radius);
}

.widget:last-child { margin-bottom: 0; }

.widget-title {
  font-family: var(--imole-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imole-orange);
  margin-bottom: 1.25em;
  padding-bottom: 0.75em;
  border-bottom: 2px solid rgba(224,123,10,0.2);
}

.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li {
  padding: 0.4em 0;
  border-bottom: 1px solid var(--imole-border);
  font-size: 0.9375rem;
}
.widget ul li:last-child { border-bottom: none; }

/* ── Utility classes ─────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-orange { color: var(--imole-orange) !important; }
.text-navy   { color: var(--imole-navy) !important; }
.text-gold   { color: var(--imole-gold) !important; }
.text-muted  { color: var(--imole-text-muted) !important; }
.text-white  { color: var(--imole-white) !important; }

.bg-navy   { background-color: var(--imole-navy); }
.bg-cream  { background-color: var(--imole-cream); }
.bg-white  { background-color: var(--imole-white); }
.bg-orange { background-color: var(--imole-orange); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-auto { margin-top: auto; }

.w-full  { width: 100%; }
.rounded { border-radius: var(--imole-radius); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease-out both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 2.5rem; }
  .hero-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-navigation {
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--imole-navy-dark);
    border-bottom: 2px solid var(--imole-orange);
    padding: 1rem;
    display: none;
  }

  .main-navigation.toggled { display: block; }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-navigation ul li ul {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: rgba(0,0,0,0.2);
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 80px 0 60px;
  }

  .hero-visual { order: -1; }
  .hero-photo-frame img { max-width: 320px; margin: 0 auto; }
  .hero-photo-badge { bottom: -16px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }

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

  .hero-imole { font-size: clamp(4rem, 20vw, 7rem); }
  .declaration-imole { font-size: clamp(4rem, 22vw, 10rem); }
}

@media (max-width: 480px) {
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .tier-full { flex-direction: column; }
  .tier-full-right { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  #masthead, #colophon, .hero-actions, .imole-donate { display: none; }
  body { font-size: 12pt; }
}
