/* ═══════════════════════════════════════════════
   Lucas Hewitt for Iowa House — Campaign Site CSS
   ═══════════════════════════════════════════════ */

:root {
  --teal:       #0097a7;
  --teal-deep:  #006978;
  --teal-light: #40c4d4;
  --teal-pale:  #e0f4f6;
  --red:        #c5292a;
  --red-dark:   #9a1f1f;
  --cream:      #f7f2ea;
  --cream-dark: #ede6d8;
  --ink:        #1a1a26;
  --ink-mid:    #3d3d4e;
  --ink-muted:  #7a7a8e;
  --white:      #ffffff;
  --nav-h:      64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
}

.HideMe {display: none}

span.avoidwrap { display:inline-block; }

/* ─── NAV ─── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--ink);
  border-bottom: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--nav-h);
  transition: box-shadow 0.3s;
}
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-stripes { display: flex; flex-direction: column; gap: 3px; }
.nav-stripes span { display: block; height: 2.5px; border-radius: 2px; background: var(--teal-light); }
.nav-stripes span:nth-child(1) { width: 22px; }
.nav-stripes span:nth-child(2) { width: 16px; opacity: 0.7; }
.nav-stripes span:nth-child(3) { width: 10px; opacity: 0.45; }
.nav-stripes span:nth-child(4) { width: 6px;  opacity: 0.22; }
.nav-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--white); }
.nav-name em { font-style: normal; color: var(--teal-light); }

.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-light); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 4px; font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px; z-index: 1001;
}
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column; padding: 8px 0 24px; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 15px 28px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85);
  text-decoration: none; letter-spacing: 0.03em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, background 0.2s;
}
.nav-drawer a:hover { color: var(--teal-light); background: rgba(255,255,255,0.04); }
.nav-drawer a.drawer-cta {
  color: var(--white); background: var(--red); margin: 16px 28px 0;
  border-radius: 4px; border: none; text-align: center; font-weight: 600;
}
.nav-drawer a.drawer-cta:hover { background: var(--red-dark); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-weight: 600; font-size: clamp(15px, 1.4vw, 17px); letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 500; font-size: clamp(15px, 1.4vw, 17px); letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 4px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35); transition: border-color 0.2s, color 0.2s, transform 0.15s; cursor: pointer;
}
.btn-outline-light:hover { border-color: var(--teal-light); color: var(--teal-light); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-weight: 600; font-size: clamp(15px, 1.4vw, 17px); letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 4px; text-decoration: none;
  border: 2px solid var(--ink); transition: background 0.2s, color 0.2s, transform 0.15s; cursor: pointer;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }

/* ─── SECTION UTILITIES ─── */
section { position: relative; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* Section label — readable subtitle, not a tiny decorative tag */
.section-label {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 600;
  color: var(--teal-deep); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label.light { color: var(--teal-light); }

.section-heading {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px); line-height: 1.08;
  color: var(--ink); margin-bottom: 24px;
}
.section-heading.light { color: var(--white); }


/* ─── HERO ─── */
#hero {
  min-height: 100vh; background: var(--ink);
  display: flex; align-items: stretch;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-inner {
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px; position: relative; z-index: 2;
}

/* "No-Party Candidate" — very first thing the eye lands on */
.hero-identity {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(18px, 2.7vw, 42px); font-weight: 700;
  color: var(--teal-light); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 20px; line-height: 1;
}

.hero-name {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(64px, 10vw, 156px); line-height: 0.92;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 24px;
  width: fit-content;
}
.hero-name .last { color: var(--teal-light); }
.hero-name::after {
  content: ''; display: block; width: 100%; height: 3px;
  background: var(--teal-light); border-radius: 2px;
  margin-top: 10px;
}

.hero-tagline {
  font-size: clamp(32px, 6vw, 95px); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 24px; max-width: none;
}
.hero-tagline strong { color: var(--teal-light); }

.hero-body {
  font-size: clamp(18px, 1.9vw, 28px); font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.65;
  margin-bottom: 40px; max-width: clamp(310px, -217.4px + 48.39vw, 460px);
}
.hero-body strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { position: relative; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #006978 0%, #003d47 60%, #1a1a26 100%);
  display: flex; align-items: flex-end; justify-content: center; position: relative;
}
.hero-photo-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(0,151,167,0.06) 18px, rgba(0,151,167,0.06) 19px);
}
.hero-photo {
  height: 140%; width: auto;
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  object-fit: contain; pointer-events: none;
}
.hero-bg-text {
  position: absolute; bottom: -20px; right: -10px;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 200px; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
}
.photo-silhouette {
  width: 420px; height: 85%;
  background: linear-gradient(to top, rgba(0,105,120,0.8) 0%, transparent 50%);
  border-radius: 200px 200px 0 0;
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}
.photo-label {
  position: absolute; bottom: 28px; left: 28px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.18); padding: 7px 14px; border-radius: 3px;
}

