:root {
  --ink: #30314f;
  --muted: #667078;
  --white: #fffaf8;
  --lavender: #d8c8ef;
  --rose: #f2bdc3;
  --apricot: #ffd8aa;
  --mint: #b7dcca;
  --lake: #91cfc2;
  --lake-deep: #5f958f;
  --shadow: rgba(37, 49, 79, 0.18);
  --cycle-glow-one: rgba(255, 236, 178, 0.94);
  --cycle-glow-two: rgba(197, 185, 222, 0.62);
  --cycle-sky-start: #d9c9df;
  --cycle-sky-mid: #f3c4b8;
  --cycle-horizon: #f9d6a7;
  --cycle-waterline: #a9d6c5;
  --cycle-bottom: #6fa79e;
  --cycle-lake-top: rgba(174, 216, 196, 0.94);
  --cycle-lake-mid: rgba(105, 163, 151, 0.96);
  --cycle-lake-bottom: #557f86;
  --cycle-celestial-x: 86%;
  --cycle-celestial-y: 18%;
  --cycle-celestial-size: clamp(42px, 7vw, 84px);
  --cycle-celestial-core: #fff;
  --cycle-celestial-edge: #fff7cb;
  --cycle-celestial-glow: rgba(255, 246, 204, 0.72);
  --cycle-star-opacity: 1;
  --cycle-sparkle-opacity: 1;
  --cycle-scene-filter: saturate(1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #faf1ee;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-cycle="day"] {
  --cycle-glow-one: rgba(255, 246, 189, 0.96);
  --cycle-glow-two: rgba(172, 218, 244, 0.68);
  --cycle-sky-start: #b9d9ee;
  --cycle-sky-mid: #dfeef3;
  --cycle-horizon: #f8e2b6;
  --cycle-waterline: #bfe1ce;
  --cycle-bottom: #7eb9ac;
  --cycle-lake-top: rgba(185, 225, 209, 0.96);
  --cycle-lake-mid: rgba(112, 181, 169, 0.96);
  --cycle-lake-bottom: #5e9c9a;
  --cycle-celestial-core: #fff7b7;
  --cycle-celestial-edge: #ffd978;
  --cycle-celestial-glow: rgba(255, 221, 105, 0.54);
  --cycle-star-opacity: 0.08;
  --cycle-sparkle-opacity: 0.42;
  --cycle-scene-filter: saturate(1.03) brightness(1.03);
}

body[data-cycle="dawn"],
body[data-cycle="dusk"] {
  --cycle-glow-one: rgba(255, 224, 168, 0.96);
  --cycle-glow-two: rgba(211, 185, 223, 0.7);
  --cycle-sky-start: #cabde1;
  --cycle-sky-mid: #f2bbae;
  --cycle-horizon: #ffe0a9;
  --cycle-waterline: #acd8c6;
  --cycle-bottom: #6fa79e;
  --cycle-celestial-core: #fff0b6;
  --cycle-celestial-edge: #ffd07b;
  --cycle-celestial-glow: rgba(255, 214, 131, 0.6);
  --cycle-star-opacity: 0.35;
  --cycle-sparkle-opacity: 0.72;
  --cycle-scene-filter: saturate(1.06);
}

body[data-cycle="night"] {
  --cycle-glow-one: rgba(83, 85, 139, 0.48);
  --cycle-glow-two: rgba(40, 55, 101, 0.62);
  --cycle-sky-start: #23284f;
  --cycle-sky-mid: #4c4f86;
  --cycle-horizon: #8c789d;
  --cycle-waterline: #517f82;
  --cycle-bottom: #274a5b;
  --cycle-lake-top: rgba(88, 139, 139, 0.96);
  --cycle-lake-mid: rgba(53, 103, 112, 0.98);
  --cycle-lake-bottom: #263f55;
  --cycle-celestial-core: #fff;
  --cycle-celestial-edge: #fff7cb;
  --cycle-celestial-glow: rgba(255, 246, 204, 0.72);
  --cycle-star-opacity: 1;
  --cycle-sparkle-opacity: 1;
  --cycle-scene-filter: saturate(0.92) brightness(0.86);
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: #30335f;
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 30px rgba(86, 73, 132, 0.14);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.site-header nav {
  gap: clamp(12px, 2vw, 26px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 50px rgba(70, 55, 110, 0.12);
  backdrop-filter: blur(14px);
}

.site-header nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--mint));
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.hero {
  position: relative;
  scroll-margin-top: 0;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 24% 18%, var(--cycle-glow-one) 0 8%, transparent 23%),
    radial-gradient(circle at 76% 22%, var(--cycle-glow-two) 0 13%, transparent 31%),
    linear-gradient(180deg, var(--cycle-sky-start) 0%, var(--cycle-sky-mid) 34%, var(--cycle-horizon) 52%, var(--cycle-waterline) 74%, var(--cycle-bottom) 100%);
  filter: var(--cycle-scene-filter);
  transition: background 900ms ease, filter 900ms ease;
}

