:root {
  --bg: #f8fbfc;
  --surface: #ffffff;
  --text: #111111;
  --muted: #4b5963;
  --brand-dark: #1a919d;
  --brand-light: #43b4c0;
  --ring: rgba(26, 145, 157, 0.2);
  --shadow-soft: 0 12px 30px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 18px 40px rgba(26, 145, 157, 0.2);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
  --mobile-cta-offset: 0px;
  --cookie-offset: 0px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.18, 0.89, 0.32, 1.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(67, 180, 192, 0.22), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(26, 145, 157, 0.16), transparent 38%),
    linear-gradient(180deg, #fefefe 0%, var(--bg) 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  padding-bottom: 0;
  max-width: 100%;
  overflow-x: clip;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2.6rem));
  margin: 0 auto;
}

.section {
  padding: 4.7rem 0;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(3deg);
  }
}

@keyframes imageBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(26, 145, 157, 0.1);
  }
  50% {
    box-shadow: 0 14px 28px rgba(26, 145, 157, 0.2);
  }
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.52);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(170%) blur(12px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(26, 145, 157, 0.1);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(26, 145, 157, 0.22));
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-dark);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.34rem;
  column-gap: clamp(0.5rem, 0.8vw, 0.92rem);
  min-width: 0;
}

.main-nav a {
  font-size: 0.86rem;
  color: #25353f;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
  transition: transform 0.24s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.58rem;
}

.header-actions {
  flex: 0 0 auto;
  gap: 0.5rem;
}

.header-actions .btn {
  padding-inline: 0.92rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(26, 145, 157, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(26, 145, 157, 0.12);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
  display: none;
  max-height: calc(100vh - 86px);
  overflow: auto;
  border-top: 1px solid rgba(26, 145, 157, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 28px rgba(17, 17, 17, 0.08);
}

.mobile-nav-panel.is-open {
  display: block;
  animation: navDrop 0.24s var(--ease-out);
}

.mobile-nav-inner {
  display: grid;
  gap: 0.45rem;
  padding-block: 0.78rem 0.95rem;
}

.mobile-nav-inner > a {
  border-radius: var(--radius-md);
  padding: 0.72rem 0.85rem;
  background: rgba(26, 145, 157, 0.07);
  color: #1f3540;
  font-weight: 800;
}

.mobile-nav-inner > a:focus-visible,
.mobile-nav-inner > a:hover {
  outline: 0;
  color: var(--brand-dark);
  background: rgba(67, 180, 192, 0.14);
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding-top: 0.35rem;
}

.mobile-nav-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 0.7rem;
}

.footer-actions {
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.72rem 1.28rem;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease-spring), box-shadow 0.24s ease, background-color 0.24s ease;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transition: left 0.48s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn:hover::after,
.btn:focus-visible::after {
  left: 115%;
}

.btn-outline {
  border-color: rgba(26, 145, 157, 0.45);
  color: var(--brand-dark);
  background: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  box-shadow: 0 10px 24px rgba(26, 145, 157, 0.16);
}

.btn-solid,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  box-shadow: var(--shadow-strong);
}

.btn-solid:hover,
.btn-solid:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 34px rgba(26, 145, 157, 0.28);
}

.btn-secondary {
  color: var(--brand-dark);
  border-color: rgba(26, 145, 157, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.12;
  margin: 0 0 0.95rem;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h1 span {
  color: var(--brand-dark);
}

h2 {
  font-size: clamp(1.8rem, 3.7vw, 2.85rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.section-title {
  text-align: center;
  margin-bottom: 2.1rem;
}

.section-subtitle {
  text-align: center;
  margin-top: -1rem;
  color: var(--muted);
}

.hero {
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 2rem;
}

.hero-lead {
  margin: 0 0 1.4rem;
  color: #1f2c34;
  max-width: 58ch;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 1.4rem 0 1.25rem;
}

.meta-pill {
  background: rgba(26, 145, 157, 0.1);
  border: 1px solid rgba(26, 145, 157, 0.2);
  color: #134f55;
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1.4rem;
}

.countdown--center {
  justify-content: center;
}

.time-box {
  min-width: 88px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.2);
  box-shadow: 0 8px 20px rgba(26, 145, 157, 0.1);
  text-align: center;
  padding: 0.5rem 0.3rem;
  animation: softPulse 4.8s ease-in-out infinite;
}

.time-box:nth-child(2) {
  animation-delay: 0.35s;
}

.time-box:nth-child(3) {
  animation-delay: 0.7s;
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.1;
}

.time-box small {
  font-size: 0.75rem;
  color: #48616d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.18);
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 0.38s var(--ease-out), box-shadow 0.24s ease;
}

.hero-media:hover {
  box-shadow: 0 24px 48px rgba(26, 145, 157, 0.24);
}

.hero-media img:first-child {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  animation: imageBreath 12s ease-in-out infinite alternate;
}

.hero-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(6px);
}

.hero-flower {
  position: absolute;
  right: 1.05rem;
  top: 1rem;
  width: 94px;
  height: 94px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.2);
  animation: flowerFloat 5.6s ease-in-out infinite;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(67, 180, 192, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.3rem;
  margin-bottom: 1.22rem;
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(26, 145, 157, 0.38);
  box-shadow: 0 20px 42px rgba(26, 145, 157, 0.15);
}

.feature-card--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-card--reverse .feature-media {
  order: 2;
}

.feature-card--reverse .feature-content {
  order: 1;
}

.feature-media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, rgba(26, 145, 157, 0.14), rgba(67, 180, 192, 0.12));
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s var(--ease-out);
}