/* ─── PLATFORM ─── */
#platform { padding: 100px 0; background: var(--cream); }

.platform-intro {
  font-size: clamp(18px, 2vw, 24px); font-weight: 300;
  color: var(--ink-mid); max-width: 640px; line-height: 1.7; margin-bottom: 56px;
}

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

.platform-card {
  background: #20203a; padding: 52px 40px;
  position: relative; overflow: hidden; transition: background 0.3s;   display: flex;
  flex-direction: column;
  align-items: center;
}
.platform-card:first-child { border-radius: 4px 0 0 4px; }
.platform-card:last-child  { border-radius: 0 4px 4px 0; }
.platform-card:hover { background: #28284a; }
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal);
}
.platform-card:nth-child(2)::before { background: var(--red); }
.platform-card:nth-child(3)::before { background: #d4a840; }

.card-icon-wrap {
  width: 300px; height: 300px; border-radius: 20px;
  background: rgba(0,151,167,0.15); display: flex; align-items: center;
  justify-content: center; margin-bottom: 32px;
}
.platform-card:nth-child(2) .card-icon-wrap { background: rgba(197,41,42,0.15); }
.platform-card:nth-child(3) .card-icon-wrap { background: rgba(212,168,64,0.15); }
.card-icon-wrap svg { width: 100%; height: 100%; padding: 15px; box-sizing: border-box; }

.card-num {
  font-family: 'Playfair Display', serif; font-size: 90px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1; position: absolute; bottom: 12px; right: 20px;
}

.card-title {
  font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.15;
}
.card-body {
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: rgba(255,255,255,0.68);
}

/* Platform "Why no specific promises" callout — prominent, not a footnote */
.platform-note {
  margin-top: 3px; background: var(--white); border-radius: 0 0 4px 4px;
  padding: 44px 40px; display: flex; gap: 28px; align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.06); border-top: none;
}
.platform-note-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
}
.platform-note-icon svg { width: 28px; height: 28px; color: var(--teal-deep); stroke: var(--teal-deep); }
.platform-note-title {
  font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700; color: var(--ink); margin-bottom: 10px;
}
.platform-note-body {
  font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: var(--ink-mid);
}
.platform-cta { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── ABOUT ─── */
#about { padding: 100px 0; background: var(--cream-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.about-left { padding-top: 8px; }
.about-photo-box {
  aspect-ratio: 1/1; background: var(--cream); border-radius: 50%;
  position: relative; overflow: hidden; border: 4px solid var(--teal);
  margin-bottom: 24px;
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: 65% center; display: block;
}

/* Circular bio photos — hidden on desktop (left column handles it), visible on small screens */
.bio-circle {
  display: none;
  border-radius: 50%; border: 4px solid var(--teal);
  background: var(--cream); position: relative; overflow: hidden; flex-shrink: 0;
}
.bio-circle img {
  width: 100%; height: 100%; object-fit: cover; object-position: 65% center; display: block;
}
.bio-circle-1 { float: right; margin: 4px 0 20px 28px; }
.bio-circle-2 { float: left;  margin: 4px 28px 20px 0; }

.about-right p {
  font-size: clamp(17px, 1.7vw, 20px); line-height: 1.8; color: var(--ink-mid); margin-bottom: 22px;
}
.about-right p strong { color: var(--ink); font-weight: 600; }

.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 36px; border-top: 1px solid var(--cream-dark); padding-top: 32px;
}
.fact-label {
  font-size: clamp(13px, 1.2vw, 15px); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 5px;
}
.fact-value { font-size: clamp(15px, 1.4vw, 17px); font-weight: 500; color: var(--ink); }
.about-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── VIDEOS ─── */
#videos { padding: 100px 0; background: var(--ink); }
.videos-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.videos-header a {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 600;
  color: var(--teal-light); text-decoration: none;
}
.video-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 12px; }
.video-card { background: #20203a; border-radius: 4px; overflow: hidden; cursor: pointer; transition: transform 0.25s; }
.video-card:hover { transform: scale(1.01); }
.video-card.featured { grid-row: span 2; }
.video-thumb {
  aspect-ratio: 16/9; background: linear-gradient(135deg, #1a2a30 0%, #006978 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.video-card.featured .video-thumb { aspect-ratio: unset; height: 100%; min-height: 340px; }
.play-btn {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; padding-left: 4px; transition: transform 0.2s, background 0.2s; z-index: 2;
}
.video-card:hover .play-btn { transform: scale(1.08); background: white; }
.video-info { padding: 18px 20px 22px; }
.video-type {
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 8px;
}
.video-title {
  font-size: clamp(15px, 1.5vw, 17px); font-weight: 600; color: var(--white); line-height: 1.4;
}
.video-card.featured .video-title { font-size: clamp(17px, 1.7vw, 20px); }
.video-duration {
  position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.72); color: white;
  font-size: 14px; font-weight: 600; padding: 4px 9px; border-radius: 3px;
}

/* ─── ENDORSEMENTS ─── */
#endorsements { padding: 100px 0; background: var(--cream-dark); position: relative; overflow: hidden; }
#endorsements::before {
  content: '"'; position: absolute; top: -40px; right: -20px;
  font-family: 'Playfair Display', serif; font-size: 400px; line-height: 1;
  color: rgba(0,151,167,0.08); pointer-events: none;
}
.endorsement-intro {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 300;
  color: var(--ink-mid); max-width: 500px; line-height: 1.7; margin-bottom: 52px;
}
.endorsement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.endorsement-card {
  background: var(--white); border-radius: 4px; padding: 36px 30px;
  border-left: 4px solid var(--teal); transition: box-shadow 0.2s;
}
.endorsement-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.endorsement-card:nth-child(2) { border-color: var(--teal-light); }
.endorsement-card:nth-child(3) { border-color: var(--red); }
.endorsement-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(16px, 1.7vw, 20px); line-height: 1.7; color: var(--ink-mid); margin-bottom: 22px;
}
.endorsement-who { font-weight: 700; font-size: clamp(15px, 1.4vw, 17px); color: var(--ink); margin-bottom: 4px; }
.endorsement-role { font-size: clamp(14px, 1.3vw, 15px); font-weight: 500; color: var(--ink-muted); }
.endorsements-placeholder {
  margin-top: 36px; border: 1.5px dashed rgba(0,0,0,0.15); border-radius: 4px;
  padding: 28px 32px; display: flex; align-items: flex-start; gap: 18px; background: rgba(255,255,255,0.5);
}
.endorsements-placeholder-text { font-size: clamp(15px, 1.4vw, 17px); color: var(--ink-muted); line-height: 1.6; }
.endorsements-placeholder-text strong { color: var(--ink-mid); }