.sky,
.lake-scene,
.sparkles {
  position: absolute;
  inset: 0;
}

.sky {
  z-index: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 16% 32%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 36%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px);
  opacity: var(--cycle-star-opacity);
  transition: opacity 900ms ease;
}

.moon {
  position: absolute;
  top: var(--cycle-celestial-y);
  left: var(--cycle-celestial-x);
  width: var(--cycle-celestial-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 32%, var(--cycle-celestial-core) 0 23%, var(--cycle-celestial-edge) 58%, rgba(255, 241, 184, 0.22) 70%);
  box-shadow: 0 0 48px var(--cycle-celestial-glow);
  transform: translate(-50%, -50%);
  transition: top 900ms ease, left 900ms ease, background 900ms ease, box-shadow 900ms ease;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px #fff;
  animation: twinkle 4s ease-in-out infinite;
}

.star-1 { top: 16vh; left: 22vw; }
.star-2 { top: 25vh; right: 31vw; animation-delay: 1.1s; }
.star-3 { top: 39vh; left: 66vw; animation-delay: 2.2s; }

.lake-scene {
  z-index: 1;
}

.shore {
  position: absolute;
  left: -5%;
  width: 110%;
  border-radius: 50%;
  filter: blur(0.2px);
}

.shore-back {
  top: 50vh;
  height: 16vh;
  background:
    radial-gradient(ellipse at 22% 66%, rgba(118, 140, 121, 0.37) 0 18%, transparent 38%),
    radial-gradient(ellipse at 78% 70%, rgba(126, 113, 143, 0.24) 0 15%, transparent 38%),
    linear-gradient(180deg, rgba(198, 178, 170, 0.13), rgba(99, 136, 125, 0.22));
}

.lake {
  position: absolute;
  right: -8vw;
  bottom: -12vh;
  left: -8vw;
  height: 51vh;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  background:
    radial-gradient(ellipse at 50% 7%, rgba(255, 245, 214, 0.64) 0 12%, transparent 34%),
    radial-gradient(ellipse at 30% 44%, rgba(214, 187, 189, 0.3) 0 12%, transparent 36%),
    repeating-linear-gradient(175deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 38px),
    linear-gradient(180deg, var(--cycle-lake-top), var(--cycle-lake-mid) 68%, var(--cycle-lake-bottom));
  box-shadow: inset 0 26px 60px rgba(255, 255, 255, 0.32);
  transition: background 900ms ease, box-shadow 900ms ease;
}

.lake-effects,
.ambient-lilies,
.event-lily-pads {
  position: absolute;
  inset: 0;
}

.lake-effects {
  z-index: 1;
  pointer-events: none;
}

.lake-shimmer {
  position: absolute;
  width: 22%;
  height: 8%;
  border-radius: 50%;
  background: rgba(255, 248, 222, 0.28);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  animation: shimmerFade 1.7s ease-out forwards;
}

.water-ripple,
.burst-ripple {
  position: absolute;
  width: var(--ripple-size, 72px);
  height: calc(var(--ripple-size, 72px) * 0.36);
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  animation: lakeRipple 1.6s ease-out forwards;
}

.burst-ripple {
  border-color: rgba(255, 246, 198, 0.72);
  animation-duration: 2.1s;
}

.sparkle-burst {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 252, 196, 0.94);
  box-shadow: 0 0 18px rgba(255, 244, 160, 0.9);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.4);
  animation: sparkleBurst 850ms ease-out forwards;
}

