/* ============================================
   Hand Me Hope Shop - Pietersfield, Springs
   Warm, vibrant, community-focused design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg: #faf7f2;
  --bg-warm: #fff5eb;
  --bg-dark: #1a1a2e;
  --card: #ffffff;
  --text: #2d2d3a;
  --text-light: #5a5a72;
  --text-white: #ffffff;
  --accent: #e85d75;
  --accent-dark: #d14460;
  --accent2: #f4a261;
  --accent3: #2a9d8f;
  --purple: #7c3aed;
  --whatsapp: #25d366;
  --line: rgba(0,0,0,0.08);
  --line-light: rgba(255,255,255,0.15);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-accent: 0 8px 30px rgba(232,93,117,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --max: 1100px;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* --- Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: inherit; }
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  box-shadow: var(--shadow-accent);
}
.brand__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.brand__tag {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1px;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 20px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    z-index: 105;
  }
  .nav--open { right: 0; }
  .nav a { font-size: 16px; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  box-shadow: 0 12px 35px rgba(232,93,117,0.35);
  color: white;
}

.btn--outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: white;
}

.btn--nav {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
}
.btn--nav:hover { color: white; box-shadow: var(--shadow-accent); }

.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: #1fba59;
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
  color: white;
}

/* --- Text Gradient --- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.85) 0%,
    rgba(26,26,46,0.7) 40%,
    rgba(232,93,117,0.3) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}
.hero__content { max-width: 650px; }

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--accent2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero .text-gradient {
  background: linear-gradient(135deg, var(--accent2), #f7c59f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 28px;
}
.hero .lead strong { color: white; }

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
}
.hero .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* --- Stats Banner --- */
.stats {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 28px 20px;
  text-align: center;
  color: white;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .stat { padding: 20px 16px; }
}

/* --- Sections --- */
.section { padding: 72px 0; }
.section--warm {
  background: var(--bg-warm);
}
.section--dark {
  background: var(--bg-dark);
  color: white;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}
.section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.section__desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.section__header--light .section__desc { color: rgba(255,255,255,0.6); }
.section__header--light h2 { color: white; }
.section__header--compact {
  margin-top: 40px;
  margin-bottom: 24px;
}
.section__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 20px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* --- Panel Cards --- */
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.panel--accent {
  border-left: 4px solid var(--accent);
}

.panel--glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
}

.panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232,93,117,0.1), rgba(244,162,97,0.1));
  color: var(--accent);
  margin-bottom: 16px;
}
.panel__icon--warm {
  background: linear-gradient(135deg, rgba(244,162,97,0.15), rgba(232,93,117,0.1));
  color: var(--accent2);
}

.panel h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.panel p { color: var(--text-light); line-height: 1.7; }

/* --- Check List --- */
.check-list {
  list-style: none;
  margin-top: 16px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent3), #4ecdc4);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* --- Info Rows --- */
.info-rows { margin-top: 8px; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.info-value {
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}

/* --- Donation Form --- */
.donation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.donation-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.donation-form input,
.donation-form select,
.donation-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
}
.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
  outline: none;
  border-color: rgba(232,93,117,0.5);
  box-shadow: 0 0 0 3px rgba(232,93,117,0.15);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.form-hidden { display: none; }
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

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

/* --- Steps --- */
.steps {
  list-style: none;
  margin-top: 12px;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.steps li span:last-child {
  color: var(--text-light);
  padding-top: 5px;
  line-height: 1.5;
}

.tip {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(42,157,143,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent3);
  font-size: 14px;
  color: var(--text-light);
}

/* --- Wish List Grid --- */
.wish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.wish-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(244,162,97,0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.wish-icon { font-size: 20px; flex-shrink: 0; }

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

/* --- Opening Banner --- */
.opening-banner {
  margin-top: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(232,93,117,0.06), rgba(244,162,97,0.06));
  border-radius: var(--radius-sm);
  text-align: center;
}
.opening-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.opening-banner p {
  font-size: 14px;
  color: var(--text-light);
}

/* --- Address Block --- */
.address-block {
  margin-top: 12px;
}
.address-block p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* --- Sponsor Cards --- */
.sponsor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sponsor-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(232,93,117,0.1), rgba(244,162,97,0.08));
  color: var(--accent);
  margin: 0 auto 14px;
}
.sponsor-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sponsor-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sponsor-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Gratitude Banner --- */
.gratitude-banner {
  margin-top: 32px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(232,93,117,0.08), rgba(244,162,97,0.08));
  border: 1px solid rgba(232,93,117,0.15);
  border-radius: var(--radius-xl);
  text-align: center;
}
.gratitude-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}
.gratitude-text strong { color: var(--accent); }
.gratitude-sig {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* --- Sponsor Request --- */
.sponsor-request {
  margin-top: 32px;
  padding: 32px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-xl);
  text-align: center;
}
.sponsor-request__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.sponsor-request__desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.sponsor-request__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sponsor-request__card {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow);
}
.sponsor-request__card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.sponsor-request__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}
.sponsor-request__btn {
  display: inline-flex;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .sponsor-request { padding: 24px 16px; }
  .sponsor-request__cards { flex-direction: column; align-items: center; }
  .sponsor-request__card { max-width: 100%; width: 100%; }
}

/* --- Contact Cards --- */
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.contact-card--whatsapp {
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.06);
}
.contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.contact-card--whatsapp .contact-card__icon {
  background: rgba(37,211,102,0.15);
  color: var(--whatsapp);
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}
.contact-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.contact-detail {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.contact-details { text-align: left; }
.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child { border-bottom: none; }
.contact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.contact-value {
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.contact-link { color: var(--accent2); }
.contact-link:hover { color: var(--accent); }

/* --- Footer --- */
.footer {
  background: #111122;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  color: rgba(255,255,255,0.5);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
}
.footer__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.footer__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.footer__copy { font-size: 13px; }
.footer__links { display: flex; gap: 16px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* --- Motivation Popup --- */
.motivation-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 24, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}
.motivation-modal.is-visible { display: flex; }
.motivation-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: pop-in 0.35s ease;
}
.motivation-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,93,117,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.motivation-word {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0;
}
.motivation-verse {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.motivation-note {
  color: var(--text-light);
  margin-bottom: 20px;
}
.motivation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@keyframes pop-in {
  from { transform: translateY(10px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- Mobile Responsive Tweaks --- */
@media (max-width: 768px) {
  .hero { min-height: 65vh; }
  .hero__inner { padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .section { padding: 48px 0; }
  .panel { padding: 22px; }
  .sponsor-card { padding: 22px 16px; }
  .contact-card { padding: 24px; }
}
