:root {
  --red: #e72f2d;
  --deep-red: #bd1e2d;
  --orange: #f26522;
  --yellow: #f8c51b;
  --green: #00a651;
  --teal: #12a7a2;
  --blue: #008fd3;
  --navy: #11304f;
  --ink: #1a2233;
  --muted: #677187;
  --paper: #fffaf0;
  --surface: #ffffff;
  --line: #e9edf2;
  --shadow: 0 18px 50px rgba(17, 48, 79, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(231, 47, 45, 0.06) 0 1px, transparent 1px 100%),
    var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(17, 48, 79, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, var(--yellow) 0 31%, var(--green) 31% 50%, var(--blue) 50% 70%, var(--red) 70%),
    var(--red);
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(17, 48, 79, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.03rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  color: #2f3c50;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(17, 48, 79, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.home-hero {
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 96px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  background: var(--navy);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 22, 38, 0.86), rgba(11, 22, 38, 0.38) 47%, rgba(11, 22, 38, 0.72)),
    linear-gradient(0deg, rgba(11, 22, 38, 0.74), rgba(11, 22, 38, 0.06) 45%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 7200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-dots {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-carousel-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 220ms ease, background 220ms ease;
}

.hero-carousel-dots span.is-active {
  width: 28px;
  background: #fff;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 12vw, 8.2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 930;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(231, 47, 45, 0.28);
}

.button.secondary {
  color: var(--navy);
  background: var(--yellow);
}

.button.volunteer-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 166, 81, 0.24);
}

.ornament {
  position: absolute;
  z-index: 2;
  width: clamp(110px, 15vw, 230px);
  aspect-ratio: 0.7;
  pointer-events: none;
  opacity: 0.96;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 270'%3E%3Cpolygon points='0,8 164,96 0,184' fill='%2300a651'/%3E%3Cpolygon points='0,56 74,96 0,136' fill='%23008fd3'/%3E%3Cpolygon points='0,184 84,228 0,270' fill='%2300a651'/%3E%3Cpolygon points='0,204 40,228 0,252' fill='%23f26522'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.ornament::before,
.ornament::after {
  content: none;
}

.ornament-left {
  left: -86px;
  bottom: -26px;
}

.ornament-right {
  right: -72px;
  top: 24%;
  transform: scaleX(-1);
}

.ticker-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  color: #fff;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.ticker-band > span {
  display: grid;
  gap: 10px;
  min-height: 108px;
  place-items: center;
  padding: 18px;
}

.ticker-band svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ticker-label {
  display: block;
}

.ticker-band > span:nth-child(1) {
  background: var(--red);
}

.ticker-band > span:nth-child(2) {
  background: var(--yellow);
  color: var(--navy);
}

.ticker-band > span:nth-child(3) {
  background: var(--green);
}

.ticker-band > span:nth-child(4) {
  background: var(--blue);
}

.ticker-band > span:nth-child(5) {
  background: var(--orange);
}

.partner-recognition {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  padding: 24px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(248, 197, 27, 0.08), rgba(0, 143, 211, 0.06)),
    #fff;
  border-block: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 48, 79, 0.08);
}

.partner-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}

.partner-logo-strip img {
  width: 100%;
  max-height: 70px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: saturate(0.82) contrast(0.96);
}

.partner-logo-strip img:nth-child(2) {
  transform: scale(1.12);
}

.volunteer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 166, 81, 0.11), rgba(0, 143, 211, 0.07)),
    #fff;
  border-bottom: 1px solid var(--line);
}

.volunteer-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4.1rem);
}