.fish-jump {
  position: absolute;
  width: 15px;
  height: 8px;
  border-radius: 50% 50% 45% 45%;
  background: rgba(76, 119, 125, 0.58);
  pointer-events: none;
  transform: translate(-50%, 0) rotate(-16deg);
  animation: fishJump 1.2s ease-in-out forwards;
}

.fish-jump::after {
  position: absolute;
  right: -5px;
  top: 1px;
  width: 7px;
  height: 7px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
}

.ambient-lilies {
  z-index: 2;
  pointer-events: none;
}

.ambient-lily,
.event-pad {
  background: transparent;
}

.ambient-lily {
  position: absolute;
  width: clamp(34px, 5vw, 72px);
  aspect-ratio: 1;
  background: url("assets/lily-pad.svg") center / contain no-repeat;
  filter: drop-shadow(0 12px 18px rgba(55, 99, 91, 0.2));
  opacity: 0.72;
  animation: lilyDrift 18s ease-in-out infinite;
}

.lily-a { left: 14%; top: 42%; animation-delay: -4s; }
.lily-b { left: 78%; top: 34%; width: clamp(28px, 4vw, 58px); animation-delay: -10s; }
.lily-c { left: 58%; top: 66%; width: clamp(24px, 3vw, 48px); animation-delay: -14s; }

.event-lily-pads {
  z-index: 6;
  pointer-events: none;
}

.event-pad {
  position: absolute;
  display: grid;
  width: clamp(126px, 10vw, 150px);
  min-height: 78px;
  border: 0;
  padding: 10px 12px;
  color: #243847;
  cursor: pointer;
  font: inherit;
  line-height: 1.1;
  isolation: isolate;
  overflow: visible;
  pointer-events: auto;
  text-align: left;
  transform: rotate(var(--tilt, -4deg));
  transition: box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.event-pad::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("assets/lily-pad.svg") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 10px 16px rgba(55, 99, 91, 0.2));
}

.event-pad span {
  position: relative;
  z-index: 1;
  color: rgba(36, 56, 71, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-pad strong {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.event-pad em {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: #7f3844;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.event-pad:hover,
.event-pad:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 250, 206, 0.38), 0 20px 42px rgba(55, 99, 91, 0.28);
  filter: saturate(1.08) brightness(1.04);
  outline: none;
  transform: translateY(-4px) rotate(var(--tilt, -4deg));
}

.event-pad-1 { left: 15%; top: 24%; --tilt: -6deg; }
.event-pad-2 { left: 30%; top: 42%; --tilt: 4deg; }
.event-pad-3 { right: 28%; top: 25%; --tilt: 5deg; }
.event-pad-4 { right: 14%; top: 43%; --tilt: -3deg; }
.event-pad-5 { left: 45%; top: 42%; --tilt: -2deg; }
.event-pad-6 { left: 12%; top: 48%; --tilt: 7deg; }
.event-pad-7 { right: 42%; top: 32%; --tilt: -5deg; }

.event-tooltip {
  position: fixed;
  z-index: 8;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 250, 248, 0.88);
  box-shadow: 0 18px 45px rgba(67, 65, 115, 0.14);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 2px));
  transition: opacity 140ms ease, transform 140ms ease;
}

.event-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 10px));
}

.calendar-access {
  position: absolute;
  z-index: 8;
  left: clamp(16px, 4vw, 54px);
  bottom: clamp(118px, 16vh, 176px);
  width: min(340px, calc(100vw - 32px));
}

.calendar-toggle {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 250, 248, 0.72);
  box-shadow: 0 16px 38px rgba(67, 65, 115, 0.12);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.calendar-toggle:hover,
.calendar-toggle:focus,
.calendar-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(67, 65, 115, 0.16);
  outline: none;
}

.calendar-list {
  margin-top: 10px;
  max-height: min(56vh, 560px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 248, 0.86);
  box-shadow: 0 20px 58px rgba(67, 65, 115, 0.14);
  backdrop-filter: blur(14px);
}

.calendar-list h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.calendar-list__items {
  display: grid;
  gap: 18px;
}

