:root {
  --honeydew: #F6FFEA;
  --soft-peach: #FFDE96;
  --coral: #FA855A;
  --tomato: #c7336d;
  --sky: #62C4DA;
  --text: #353535;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff6cf, var(--honeydew) 38%, #e9fbff 100%);
  line-height: 1.55;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: linear-gradient(135deg, rgba(255,222,150,.75), rgba(246,255,234,.75));

  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(98, 196, 218, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--sky);
}

.brand strong {
  display: block;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1;
}

.brand small {
  color: var(--tomato);
  font-weight: 900;
  font-size: 1rem;
}

.spark {
  font-size: 3rem;
  color: var(--coral);
  line-height: 1;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  font-weight: 900;
}

.nav a {
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover {
  color: var(--tomato);
  border-bottom-color: var(--coral);
}

.menu-toggle {
  display: none;
  background: var(--tomato);
  color: white;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1.3rem;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 80px 6vw;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.46) 50%, rgba(0,0,0,0) 60%),
    url("crowd.png") center/cover;
  border-bottom-left-radius: 50% 5%;
  border-bottom-right-radius: 50% 5%;
}

.hero::after {
  content: "✦";
  position: absolute;
  right: 8%;
  bottom: 70px;
  color: var(--soft-peach);
  font-size: clamp(4rem, 10vw, 8rem);
  filter: drop-shadow(0 12px 0 var(--sky));
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

h1, h2 {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 1.05;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  margin-bottom: 22px;
}

.hero h1 span {
  background: var(--sky);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  max-width: 570px;
  margin-bottom: 22px;
  color: var(--white);
}

.next-event {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--tomato);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.next-event span {
  color: #277d9b;
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.next-event strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.privacy-hero {
  padding: 86px 0 52px;
  background: linear-gradient(135deg, rgba(98,196,218,.32), rgba(255,222,150,.72));
}

.privacy-hero h1 {
  color: var(--tomato);
  font-size: clamp(3rem, 7vw, 5.6rem);
  margin-bottom: 14px;
}

.privacy-hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
}

.eyebrow {
  color: #277d9b;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.privacy-content {
  max-width: 880px;
  padding: 48px 0 70px;
}

.privacy-content h2 {
  color: var(--tomato);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 34px 0 10px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  font-size: 1.05rem;
}

.privacy-content p {
  margin-bottom: 10px;
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px 24px;
}

.privacy-content a {
  color: #277d9b;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn, .small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary {
  background: linear-gradient(135deg, var(--coral), var(--tomato));
  color: white;
}

.blue {
  background: var(--sky);
  color: white;
}

.section {
  padding: 70px 0 30px;
}

.about {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 140px 1fr 340px;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,222,150,.75), rgba(246,255,234,.75));
  padding: 28px;
  border-radius: 36px;
}

.about-icon {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--tomato));
  color: white;
  font-size: 4rem;
}

.about h2, .section h2, .heidi-section h2, .videos h2, .social h2, .partners h2, .contact h2 {
  color: var(--tomato);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.about p {
  font-size: 1.1rem;
  font-weight: 700;
}

.about-image {
  min-height: 170px;
  border-radius: 34px;
  background: url("event.png") center/cover;
}

.section-title-row,
.video-header,
.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.stream-note {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #277d9b;
  font-weight: 900;
}

.small-btn {
  color: var(--tomato);
  border: 2px solid var(--coral);
  background: rgba(255,255,255,.55);
}

.blue-border {
  color: #2489a1;
  border-color: var(--sky);
}

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

.event-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8dd, var(--soft-peach));
  box-shadow: 0 14px 36px rgba(201, 54, 56, .08);
}

.date-box {
  background: var(--white);
  color: var(--tomato);
  text-align: center;
  border-radius: 16px;
  padding: 12px 8px;
  font-weight: 900;
}

.date-box strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.event-card h3 {
  font-size: 1.25rem;
  color: var(--text);
}

.time {
  color: var(--tomato);
  font-weight: 900;
}

.heidi-section {
  margin-top: 46px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 253, 247, .88), rgba(98, 196, 218, .25));
}

.heidi-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
}

.heidi-content > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
  font-weight: 700;
}

.heidi-photo,
.interview-video {
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.heidi-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}

.interview-video {
  position: relative;
  overflow: hidden;
  max-width: 780px;
  aspect-ratio: 16 / 9;
  margin: 28px auto 0;
  background: #111;
}