.volunteer-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading.center {
  display: block;
  max-width: 760px;
  text-align: center;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.story-copy p,
.visit-band p,
.page-hero p {
  color: var(--muted);
}

.text-link {
  min-width: max-content;
  color: var(--deep-red);
  font-weight: 900;
  border-bottom: 3px solid currentColor;
}

.feature-section {
  background:
    radial-gradient(circle at 100% 0, rgba(248, 197, 27, 0.18), transparent 28%),
    #fff;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

a.event-card:hover,
a.event-card:focus-visible {
  border-color: rgba(0, 143, 211, 0.42);
  box-shadow: 0 24px 60px rgba(17, 48, 79, 0.18);
  transform: translateY(-4px);
}

.event-card.large-card {
  grid-row: span 2;
  align-content: end;
  min-height: 458px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(231, 47, 45, 0.92), rgba(17, 48, 79, 0.9)),
    url("images/higalaay-hero.png") center / cover;
  border: 0;
}

.event-date {
  display: grid;
  width: 70px;
  height: 78px;
  place-items: center;
  align-self: start;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  box-shadow: inset 0 -5px 0 rgba(17, 48, 79, 0.12);
}

.event-date strong {
  font-size: 1.8rem;
  line-height: 1;
}

.event-date span {
  margin-top: -14px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.event-card.large-card p {
  color: rgba(255, 255, 255, 0.86);
}

.card-kicker {
  color: var(--deep-red) !important;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card.large-card .card-kicker {
  color: var(--yellow) !important;
}

.event-detail-hero {
  position: relative;
  display: grid;
  min-height: 68vh;
  align-items: end;
  overflow: hidden;
  padding: clamp(96px, 13vw, 160px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.88), rgba(231, 47, 45, 0.72)),
    url("images/higalaay-hero.png") center / cover;
}

.event-detail-hero::after {
  position: absolute;
  right: -74px;
  bottom: 28px;
  width: clamp(130px, 16vw, 230px);
  aspect-ratio: 0.78;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 250'%3E%3Cpolygon points='180,8 26,86 180,164' fill='%2300a651'/%3E%3Cpolygon points='180,50 106,86 180,122' fill='%23008fd3'/%3E%3Cpolygon points='180,164 94,208 180,250' fill='%2300a651'/%3E%3Cpolygon points='180,184 138,208 180,232' fill='%23f26522'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.event-detail-hero.alt-photo {
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.84), rgba(0, 143, 211, 0.68)),
    url("images/higalaay-one-month.jpg") center / cover;
}

.event-detail-hero.green-wash {
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.88), rgba(0, 166, 81, 0.68)),
    url("images/higalaay-hero.png") center / cover;
}

.event-detail-hero.orange-wash {
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.86), rgba(242, 101, 34, 0.72)),
    url("images/higalaay-one-month.jpg") center / cover;
}

.event-detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 1120px;
}

.back-link {
  width: max-content;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 2px solid rgba(255, 255, 255, 0.36);
  font-weight: 850;
}

.event-detail-hero .eyebrow {
  color: var(--yellow);
}

.event-detail-hero h1 {
  max-width: 920px;
}

.event-hero-meta,
.event-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-hero-meta span,
.event-fact-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.event-hero-meta strong,
.event-fact-grid strong {
  display: block;
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.event-hero-meta small,
.event-fact-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.event-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}

.event-overview-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.event-info-card {
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-info-card h2,
.event-info-card h3 {
  color: #fff;
}

.event-info-card ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.event-info-card li {
  color: rgba(255, 255, 255, 0.82);
}

.event-info-card strong {
  display: block;
  color: var(--yellow);
}

.event-partner-mini {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.event-partner-mini span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.event-partner-mini img {
  width: 100%;
  max-height: 62px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
}

.event-editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-editorial figure,
.event-editorial article {
  min-height: 360px;
}

.event-editorial figure {
  margin: 0;
}

.event-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-editorial article {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.event-editorial p {
  margin: 14px 0 0;
  color: var(--muted);
}

.event-color-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 167, 162, 0.94), rgba(0, 143, 211, 0.82)),
    url("images/higalaay-hero.png") center / cover;
}

.event-color-band .section-heading {
  margin-bottom: 28px;
}

.event-color-band .eyebrow,
.event-color-band p {
  color: rgba(255, 255, 255, 0.82);
}

.event-fact-grid article {
  background: rgba(255, 255, 255, 0.12);
}

