:root {
  --bg: #edf4ff;
  --bg-soft: #fbfdff;
  --ink: #1d2d4a;
  --muted: #62728d;
  --accent: #3f7cff;
  --accent-deep: #1f4187;
  --accent-bright: #57a7ff;
  --sun: #97d8ff;
  --sky: #cfeeff;
  --ice: #eef7ff;
  --mist: #dde6f4;
  --mint: #d9deea;
  --line: rgba(34, 61, 111, 0.14);
  --card: rgba(251, 253, 255, 0.78);
  --shadow: 0 28px 60px rgba(29, 45, 74, 0.13);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(151, 216, 255, 0.54), transparent 30%),
    radial-gradient(circle at right 16%, rgba(63, 124, 255, 0.2), transparent 24%),
    radial-gradient(circle at 10% 78%, rgba(207, 238, 255, 0.72), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #dbe7f8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 62%, transparent 100%);
  opacity: 0.36;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(248, 252, 255, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(29, 45, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fdfefe;
  font-family: "Futura", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 12px 24px rgba(31, 65, 135, 0.24);
}

.brand-mark-image {
  padding: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.eyebrow,
h1,
h2,
h3,
.button,
.card-label,
.location-label {
  font-family: "Futura", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.hero,
.section {
  position: relative;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(87, 167, 255, 0.12), transparent 18%),
    radial-gradient(circle at bottom left, rgba(207, 238, 255, 0.35), transparent 24%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.95), rgba(242, 247, 255, 0.84));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(151, 216, 255, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(217, 222, 234, 0.3), transparent 28%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.95fr);
  gap: 28px;
  padding: 34px;
  isolation: isolate;
}

.hero-copy,
.hero-visuals,
.section > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-text,
.about-copy p,
.main-direction p,
.tag-card p,
.story-card p,
.closing-card p,
.split-copy p,
.accent-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin-top: 20px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(63, 124, 255, 0.14);
  border-radius: 999px;
  color: var(--accent-deep);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(236, 244, 252, 0.94));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #fbfdff;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 30px rgba(31, 65, 135, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-card,
.accent-card,
.main-direction,
.tag-card,
.story-card,
.closing-card,
.location-card,
.enroll-banner {
  border: 1px solid rgba(31, 37, 51, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(10px);
}

.stat-card,
.accent-card,
.main-direction,
.tag-card,
.story-card,
.closing-card,
.location-card,
.enroll-banner,
.contact-banner,
.photo-frame,
.photo-frame-large,
.photo-frame-wide,
.photo-frame-square {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.stat-card:hover,
.accent-card:hover,
.main-direction:hover,
.tag-card:hover,
.story-card:hover,
.closing-card:hover,
.location-card:hover,
.enroll-banner:hover,
.contact-banner:hover,
.photo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(31, 65, 135, 0.15);
  border-color: rgba(63, 124, 255, 0.22);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.stat-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 245, 255, 0.82));
}

.stat-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 247, 255, 0.8));
}

.stat-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(231, 238, 250, 0.82));
}

.stat-card strong {
  font-family: "Futura", "Avenir Next Condensed", sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.photo-frame,
.logo-frame {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(63, 124, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(63, 124, 255, 0.14), rgba(151, 216, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 243, 252, 0.94));
  box-shadow: 0 18px 40px rgba(31, 65, 135, 0.09);
}

.photo-frame img,
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 200ms ease;
}

.photo-frame::before,
.photo-frame::after,
.accent-card::before,
.story-card::before,
.contact-banner::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.75;
}

.photo-frame::before {
  width: 160px;
  height: 160px;
  top: -70px;
  right: -50px;
  background: radial-gradient(circle, rgba(151, 216, 255, 0.28), transparent 65%);
}

.photo-frame::after {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: -45px;
  background: radial-gradient(circle, rgba(63, 124, 255, 0.12), transparent 65%);
}