.feature-card:hover .feature-media img {
  transform: scale(1.045);
}

.feature-media span {
  position: absolute;
  left: 0.95rem;
  bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.73rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
}

.feature-content {
  padding: 1.5rem 1.5rem 1.55rem 0.4rem;
}

.feature-content p {
  margin: 0.2rem 0 0.82rem;
  color: #20313b;
}

.feature-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #1e2f38;
}

.feature-content li {
  margin-bottom: 0.58rem;
}

.section-program .feature-card {
  border-color: rgba(26, 145, 157, 0.22);
}

.section-schedule {
  padding-top: 1.2rem;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  align-items: start;
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.program-table-wrap {
  margin-top: 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 145, 157, 0.22);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: auto;
}

.schedule-layout .program-table-wrap {
  margin-top: 0;
}

.program-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.program-table th,
.program-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(26, 145, 157, 0.12);
  padding: 0.95rem 1rem;
}

.program-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, #effbfd, #e7f6f8);
  color: #1b5a63;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.program-table tbody tr:last-child td {
  border-bottom: 0;
}

.program-table tbody tr {
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.program-table tbody tr:hover {
  background: rgba(67, 180, 192, 0.06);
  box-shadow: inset 4px 0 0 rgba(26, 145, 157, 0.42);
}

.program-table td:first-child {
  width: 140px;
  font-weight: 800;
  color: var(--brand-dark);
  white-space: nowrap;
}

.program-table td:nth-child(2) {
  width: auto;
}

.program-event-title {
  margin: 0 0 0.2rem;
  font-weight: 800;
  color: #183741;
}

.program-event-list {
  margin: 0.28rem 0 0;
  padding-left: 1rem;
}

.program-event-list li {
  margin-bottom: 0.28rem;
}

.program-note {
  margin: 0.7rem 0 0;
  color: #4b616b;
  font-size: 0.9rem;
}

.program-video-card {
  position: sticky;
  top: 108px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.24);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.program-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(26, 145, 157, 0.16);
}

.program-video-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}

.program-video-card p:not(.eyebrow) {
  margin: 0 0 0.85rem;
  color: #21343d;
}

.cta-section {
  padding-top: 1.5rem;
}

.cta-panel {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(130deg, rgba(26, 145, 157, 0.93), rgba(67, 180, 192, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.24), transparent 55%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 1.6rem;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.cta-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 145, 157, 0.24);
}

.cta-panel h2 {
  margin-bottom: 0.45rem;
}

.cta-panel .eyebrow {
  color: #e8fbff;
}

.cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
}

.final-countdown-section {
  padding-top: 1rem;
}

.final-countdown-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  text-align: center;
  background:
    linear-gradient(140deg, rgba(26, 145, 157, 0.96), rgba(67, 180, 192, 0.92)),
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.22), transparent 55%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow-strong);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.final-countdown-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 145, 157, 0.26);
}

.final-countdown-card h2 {
  margin-bottom: 1.15rem;
}

.final-countdown-card .eyebrow {
  color: #e8fbff;
}

.final-countdown-card .time-box {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.95);
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.organizers-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.person-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(67, 180, 192, 0.24);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
}

.person-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 145, 157, 0.36);
  box-shadow: 0 18px 36px rgba(26, 145, 157, 0.14);
}

.person-card--center {
  grid-column: 1 / -1;
  max-width: 920px;
  margin-inline: auto;
}

.person-image-wrap {
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 20% 22%, rgba(67, 180, 192, 0.2), transparent 58%),
    linear-gradient(180deg, #f7fdff, #eef9fb);
  border: 1px solid rgba(67, 180, 192, 0.25);
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.person-image-wrap img {
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.34s var(--ease-out);
}

.person-card:hover .person-image-wrap img {
  transform: translateY(-4px) scale(1.03);
}

.person-content h3 {
  margin-bottom: 0.35rem;
}

.person-role {
  margin: 0 0 0.58rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.person-content p {
  margin: 0 0 0.5rem;
  color: #253740;
}

.person-content ul {
  margin: 0;
  padding-left: 1.15rem;
}

.partner-card {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: center;
  border-radius: var(--radius-xl);
  text-align: center;
  padding: 1.45rem;
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.24);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 145, 157, 0.16);
}

