/*
  Amber's Love — Home Page Styles
  Warm, welcoming nonprofit design matching the brand logo palette.
*/

/* ─── CSS Variables / Design Tokens ─── */
:root {
  /* Brand colors from logo and prompt */
  --heart-red: #F44A3E;
  --heart-red-hover: #D93A30;
  --warm-coral: #F45A46;
  --deep-green: #3F730A;
  --forest-green: #2F6405;
  --olive-green: #3F730A;
  --olive-green-hover: #2F6405;
  --lime-green: #B8D94A;
  --soft-lime: #A0C040;
  --gold: #F7DD3E;
  --sunshine-yellow: #F7DD3E;
  --soft-gold-glow: #FFF2B8;
  --cream: #FFFDF7;
  --warm-cream: #FFFDF7;
  --bg-light: #FFFCF5;
  --bg-cream: #F9F6EE;
  --heading: #242424;
  --body-text: #3D3A35;
  --body-muted: #5E5A54;
  --charcoal: #242424;
  --white: #FFFFFF;
  --border: #EDE8DD;

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', 'Nunito Sans', system-ui, sans-serif;

  /* Layout */
  --max-width: 1720px;
  --nav-height: 130px;
  --radius: 16px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(36, 36, 36, 0.05);
  --shadow-md: 0 12px 32px rgba(36, 36, 36, 0.09);
  --shadow-lg: 0 24px 60px rgba(36, 36, 36, 0.12);
  --shadow-red: 0 12px 40px rgba(244, 74, 62, 0.28);
  --shadow-green: 0 12px 40px rgba(63, 115, 10, 0.22);

  /* Animation */
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset / Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0.01s;
    --transition-slow: 0.01s;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--olive-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--heart-red);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 500;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--body-muted);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-padding {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  background: var(--heart-red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-lg {
  min-height: 78px;
  padding: 1.1rem 2.6rem;
  font-size: 1.15rem;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--olive-green) 100%);
  color: var(--white);
  border-color: var(--deep-green);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-green) 100%);
  border-color: var(--forest-green);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(63, 115, 10, 0.28);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--heart-red) 0%, var(--warm-coral) 100%);
  color: var(--white);
  border-color: var(--heart-red);
  box-shadow: var(--shadow-red);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--heart-red-hover) 0%, var(--heart-red) 100%);
  border-color: var(--heart-red-hover);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(244, 74, 62, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--deep-green);
  border-color: var(--deep-green);
}

.btn-ghost:hover {
  background: rgba(63, 115, 10, 0.08);
  color: var(--deep-green);
}

.btn-light {
  background: var(--white);
  color: var(--heart-red);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--soft-gold-glow);
  color: var(--heart-red);
}

/* Heart pulse on hover for buttons */
.btn:hover svg {
  animation: heartPulse 0.9s ease-in-out;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.18); }
  50% { transform: scale(1); }
  75% { transform: scale(1.12); }
}

/* ─── Top Banner ─── */
.top-banner {
  background: linear-gradient(90deg, var(--deep-green) 0%, var(--forest-green) 100%);
  color: var(--white);
  font-size: 0.92rem;
  padding: 0.7rem 0;
}

.top-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-banner p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 500;
}

.top-banner p svg {
  color: var(--white);
  filter: drop-shadow(0 0 4px rgba(247, 221, 62, 0.5));
}

.top-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  color: var(--deep-green);
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--deep-green);
  transition: transform var(--transition), box-shadow var(--transition);
}

.top-banner-btn::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: heartPulse 2.2s ease-in-out infinite;
}

.top-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(63, 115, 10, 0.2);
  color: var(--deep-green);
}

.top-banner-btn:hover::after {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .top-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .top-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 0;
}

.logo img {
  max-width: 220px;
  max-height: calc(var(--nav-height) - 40px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .logo img {
    max-width: 190px;
    max-height: calc(var(--nav-height) - 36px);
  }
}

@media (max-width: 640px) {
  .logo img {
    max-width: 170px;
    max-height: calc(var(--nav-height) - 32px);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.15rem;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--deep-green);
  border-radius: 2px;
  transition: width var(--transition), left var(--transition);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--deep-green);
  background: rgba(63, 115, 10, 0.06);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 60%;
  left: 20%;
}