/* ─── BLOG ─── */
#blog { padding: 100px 0; background: var(--cream); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.blog-header a {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 600;
  color: var(--teal-deep); text-decoration: none;
}
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.blog-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.blog-img { height: 190px; background: linear-gradient(135deg, var(--teal-pale) 0%, var(--cream-dark) 100%); position: relative; }
.blog-card.featured .blog-img { height: 250px; }
.blog-cat {
  position: absolute; top: 14px; left: 14px; background: var(--teal); color: white;
  font-size: clamp(13px, 1.3vw, 14px); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
}
.blog-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: clamp(14px, 1.3vw, 15px); font-weight: 500; color: var(--ink-muted); margin-bottom: 10px; }
.blog-title {
  font-family: 'Playfair Display', serif; font-size: clamp(17px, 1.7vw, 20px); font-weight: 700;
  color: var(--ink); line-height: 1.3; margin-bottom: 12px; flex: 1;
}
.blog-card:not(.featured) .blog-title { font-size: clamp(15px, 1.5vw, 17px); }
.blog-excerpt { font-size: clamp(14px, 1.4vw, 16px); color: var(--ink-muted); line-height: 1.65; }

/* ─── GET INVOLVED ─── */
#involved { padding: 100px 0; background: var(--teal); color: var(--white); position: relative; overflow: hidden; }
#involved::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,0.03) 24px, rgba(255,255,255,0.03) 25px);
}
#involved .section-label { color: rgba(255,255,255,0.75); }
#involved .section-heading { color: var(--white); }