.partner-logo {
  border-radius: var(--radius-md);
  border: 1px solid rgba(67, 180, 192, 0.26);
  background: linear-gradient(145deg, #f8feff, #e8f7f9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 460px);
  min-height: 260px;
  padding: 0.9rem;
  overflow: hidden;
}

.partner-logo img {
  width: 100%;
  max-width: 420px;
  max-height: 240px;
  object-fit: contain;
}

.partner-content {
  width: min(100%, 900px);
}

.partner-content p {
  margin: 0.35rem 0;
  color: #20333d;
  text-align: center;
}

.partner-content a {
  color: var(--brand-dark);
  font-weight: 700;
}

.partner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.section-partners {
  padding-top: 1rem;
}

.partners-thanks {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 252, 0.94)),
    linear-gradient(90deg, rgba(26, 145, 157, 0.08), rgba(67, 180, 192, 0.05));
  border: 1px solid rgba(26, 145, 157, 0.2);
  box-shadow: var(--shadow-soft);
  padding: 1.55rem;
}

.partners-lead {
  width: min(100%, 880px);
  margin: 0 auto 1.2rem;
  text-align: center;
  color: #20333d;
  font-size: 1.03rem;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.supporter-card {
  min-height: 150px;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(67, 180, 192, 0.24);
  box-shadow: 0 10px 24px rgba(26, 145, 157, 0.09);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
}

.supporter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 145, 157, 0.36);
  box-shadow: 0 18px 34px rgba(26, 145, 157, 0.15);
}

.supporter-card span {
  display: inline-flex;
  margin-bottom: 0.62rem;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(26, 145, 157, 0.09);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.supporter-card h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2vw, 1.62rem);
}

.info-partners {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(26, 145, 157, 0.28);
}

.info-partners .eyebrow {
  text-align: center;
}

.info-partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-partners li {
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.18);
  color: #233942;
  font-weight: 700;
  text-align: center;
  transition: transform 0.22s var(--ease-out), background-color 0.22s ease;
}

.info-partners li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
}

.past-event-video {
  width: 100%;
}

.video-card--featured {
  border-width: 2px;
  box-shadow: var(--shadow-strong);
}

.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1.3rem;
}

.text-review-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(67, 180, 192, 0.24);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.text-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(26, 145, 157, 0.14);
}

.text-review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-dark), var(--brand-light));
}

.text-review-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.text-review-card p {
  margin: 0 0 0.55rem;
  color: #1f313a;
}

.text-review-card p:last-child {
  margin-bottom: 0;
}

.video-reviews {
  display: grid;
  gap: 1.35rem;
}

.video-review-group {
  display: grid;
  gap: 0.85rem;
}

.video-review-group-title {
  margin: 0;
  color: #183741;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  padding: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(67, 180, 192, 0.28);
  background: #deeff2;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(26, 145, 157, 0.22);
}

.video-card:focus-visible {
  outline: 3px solid rgba(26, 145, 157, 0.35);
  outline-offset: 2px;
}

.video-card img,
.video-card-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card-preview {
  pointer-events: none;
  transition: transform 0.3s ease;
}

.video-card:hover img,
.video-card:hover .video-card-preview {
  transform: scale(1.04);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.72));
}

.video-card-overlay {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.video-card-overlay strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.video-play-dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  animation: playPulse 2.2s ease-out infinite;
}

.video-play-dot::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--brand-dark);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(430px, 92vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #101010;
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.45);
}

.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #2d4a54;
  background: rgba(255, 255, 255, 0.88);
}

body.video-modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 1rem 0 5rem;
}