.calendar-agenda {
  display: grid;
  gap: 8px;
}

.calendar-agenda__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  width: 100%;
  border: 1px solid rgba(95, 149, 143, 0.16);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.calendar-agenda__item:hover,
.calendar-agenda__item:focus-visible {
  filter: brightness(1.04);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(67, 65, 115, 0.13);
}

.calendar-agenda__item strong {
  font-size: 0.86rem;
}

.calendar-agenda__item span {
  color: rgba(42, 48, 83, 0.62);
  font-size: 0.74rem;
}

.calendar-agenda__item em {
  grid-row: span 2;
  align-self: center;
  color: #7f3844;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-agenda__item.community { background: rgba(208, 236, 229, 0.78); }
.calendar-agenda__item.fundraiser { background: rgba(255, 220, 222, 0.82); }
.calendar-agenda__item.volunteer { background: rgba(255, 236, 190, 0.84); }
.calendar-agenda__item.convention { background: rgba(222, 217, 247, 0.84); }
.calendar-agenda__item.stream { background: rgba(197, 228, 245, 0.82); }
.calendar-agenda__item.sisterhood { background: rgba(255, 220, 222, 0.82); }
.calendar-agenda__item.asig { background: rgba(222, 217, 247, 0.84); }
.calendar-agenda__item.info { background: rgba(208, 236, 229, 0.78); }
.calendar-agenda__item.frat { background: rgba(255, 236, 190, 0.84); }

.calendar-month {
  display: grid;
  gap: 10px;
}

.calendar-month h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-weekday,
.calendar-day {
  min-width: 0;
  border-radius: 7px;
  font-size: 0.68rem;
}

.calendar-weekday {
  color: rgba(42, 48, 83, 0.58);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  min-height: 42px;
  align-content: start;
  border: 1px solid rgba(95, 149, 143, 0.16);
  padding: 5px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(42, 48, 83, 0.62);
  font: inherit;
  text-align: left;
}

.calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.calendar-day.has-event {
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.calendar-day.has-event::after {
  display: block;
  width: 8px;
  height: 8px;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  background: rgba(48, 49, 79, 0.34);
  content: "";
}

.calendar-day.has-event:hover,
.calendar-day.has-event:focus-visible {
  filter: brightness(1.04);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(67, 65, 115, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.calendar-day__number {
  font-size: 0.66rem;
  font-weight: 900;
}

.calendar-day strong {
  overflow-wrap: anywhere;
  font-size: 0.68rem;
  line-height: 1.05;
}

.calendar-day em {
  margin-top: 3px;
  color: #7f3844;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-day.community { background: rgba(208, 236, 229, 0.78); }
.calendar-day.fundraiser { background: rgba(255, 220, 222, 0.82); }
.calendar-day.volunteer { background: rgba(255, 236, 190, 0.84); }
.calendar-day.convention { background: rgba(222, 217, 247, 0.84); }
.calendar-day.stream { background: rgba(197, 228, 245, 0.82); }
.calendar-day.sisterhood { background: rgba(255, 220, 222, 0.82); }
.calendar-day.asig { background: rgba(222, 217, 247, 0.84); }
.calendar-day.info { background: rgba(208, 236, 229, 0.78); }
.calendar-day.frat { background: rgba(255, 236, 190, 0.84); }

.lake::before,
.lake::after {
  position: absolute;
  right: -10%;
  left: -10%;
  height: 70px;
  border-radius: 50%;
  content: "";
  opacity: 0.46;
  animation: waterDrift 15s linear infinite;
}

.lake::before {
  top: 28%;
  background: repeating-linear-gradient(178deg, transparent 0 20px, rgba(255, 255, 255, 0.35) 21px 23px, transparent 24px 50px);
}

.lake::after {
  top: 56%;
  background: repeating-linear-gradient(182deg, transparent 0 26px, rgba(218, 241, 255, 0.32) 27px 29px, transparent 30px 58px);
  animation-duration: 19s;
  animation-direction: reverse;
}

.reflection {
  position: absolute;
  left: 50%;
  width: min(56vw, 720px);
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 235, 195, 0.34);
  filter: blur(8px);
  transform: translateX(-50%);
}

.reflection-1 { top: 12%; }
.reflection-2 { top: 25%; width: min(42vw, 540px); opacity: 0.75; }
.reflection-3 { top: 40%; width: min(65vw, 820px); opacity: 0.38; }

.shore-front {
  bottom: -24vh;
  height: 34vh;
  background:
    radial-gradient(ellipse at 25% 8%, rgba(255, 232, 205, 0.5) 0 18%, transparent 43%),
    radial-gradient(ellipse at 78% 5%, rgba(218, 208, 226, 0.52) 0 16%, transparent 44%),
    linear-gradient(180deg, rgba(200, 218, 202, 0.46), rgba(148, 178, 163, 0.38));
}

.swan-track {
  position: absolute;
  top: 9%;
  left: 50%;
  width: min(78vw, 900px);
  height: min(19vh, 170px);
  transform: translateX(-50%);
}

.swan-wrap {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: clamp(118px, 18vw, 205px);
  animation: swanGlide 24s ease-in-out infinite;
  cursor: pointer;
  z-index: 7;
  transform-origin: center bottom;
}

.swan-wrap:focus-visible {
  outline: 3px solid rgba(255, 250, 206, 0.7);
  outline-offset: 8px;
}

.swan-shell {
  position: relative;
  animation: swanBob 4.8s ease-in-out infinite;
  transform: rotate(var(--swan-turn, 0deg));
  transform-origin: 52% 68%;
  transition: transform 160ms ease;
}

.swan-wrap.is-flapping .swan-shell {
  animation: swanBob 4.8s ease-in-out infinite, swanFlap 620ms ease-in-out;
}

.swan {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 12px 14px rgba(42, 70, 105, 0.15));
}

.swan-body,
.swan-tail { fill: url("#swanBody"); }
.swan-wing { fill: url("#swanWing"); opacity: 0.96; }
.wing-line {
  fill: none;
  stroke: rgba(151, 132, 176, 0.36);
  stroke-linecap: round;
  stroke-width: 3;
}
.swan-neck,
.swan-head { fill: #fffaf8; }
.face-mask { fill: #2f3047; }
.swan-beak { fill: #ffad82; }
.swan-eye { fill: #fffaf8; }
.swan-shadow { fill: rgba(44, 82, 82, 0.22); }

.ripple {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 5px;
  width: 108%;
  height: 31%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.55);
  animation: ripplePulse 3.8s ease-out infinite;
}

.ripple-b {
  animation-delay: 1.9s;
  border-color: rgba(219, 245, 255, 0.46);
}

.sparkles span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(255, 252, 196, 0.94);
  box-shadow: 0 0 16px rgba(255, 244, 160, 0.9), 0 0 30px rgba(188, 235, 220, 0.45);
  opacity: var(--cycle-sparkle-opacity);
  animation: firefly var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  padding: 132px 20px 176px;
  pointer-events: none;
  text-align: center;
}

.hero-content :where(a, button) {
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(47, 49, 86, 0.74);
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #313262;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 14vw, 10.5rem);
  font-weight: 700;
  line-height: 0.86;
  text-shadow: 0 18px 52px rgba(92, 68, 126, 0.18);
}

.subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(42, 48, 83, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.16;
}

.about-crest {
  width: clamp(150px, 22vw, 260px);
  margin-top: 20px;
  border-radius: 8px;
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(67, 65, 115, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(67, 65, 115, 0.18);
}

.button.primary {
  background: #30335f;
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.scroll-indicator {
  position: absolute;
  z-index: 5;
  right: 50%;
  bottom: 26px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(39, 49, 79, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(50%);
}

.scroll-line {
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(39, 49, 79, 0.2);
}

.scroll-line::after {
  display: block;
  width: 1px;
  height: 18px;
  background: #30335f;
  content: "";
  animation: scrollCue 1.8s ease-in-out infinite;
}

.content-section {
  position: relative;
  scroll-margin-top: 88px;
  padding: clamp(72px, 11vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 20%, rgba(183, 220, 202, 0.45), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(242, 189, 195, 0.28), transparent 26%),
    #fffaf8;
}

.content-section:nth-of-type(even) {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 216, 170, 0.36), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(183, 220, 202, 0.34), transparent 28%),
    #fbf3ef;
}

.content-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 62%, rgba(255, 255, 255, 0.65) 0 1px, transparent 2px);
  content: "";
}

.section-grid,
.section-inner {
  position: relative;
  z-index: 1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 7vw, 92px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.section-heading {
  max-width: 380px;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-inner.narrow {
  max-width: 720px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.section-inner h2,
.rush-panel h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.95;
}

.section-inner h2 {
  margin-inline: auto;
}

.section-copy,
.pillar-list,
.rush-panel,
.section-inner p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.lead {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.22;
}

.facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.facts div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(95, 149, 143, 0.22);
}

.facts dt {
  color: #9b3c4b;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.about-pillars {
  margin-top: 42px;
}

.about-pillars > h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.pillar-list {
  display: grid;
  gap: 18px;
}

.sisters-content {
  display: grid;
  gap: 24px;
}

.sisters-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.sister-card {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(95, 149, 143, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 22px 60px rgba(67, 65, 115, 0.1);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.sisters-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.sister-card:hover img,
.sister-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.sister-card span {
  display: none;
}

.sister-card::after {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 250, 248, 0.84);
  color: var(--ink);
  content: "View profile";
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sister-card:hover::after,
.sister-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.sister-card:focus-visible {
  outline: 3px solid rgba(155, 60, 75, 0.42);
  outline-offset: 4px;
}

.sister-modal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.sister-modal.is-open {
  display: grid;
}

.sister-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 29, 45, 0.54);
  backdrop-filter: blur(12px);
}

.sister-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 1fr);
  width: min(920px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 248, 0.96), rgba(239, 247, 242, 0.92)),
    #fffaf8;
  box-shadow: 0 32px 100px rgba(25, 25, 45, 0.28);
}

.sister-modal__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.sister-modal__copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.sister-modal__copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.92;
}

.sister-modal__description {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.sister-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid rgba(95, 149, 143, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 250, 248, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.event-modal {
  position: fixed;
  z-index: 31;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
}

.event-modal.is-open {
  display: grid;
}

.event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 29, 45, 0.5);
  backdrop-filter: blur(12px);
}

.event-modal__panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: clamp(30px, 6vw, 58px);
  background:
    radial-gradient(circle at 18% 16%, rgba(183, 220, 202, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 248, 0.98), rgba(239, 247, 242, 0.94));
  box-shadow: 0 32px 100px rgba(25, 25, 45, 0.28);
  transform: translateY(10px) scale(0.98);
  animation: modalRise 220ms ease-out forwards;
}