.event-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.event-faq-list a,
.event-faq-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 14px 0;
  color: var(--teal);
  border-bottom: 1px solid rgba(17, 48, 79, 0.18);
  font-weight: 950;
  text-transform: uppercase;
}

.event-faq-list a::after,
.event-faq-list span::after {
  content: "+";
  color: var(--blue);
  font-size: 1.25rem;
}

.color-red {
  border-top: 6px solid var(--red);
}

.color-yellow {
  border-top: 6px solid var(--yellow);
}

.color-green {
  border-top: 6px solid var(--green);
}

.color-orange {
  border-top: 6px solid var(--orange);
}

.color-blue {
  border-top: 6px solid var(--blue);
}

.color-purple {
  border-top: 6px solid var(--deep-red);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.calendar-preview {
  background: #f4fbff;
}

.timeline-list,
.path-list {
  display: grid;
  gap: 12px;
}

.timeline-list article,
.path-list article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 7px solid var(--blue);
  border-radius: var(--radius);
}

.timeline-list span {
  color: var(--deep-red);
  font-weight: 950;
}

.timeline-list small,
.path-list span {
  grid-column: 2;
  color: var(--muted);
}

.about-preview {
  overflow: hidden;
  background: #fff;
}

.about-preview::before {
  position: absolute;
  right: -62px;
  bottom: 28px;
  width: clamp(100px, 12vw, 170px);
  aspect-ratio: 0.78;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 250'%3E%3Cpolygon points='180,8 26,86 180,164' fill='%2300a651'/%3E%3Cpolygon points='180,50 106,86 180,122' fill='%23008fd3'/%3E%3Cpolygon points='180,164 94,208 180,250' fill='%2300a651'/%3E%3Cpolygon points='180,184 138,208 180,232' fill='%23f26522'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.story-grid,
.value-strip,
.visit-grid,
.explore-grid,
.planner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.story-grid article,
.value-strip article,
.visit-grid article,
.planner-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-grid p,
.value-strip p,
.visit-grid p,
.planner-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mini-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.mini-icon.yellow {
  background: var(--yellow);
}

.mini-icon.red {
  background: var(--red);
}

.mini-icon.blue {
  background: var(--blue);
}

.mini-icon.green {
  background: var(--green);
}

.explore-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.94), rgba(17, 48, 79, 0.74)),
    url("images/higalaay-hero.png") center / cover;
}

.explore-section .eyebrow {
  color: var(--yellow);
}

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

.explore-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(17, 48, 79, 0.72)),
    linear-gradient(135deg, var(--red), var(--orange));
  transition: transform 160ms ease;
}

.explore-card:nth-child(2) {
  background:
    linear-gradient(180deg, transparent, rgba(17, 48, 79, 0.72)),
    linear-gradient(135deg, var(--yellow), var(--orange));
}

.explore-card:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, rgba(17, 48, 79, 0.72)),
    linear-gradient(135deg, var(--green), var(--teal));
}

.explore-card:nth-child(4) {
  background:
    linear-gradient(180deg, transparent, rgba(17, 48, 79, 0.72)),
    linear-gradient(135deg, var(--blue), var(--navy));
}

.explore-card:hover {
  transform: translateY(-4px);
}

.explore-card span {
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.explore-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.visit-band {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 34px;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(90deg, var(--deep-red), var(--red) 30%, var(--orange));
}

.visit-band .eyebrow,
.visit-band p {
  color: rgba(255, 255, 255, 0.86);
}

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

.visit-grid article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.visit-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  min-height: 54vh;
  overflow: hidden;
  padding: clamp(82px, 13vw, 150px) clamp(18px, 5vw, 72px) clamp(58px, 8vw, 110px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.94), rgba(17, 48, 79, 0.74)),
    url("images/higalaay-hero.png") center / cover;
}