.main-nav a.active {
  color: var(--deep-green);
  background: rgba(63, 115, 10, 0.08);
  font-weight: 700;
}

.main-nav a.active::after {
  width: 60%;
  left: 20%;
}

.main-nav a.active::before {
  content: '\2665';
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  color: var(--heart-red);
  line-height: 1;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--heading);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-actions .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  min-height: 46px;
}

.nav-actions .btn-ghost {
  background: var(--white);
  color: var(--deep-green);
  border-color: var(--deep-green);
  box-shadow: 0 2px 8px rgba(63, 115, 10, 0.08);
}

.nav-actions .btn-ghost:hover {
  background: rgba(63, 115, 10, 0.08);
  color: var(--deep-green);
  box-shadow: 0 4px 14px rgba(63, 115, 10, 0.12);
}

.nav-actions .btn-primary {
  box-shadow: var(--shadow-red);
}

@media (max-width: 1200px) {
  .site-header .container {
    gap: 1rem;
  }

  .logo img {
    max-width: 180px;
  }

  .main-nav a {
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .main-nav ul {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: min(340px, 90vw);
    height: calc(100vh - var(--nav-height));
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-slow);
    align-items: flex-start;
    gap: 0.5rem;
    overflow-y: auto;
  }

  .main-nav ul.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
  }

  .main-nav a.active::before {
    left: auto;
    right: 1rem;
    transform: none;
    bottom: 50%;
    transform: translateY(50%);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 110px;
  }

  .site-header .container {
    height: var(--nav-height);
  }

  .logo img {
    max-width: 160px;
  }

  .main-nav ul {
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  background: linear-gradient(120deg, #FFFDF7 0%, #FFFFFF 50%, #FFFAF0 100%);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  min-height: 820px;
  display: flex;
  align-items: center;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-ambient::before,
.hero-ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-ambient::before {
  top: -10%;
  right: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(184, 217, 74, 0.14) 0%, transparent 65%);
}

.hero-ambient::after {
  bottom: -15%;
  left: -10%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(247, 221, 62, 0.12) 0%, transparent 60%);
}

.hero-ribbon {
  position: absolute;
  color: var(--lime-green);
  opacity: 0.55;
}

.hero-ribbon.ribbon-1 {
  top: 15%;
  left: -5%;
  width: 45vw;
  height: auto;
  animation: ribbonFloat 18s ease-in-out infinite;
}

.hero-ribbon.ribbon-2 {
  bottom: 20%;
  left: -8%;
  width: 38vw;
  height: auto;
  animation: ribbonFloat 22s ease-in-out infinite reverse;
}

@keyframes ribbonFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
}

.hero-content {
  max-width: 680px;
  padding-right: 1rem;
  animation: heroContentIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ornament {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--heart-red);
}

.hero-ornament .flourish {
  width: 54px;
  color: var(--lime-green);
  opacity: 0.7;
}

.hero-ornament .ornament-heart {
  color: var(--heart-red);
}

.hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.8rem);
  line-height: 1.02;
  margin-bottom: 1.6rem;
  color: var(--deep-green);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: lineReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 .line-1 { animation-delay: 0.15s; }
.hero h1 .line-2 { animation-delay: 0.3s; }
.hero h1 .line-3 { animation-delay: 0.45s; }

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 .accent {
  color: var(--heart-red);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero h1 .yellow-heart {
  color: var(--sunshine-yellow);
  width: clamp(26px, 2.4vw, 36px);
  height: auto;
  margin-left: 0.2rem;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(247, 221, 62, 0.45));
  animation: heartFloat 3s ease-in-out infinite;
}