.event-modal__panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.94;
}

.event-modal__details {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.event-modal__details div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(95, 149, 143, 0.22);
  padding-top: 8px;
}

.event-modal__details dt {
  color: #9b3c4b;
  font-weight: 800;
  text-transform: uppercase;
}

.event-modal__details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.event-modal__description {
  color: var(--muted);
  line-height: 1.7;
}

.event-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid rgba(95, 149, 143, 0.2);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 250, 248, 0.9);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.pillar-list article {
  padding: 26px;
  border: 1px solid rgba(95, 149, 143, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 48px rgba(67, 65, 115, 0.08);
}

.pillar-list h3,
.pillar-list h4 {
  margin: 0 0 8px;
  color: #9b3c4b;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-list p {
  margin: 0;
}

.rush-section {
  display: grid;
  place-items: center;
  min-height: 52vh;
}

.rush-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 248, 0.82), rgba(233, 244, 241, 0.72)),
    radial-gradient(circle at 18% 16%, rgba(242, 189, 195, 0.34), transparent 38%);
  box-shadow: 0 24px 72px rgba(67, 65, 115, 0.11);
  text-align: center;
}

.rush-panel h2 {
  margin-inline: auto;
}

.rush-panel p {
  margin: 18px 0 28px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 800;
}

.merch-section,
.contact-section {
  min-height: 46vh;
}