.page-hero::after {
  position: absolute;
  right: -72px;
  bottom: 34px;
  width: clamp(120px, 16vw, 220px);
  aspect-ratio: 0.78;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 250'%3E%3Cpolygon points='180,8 26,86 180,164' fill='%2300a651'/%3E%3Cpolygon points='180,50 106,86 180,122' fill='%23008fd3'/%3E%3Cpolygon points='180,164 94,208 180,250' fill='%2300a651'/%3E%3Cpolygon points='180,184 138,208 180,232' fill='%23f26522'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.page-ornament {
  right: -76px;
  top: 46px;
  transform: scaleX(-1);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 6vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.story-copy p {
  max-width: 720px;
  margin: 20px 0 0;
}

.story-image-card {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--green), var(--blue));
}

.story-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  display: block;
}

.principle-panel,
.contact-card,
.quick-info article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.principle-panel h3 {
  margin-bottom: 18px;
}

.principle-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.value-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-list article {
  grid-template-columns: 160px 1fr;
  border-left-color: var(--green);
}

.calendar-section {
  background: #fff;
}

.calendar-table {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendar-row {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr 1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.calendar-row:last-child {
  border-bottom: 0;
}

.calendar-row.head {
  color: #fff;
  background: var(--navy);
  font-weight: 950;
}

.calendar-row span:first-child {
  color: var(--deep-red);
  font-weight: 950;
}

.calendar-row.head span:first-child {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 143, 211, 0.12);
}

.quick-info {
  display: grid;
  gap: 16px;
}

.quick-info p {
  margin: 10px 0 6px;
  color: var(--muted);
}

.quick-info a,
.quick-info span {
  color: var(--deep-red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.quick-info article a + a {
  display: block;
  margin-top: 4px;
}

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

.planner-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sponsor-hero {
  background:
    linear-gradient(135deg, rgba(17, 48, 79, 0.92), rgba(17, 48, 79, 0.76)),
    url("images/higalaay-hero.png") center / cover;
}

.sponsor-tier {
  padding: clamp(46px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.sponsor-tier:nth-of-type(odd) {
  background:
    radial-gradient(circle at 100% 0, rgba(248, 197, 27, 0.18), transparent 26%),
    #f8fbfd;
}

.sponsor-tier-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 48, 79, 0.12);
}

.sponsor-tier-header h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.tier-badge {
  display: inline-flex;
  min-width: max-content;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.diamond-tier .tier-badge {
  color: #fff;
  background: var(--blue);
}

.gold-tier .tier-badge {
  background: var(--orange);
}

.silver-tier .tier-badge {
  color: var(--navy);
  background: #dce3ec;
}

.bronze-tier .tier-badge {
  color: #fff;
  background: var(--deep-red);
}

.donors-tier .tier-badge {
  color: #fff;
  background: var(--green);
}

.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.sponsor-logo-card {
  position: relative;
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(17, 48, 79, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sponsor-logo-card::after {
  position: absolute;
  inset: auto 18px 14px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--blue), var(--green));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.62);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sponsor-logo-card:hover,
.sponsor-logo-card:focus-within {
  background: #fffefa;
  border-color: rgba(231, 47, 45, 0.38);
  box-shadow: 0 22px 46px rgba(17, 48, 79, 0.16);
  transform: translateY(-6px);
}

.sponsor-logo-card:hover::after,
.sponsor-logo-card:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.sponsor-logo-card img {
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
  transition: transform 180ms ease, filter 180ms ease;
}

.sponsor-logo-card:hover img,
.sponsor-logo-card:focus-within img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.wide-logo img {
  max-height: 86px;
}

.square-logo img {
  max-height: 132px;
}

.donor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.donor-grid article {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 24px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 7px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.donor-grid article:hover {
  box-shadow: 0 22px 46px rgba(17, 48, 79, 0.15);
  transform: translateY(-4px);
}

.sponsor-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 48, 79, 0.94), rgba(17, 48, 79, 0.72)),
    linear-gradient(135deg, var(--red), var(--orange));
}

.sponsor-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/higalaay-hero.png") center / cover;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.sponsor-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 48, 79, 0.82), rgba(17, 48, 79, 0.58));
}

.sponsor-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sponsor-cta .eyebrow,
.sponsor-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.sponsor-cta h2 {
  max-width: 720px;
}

.sponsor-cta p {
  max-width: 620px;
  margin: 14px 0 0;
}

.sponsor-cta .button {
  margin-top: 30px;
}

.contact-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  color: #fff;
  background: var(--navy);
}