.interview-video img,
.interview-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.interview-video iframe {
  border: 0;
}

.interview-video img {
  object-fit: cover;
}

.interview-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.62) 100%);
}

.interview-video.embedded-video::after {
  content: none;
}

.play-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.interview-video span {
  position: absolute;
  left: 92px;
  bottom: 34px;
  z-index: 1;
  color: white;
  font-weight: 900;
  font-size: 1.15rem;
}

.videos {
  margin-top: 40px;
  padding: 28px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(98,196,218,.35), rgba(246,255,234,.75));
}

.video-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.video-card h3,
.video-card p {
  padding: 0 14px;
}

.video-card h3 {
  margin-top: 12px;
}

.video-card p {
  padding-bottom: 16px;
  color: #777;
}

.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #111;
  object-fit: cover;
}

.social {
  padding-block: 45px;
}

.social p {
  max-width: 440px;
  font-weight: 700;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-buttons a {
  color: white;
  min-width: 160px;
  text-align: center;
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 900;
}

.social-buttons a:nth-child(1) { background: #2856a5; }
.social-buttons a:nth-child(2) { background: linear-gradient(135deg, var(--coral), #e93472); }
.social-buttons a:nth-child(3) { background: var(--tomato); }

.partners {
  padding: 28px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, var(--soft-peach), #fff3c5);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.logo-grid div {
  width: min(190px, 100%);
  min-height: 70px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  background: white;
  border-radius: 14px;
  color: #277d9b;
  font-weight: 900;
}

.contact {
  background: linear-gradient(135deg, var(--coral), var(--tomato));
  color: white;
  padding: 34px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 260px;
  gap: 32px;
  align-items: center;
}

.contact h2 {
  color: white;
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact textarea,
.contact button {
  grid-column: 1 / -1;
}

input, textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 15px;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  justify-self: end;
  background: var(--tomato);
  color: white;
  border: 2px solid white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.cta-bubble {
  min-height: 180px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 20px 16px;
  text-align: center;
  border-radius: 10px;
  background: var(--honeydew);
  color: var(--tomato);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.cta-bubble span {
  display: block;
  font-size: 2.55rem;
  line-height: 1;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6vw;
  color: white;
  background: #a92427;
  font-weight: 800;
}

@media (max-width: 950px) {
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    flex-direction: column;
    background: var(--honeydew);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 220px;
  }

  .event-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid div {
    width: min(240px, 100%);
  }

  .social,
  .section-title-row,
  .video-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact form {
    grid-template-columns: 1fr;
  }

  .contact textarea,
  .contact button {
    grid-column: auto;
  }

  .contact button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  .spark {
    font-size: 2.2rem;
  }

  .hero {
    min-height: auto;
    padding: 58px 20px 110px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.46) 70%, rgba(0,0,0,0) 90%),
    url("crowd.png") center/cover;
  }

  .hero::after {
    right: 20px;
    bottom: 22px;
    font-size: 5rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .next-event {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    border-radius: 18px;
  }

  .hero-actions,
  .hero-actions > .blue {
    width: 100%;
  }

  .hero-action-row {
    display: grid;
    grid-template-columns: minmax(126px, max-content) minmax(0, 1fr);
    width: 100%;
    gap: 10px;
  }

  .hero-action-row .primary {
    min-width: 0;
    padding-inline: 12px;
    text-align: center;
  }

  .next-event {
    width: 100%;
    padding: 9px 12px;
  }

  .next-event span {
    font-size: .72rem;
  }

  .next-event strong {
    font-size: .95rem;
    line-height: 1.15;
  }

  .hero-buttons,
  .hero-buttons a,
  .social-buttons,
  .social-buttons a {
    width: 100%;
  }

  .about {
    margin-top: 28px;
    padding: 20px;
  }

  .heidi-section {
    margin-top: 28px;
    padding: 20px;
  }

  .heidi-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .heidi-photo {
    max-width: 280px;
  }

  .interview-video {
    margin-top: 20px;
  }

  .interview-video span {
    left: 82px;
    right: 16px;
    bottom: 30px;
  }

  .about-icon {
    width: 92px;
    height: 92px;
    font-size: 3rem;
  }

  .event-card {
    grid-template-columns: 76px 1fr;
  }

  .date-box strong {
    font-size: 2.35rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-action-row {
    grid-template-columns: 1fr;
  }

  .next-event {
    align-items: center;
    text-align: center;
  }
}