.footer-inner {
  border-top: 1px solid rgba(26, 145, 157, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: #425761;
}

.footer-actions a {
  color: var(--brand-dark);
  font-weight: 700;
}

.footer-credit {
  margin-top: 0.55rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(26, 145, 157, 0.22);
  color: #4b616b;
  font-size: 0.92rem;
}

.footer-credit a {
  color: var(--brand-dark);
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(26, 145, 157, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0.72rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: 0.52rem;
  box-shadow: 0 -10px 26px rgba(17, 17, 17, 0.09);
}

.mobile-cta .btn {
  flex: 1;
  min-width: 0;
  padding-block: 0.74rem;
}

.cookie-consent,
.engage-toast {
  position: fixed;
  left: auto;
  right: 1rem;
  width: min(450px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(26, 145, 157, 0.3);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.15);
  backdrop-filter: blur(8px);
  padding: 1rem;
  max-height: calc(100vh - var(--mobile-cta-offset) - 1.5rem);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent {
  z-index: 140;
  bottom: calc(var(--mobile-cta-offset) + 1rem);
  overflow: auto;
}

.engage-toast {
  z-index: 135;
  bottom: calc(var(--mobile-cta-offset) + var(--cookie-offset) + 1rem);
}

.cookie-consent.is-visible,
.engage-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent p,
.engage-toast p {
  margin: 0;
  color: #223843;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cookie-consent a {
  color: var(--brand-dark);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.cookie-actions .btn {
  flex: 1;
  min-width: 170px;
}

.cookie-close,
.engage-close {
  position: absolute;
  right: 0.55rem;
  top: 0.5rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  font-size: 1.3rem;
  line-height: 1;
  color: #46606b;
  background: rgba(67, 180, 192, 0.14);
  cursor: pointer;
}

.engage-toast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.8rem;
  row-gap: 0.8rem;
  padding-right: 2.4rem;
}

.engage-toast .btn {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-card,
  .feature-card--reverse,
  .person-card {
    grid-template-columns: 1fr;
  }

  .feature-card--reverse .feature-media,
  .feature-card--reverse .feature-content {
    order: initial;
  }

  .feature-content {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .person-image-wrap {
    min-height: 220px;
  }

  .person-image-wrap img {
    max-height: 250px;
  }

  .hero-media img:first-child {
    aspect-ratio: 16/11;
  }

  .person-card--center {
    max-width: none;
  }

  .supporters-grid,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .program-video-card {
    position: static;
    width: min(100%, 420px);
    justify-self: center;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }

  .section {
    padding: 3.55rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .mobile-nav-panel {
    max-height: calc(100vh - 76px - var(--mobile-cta-offset));
  }

  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .time-box {
    min-width: 82px;
  }

  .organizers-grid {
    grid-template-columns: 1fr;
  }

  .text-reviews-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .program-table-wrap {
    border: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }

  .program-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .program-table thead {
    display: none;
  }

  .program-table,
  .program-table tbody,
  .program-table tr,
  .program-table td {
    display: block;
    width: 100%;
  }

  .program-table tr {
    background: #fff;
    border: 1px solid rgba(26, 145, 157, 0.22);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(26, 145, 157, 0.08);
    overflow: hidden;
    margin-bottom: 0.72rem;
  }

  .program-table td {
    padding: 0.7rem 0.8rem 0.75rem;
    border-bottom: 0;
  }

  .program-table td + td {
    border-top: 1px dashed rgba(26, 145, 157, 0.22);
  }

  .program-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.22rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4b6a75;
    font-size: 0.72rem;
    font-weight: 800;
  }

  .program-table td:first-child,
  .program-table td:nth-child(2) {
    width: 100%;
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-consent,
  .engage-toast {
    left: 0.6rem;
    right: 0.6rem;
    width: auto;
    max-width: none;
  }

  .cookie-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .engage-toast {
    grid-template-columns: 1fr;
    padding-right: 1rem;
  }

  .engage-toast .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.7rem;
  }

  .footer-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .footer-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 145, 157, 0.25);
    background: rgba(255, 255, 255, 0.86);
    line-height: 1.2;
    min-width: 0;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .meta-pill {
    font-size: 0.76rem;
  }

  .program-table td {
    padding: 0.65rem 0.7rem 0.68rem;
  }

  .cta-panel {
    padding: 1.1rem;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

  .partner-card {
    padding: 1rem;
  }

  .final-countdown-card {
    padding: 1.1rem;
  }

  .final-actions .btn {
    width: 100%;
  }

  .engage-toast {
    grid-template-columns: 1fr;
  }

  .engage-toast .btn {
    width: 100%;
  }

  .video-card-overlay {
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.45rem;
  }

  .video-card-overlay strong {
    font-size: 0.78rem;
  }

  .video-play-dot {
    width: 32px;
    height: 32px;
  }

  .video-play-dot::before {
    left: 12px;
    top: 9px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .footer-actions {
    grid-template-columns: 1fr;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }
}

.policy-main {
  padding-top: 3.2rem;
}

.policy-card {
  background: #fff;
  border: 1px solid rgba(26, 145, 157, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
}

.policy-card h1 {
  margin-bottom: 0.6rem;
}

.policy-card h2 {
  margin-top: 1.35rem;
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.policy-card p {
  margin: 0.28rem 0;
  color: #1f313a;
}

.policy-meta {
  color: #4a646e;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.policy-list {
  margin: 0.3rem 0;
  padding-left: 1.15rem;
}

.policy-list li {
  margin-bottom: 0.4rem;
}

.policy-card a {
  color: var(--brand-dark);
  font-weight: 700;
}

.policy-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .policy-card {
    padding: 1rem;
  }

  .policy-actions .btn {
    width: 100%;
  }
}