@keyframes heartFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-subcopy {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.55;
  color: var(--body-muted);
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions .btn-lg {
  min-width: 220px;
}

.hero-actions .btn-primary {
  min-width: 260px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--body-muted);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.hero-trust svg {
  color: var(--deep-green);
}

/* Hero visual / photo composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 560px;
  animation: heroImageIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: scale(0.98);
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: 48% 52% 44% 56% / 42% 48% 52% 58%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(36, 36, 36, 0.16);
  max-width: 720px;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  background: var(--bg-cream);
  z-index: 2;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -3%;
  border-radius: 52% 48% 46% 54% / 46% 52% 48% 54%;
  background: linear-gradient(135deg, rgba(184, 217, 74, 0.25) 0%, rgba(255, 242, 184, 0.15) 50%, rgba(244, 74, 62, 0.08) 100%);
  z-index: -1;
  animation: blobRotate 24s linear infinite;
}

@keyframes blobRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-logo-badge {
  position: absolute;
  bottom: 28px;
  left: -48px;
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 20px 56px rgba(36, 36, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border: 4px solid rgba(184, 217, 74, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-logo-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 28px 70px rgba(36, 36, 36, 0.26);
}

.hero-logo-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.hero-logo-badge:hover img {
  transform: scale(1.06);
}

.hero-floating-heart {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.08));
  z-index: 4;
}

.hero-floating-heart.heart-1 {
  width: 44px;
  top: 6%;
  left: 2%;
  color: var(--sunshine-yellow);
  animation: floatUp 7s ease-in-out infinite;
}

.hero-floating-heart.heart-2 {
  width: 26px;
  top: 22%;
  left: 10%;
  color: var(--heart-red);
  animation: floatUp 9s ease-in-out infinite 1s;
}

.hero-floating-heart.heart-3 {
  width: 20px;
  top: 14%;
  right: 18%;
  color: var(--sunshine-yellow);
  animation: floatUp 8s ease-in-out infinite 0.5s;
}

.hero-floating-heart.heart-4 {
  width: 28px;
  bottom: 22%;
  right: 6%;
  color: var(--white);
  filter: drop-shadow(0 0 8px rgba(247, 221, 62, 0.55));
  animation: floatUp 10s ease-in-out infinite 1.5s;
}

.hero-floating-heart.heart-5 {
  width: 18px;
  bottom: 8%;
  right: 22%;
  color: var(--warm-coral);
  animation: floatUp 8.5s ease-in-out infinite 2s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50% { transform: translateY(-14px) scale(1.08); opacity: 1; }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1200px) {
  .hero-image-wrapper {
    max-width: 600px;
  }

  .hero-logo-badge {
    width: 130px;
    height: 130px;
    left: -30px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 4rem;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    order: 2;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.2rem);
  }

  .hero-ornament {
    justify-content: center;
  }

  .hero-subcopy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 2.5rem;
    justify-content: center;
    min-height: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 540px;
  }

  .hero-logo-badge {
    width: 120px;
    height: 120px;
    left: -24px;
    bottom: 24px;
  }

  .hero-ribbon {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .hero-actions .btn-lg {
    width: 100%;
    min-width: unset;
  }

  .hero-image-wrapper {
    max-width: 100%;
    border-radius: 40% 60% 38% 62% / 38% 46% 54% 62%;
  }

  .hero-logo-badge {
    width: 100px;
    height: 100px;
    left: -16px;
    bottom: 14px;
    border-width: 3px;
    padding: 6px;
  }

  .hero-floating-heart.heart-1 { width: 32px; left: 4%; }
  .hero-floating-heart.heart-2 { width: 22px; left: 12%; }
  .hero-floating-heart.heart-3 { width: 18px; }
  .hero-floating-heart.heart-4 { width: 22px; }
  .hero-floating-heart.heart-5 { width: 16px; }

  .hero-wave {
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-visual,
  .hero h1 .line {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-ribbon,
  .hero-floating-heart,
  .hero h1 .yellow-heart,
  .hero-image-wrapper::before {
    animation: none;
  }
}

/* ─── Welcome / Mission ─── */
.welcome {
  background: var(--white);
}

.welcome .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.welcome-text h2 {
  margin-bottom: 1.25rem;
  color: var(--olive-green);
}

.welcome-text p {
  color: var(--body-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.5deg);
}

.welcome-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .welcome .container {
    grid-template-columns: 1fr;
  }

  .welcome-image {
    order: -1;
    max-width: 540px;
    margin: 0 auto 1.5rem;
    transform: none;
  }
}