.logo-frame img {
  object-fit: contain;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.photo-frame-large {
  grid-column: span 2;
  min-height: 430px;
}

.photo-frame-small {
  min-height: 220px;
}

.photo-frame-wide {
  min-height: 380px;
}

.photo-frame-square {
  min-height: 320px;
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: rgba(31, 37, 51, 0.75);
  background:
    radial-gradient(circle at top, rgba(151, 216, 255, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(239, 245, 252, 0.96));
}

.photo-fallback span {
  font-family: "Futura", "Avenir Next Condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-fallback small {
  max-width: 26ch;
  color: var(--muted);
  line-height: 1.5;
}

.photo-frame.is-ready .photo-fallback,
.logo-frame.is-ready .photo-fallback {
  opacity: 0;
  pointer-events: none;
}

.photo-frame.is-ready img,
.logo-frame.is-ready img {
  opacity: 1;
}

.accent-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.accent-card-sunrise {
  background:
    radial-gradient(circle at top right, rgba(151, 216, 255, 0.62), transparent 38%),
    radial-gradient(circle at bottom left, rgba(207, 238, 255, 0.5), transparent 28%),
    linear-gradient(180deg, rgba(63, 124, 255, 0.08), rgba(247, 250, 255, 0.92));
}

.card-label {
  color: var(--accent-deep);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accent-card strong,
.main-direction h3,
.tag-card strong,
.location-card strong {
  margin-top: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.accent-card p {
  margin-top: 12px;
}

.accent-card::before {
  width: 220px;
  height: 220px;
  top: -120px;
  right: -95px;
  background: radial-gradient(circle, rgba(151, 216, 255, 0.24), transparent 66%);
}

.section {
  padding: 34px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-layout,
.directions-layout,
.community-layout,
.finale-layout {
  display: grid;
  gap: 20px;
}

.about-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.fact-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.fact-ribbon span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(236, 244, 252, 0.88));
  font-size: 0.92rem;
}

.directions-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
}

.main-direction,
.tag-card,
.story-card,
.closing-card,
.location-card,
.enroll-banner {
  padding: 24px;
}

.main-direction {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-direction p:last-child {
  margin-top: 14px;
}

.tags-grid,
.gallery-grid,
.locations-grid {
  display: grid;
  gap: 16px;
}

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

.tag-card strong {
  display: block;
  font-size: 1.28rem;
}

.tag-card:nth-child(1) {
  background:
    radial-gradient(circle at top right, rgba(151, 216, 255, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.76);
}

.tag-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(63, 124, 255, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.78);
}

.tag-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(207, 238, 255, 0.7), transparent 28%),
    rgba(255, 255, 255, 0.78);
}

.tag-card p {
  margin-top: 10px;
  font-size: 1rem;
}

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

.gallery-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

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

.community-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: start;
}

.story-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(236, 244, 252, 0.9));
  position: relative;
  overflow: hidden;
}

.story-card::before {
  width: 180px;
  height: 180px;
  right: -70px;
  top: -60px;
  background: radial-gradient(circle, rgba(87, 167, 255, 0.12), transparent 68%);
}

.finale-layout {
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.95fr));
  align-items: stretch;
}

.closing-card {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  background:
    radial-gradient(circle at bottom left, rgba(151, 216, 255, 0.24), transparent 42%),
    rgba(246, 250, 255, 0.9);
}

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

.location-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(151, 216, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 245, 252, 0.94));
}

.location-label {
  color: var(--accent-deep);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card strong {
  max-width: 12ch;
}

.enroll-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  background:
    radial-gradient(circle at right, rgba(151, 216, 255, 0.32), transparent 32%),
    rgba(246, 250, 255, 0.9);
}

.enroll-banner p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right top, rgba(151, 216, 255, 0.3), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(239, 246, 254, 0.78));
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(63, 124, 255, 0.16), transparent 68%);
}

.contact-copy {
  display: grid;
  gap: 10px;
}

.contact-phone {
  color: var(--accent-deep);
  font-family: "Futura", "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.06em;
}

.contact-copy p:last-child {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 54ch;
}

.contact-copy a {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 12px 0;
  color: var(--muted);
}

.reveal {
  animation: rise 700ms ease both;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: drift 12s ease-in-out infinite;
}

.hero-orb-one {
  width: 180px;
  height: 180px;
  top: -24px;
  right: 18px;
  background: radial-gradient(circle, rgba(87, 167, 255, 0.18), rgba(87, 167, 255, 0.02) 70%);
}

.hero-orb-two {
  width: 120px;
  height: 120px;
  left: -10px;
  bottom: 12px;
  background: radial-gradient(circle, rgba(151, 216, 255, 0.22), rgba(151, 216, 255, 0.02) 70%);
  animation-delay: -4s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 10px, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visuals .photo-frame-large {
    animation: floaty 9s ease-in-out infinite;
  }

  .hero-visuals .photo-frame-small {
    animation: floaty 11s ease-in-out infinite reverse;
  }

  .stat-card:nth-child(2) {
    animation: floaty 10s ease-in-out infinite;
  }

  .tag-card:nth-child(2) {
    animation: floaty 12s ease-in-out infinite;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .site-header,
  .split-copy,
  .hero,
  .about-layout,
  .directions-layout,
  .community-layout,
  .finale-layout,
  .tags-grid,
  .gallery-grid-four,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    justify-content: stretch;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: space-between;
  }

  .hero {
    padding: 26px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-stats,
  .hero-visuals,
  .gallery-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-frame-large {
    min-height: 360px;
  }

  .photo-frame-wide,
  .photo-frame-square {
    min-height: 300px;
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .hero-orb {
    opacity: 0.8;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .section {
    padding: 20px;
  }

  .site-nav {
    gap: 12px 16px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .hero-stats,
  .hero-visuals,
  .gallery-grid-two {
    grid-template-columns: 1fr;
  }

  .photo-frame-large,
  .photo-frame-wide,
  .photo-frame-square,
  .photo-frame {
    min-height: 240px;
  }

  .hero-actions,
  .enroll-banner,
  .contact-banner,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-phone {
    word-break: break-word;
  }

  .hero-orb-one {
    width: 130px;
    height: 130px;
    right: -10px;
  }

  .hero-orb-two {
    width: 88px;
    height: 88px;
    left: -12px;
  }

  h2 {
    max-width: 100%;
  }
}