.involved-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.involved-card {
  background: rgba(255,255,255,0.1); border-radius: 4px; padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.18); text-decoration: none; color: white;
  display: flex; flex-direction: column; transition: background 0.2s, transform 0.2s;
}
.involved-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.involved-icon-wrap {
  width: 76px; height: 76px; border-radius: 18px;
  background: rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; flex-shrink: 0;
}
.involved-icon-wrap svg { width: 38px; height: 38px; }
.involved-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 26px); font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.involved-desc {
  font-size: clamp(15px, 1.5vw, 17px); color: rgba(255,255,255,0.72);
  line-height: 1.7; flex: 1; margin-bottom: 24px;
}
.involved-link {
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.involved-card:hover .involved-link { color: var(--white); }
.involved-link::after { content: ' →'; }

/* ─── DONATE ─── */
#donate {
  padding: 100px 0; background: var(--ink); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
#donate::before {
  content: 'DONATE'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif; font-size: 220px; font-weight: 900;
  color: rgba(255,255,255,0.02); white-space: nowrap; pointer-events: none;
}
#donate .section-label { color: var(--red); display: flex; justify-content: center; }
#donate .section-heading { color: var(--white); }
.donate-sub {
  font-size: clamp(17px, 1.8vw, 22px); font-weight: 300;
  color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 48px; line-height: 1.7;
}
.donate-amounts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.donate-amounts .row-break { flex-basis: 100%; height: 0; }
.donate-amounts .row-break-small { display: none; }
.donate-btn {
  padding: 14px 28px; border-radius: 4px; font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px); cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25); background: transparent;
  color: white; transition: all 0.2s;
}
.donate-btn:hover, .donate-btn.active { background: var(--red); border-color: var(--red); }
.donate-btn.custom { border-style: dashed; color: rgba(255,255,255,0.55); }
.donate-btn.custom.active { border-style: solid; min-width: 120px; cursor: text; color: white; }
.donate-btn.custom.active::before { content: '$'; pointer-events: none; }
.donate-btn.custom.active:empty::before { content: '$ '; opacity: 0.5; }
.donate-error { color: #f87171; font-size: 14px; margin-top: -12px; margin-bottom: 12px; display: none; }
.donate-action .btn-primary.disabled { opacity: 0.4; pointer-events: none; }
.donate-action { margin-top: 8px; }
.donate-note {
  margin-top: 22px;
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 500;
  color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
}
.donate-options { display: flex; gap: 24px; justify-content: center; margin-top: 32px; flex-wrap: wrap; flex-direction: column; }
.donate-option-link {
  font-size: clamp(14px, 1.3vw, 15px); color: rgba(255,255,255,0.4);
  text-decoration: underline; cursor: pointer; transition: color 0.2s;
}
.donate-option-link:hover { color: rgba(255,255,255,0.75); }

/* ─── CONTACT ─── */
#contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-sub {
  font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-mid);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: var(--ink); transition: color 0.2s;
}
.contact-row:hover { color: var(--teal-deep); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--teal-deep); }
.contact-text { font-size: clamp(15px, 1.5vw, 17px); font-weight: 500; }
.contact-form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-deep);
}
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--cream-dark); border-radius: 4px;
  font-size: clamp(15px, 1.4vw, 16px); background: var(--white); color: var(--ink);
  font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--teal); }
textarea.form-input { resize: vertical; min-height: 130px; }