.section-inner p:last-child,
.section-inner > p {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 149, 143, 0.26);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  font-weight: 800;
}

@keyframes swanGlide {
  0% {
    transform: translate(0, 5px) scaleX(-1) rotate(1deg);
  }
  45% {
    transform: translate(calc(min(78vw, 900px) - clamp(118px, 18vw, 205px)), -8px) scaleX(-1) rotate(-1.5deg);
  }
  50% {
    transform: translate(calc(min(78vw, 900px) - clamp(118px, 18vw, 205px)), -4px) scaleX(1) rotate(0deg);
  }
  95% {
    transform: translate(0, 5px) scaleX(1) rotate(1.5deg);
  }
  100% {
    transform: translate(0, 5px) scaleX(-1) rotate(1deg);
  }
}

@keyframes swanBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes swanFlap {
  0%, 100% { scale: 1; filter: drop-shadow(0 12px 14px rgba(42, 70, 105, 0.15)); }
  35% { scale: 1.06 0.96; filter: drop-shadow(0 18px 18px rgba(42, 70, 105, 0.18)); }
  70% { scale: 0.98 1.04; }
}

@keyframes ripplePulse {
  0% {
    opacity: 0.68;
    transform: translateX(-50%) scale(0.45);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.35);
  }
}

@keyframes lakeRipple {
  0% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.18); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}

