/* ============================================
   Fabryka Radości — Foundation of Joy
   English Website
   ============================================ */

:root {
  --green: #00E889;
  --green-dark: #00995B;
  --green-deep: #004D2E;
  --ink: #292F33;
  --slate: #515E65;
  --mist: #9AAEB8;
  --ice: #F0FAFF;
  --cloud: #CADDE6;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.10);
  --shadow-lg: rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

/* === LAYOUT === */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 50px 0; }
.section--ice { background: var(--ice); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.section-head p { font-size: 1.15rem; color: var(--slate); }
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 232, 137, 0.35);
}
.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 232, 137, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--green-dark); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--cloud);
}
.btn--outline:hover { border-color: var(--green); color: var(--green-dark); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cloud);
  transition: all 0.3s;
}
.site-header--scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.logo img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text span { color: var(--green-dark); }

/* === NAV === */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav a:hover { color: var(--green-dark); background: var(--ice); }
.nav a.active { color: var(--green-dark); font-weight: 600; }
.header-cta { flex-shrink: 0; }

/* === HAMBURGER === */
.hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  left: 10px;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* === MOBILE MENU PANEL === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 30px var(--shadow-lg);
  z-index: 1000;
  padding: 80px 24px 30px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--cloud);
}
.mobile-menu a:hover { color: var(--green-dark); }
.mobile-menu .btn { width: 100%; margin-top: 20px; }

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(41, 47, 51, 0.4);
  z-index: 999;
}
.menu-overlay.open { display: block; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 47, 51, 0.55) 0%, rgba(0, 77, 46, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(0, 232, 137, 0.2);
  border: 1px solid rgba(0, 232, 137, 0.5);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 .accent {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === ACTION CARDS === */
.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.action-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
  transition: all 0.3s var(--ease);
  border: 1px solid var(--cloud);
}
.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--green);
}
.action-card .icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.action-card .icon-circle svg { width: 32px; height: 32px; stroke: var(--green-dark); }
.action-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.action-card p { color: var(--slate); font-size: 0.98rem; margin-bottom: 24px; }
.action-card .btn { width: 100%; }

/* === QUOTE === */
.quote-section {
  background: var(--ink);
  text-align: center;
  padding: 80px 0;
}
.quote-section blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
  font-weight: 400;
}
.quote-section cite {
  display: block;
  margin-top: 24px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 1px;
  font-weight: 500;
}

/* === NEWS CARDS === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--cloud);
  transition: all 0.3s var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--shadow-lg); }
.news-card-img { width: 100%; height: 220px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 28px 24px; }
.news-card-date {
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.news-card h3 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.3; }
.news-card p { font-size: 0.95rem; color: var(--slate); margin-bottom: 16px; }
.news-card a.read-more, .news-card button.read-more { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.news-card a.read-more:hover, .news-card button.read-more:hover { text-decoration: underline; }

/* === STORY MODAL === */
.story-modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.story-modal.is-open { display: flex; }
.story-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.story-modal-box { position: relative; background: #fff; border-radius: 14px; max-width: 720px; width: 90%; max-height: 85vh; overflow-y: auto; padding: 2.5rem 2.5rem 2rem; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.story-modal-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--slate); }
.story-modal-close:hover { color: var(--green-dark); }
.story-modal-box h2 { font-size: 1.6rem; margin-bottom: 0.5rem; line-height: 1.3; }
.story-modal-box p { font-size: 0.97rem; color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }
.story-modal-box .news-card-date { font-size: 0.8rem; color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }

/* === EVENTS === */
.event-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--cloud);
  transition: all 0.3s var(--ease);
  max-width: 900px;
  margin: 0 auto;
}
.event-card:hover { border-color: var(--green); box-shadow: 0 8px 36px var(--shadow-lg); }
.event-date {
  text-align: center;
  background: var(--ice);
  border-radius: var(--radius);
  padding: 16px 12px;
}
.event-date .day { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--green-dark); display: block; }
.event-date .month { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); }
.event-info h3 { font-size: 1.4rem; margin-bottom: 6px; }
.event-info .event-loc { font-size: 0.9rem; color: var(--slate); margin-bottom: 8px; }
.event-info .event-desc { font-size: 0.92rem; color: var(--slate); line-height: 1.6; }