.contact-support-band .eyebrow {
  color: var(--yellow);
}

.contact-support-band h2 {
  max-width: 760px;
}

.contact-support-band p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 36px);
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 48, 79, 0.72);
  backdrop-filter: blur(10px);
}

.partner-modal {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-copy {
  max-width: 680px;
  padding-right: 48px;
}

.modal-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.modal-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.partner-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.partner-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  outline: none;
}

.partner-form textarea {
  resize: vertical;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 143, 211, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: clamp(22px, 3vw, 38px) clamp(18px, 5vw, 72px) 20px;
  color: #fff;
  background: var(--navy);
}

.footer-main {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.footer-identity p {
  max-width: 620px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-logos {
  width: min(100%, 430px);
  margin: 0 auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.75))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.62))
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .ticker-band,
  .event-grid,
  .six-grid,
  .story-grid,
  .value-strip,
  .explore-grid,
  .planner-grid,
  .event-hero-meta,
  .event-fact-grid,
  .sponsor-logo-grid,
  .platinum-grid,
  .compact-grid,
  .donor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .split-section,
  .visit-band,
  .story-section,
  .volunteer-cta,
  .contact-support-band,
  .partner-recognition,
  .event-overview,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-recognition {
    align-items: start;
  }

  .partner-logo-strip {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
    gap: 18px;
  }

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

  .event-editorial figure,
  .event-editorial article {
    min-height: 300px;
  }

  .ticker-band {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sponsor-cta,
  .sponsor-tier-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-modal {
    max-height: calc(100vh - 32px);
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .event-card.large-card {
    min-height: 320px;
  }

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

  .calendar-row {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .calendar-row span:nth-child(3),
  .calendar-row span:nth-child(4) {
    color: var(--muted);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    min-height: 82vh;
    padding-top: 96px;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-carousel-dots {
    right: auto;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .button {
    width: 100%;
  }

  .footer-logos {
    width: min(100%, 330px);
  }

  .ornament {
    width: 120px;
  }

  .ornament-left {
    left: -58px;
    bottom: 18px;
  }

  .ornament-right,
  .page-ornament {
    right: -66px;
    top: 110px;
  }

  .ticker-band,
  .event-grid,
  .six-grid,
  .story-grid,
  .value-strip,
  .explore-grid,
  .visit-grid,
  .planner-grid,
  .event-hero-meta,
  .event-fact-grid,
  .event-faq-list,
  .sponsor-logo-grid,
  .platinum-grid,
  .compact-grid,
  .donor-grid {
    grid-template-columns: 1fr;
  }

  .ticker-band {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .partner-recognition {
    top: 68px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .partner-logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-logo-strip img {
    max-height: 42px;
  }

  .ticker-band > span {
    min-height: 68px;
    padding: 12px 6px;
  }

  .ticker-band svg {
    width: clamp(24px, 7vw, 32px);
    height: clamp(24px, 7vw, 32px);
  }

  .ticker-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .event-card,
  .timeline-list article,
  .path-list article {
    grid-template-columns: 1fr;
  }

  .timeline-list small,
  .path-list span {
    grid-column: auto;
  }

  .event-date {
    width: 66px;
    height: 72px;
  }

  .explore-card {
    min-height: 190px;
  }

  .sponsor-logo-card {
    min-height: 154px;
    padding: 20px;
  }

  .sponsor-logo-card img {
    max-height: 106px;
  }

  .wide-logo img {
    max-height: 74px;
  }

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

  .modal-copy {
    padding-right: 44px;
  }

  .modal-actions .button {
    width: 100%;
  }

  .calendar-row,
  .calendar-row.head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .calendar-row.head {
    display: none;
  }
}