@keyframes shimmerFade {
  from { opacity: 0; translate: -12px 0; }
  30% { opacity: 1; }
  to { opacity: 0; translate: 18px 0; }
}

@keyframes sparkleBurst {
  from { opacity: 1; transform: translate(-50%, -50%) translate(var(--spark-x, 0), var(--spark-y, 0)) scale(0.35); }
  to { opacity: 0; transform: translate(-50%, -50%) translate(calc(var(--spark-x, 0) * 2.2), calc(var(--spark-y, 0) * 2.2)) scale(1); }
}

@keyframes fishJump {
  0% { opacity: 0; translate: 0 16px; rotate: -18deg; }
  35% { opacity: 0.8; translate: 0 -18px; rotate: 10deg; }
  70% { opacity: 0.65; translate: 0 -8px; rotate: 24deg; }
  100% { opacity: 0; translate: 0 12px; rotate: 34deg; }
}

@keyframes lilyDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50% { transform: translate3d(18px, -10px, 0) rotate(7deg); }
}

@keyframes modalRise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes waterDrift {
  from { transform: translateX(-6%); }
  to { transform: translateX(6%); }
}

@keyframes firefly {
  0%, 100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0) scale(0.75);
  }
  35% {
    opacity: 0.9;
    transform: translate3d(14px, -22px, 0) scale(1);
  }
  70% {
    opacity: 0.45;
    transform: translate3d(-10px, -40px, 0) scale(0.85);
  }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.38; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes scrollCue {
  0% { transform: translateY(-20px); opacity: 0; }
  30%, 70% { opacity: 1; }
  100% { transform: translateY(46px); opacity: 0; }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header nav {
    max-width: calc(100vw - 78px);
    justify-content: flex-end;
    gap: 10px 14px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 18px;
  }

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

  .hero-content {
    padding-top: 118px;
    padding-bottom: 166px;
  }

  .eyebrow {
    max-width: 290px;
    line-height: 1.55;
  }

  .subtitle {
    max-width: 330px;
  }

  .lake {
    height: 45vh;
  }

  .event-lily-pads {
    display: none;
  }

  .calendar-access {
    right: 16px;
    bottom: 86px;
    left: 16px;
    width: auto;
  }

  .swan-track {
    top: 0;
    width: 86vw;
  }

  .scroll-indicator {
    bottom: 18px;
    font-size: 0.68rem;
  }

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

  .sticky-heading {
    position: static;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pillar-list article {
    padding: 22px;
  }

  .sisters-gallery {
    grid-template-columns: 1fr;
  }

  .sister-modal__panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .sister-modal__image {
    max-height: 48svh;
    min-height: 0;
  }

  .event-modal__details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 420px) {
  .site-header nav {
    gap: 8px 10px;
  }

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

  .button {
    width: min(100%, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .swan-wrap {
    left: 50%;
    transform: translateX(-50%);
  }

  .sparkles span {
    opacity: 0.55;
  }

  .lake-effects,
  .ambient-lilies,
  .event-lily-pads {
    display: none;
  }

  .swan-shell {
    animation: none;
  }
}