/* === SPREAD JOY CTA === */
.joy-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-lg);
}
.joy-cta-img { height: 100%; min-height: 360px; overflow: hidden; aspect-ratio: 1154 / 528; }
.joy-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.joy-cta-text {
  background: var(--ink);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.joy-cta-text h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.joy-cta-text p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 28px; }

/* === PAGE HERO (sub-pages) === */
.page-hero {
  position: relative;
  padding: 140px 0 60px;
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 77, 46, 0.3) 0%, rgba(41, 47, 51, 0.6) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* === CONTENT BLOCKS === */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 36px 0 16px; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { margin-bottom: 18px; color: var(--slate); font-size: 1.05rem; }
.content-block ul { margin: 16px 0 24px; padding-left: 0; }
.content-block ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 1.02rem;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.2;
}
.content-block ul li::after {
  content: '';
  position: absolute;
  left: 5px; top: 13px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col--reverse .two-col-img { order: 2; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 6px 28px var(--shadow); }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.two-col-text p { color: var(--slate); margin-bottom: 16px; font-size: 1.05rem; }

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  display: block;
}
.stat-item .label { font-size: 0.9rem; color: var(--slate); text-transform: uppercase; letter-spacing: 1px; }

/* === FOUNDER === */
.founder-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.founder-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ice);
  border: 4px solid var(--white);
  box-shadow: 0 6px 24px var(--shadow);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 1.6rem; margin-bottom: 4px; }
.founder-info .role { color: var(--green-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.founder-info p { color: var(--slate); font-size: 1rem; }

/* === PARTNERS === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--cloud);
  transition: all 0.3s;
}
.partner-card:hover { border-color: var(--green); box-shadow: 0 4px 20px var(--shadow); }
.partner-card .p-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ice);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.partner-card .p-icon svg { width: 28px; height: 28px; stroke: var(--green-dark); }
.partner-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.partner-card p { font-size: 0.9rem; color: var(--slate); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .c-icon svg { width: 20px; height: 20px; stroke: var(--green-dark); }
.contact-detail .c-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--mist); margin-bottom: 2px; }
.contact-detail .c-value { font-size: 1rem; color: var(--ink); font-weight: 500; }

/* === FORM === */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 4px 28px var(--shadow);
  border: 1px solid var(--cloud);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cloud);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; margin-top: 6px; }
#formStatus { margin-top: 16px; }
#formStatus p { margin: 0; font-weight: 500; }

/* === SOCIAL BAR === */
.social-bar { display: flex; gap: 12px; }
.social-bar a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-bar a:hover { background: var(--green); }
.social-bar a:hover svg { stroke: var(--white); }
.social-bar svg { width: 20px; height: 20px; stroke: var(--green-dark); transition: stroke 0.2s; }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.footer-brand h3 span { color: var(--green); }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.footer-brand .footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 60px; width: auto; }
.footer-col h4 { color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5; }
.footer-contact a { color: var(--green); }
.footer-contact strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }

/* === NEWSLETTER (footer) === */
.newsletter-form { display: flex; gap: 10px; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--green); }
.newsletter-form button {
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green-dark); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: block; }
  .action-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col--reverse .two-col-img { order: 0; }
  .joy-cta { grid-template-columns: 1fr; }
  .joy-cta-img { min-height: auto; aspect-ratio: 1154 / 528; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-block { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .event-card { grid-template-columns: 90px 1fr; gap: 20px; }
  .event-card .btn { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .logo-text { font-size: 1.05rem; }
  .logo img { height: 44px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-date { max-width: 140px; margin: 0 auto; }
  .newsletter-form { flex-direction: column; }
  .joy-cta-text { padding: 36px 28px; }
}

@media (max-width: 380px) {
  .logo-text { display: none; }
}