/* ─── SOCIAL ─── */
#social { background: var(--cream-dark); padding: 56px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.social-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.social-label {
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted);
}
.social-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border: 2px solid var(--teal); border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: clamp(14px, 1.3vw, 16px);
  color: var(--teal-deep); background: var(--white); transition: all 0.25s;
}
.social-link:hover { background: var(--teal); color: var(--white); }
svg.social-icon { width: 22px; height: 22px; flex-shrink: 0; transition: color 0.25s; }
.social-link--fb svg.social-icon { color: #1877F2; }
.social-link--ig svg.social-icon { color: #E4405F; }
.social-link--tt svg.social-icon { color: #000000; }
.social-link:hover svg.social-icon { color: var(--white); }

/* ─── FOOTER ─── */
footer { background: #0f0f1a; padding: 52px 0 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap; margin-bottom: 44px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(20px, 2vw, 28px); color: var(--white); margin-bottom: 6px; }
.footer-sub { font-size: clamp(13px, 1.3vw, 16px); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-light); }
.footer-nav { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col-label {
  font-size: clamp(13px, 1.2vw, 14px); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: clamp(14px, 1.4vw, 16px); margin-bottom: 9px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-legal { font-size: clamp(13px, 1.3vw, 14px); color: rgba(255,255,255,0.25); }
.footer-disclaimer { font-size: clamp(13px, 1.3vw, 14px); color: rgba(255,255,255,0.2); max-width: 440px; text-align: right; line-height: 1.5; }



/* ═══ RESPONSIVE ═══ */

@media (max-width: 1280px) {
  .hero-actions  { flex-direction: column; }
  .hero-actions a { max-width: fit-content; }
}

/* Tablet */
@media (max-width: 1024px) {
  .section-inner { padding: 0 32px; }
  .social-inner  { padding: 0 32px; }
  .footer-inner  { padding: 0 32px; }
  #main-nav      { padding: 0 32px; }
  .hero-left     { padding: 60px 40px 60px 48px; }
  .platform-grid { grid-template-columns: 1fr; gap: 3px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .platform-card { padding: 40px 36px; }
  .card-title { font-size: clamp(26px, 3.5vw, 34px); }
  .platform-card:first-child { border-radius: 4px 4px 0 0; }
  .platform-card:last-child  { border-radius: 0 0 4px 4px; }
  .platform-card:nth-child(2) { border-radius: 0; }
  .platform-note { border-radius: 0 0 4px 4px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .involved-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card.featured { grid-row: auto; grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; }
  .endorsement-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { display: none; }
  .bio-circle { display: block; width: 200px; height: 200px }
  /* .bio-circle { display: block; width: clamp(130px, 28vw, 200px); height: clamp(130px, 28vw, 200px); } */
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-nav { gap: 36px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --nav-h: 58px; }
  #main-nav    { padding: 0 20px; }
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }
  .section-inner { padding: 0 20px; }
  .social-inner  { padding: 0 20px; }
  .footer-inner  { padding: 0 20px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left  { padding: 52px 20px 60px; }
  #hero       { min-height: auto; }

  /* Sections */
  #platform, #about, #videos, #endorsements,
  #blog, #involved, #donate, #contact { padding: 72px 0; }
  #social { padding: 40px 0; }

  /* Grids */
  .platform-grid { grid-template-columns: 1fr; max-width: 100%; }
  .bio-circle { width: 160px; height: 160px }
  /* .bio-circle { width: clamp(110px, 32vw, 160px); height: clamp(110px, 32vw, 160px); } */
  .platform-note { flex-direction: column; padding: 32px 28px; }
  .video-grid  { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: auto; }
  .endorsement-grid { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: auto; }
  .involved-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-row    { grid-template-columns: 1fr; }

  /* Donate */
  #donate::before { font-size: 100px; }
  .donate-amounts { gap: 8px; }
  .donate-amounts .row-break { display: none; }
  .donate-amounts .row-break-small { display: block; flex-basis: 100%; height: 0; }
  .donate-btn { padding: 12px 20px; }

  /* Footer */
  footer { padding: 44px 0 24px; }
  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-actions, .platform-cta, .about-cta { flex-direction: column; }
  .hero-actions a, .platform-cta a, .about-cta a { text-align: center; justify-content: center; }
}