/* ─── How We Help ─── */
.how-we-help {
  background: var(--bg-light);
}

.how-we-help h2,
.how-we-help .section-intro {
  text-align: center;
}

.how-we-help .section-intro {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--body-muted);
  font-size: 1.15rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.help-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--olive-green);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.help-card h3 {
  margin-bottom: 0.6rem;
  color: var(--olive-green);
}

.help-card p {
  color: var(--body-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.help-card a {
  font-weight: 700;
  color: var(--heart-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.help-card a:hover {
  color: var(--heart-red-hover);
}

@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Understanding Cerebral Palsy ─── */
.understanding-cp {
  background: var(--white);
}

.understanding-cp .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.cp-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}

.cp-image img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
}

.cp-content h2 {
  color: var(--olive-green);
  margin-bottom: 0.5rem;
}

.cp-content .lead {
  margin-bottom: 1.25rem;
}

.cp-content p {
  color: var(--body-muted);
  margin-bottom: 1rem;
}

.cp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.75rem 0;
}

.cp-pillar {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cp-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--heart-red);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  box-shadow: var(--shadow-sm);
}

.cp-pillar h4 {
  color: var(--olive-green);
  margin-bottom: 0.3rem;
}

.cp-pillar p {
  font-size: 0.92rem;
  margin: 0;
}

@media (max-width: 900px) {
  .understanding-cp .container {
    grid-template-columns: 1fr;
  }

  .cp-image {
    max-width: 540px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .cp-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .cp-pillars {
    grid-template-columns: 1fr;
  }
}

/* ─── Resources Strip ─── */
.resources-strip {
  background: linear-gradient(135deg, var(--olive-green) 0%, #3d6214 100%);
  color: var(--white);
}

.resources-strip .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.resources-strip h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.resources-strip .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
}

.resource-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.resource-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.resource-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.resource-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.resource-item h4 {
  color: var(--white);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.resource-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

.resources-cta {
  text-align: center;
  margin-top: 2rem;
}

.resources-cta .btn {
  background: var(--white);
  color: var(--olive-green);
  border-color: var(--white);
}

.resources-cta .btn:hover {
  background: var(--cream);
  color: var(--olive-green);
}

@media (max-width: 1024px) {
  .resource-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .resource-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .resource-items {
    grid-template-columns: 1fr;
  }
}

/* ─── Caregiver Stories ─── */
.stories {
  background: var(--bg-cream);
}

.stories h2 {
  text-align: center;
  color: var(--olive-green);
  margin-bottom: 2.5rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.story-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.story-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--olive-green);
}

.story-card .role {
  font-size: 0.92rem;
  color: var(--body-muted);
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

/* ─── Final CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--heart-red) 0%, #c9402d 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 1.8rem;
}

.final-cta .btn {
  background: var(--white);
  color: var(--heart-red);
  border-color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.final-cta .btn:hover {
  background: var(--cream);
  color: var(--heart-red);
}

.final-cta-content {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.final-cta-image {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(45, 42, 38, 0.25);
}

.final-cta-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .final-cta-image {
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .final-cta-image img {
    aspect-ratio: 4 / 3;
  }
}

/* ─── Interior Page Layouts ─── */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #f7f3ec 100%);
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.page-hero .eyebrow {
  color: var(--heart-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.page-hero h1 {
  color: var(--olive-green);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--body-muted);
  max-width: 680px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.two-column.reverse > .help-image,
.two-column.reverse > .story-image {
  order: -1;
}

.story-section h2,
.help-detail h2,
.resources-page h2,
.support-page h2,
.donate-page h2,
.involvement-options h2 {
  color: var(--olive-green);
  margin-bottom: 1rem;
}

.story-image,
.help-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.story-image img,
.help-image img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  display: block;
}

.values-grid,
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card,
.involvement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.value-card h3,
.involvement-card h3 {
  color: var(--olive-green);
  margin-bottom: 0.75rem;
}

.value-card p,
.involvement-card p {
  color: var(--body-muted);
  margin-bottom: 1.25rem;
}

/* ─── Resources Page ─── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--olive-green);
  margin-bottom: 0.75rem;
}

.resource-card p {
  color: var(--body-muted);
  margin-bottom: 1.25rem;
}

.resource-card a {
  color: var(--heart-red);
  font-weight: 700;
  text-decoration: none;
}

.resource-card a:hover {
  text-decoration: underline;
}

.workshop-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.workshop-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.workshop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 70px;
  background: var(--heart-red);
  color: var(--white);
  border-radius: var(--radius-md);
}

.workshop-date .month {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.workshop-date .day {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.workshop-info h3 {
  color: var(--olive-green);
  margin-bottom: 0.5rem;
}

.workshop-info p {
  color: var(--body-muted);
  font-size: 0.98rem;
}

/* ─── Forms ─── */
.support-form,
.donate-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.support-form label,
.donate-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--body-text);
  font-size: 0.95rem;
}

.donate-form label:has(input[type="checkbox"]) {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.donate-form label input[type="checkbox"] {
  width: auto;
  min-width: 20px;
  height: 20px;
  accent-color: var(--heart-red);
}

.support-form input,
.support-form select,
.support-form textarea,
.donate-form input,
.donate-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--body-text);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus,
.donate-form input:focus {
  outline: 3px solid rgba(238, 85, 64, 0.25);
  border-color: var(--heart-red);
}

.support-form textarea {
  resize: vertical;
  min-height: 120px;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  border: none;
  padding: 0;
}

.amount-options legend {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--body-text);
}

