/* Kind Cooking — Main Stylesheet */
/* ============================================================
   TABLE OF CONTENTS
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Helpers
   5.  Buttons
   6.  Header & Navigation
   7.  Mobile Nav
   8.  Hero Section
   9.  Wave Dividers
   10. Mission Band
   11. Section Shared Styles
   12. What We Do — Cards
   13. How to Help
   14. Contact Band
   15. Footer
   16. Responsive — Tablet (max 1024px)
   17. Responsive — Mobile (max 768px)
   ============================================================ */


/* ─── 1. CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  /* Brand colours — all extracted from the Kind Cooking logo SVGs */
  --green-primary:    #8fc16a;
  --green-deep:       #6a9d50;
  --green-dark:       #3d6b2a;
  --red-accent:       #db2325;
  --red-dark:         #b81c1e;
  --blue-soft:        #99c3e0;
  --cream:            #f1f3eb;
  --cream-dark:       #e5e8da;
  --white:            #ffffff;
  --text-dark:        #2a2a2a;
  --text-mid:         #555555;
  --text-light:       #888888;

  /* Spacing scale */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Layout */
  --container-max:  1160px;
  --container-pad:  clamp(1.25rem, 5vw, 2.5rem);
  --header-height:  80px;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --radius-pill:    999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: 0.22s ease;
}


/* ─── 2. Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Account for sticky header when jumping to anchors */
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

blockquote {
  font-style: normal;
}


/* ─── 3. Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p {
  color: var(--text-mid);
  font-size: 1.05rem;
}


/* ─── 4. Layout Helpers ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-pad {
  padding-block: var(--space-2xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.1rem;
  color: var(--text-mid);
}


/* ─── 5. Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  border: 2.5px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

/* Red — Donate */
.btn-donate {
  background: var(--red-accent);
  color: var(--white);
  border-color: var(--red-accent);
}
.btn-donate:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* Green — Primary */
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

/* Green outline */
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* White outline — for use on dark/green backgrounds */
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  box-shadow: none;
}


/* ─── 6. Header & Navigation ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

/* Shadow added by JS on scroll */
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-md);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  height: var(--header-height);
}

.logo-img {
  height: 110px;
  width: auto;
  transform: translateY(-8px);
}

/* Nav */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover {
  background: var(--cream);
  color: var(--green-deep);
}

/* Header Donate button */
.header-donate {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--cream);
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}


/* ─── 7. Mobile Nav ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
    order: 3;
  }

  .header-donate {
    display: none; /* donate btn hidden in header on mobile; still in hero */
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) var(--container-pad) var(--space-lg);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path 0.3s ease, opacity 0.3s ease;
    /* Override desktop flex alignment */
    justify-content: flex-start;
  }

  /* Open state — toggled by JS */
  .site-header.nav-open .site-nav {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 0.5rem;
    width: 100%;
  }

  /* Animate hamburger → X */
  .site-header.nav-open .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .site-header.nav-open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-header.nav-open .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}


/* ─── 8. Hero Section ───────────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  /* Decorative blob in top-right */
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: var(--space-lg);
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(5rem, 10vw, 7rem); /* extra bottom for wave overlap */
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(106,157,80,0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.hero-headline {
  color: var(--text-dark);
  line-height: 1.1;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

/* Illustration side */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-art {
  width: 130%;
  max-width: 820px;
  height: auto;
  margin-inline: -10%;
  /* Subtle drop shadow to lift the illustration */
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.12));
  animation: float 6s ease-in-out infinite;
}

.hero-illustration {
  overflow: visible;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}


/* ─── 9. Wave Dividers ──────────────────────────────────────────────────────── */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 90px);
}

/* Mission band wave is inside a relative container */
.mission-band {
  position: relative;
  overflow: hidden;
}


/* ─── 10. Mission Band ──────────────────────────────────────────────────────── */
.mission-band {
  background: var(--green-deep);
  color: var(--white);
}

.mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.mission-quote {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--white);
  max-width: 780px;
  opacity: 0.97;
}

/* Decorative quote mark */
.mission-quote::before {
  content: '\201C';
  display: block;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.6;
  color: var(--green-primary);
  margin-bottom: var(--space-md);
  font-weight: 900;
  opacity: 0.6;
}


/* ─── 11. Section Shared ────────────────────────────────────────────────────── */
.about-band {
  background: var(--cream);
}

.what-we-do {
  background: var(--cream);
}

.how-to-help {
  background: var(--white);
}

/* ─── About — Founder & Board ─────────────────────────────────────────────── */
.founder-profile {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-2xl);
}

.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.founder-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.founder-caption {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
}

.founder-bio p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.board-section {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--cream-dark);
}

.board-title {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.board-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.board-list li {
  position: relative;
  padding: 0 var(--space-sm);
}


/* ─── 12. What We Do — Cards ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-inline: auto;
}

.card-body a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
}

.card-body a:hover {
  color: var(--green-dark);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green-primary);
}

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

.card-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.card-title {
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.card-body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}


/* ─── 13. How to Help ───────────────────────────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.help-block {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.help-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Featured (centre) card */
.help-block--featured {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.help-block--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.help-block--featured .help-title,
.help-block--featured .help-body {
  color: var(--white);
}

.help-block--featured .help-body {
  opacity: 0.88;
}

.help-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.help-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.help-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
}

.help-body {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
}

.help-block .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.help-body a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.help-block--featured .help-body a {
  color: var(--white);
}


/* ─── Donation Modal ──────────────────────────────────────────────────────── */
.donate-modal[hidden] {
  display: none;
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.donate-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.donate-modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  padding: var(--space-lg);
  text-align: center;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}

.donate-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.donate-modal__close:hover,
.donate-modal__close:focus-visible {
  background: var(--cream);
  color: var(--text-dark);
  outline: none;
}

.donate-modal__title {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.donate-modal__text {
  color: var(--text-mid);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.donate-modal__qr {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

body.modal-open {
  overflow: hidden;
}


/* ─── 14. Contact Band ──────────────────────────────────────────────────────── */
.contact-band {
  background: var(--green-dark);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-title {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-body {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: color var(--transition);
}

.contact-value:hover {
  color: var(--white);
}

.contact-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  font-style: italic;
}


/* ─── 15. Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  align-items: start;
}

/* Logo column */
.footer-logo-img {
  height: 112px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Nav column */
.footer-nav-heading,
.footer-social-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-sm);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--green-primary);
}

/* Social icons */
.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--green-primary);
  color: var(--white);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-md);
}

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  text-align: center;
}

.footer-credit {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.25rem;
}

.footer-credit a {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--green-primary);
}


/* ─── 16. Responsive — Tablet ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid,
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hero-logo-art {
    width: min(560px, 110%);
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .footer-logo-img {
    margin-bottom: 0;
  }
}


/* ─── 17. Responsive — Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1.5rem;
    gap: var(--space-sm);
  }

  .hero-eyebrow {
    margin-inline: auto;
    max-width: 90%;
    text-align: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-illustration {
    order: -1;
  }

  .hero-logo-art {
    width: min(440px, 100%);
    max-width: 100%;
    margin-inline: auto;
    animation: none; /* reduce motion on small screens */
  }

  /* Cards */
  .cards-grid,
  .cards-grid--two {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Founder profile stacks on mobile */
  .founder-profile {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .founder-photo-wrap {
    max-width: 320px;
    margin-inline: auto;
  }

  /* Help grid */
  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-block--featured {
    transform: none;
  }

  .help-block--featured:hover {
    transform: translateY(-4px);
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-img {
    margin-bottom: 0;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-nav-list {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