.amount-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.amount-options input[type="radio"] {
  width: auto;
  accent-color: var(--heart-red);
}

.amount-options label:has(input:checked) {
  background: var(--heart-red);
  color: var(--white);
}

.amount-options input[type="number"] {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .amount-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-info,
.donate-impact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card,
.impact-list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-card h3,
.donate-impact h2 {
  color: var(--olive-green);
  margin-bottom: 0.5rem;
}

.impact-list {
  list-style: none;
}

.impact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.impact-list li:last-child {
  border-bottom: none;
}

.impact-list strong {
  color: var(--heart-red);
}

.tax-note {
  font-size: 0.92rem;
  color: var(--body-muted);
  font-style: italic;
}

.partner-cta {
  background: var(--olive-green);
  color: var(--white);
  text-align: center;
}

.partner-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.partner-cta p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column.reverse > .help-image,
  .two-column.reverse > .story-image {
    order: 0;
  }

  .story-image,
  .help-image {
    max-width: 540px;
    margin: 0 auto;
  }

  .values-grid,
  .involvement-grid,
  .resources-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 2rem auto 0;
  }

  .workshop-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-card {
    flex-direction: column;
    text-align: center;
  }

  .workshop-date {
    margin: 0 auto;
  }
}

/* ─── Footer ─── */
.site-footer {
  background: #2A2723;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  max-width: 160px;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--heart-red);
  transform: translateY(-2px);
  color: var(--white);
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  transition: color var(--transition), padding-left var(--transition);
}

.site-footer a:hover {
  color: var(--lime-green);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
  outline: 2px solid var(--lime-green);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--lime-green);
  color: var(--heading);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: #8fb036;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--lime-green);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── Entrance Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* Hero floating hearts gentle pulse */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.hero-floating-heart {
  animation: gentle-float 4s ease-in-out infinite;
}

.hero-floating-heart.heart-2 {
  animation-delay: 1.5s;
  animation-duration: 5s;
}

.hero-floating-heart.heart-3 {
  animation-delay: 0.7s;
  animation-duration: 4.5s;
  color: var(--lime-green);
}

/* Decorative leaves slow drift */
@keyframes slow-drift {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

.hero-shape.leaf-1 {
  animation: slow-drift 8s ease-in-out infinite;
}

.hero-shape.leaf-2 {
  animation: slow-drift 10s ease-in-out infinite reverse;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-floating-heart,
  .hero-shape {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  background: var(--heart-red);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--lime-green);
  outline-offset: 2px;
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
