
main>section {
	position: relative;
}

h2 {
	text-wrap: balance;
}

@import url("https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Englebert&family=Outfit:wght@100..900&display=swap");

:root {
	--ink: #081a49;
	--ink2: #102b68;
	--heading: 'Englebert', cursive;
	--text-2: #5f7294;
	--yellow-text: #c77800;
	--cream: #fffaf0;
	--paper: #fffdf8;
	--line: #dce4f0;
	--orange: #ff9d18;
	--yellow: #ffc329;
	--blue: #1299ef;
	--cyan: #18b9df;
	--green: #78c900;
	--pink: #f44786;
	--purple: #9250dc;
	--shadow: 0 22px 60px rgba(8, 26, 73, 0.1);
	--radius: 30px;
	--max: 1240px;
	--header-height: 76px;
	--header-height-mobile: 64px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Outfit", sans-serif;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
}

main {
	padding-top: var(--header-height);
}

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

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

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

button {
	border: 0;
	background: none;
	padding: 0;
}

.shell {
	width: min(calc(100% - 48px), var(--max));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	background: rgba(255, 253, 248, 0.82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(220, 228, 240, 0.9);
	box-shadow: 0 8px 24px rgba(8, 26, 73, 0.04);
}

.nav-wrap {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: var(--header-height);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.brand img {
	padding: 5px;
	height: 84px;
	width: auto;
}

.nav {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
}

.nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink2);
	position: relative;
	padding: 24px 0;
	white-space: nowrap;
}

.nav a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 18px;
	height: 3px;
	background: var(--orange);
	border-radius: 10px;
	transition: 0.25s;
}

.nav a:hover:after {
	right: 0;
}

.nav a[aria-current="page"] {
	color: var(--ink);
}

.nav a[aria-current="page"]:after {
	right: 0;
	background: linear-gradient(90deg, #ffd566 0%, #ffb61d 55%, #f28b00 100%);
	box-shadow: 0 4px 10px rgba(255, 157, 24, .24);
}

.nav-toggle {
	display: none;
	margin-left: auto;
	width: 52px;
	height: 52px;
	padding: 0 14px;
	border: 1px solid rgba(8, 26, 73, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 24px rgba(8, 26, 73, 0.08);
	cursor: pointer;
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.nav-toggle:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(8, 26, 73, 0.12);
}

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

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header[data-menu-open="true"] .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
	overflow: hidden;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(8, 26, 73, 0.13);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-yellow {
  background: linear-gradient(180deg, #ffd24e 0%, #ffbc1f 100%);
  color: var(--ink);
}
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-outline {
  background: transparent;
  border-color: #b9c6da;
  color: var(--ink);
}
.nav-cta {
  background: linear-gradient(180deg, #ffd24e 0%, #ffbc1f 100%);
  color: var(--ink);
	min-height: 42px;
	padding: 0 18px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 0;
  background: radial-gradient(
      circle at 86% 30%,
      rgba(18, 153, 239, 0.1),
      transparent 28%
    ),
    radial-gradient(circle at 6% 20%, rgba(255, 157, 24, 0.1), transparent 22%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 680px;
  gap: 40px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 900;
  color: #56709e;
}
.eyebrow span {
  color: var(--orange);
  font-size: 17px;
}
.speech {
  display: inline-flex;
  margin: 24px 0 12px;
  background: var(--yellow);
  padding: 10px 18px;
  border-radius: 12px 20px 20px 20px;
	font-family: "Outfit", sans-serif;
  font-weight: 900;
  box-shadow: 0 8px 0 #e79b00;
  transform: rotate(-1deg);
}
.speech b {
  margin-left: 9px;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 68px);
  line-height: 0.92;
  margin: 8px 0 26px;
  font-weight: 900;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
/* .hero h1 em:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 0;
  bottom: -8px;
  height: 7px;
  background: var(--blue);
  border-radius: 100%;
  transform: rotate(-2deg);
} */
.hero-lead {
  font-size: 17px;
  max-width: 610px;
  color: #43557a;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(8, 26, 73, 0.05);
}
.hero-stats strong {
	font-family: "Outfit", sans-serif;
  font-size: 23px;
}
.hero-stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #687a9d;
  font-weight: 700;
}
.hero blockquote {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
	font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 800;
}
.hero blockquote small {
  display: block;
	font-family: "Englebert", cursive;
  /* font-size: 11px; */
  color: #72819e;
  margin-top: 4px;
}
.hero-mascot {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.hero-mascot:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: #e8f5ff;
  border: 1px solid #cce8fb;
}
.hero-mascot:after {
  content: "";
  position: absolute;
  inset: 10% 2% 5%;
  border: 1px dashed rgba(8, 26, 73, 0.15);
  border-radius: 48% 52% 50% 50%/52% 45% 55% 48%;
  transform: rotate(-8deg);
}
.hero-mascot img {
  position: relative;
  z-index: 2;
  width: min(92%, 500px);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(8, 26, 73, 0.15));
}
.talk-card {
  position: absolute;
  right: 2%;
  top: 14%;
  z-index: 4;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 18px 20px;
  border-radius: 22px 22px 22px 5px;
  max-width: 220px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.talk-card:after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -13px;
  border: 7px solid transparent;
  border-top-color: var(--ink);
}
.talk-card span {
  display: block;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.talk-card strong {
	font-family: "Outfit", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  display: block;
  margin-top: 5px;
}
.talk-card i {
  color: var(--pink);
  font-size: 22px;
}
.doodle {
  position: absolute;
  z-index: 3;
  font-size: 34px;
}
.doodle-a {
  left: 6%;
  top: 16%;
  color: var(--orange);
  transform: rotate(-18deg);
}
.doodle-b {
  right: 5%;
  bottom: 18%;
  color: var(--green);
  font-size: 55px;
}
.doodle-c {
  left: 10%;
  bottom: 17%;
  color: var(--blue);
}
.wave {
  height: 80px;
  position: relative;
  margin-top: -20px;
  z-index: 5;
}
.wave-navy {
  background: var(--ink);
  clip-path: polygon(
    0 45%,
    8% 68%,
    18% 40%,
    28% 62%,
    40% 35%,
    52% 64%,
    64% 40%,
    75% 62%,
    88% 35%,
    100% 55%,
    100% 100%,
    0 100%
  );
}
.trust {
  background: var(--ink);
  color: #fff;
}
.trust .section-kicker {
  color: #9fb2d5;
}
.section-intro {
  max-width: 760px;
  color: #687a9d;
}
.trust .section-intro {
  color: #d6e0f2;
  font-size: 17px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.pill-row span {
  border: 1px solid rgb(52 48 48 / 14%);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
}

.section-pad {
	padding: 96px 0;
}

.page-cover.section-pad {
	padding-top: 88px;
	padding-bottom: 84px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head h1,
.section-head h2,
.section-pad h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  margin: 8px 0 0;
}
.section-head h1 span,
.section-head h2 span,
.section-pad h2 span {
  background: linear-gradient(180deg, #ffcf5e 0%, var(--orange) 58%, #e88900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head > p {
  max-width: 360px;
  color: #71809c;
}
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.zone-card {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(8, 26, 73, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(8, 26, 73, 0.06);
  transition: 0.25s;
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.zone-card:before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: var(--accent);
  opacity: 0.14;
}
.zone-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 29px;
  margin-bottom: 38px;
}
.zone-card small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7585a0;
  font-weight: 800;
}
.zone-card h3 {
  font-size: 26px;
  margin: 7px 0;
}
.zone-card p {
  font-size: 13px;
  color: #667795;
  margin: 0;
}
.orange {
  --accent: var(--orange);
}
.blue {
  --accent: var(--blue);
}
.green {
  --accent: var(--green);
}
.purple {
  --accent: var(--purple);
}
.pink {
  --accent: var(--pink);
}
.cyan {
  --accent: var(--cyan);
}
.yellow {
  --accent: var(--yellow);
}
.navy {
  --accent: var(--ink);
}
.quotes {
  background: #fff;
}
.quotes h2 {
  margin: 8px 0 36px;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.quote-grid blockquote {
  margin: 0;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: var(--paper);
	font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(8, 26, 73, 0.04);
}
.quote-grid blockquote:nth-child(2n) {
  background: #f4fbff;
}
.quote-grid small {
  display: block;
	font-family: "Englebert", cursive;
  color: #70809c;
  margin-top: 22px;
  font-size: 14px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.cafe {
  background: #f5f1e6;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-list > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
.feature-list b {
	font-family: "Outfit", sans-serif;
  font-size: 17px;
}
.feature-list p {
  font-size: 16px;
  color: #6c7b98;
  margin: 7px 0 0;
}
.dark-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-copy {
	position: relative;
	max-width: 660px;
	padding: 28px 30px 30px;
	/* border: 1px solid rgba(16, 43, 104, .08);
	border-radius: 34px;
	background: linear-gradient(150deg, rgba(255, 255, 255, .96) 0%, rgba(255, 247, 228, .9) 48%, rgba(238, 246, 255, .86) 100%);
	box-shadow: 0 28px 60px rgba(8, 26, 73, .08);
	backdrop-filter: blur(10px); */
	overflow: hidden;
}
.hero-copy::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background:
		radial-gradient(circle at top left, rgba(255, 195, 41, .20), transparent 34%),
		radial-gradient(circle at bottom right, rgba(18, 153, 239, .16), transparent 36%); */
	pointer-events: none;
	border-radius: inherit;
}
.hero-copy>* {
	position: relative;
	z-index: 1;
}
.hero .eyebrow {
	margin-bottom: 16px;
}
.hero h1 {
	max-width: 9ch;
	margin: 0 0 18px;
	letter-spacing: -.04em;
	text-wrap: balance;
}
.hero-lead {
	max-width: 52ch;
	margin: 0;
	padding: 16px 0px;
	/* border-left: 4px solid var(--orange); */
	border-radius: 18px;
	/* background: rgba(255, 255, 255, .68); */
	/* box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85); */
	font-size: 16px;
	line-height: 1.72;
	color: #31476f;
}
.actions {
	margin: 24px 0 0;
	align-items: center;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 26px;
}
.hero-stats div {
	min-height: 88px;
	justify-content: center;
	padding: 14px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .88);
	border-color: rgba(16, 43, 104, .10);
	box-shadow: 0 14px 30px rgba(8, 26, 73, .06);
}

.hero-stats div:nth-child(1) {
	background: linear-gradient(180deg, #eef7ff, #dcebff 100%);
	border-color: rgba(18, 153, 239, .18);
}

.hero-stats div:nth-child(1) strong {
	color: #1f68b8;
}

.hero-stats div:nth-child(2) {
	background: linear-gradient(180deg, #fff8e2, #ffe6a8 100%);
	border-color: rgba(255, 195, 41, .24);
}

.hero-stats div:nth-child(2) strong {
	color: #9d6900;
}

.hero-stats div:nth-child(3) {
	background: linear-gradient(180deg, #fff0e7, #ffd6bc 100%);
	border-color: rgba(255, 157, 24, .22);
}

.hero-stats div:nth-child(3) strong {
	color: #c06800;
}

.hero-stats div:nth-child(4) {
	background: linear-gradient(180deg, #eefbea, #d6f3c8 100%);
	border-color: rgba(120, 201, 0, .2);
}

.hero-stats div:nth-child(4) strong {
	color: #4d8d00;
}

.hero-stats div:nth-child(5) {
	background: linear-gradient(180deg, #eefcff, #d7f5fb 100%);
	border-color: rgba(24, 185, 223, .18);
}

.hero-stats div:nth-child(5) strong {
	color: #127ea8;
}

.hero-stats div:last-child,
.hero-stats div:nth-last-child(2) {
	grid-column: span 1;
}
.hero blockquote {
	margin: 22px 0 0;
	padding: 18px 22px;
	border: 1px solid rgba(255, 157, 24, .18);
	border-left: 0;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 246, 214, .84));
	box-shadow: 0 16px 30px rgba(8, 26, 73, .06);
	font-size: 17px;
	line-height: 1.55;
	position: relative;
	overflow: hidden;
}
.hero blockquote::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 5px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--orange), var(--yellow));
}
.hero blockquote small {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #5f749d;
}

#home.hero {
	padding-top: 72px;
	padding-bottom: 40px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 249, 239, .98) 0%, rgba(255, 249, 239, .96) 19%, rgba(255, 249, 239, .88) 33%, rgba(255, 249, 239, .48) 48%, rgba(255, 249, 239, 0) 62%),
		radial-gradient(circle at 18% 18%, rgba(255, 208, 92, .18), transparent 20%),
		url('assets/background.png') center center / cover no-repeat;
}

#home .hero-grid {
	position: relative;
	grid-template-areas:
		'copy'
		'stats';
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 1fr auto;
	gap: 18px;
	align-items: stretch;
	min-height: 700px;
}

#home .hero-copy {
	grid-area: copy;
	max-width: 430px;
	padding: 28px 0 120px;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	backdrop-filter: none;
	overflow: visible;
	position: relative;
	z-index: 4;
}

#home .hero-copy::before {
	content: '';
	position: absolute;
	width: 170px;
	height: 170px;
	left: -58px;
	top: -18px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 214, 105, .18), rgba(255, 214, 105, 0) 70%);
	pointer-events: none;
}

#home .hero .eyebrow {
	margin-bottom: 16px;
	max-width: fit-content;
	background: rgba(255, 255, 255, .9);
}

#home .hero h1 {
	max-width: none;
	margin: 0 0 18px;
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: clamp(58px, 6.8vw, 98px);
	line-height: .84;
	letter-spacing: -.05em;
	text-transform: uppercase;
	text-wrap: balance;
	filter: drop-shadow(0 8px 18px rgba(8, 26, 73, .08));
}

#home .hero h1 .hero-line,
#home .hero h1 em {
	display: block;
	font-style: normal;
	width: fit-content;
	max-width: 100%;
	padding-right: .04em;
	border-radius: .18em;
}

#home .hero h1 .hero-line-top {
	color: #173b84;
	transform: rotate(-2deg);
}

#home .hero h1 em {
	margin: 6px 0;
	background: linear-gradient(180deg, #ffd86b 0%, #ffb52a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transform: rotate(-1deg);
	text-shadow: none;
}

#home .hero h1 .hero-line-bottom {
	color: #1f8dff;
	transform: rotate(-1deg);
}

#home .hero-lead {
	max-width: 26ch;
	padding: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #35507e;
	text-shadow: 0 2px 12px rgba(255, 255, 255, .5);
}

#home .home-waitlist-note {
	position: relative;
	max-width: 31rem;
	margin-top: 20px;
	padding: 20px 20px 22px;
	border: 1px solid rgba(16, 43, 104, .1);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(255, 206, 86, .28), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 247, 228, .96) 42%, rgba(223, 243, 255, .94) 100%);
	box-shadow: 0 22px 42px rgba(8, 26, 73, .09);
	overflow: hidden;
}

#home .home-waitlist-note::after {
	content: '';
	position: absolute;
	inset: auto -26px -30px auto;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(24, 185, 223, .2), rgba(24, 185, 223, 0) 68%);
	pointer-events: none;
}

#home .home-waitlist-note-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #56709e;
}

#home .home-waitlist-note-kicker::before {
	content: '';
	width: 12px;
	height: 12px;
	background: linear-gradient(150deg, var(--blue) 0%, var(--cyan) 100%);
	clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
	filter: drop-shadow(0 2px 6px rgba(8, 26, 73, .22));
	flex: 0 0 auto;
}

#home .home-waitlist-note-title {
	margin: 12px 0 10px;
	font-family: 'Englebert', cursive;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
	text-transform: none;
	color: #173b84;
	text-wrap: balance;
}

#home .home-waitlist-note-title span {
	color: var(--orange);
	font-family: 'Englebert', cursive;
}

#home .home-waitlist-note p {
	margin: 10px 0 16px;
	font-size: 16px;
	line-height: 1.65;
	color: #48607f;
}

#home .home-waitlist-note .btn {
	min-height: 48px;
	padding: 0 22px;
	box-shadow: 0 14px 24px rgba(255, 181, 34, .18);
}

#home .actions {
	margin-top: 28px;
	gap: 16px;
}

#home .actions .btn-primary {
	min-height: 56px;
	padding: 0 26px;
	box-shadow: 0 18px 34px rgba(16, 43, 104, .2);
}

#home .actions .btn-outline {
	min-height: 56px;
	padding: 0 24px;
	background: rgba(255, 255, 255, .94);
	border-color: rgba(16, 43, 104, .12);
	box-shadow: 0 12px 26px rgba(8, 26, 73, .05);
}

#home .hero-mobile-image {
	display: none;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

#home .hero-scene {
	display: none;
}

#home .hero-scene::before {
	content: none;
}

#home .hero-scene::after {
	content: none;
}

#home .hero-scene-slide {
	display: none;
}

#home .hero-scene-slide img,
#home .hero-scene-structure img,
#home .hero-scene-mascot img,
#home .hero-attraction-card img {
	display: block;
	width: 100%;
	height: auto;
}

#home .hero-scene-structure {
	display: none;
}

#home .hero-scene-structure-main {
	display: none;
}

#home .hero-scene-structure-led {
	display: none;
}

#home .hero-scene-structure-star {
	display: none;
}

#home .hero-scene-structure-toddler {
	display: none;
}

#home .hero-scene-sign {
	display: none;
}

#home .hero-safety-badges {
	position: absolute;
	top: 22px;
	right: 0;
	display: flex;
	gap: 12px;
	z-index: 4;
}

#home .hero-safety-badge {
	width: 138px;
	min-height: 152px;
	padding: 16px 14px 14px;
	border-radius: 26px;
	box-shadow: 0 16px 30px rgba(8, 26, 73, .14);
	color: #fff;
	display: grid;
	align-content: start;
	gap: 10px;
	text-align: center;
	border: 3px solid rgba(255, 255, 255, .28);
	backdrop-filter: blur(6px);
}

#home .hero-safety-badge strong {
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: 24px;
	line-height: .95;
	text-transform: uppercase;
	letter-spacing: -.03em;
}

#home .hero-safety-badge span {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	text-transform: uppercase;
}

#home .hero-safety-badge-orange {
	background: linear-gradient(180deg, #ff8a4f, #f25d28);
}

#home .hero-safety-badge-blue {
	background: linear-gradient(180deg, #4478ff, #244ecb);
}

#home .hero-safety-badge-green {
	background: linear-gradient(180deg, #9bcd4d, #6ea52d);
}

#home .hero-scene-mascot {
	display: none;
}

#home .hero-attractions {
	grid-area: stats;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 0;
	position: relative;
	z-index: 5;
	align-self: end;
}

#home .hero-attraction-card {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 120px;
	padding: 20px 22px;
	border-radius: 30px;
	border: 1px solid rgba(16, 43, 104, .08);
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 20px 36px rgba(8, 26, 73, .1);
}

#home .hero-attraction-card img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(8, 26, 73, .14));
}

#home .hero-attraction-card strong {
	display: block;
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: 36px;
	line-height: .92;
	letter-spacing: -.05em;
	color: #17315f;
}

#home .hero-attraction-card span {
	display: block;
	margin-top: 4px;
	font-size: 18px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #5f749d;
}

#home .hero-attraction-orange {
	background: linear-gradient(180deg, #fff6e8, #ffffff 100%);
}

#home .hero-attraction-blue {
	background: linear-gradient(180deg, #edf7ff, #ffffff 100%);
}

#home .hero-attraction-green {
	background: linear-gradient(180deg, #effbe9, #ffffff 100%);
}

#home .hero-attraction-cyan {
	background: linear-gradient(180deg, #eefbff, #ffffff 100%);
}

@media(min-width:1800px) {
	#home.hero {
		background:
			linear-gradient(90deg, rgba(255, 249, 239, .76) 0%, rgba(255, 249, 239, .58) 14%, rgba(255, 249, 239, .24) 28%, rgba(255, 249, 239, 0) 42%),
			radial-gradient(circle at 16% 18%, rgba(255, 208, 92, .14), transparent 18%),
			url('assets/background.png') center top / 100% auto no-repeat;
	}

	#home .hero-grid {
		min-height: 960px;
	}
}

@media(min-width:2200px) {
	:root {
		--max: 1600px;
	}
	.page-cover.section-pad {
    padding-top: 220px;
	}

	#home.hero {
		background:
			linear-gradient(90deg, rgba(255, 249, 239, .76) 0%, rgba(255, 249, 239, .58) 16%, rgba(255, 249, 239, .24) 30%, rgba(255, 249, 239, 0) 46%),
			radial-gradient(circle at 16% 18%, rgba(255, 208, 92, .14), transparent 18%),
			url('assets/background.png') 50% top / 100% auto no-repeat;
	}

	#home .hero-grid {
		min-height: 960px;
		gap: 64px;
	}

	#home .hero-copy {
		max-width: 560px;
	}

	#home .hero h1 {
		max-width: 8ch;
	}

	.page-cover-grid {
		gap: 56px;
	}

	.page-cover-welcome,
	.page-cover-help,
	.page-cover-deals,
	.page-cover-celebrate,
	.gift.page-cover {
		padding-top: 300px;
		padding-bottom: 56px;
	}

	.page-cover-welcome .page-cover-grid,
	.page-cover-help .page-cover-grid,
	.page-cover-deals .page-cover-grid,
	.page-cover-celebrate .page-cover-grid,
	.gift.page-cover .page-cover-grid {
		min-height: 500px;
	}

	.page-cover-welcome .page-cover-copy,
	.page-cover-help .page-cover-copy,
	.page-cover-deals .page-cover-copy,
	.page-cover-celebrate .page-cover-copy,
	.gift.page-cover .page-cover-copy,
	.coming-soon-cover .page-cover-copy {
		max-width: 720px;
	}

	.page-cover-welcome .section-intro,
	.page-cover-help .section-intro,
	.page-cover-deals .section-intro,
	.page-cover-celebrate .section-intro,
	.gift.page-cover .section-intro,
	.coming-soon-cover .section-intro {
		max-width: 40rem;
	}

	.page-cover-welcome {
		background:
			linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 28%, rgba(255, 253, 248, .56) 48%, rgba(255, 253, 248, .12) 66%, rgba(255, 253, 248, 0) 78%),
			url('assets/about-bg.png') 62% center / cover no-repeat;
	}

	.page-cover-celebrate {
		background:
			linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 28%, rgba(255, 253, 248, .56) 48%, rgba(255, 253, 248, .12) 66%, rgba(255, 253, 248, 0) 78%),
			url('assets/parties-bg.png') 62% center / cover no-repeat;
	}

	.page-cover-help {
		background:
			linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 28%, rgba(255, 253, 248, .56) 48%, rgba(255, 253, 248, .12) 66%, rgba(255, 253, 248, 0) 78%),
			url('assets/pricing-bg.png') 62% center / cover no-repeat;
	}

	.page-cover-deals {
		background:
			linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 28%, rgba(255, 253, 248, .56) 48%, rgba(255, 253, 248, .12) 66%, rgba(255, 253, 248, 0) 78%),
			url('assets/deals-bg.png') 62% center / cover no-repeat;
	}

	.gift.page-cover {
		background:
			linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 28%, rgba(255, 253, 248, .56) 48%, rgba(255, 253, 248, .12) 66%, rgba(255, 253, 248, 0) 78%),
			url('assets/gift-card-bg.png') 62% center / cover no-repeat;
	}
}

@media(max-width:1100px) {
	.hero-copy {
		max-width: none;
		padding: 24px;
	}
	.hero-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hero-stats div {
		min-width: 0;
	}
	.dropoff-journey-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	#home .hero-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		min-height: 620px;
	}
	#home .hero-copy {
		max-width: none;
		padding: 16px 0 96px;
	}
	#home .hero h1 {
		font-size: clamp(50px, 6vw, 72px);
	}
	#home .hero-lead {
		font-size: 16px;
	}
	#home .hero-safety-badges {
		gap: 10px;
		right: 0;
		top: 24px;
	}
	#home .hero-safety-badge {
		width: 116px;
		min-height: 142px;
		padding: 14px 12px;
	}
	#home .hero-safety-badge strong {
		font-size: 20px;
	}
	#home .hero-safety-badge span {
		font-size: 12px;
	}
	#home .hero-attractions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0;
	}
	#home .hero-attraction-card {
		grid-template-columns: 62px minmax(0, 1fr);
		padding: 18px 20px;
	}
	#home .hero-attraction-card img {
		width: 62px;
		height: 62px;
	}
	#home .hero-attraction-card strong {
		font-size: 30px;
	}
}
@media(max-width:760px) {
	.hero-copy {
		padding: 22px 18px;
		border-radius: 26px;
	}
	.hero-lead,
	.hero blockquote {
		padding-left: 16px;
		padding-right: 16px;
	}
	.hero-stats {
		grid-template-columns: 1fr 1fr;
	}
	.hero h1 {
		max-width: none;
	}
	.hero blockquote {
		font-size: 16px;
	}
	.dropoff-journey-grid {
		grid-template-columns: 1fr;
	}
	.dropoff-journey-card {
		padding: 24px;
		border-radius: 24px;
	}
	.dropoff-journey-card h3 {
		font-size: 26px;
	}
	.dropoff-journey-card p {
		font-size: 15px;
	}
	#home.hero {
		padding-top: 36px;
		padding-bottom: 42px;
		background: #fff9ef;
		overflow: hidden;
	}
	#home .hero-grid {
		grid-template-areas:
			'copy'
			'stats';
		grid-template-columns: 1fr;
		display: block;
		gap: 18px;
		min-height: 0;
	}
	#home .hero-copy {
		max-width: none;
		/* max-width: 300px; */
		padding: 14px 0 20px;
		border-radius: 0;
		background: none;
	}
	#home .hero-copy > * {
		animation: none;
	}
	#home .hero-copy::after {
		content: none;
	}
	#home .hero h1 {
		font-size: clamp(42px, 13vw, 58px);
		max-width: none;
		display: inline-block;
		padding: 10px 14px 14px;
		border-radius: 24px;
		background: rgba(255, 255, 255, .9);
		box-shadow: 0 18px 34px rgba(8, 26, 73, .08);
		backdrop-filter: none;
		filter: none;
		text-shadow: none;
	}
	#home .hero-lead {
		max-width: none;
		max-width: 24ch;
		display: block;
		margin-top: 16px;
		padding: 14px 16px;
		border-radius: 22px;
		background: rgba(255, 255, 255, .86);
		box-shadow: 0 16px 28px rgba(8, 26, 73, .06);
		backdrop-filter: none;
		font-size: 15px;
		line-height: 1.55;
		text-shadow: none;
	}
	#home .home-waitlist-note {
		max-width: none;
		margin-top: 14px;
		padding: 16px;
		border-radius: 22px;
		box-shadow: 0 16px 28px rgba(8, 26, 73, .06);
	}
	#home .home-waitlist-note-title {
		font-size: 18px;
		line-height: 1.3;
		margin-top: 8px;
	}
	#home .home-waitlist-note p {
		font-size: 15px;
		line-height: 1.55;
	}
	#home .home-waitlist-note .btn {
		min-height: 46px;
	}
	#home .actions {
		gap: 12px;
	}
	#home .actions .btn-primary,
	#home .actions .btn-outline {
		min-height: 52px;
		padding: 0 20px;
	}
	#home .hero-safety-badges {
		display: none;
	}
	#home .hero-scene {
		display: none;
	}
	#home .hero-mobile-image {
		display: block;
	}
	#home .hero-attractions {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 0;
	}
	#home .hero-attraction-card {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: 0;
		padding: 14px 16px;
	}
	#home .hero-attraction-card img {
		width: 54px;
		height: 54px;
	}
	#home .hero-attraction-card strong {
		font-size: 28px;
	}
}
.dark-section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(14, 59, 131, 0.2);
  right: -170px;
  top: -200px;
}
.dark-section .section-kicker.light {
  color: #9fb2d5;
}
.dark-section h2 span {
  color: var(--yellow);
}
.dark-section p {
  color: #c9d5ea;
}
.align-center {
  align-items: center;
}
.mascot-card {
  position: relative;
  background: #102d69;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  min-height: 410px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}
.mascot-card:before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: #163b80;
  top: 30px;
}
.mascot-card img {
  position: relative;
  z-index: 2;
  width: 76%;
  max-height: 410px;
  object-fit: contain;
  align-self: end;
}
.mascot-card > div {
  position: absolute;
  z-index: 4;
  left: 22px;
  top: 22px;
  background: #fff;
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 18px;
  max-width: 220px;
}
.mascot-card span {
  display: block;
  color: var(--pink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.mascot-card strong {
	font-family: "Outfit", sans-serif;
  font-size: 16px;
  display: block;
  line-height: 1.15;
}
.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.mini-features > div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
}
.mini-features b {
	font-family: "Outfit", sans-serif;
}
.mini-features p {
  font-size: 12px;
  margin: 7px 0 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.steps > div {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}
.steps > div:last-child {
  border-right: 0;
}
.steps b {
	font-family: "Outfit", sans-serif;
  font-size: 42px;
  color: var(--orange);
}
.steps h3 {
  font-size: 22px;
  margin: 8px 0;
}
.steps p {
  font-size: 16px;
  color: #6d7d9a;
}

.dropoff-journey-section {
	background:
		radial-gradient(circle at 8% 18%, rgba(255, 213, 104, 0.16), transparent 18%),
		radial-gradient(circle at 92% 24%, rgba(24, 185, 223, 0.12), transparent 20%),
		linear-gradient(180deg, #fffdf7, #f7fbff 82%);
}

.dropoff-journey-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.dropoff-journey-card {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: start;
	gap: 14px;
	min-height: 100%;
	padding: 28px;
	border-radius: 30px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f8fbff 100%);
	box-shadow: 0 18px 40px rgba(8, 26, 73, 0.06);
}

.dropoff-journey-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.dropoff-journey-card::after {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	right: -48px;
	top: -48px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 153, 239, 0.12), rgba(18, 153, 239, 0));
	pointer-events: none;
}

.dropoff-journey-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.dropoff-journey-card-top small {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid #dbe6f5;
	background: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #607592;
}

.dropoff-journey-card-top b {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	line-height: 1;
	color: #17315f;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 20px rgba(23, 49, 95, 0.1);
}

.dropoff-journey-card h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1.02;
	color: #223f6f;
	position: relative;
	z-index: 1;
}

.dropoff-journey-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.68;
	color: #607592;
	position: relative;
	z-index: 1;
}

.dropoff-journey-before::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.dropoff-journey-before::after {
	background: radial-gradient(circle, rgba(137, 184, 255, 0.16), rgba(137, 184, 255, 0));
}

.dropoff-journey-before .dropoff-journey-card-top b,
.dropoff-journey-before h3 {
	color: #2a63a7;
}

.dropoff-journey-before .dropoff-journey-card-top b {
	background: linear-gradient(180deg, #eaf4ff, #bfdcff 62%, #89b8ff 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(137, 184, 255, 0.24);
}

.dropoff-journey-pin::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.dropoff-journey-pin::after {
	background: radial-gradient(circle, rgba(255, 213, 104, 0.18), rgba(255, 213, 104, 0));
}

.dropoff-journey-pin .dropoff-journey-card-top b,
.dropoff-journey-pin h3 {
	color: #a56b00;
}

.dropoff-journey-pin .dropoff-journey-card-top b {
	background: linear-gradient(180deg, #fff7d6, #ffd56b 62%, #f3bc38 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(243, 188, 56, 0.22);
}

.dropoff-journey-play::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.dropoff-journey-play::after {
	background: radial-gradient(circle, rgba(147, 227, 158, 0.18), rgba(147, 227, 158, 0));
}

.dropoff-journey-play .dropoff-journey-card-top b,
.dropoff-journey-play h3 {
	color: #2a7b45;
}

.dropoff-journey-play .dropoff-journey-card-top b {
	background: linear-gradient(180deg, #eefcf0, #bdeec5 62%, #93e39e 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(147, 227, 158, 0.22);
}

.dropoff-journey-pickup::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.dropoff-journey-pickup::after {
	background: radial-gradient(circle, rgba(255, 182, 210, 0.2), rgba(255, 182, 210, 0));
}

.dropoff-journey-pickup .dropoff-journey-card-top b,
.dropoff-journey-pickup h3 {
	color: #b44d79;
}

.dropoff-journey-pickup .dropoff-journey-card-top b {
	background: linear-gradient(180deg, #fff0f7, #ffcde0 62%, #ffb6d2 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 24px rgba(255, 182, 210, 0.24);
}

@media(max-width:1100px) {
	.dropoff-journey-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media(max-width:760px) {
	.dropoff-journey-grid {
		grid-template-columns: 1fr;
	}

	.dropoff-journey-card {
		padding: 24px;
		border-radius: 24px;
	}

	.dropoff-journey-card h3 {
		font-size: 26px;
	}

	.dropoff-journey-card p {
		font-size: 15px;
	}
}
.parties {
  background: #f5f1e6;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(8, 26, 73, 0.05);
  position: relative;
}

.price-card .tag {
  display: inline-flex;
  padding: 7px 11px;
  background: #fff2d8;
  color: #a96000;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-card h3 {
  font-size: 28px;
  margin: 20px 0 5px;
}
.price-card > strong {
	font-family: "Outfit", sans-serif;
  font-size: 38px;
}
.price-card > small {
  display: block;
  color: #7a88a0;
  font-size: 11px;
}
.price-card ul {
  padding-left: 18px;
  color: #5f6f8d;
  font-size: 16px;
  line-height: 2;
}
.price-card li::marker {
  color: var(--orange);
}

.dropoff-pricing-section .section-head {
	margin-bottom: 22px;
}

.dropoff-pricing-intro {
	display: grid;
	gap: 16px;
	margin-bottom: 26px;
	padding: 22px 24px;
	border: 1px solid #dfe8f6;
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
}

.dropoff-pricing-intro p {
	margin: 0;
	max-width: 760px;
	color: #536886;
	line-height: 1.65;
}

.dropoff-pricing-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dropoff-pricing-chip-row span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid #d9e5f4;
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #5b7398;
}

.dropoff-price-grid {
	margin-top: 0;
	align-items: stretch;
}

.dropoff-price-card {
	display: grid;
	gap: 14px;
	padding: 32px;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 18px 42px rgba(8, 26, 73, 0.06);
	overflow: hidden;
}

.dropoff-price-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.dropoff-price-standard::before {
	background: linear-gradient(90deg, #78b7ff, #d9edff);
}

.dropoff-price-siblings::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.dropoff-price-facts::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.dropoff-price-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dropoff-price-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	border: 1px solid #dbe6f5;
	background: #fff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #5f779d;
}

.dropoff-price-card h3 {
	margin: 0;
	color: #223f6f;
}

.dropoff-price-value {
	display: inline-flex;
	align-items: flex-end;
	gap: 6px;
	justify-self: start;
	width: fit-content;
	max-width: 100%;
}



.dropoff-price-card > small {
	margin: 0;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 800;
	color: #7386a4;
}

.dropoff-price-value strong {
	font-family: "Outfit", sans-serif;
	font-size: 48px;
	line-height: .95;
	color: #17315f;
}

.dropoff-price-value em {
	font-style: normal;
	font-size: 18px;
	font-weight: 800;
	color: #6a7f9d;
	padding-bottom: 6px;
}

.dropoff-price-note {
	margin: 0;
	color: #607592;
	line-height: 1.6;
}

.dropoff-price-card ul {
	margin: 0;
	padding-left: 18px;
	line-height: 1.9;
}

.dropoff-price-card ul li {
	padding-left: 3px;
}

.dropoff-price-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #e4edf8;
}

.dropoff-price-footer span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #6b80a1;
}

.dropoff-price-footer b {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	color: #29456f;
}

.dropoff-price-siblings {
	border-width: 2px;
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
}

.dropoff-price-siblings .dropoff-price-value strong,
.dropoff-price-siblings .dropoff-price-footer b {
	color: #a56b00;
}

.dropoff-price-facts .dropoff-price-value strong {
	font-size: 40px;
}

.dropoff-price-facts .dropoff-price-footer b {
	color: #2a7b45;
}

.dropoff-pricing-compare {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 22px;
}

.dropoff-pricing-compare > div {
	display: grid;
	gap: 8px;
	padding: 18px 20px;
	border-radius: 22px;
	border: 1px solid #dbe6f5;
	background: #fff;
	box-shadow: 0 10px 24px rgba(8, 26, 73, 0.04);
}

.dropoff-pricing-compare b {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	color: #29456f;
}

.dropoff-pricing-compare span {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #c07c00;
}

.party-pricing-section .section-head {
	margin-bottom: 22px;
}

.party-pricing-intro {
	margin-bottom: 26px;
}

.party-price-grid {
	margin-top: 0;
	align-items: stretch;
}

.party-price-card {
	min-height: 100%;
	gap: 16px;
	padding: 34px;
	border-radius: 32px;
}

.party-price-grid .price-card:nth-child(2) {
	transform: translateY(-14px);
}

.party-price-bash::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.party-price-supernova::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.party-price-buyout::before {
	background: linear-gradient(90deg, #ffb3d3, #ffe5f2);
}

.party-price-card .dropoff-price-card-top {
	align-items: flex-start;
}

.party-price-card .dropoff-price-eyebrow,
.party-price-card .tag {
	min-height: 28px;
}

.party-price-card .dropoff-price-note {
	min-height: 78px;
}

.party-price-card ul {
	display: grid;
	gap: 6px;
}

.party-price-card .dropoff-price-value strong {
	font-size: 44px;
}

.party-price-card .dropoff-price-value em {
	font-size: 20px;
	padding-bottom: 5px;
}

.party-price-bash .dropoff-price-value strong,
.party-price-bash .dropoff-price-footer b,
.party-price-bash h3 {
	color: #2a63a7;
}

.party-price-bash .dropoff-price-eyebrow,
.party-price-bash .dropoff-price-footer span,
.party-price-bash .dropoff-price-value em {
	color: #5877a2;
}

.party-price-supernova {
	border-width: 2px;
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
	box-shadow: 0 22px 46px rgba(166, 107, 0, 0.10);
}

.party-price-supernova .dropoff-price-value strong,
.party-price-supernova .dropoff-price-footer b,
.party-price-supernova h3 {
	color: #a56b00;
}

.party-price-supernova .dropoff-price-value em,
.party-price-supernova .dropoff-price-footer span,
.party-price-supernova > small {
	color: #8b6c1f;
}

.party-price-buyout .dropoff-price-value strong,
.party-price-buyout .dropoff-price-footer b,
.party-price-buyout h3 {
	color: #b14a79;
}

.party-price-buyout .dropoff-price-eyebrow,
.party-price-buyout .dropoff-price-footer span,
.party-price-buyout .dropoff-price-value em {
	color: #8d5f78;
}

.party-price-buyout {
	background: linear-gradient(180deg, #fffafd, #fff1f7 100%);
}

.party-addon-grid {
	margin-top: 28px;
}

.party-addon-card {
	min-height: 100%;
	gap: 14px;
	padding: 32px;
	border-radius: 30px;
}

.party-addon-card h3 {
	margin: 0;
}

.party-addon-card .dropoff-price-value strong {
	font-size: 44px;
}

.party-addon-card .dropoff-price-note {
	min-height: 76px;
}

.party-addon-painting::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.party-addon-painting .dropoff-price-value strong,
.party-addon-painting .dropoff-price-footer b,
.party-addon-painting h3 {
	color: #b44d79;
}

.party-addon-balloons::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.party-addon-balloons .dropoff-price-value strong,
.party-addon-balloons .dropoff-price-footer b,
.party-addon-balloons h3 {
	color: #2b69b1;
}

.party-addon-character::before {
	background: linear-gradient(90deg, #c9a5ff, #efe4ff);
}

.party-addon-character .dropoff-price-value strong,
.party-addon-character .dropoff-price-footer b,
.party-addon-character h3 {
	color: #7252b7;
}

.party-addon-photo::before {
	background: linear-gradient(90deg, #9fdac7, #e4f7ee);
}

.party-addon-photo .dropoff-price-value strong,
.party-addon-photo .dropoff-price-footer b,
.party-addon-photo h3 {
	color: #2d8669;
}

.party-addon-cake::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.party-addon-cake .dropoff-price-value strong,
.party-addon-cake .dropoff-price-footer b,
.party-addon-cake h3 {
	color: #a56b00;
}

.party-addon-dj::before {
	background: linear-gradient(90deg, #ffb89a, #ffe7dd);
}

.party-addon-dj .dropoff-price-value strong,
.party-addon-dj .dropoff-price-footer b,
.party-addon-dj h3 {
	color: #b56134;
}

.pricing-page-intro {
	margin-bottom: 26px;
}

.pricing-page-grid {
	margin-top: 0;
	align-items: stretch;
}

.nova-pass-referral-grid {
	grid-template-columns: 1fr;
}

.nova-pass-referral-card .dropoff-price-value {
	background: #fff;
	padding: 20px;
	border: 2px dashed #ff9d18;
	border-radius: 20px;
}

.pricing-page-card {
	min-height: 100%;
	gap: 16px;
	padding: 34px;
	border-radius: 32px;
}

.pricing-page-card .dropoff-price-card-top {
	align-items: flex-start;
}

.pricing-page-card .dropoff-price-eyebrow,
.pricing-page-card .tag {
	min-height: 28px;
}

.pricing-page-card .dropoff-price-note {
	min-height: 78px;
}

.pricing-page-card ul {
	display: grid;
	gap: 6px;
}

.pricing-page-card .dropoff-price-value strong {
	font-size: 44px;
}

.pricing-page-card .dropoff-price-value em {
	font-size: 18px;
	padding-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.pricing-rate-infant::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.pricing-rate-infant .dropoff-price-value strong,
.pricing-rate-infant .dropoff-price-footer b,
.pricing-rate-infant h3 {
	color: #2a63a7;
}

.pricing-rate-infant .dropoff-price-eyebrow,
.pricing-rate-infant .dropoff-price-footer span,
.pricing-rate-infant .dropoff-price-value em {
	color: #5877a2;
}

.pricing-rate-toddler::before {
	background: linear-gradient(90deg, #ffb3d3, #ffe5f2);
}

.pricing-rate-toddler .dropoff-price-value strong,
.pricing-rate-toddler .dropoff-price-footer b,
.pricing-rate-toddler h3 {
	color: #b14a79;
}

.pricing-rate-toddler .dropoff-price-eyebrow,
.pricing-rate-toddler .dropoff-price-footer span,
.pricing-rate-toddler .dropoff-price-value em {
	color: #8d5f78;
}

.pricing-rate-explorer {
	border-width: 2px;
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
	box-shadow: 0 22px 46px rgba(166, 107, 0, 0.10);
}

.pricing-rate-explorer::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.pricing-rate-explorer .dropoff-price-value strong,
.pricing-rate-explorer .dropoff-price-footer b,
.pricing-rate-explorer h3 {
	color: #a56b00;
}

.pricing-rate-explorer .dropoff-price-value em,
.pricing-rate-explorer .dropoff-price-footer span,
.pricing-rate-explorer > small {
	color: #8b6c1f;
}

.pricing-offer-wednesday {
	border-width: 2px;
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
}

.pricing-offer-wednesday::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.pricing-offer-wednesday .dropoff-price-value strong,
.pricing-offer-wednesday .dropoff-price-footer b,
.pricing-offer-wednesday h3 {
	color: #a56b00;
}

.pricing-offer-wednesday .dropoff-price-footer span,
.pricing-offer-wednesday .dropoff-price-eyebrow {
	color: #8b6c1f;
}

.pricing-offer-sunset::before {
	background: linear-gradient(90deg, #ffb89a, #ffe7dd);
}

.pricing-offer-sunset .dropoff-price-value strong,
.pricing-offer-sunset .dropoff-price-footer b,
.pricing-offer-sunset h3 {
	color: #b56134;
}

.pricing-offer-sunset .dropoff-price-footer span,
.pricing-offer-sunset .dropoff-price-eyebrow {
	color: #99664a;
}

.pricing-offer-dropoff::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.pricing-offer-dropoff .dropoff-price-value strong,
.pricing-offer-dropoff .dropoff-price-footer b,
.pricing-offer-dropoff h3 {
	color: #2a7b45;
}

.pricing-offer-dropoff .dropoff-price-footer span,
.pricing-offer-dropoff .dropoff-price-eyebrow,
.pricing-offer-dropoff .dropoff-price-value em {
	color: #4d7e5f;
}

.gift-page-cover-grid {
	align-items: center;
}

.gift-page-intro-panel {
	margin-top: 6px;
	margin-bottom: 0;
}

.gift-amount-selector {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 16px;
	margin-top: 8px;
}

.gift-amount-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* min-width: 130px; */
	min-height: 88px;
	padding: 0 22px;
	border: 4px solid #ece8e6;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(8, 26, 73, 0.04);
	font-family: 'Englebert', cursive;
	font-size: 30px;
	font-weight: 700;
	color: #17123f;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	flex: 0 0 auto;
}

.gift-amount-option:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 26px rgba(8, 26, 73, 0.08);
}

.gift-amount-option.is-active {
	border-color: #f39a33;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
	color: #b14f2d;
	box-shadow: 0 16px 28px rgba(243, 154, 51, 0.18);
}

.gift-amount-option-custom {
	min-width: 178px;
}

.gift-custom-amount {
	position: relative;
	display: block;
	flex: 1 1 260px;
	min-width: 0;
}

.gift-custom-amount::before {
	content: '$';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'Englebert', cursive;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: #17123f;
	pointer-events: none;
	z-index: 1;
}

.gift-custom-amount-input {
	display: block;
	width: 100%;
	min-height: 88px;
	padding: 0 20px 0 48px;
	border: 4px solid #ece8e6;
	border-radius: 28px;
	background: #fff;
	font-family: 'Englebert', cursive;
	font-size: 28px;
	font-weight: 700;
	color: #17123f;
	box-shadow: 0 8px 22px rgba(8, 26, 73, 0.04);
}

.gift-custom-amount-input::placeholder {
	color: #7a8cab;
	font-weight: 600;
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	letter-spacing: 0;
}

.gift-page-visual {
	position: relative;
	width: min(100%, 560px);
	padding: 12px 0 0 26px;
	justify-self: end;
}

.gift-page-visual::before,
.gift-page-visual::after {
	content: '';
	position: absolute;
	border-radius: 30px;
	pointer-events: none;
}

.gift-page-visual::before {
	inset: 34px 18px 52px 0;
	background: linear-gradient(145deg, rgba(255, 219, 132, 0.14), rgba(255, 219, 132, 0));
	filter: blur(4px);
	transform: rotate(-5deg);
}

.gift-page-visual::after {
	inset: 18px 36px 38px 14px;
	background: linear-gradient(160deg, rgba(7, 20, 48, 0.10), rgba(7, 20, 48, 0.03));
	border: 1px solid rgba(173, 134, 45, 0.08);
	transform: rotate(-7deg);
	z-index: 0;
}

.gift-page-visual .gift-card {
	margin: 18px 0 0;
	position: relative;
	z-index: 1;
}

.gift-page-grid {
	margin-top: 0;
	align-items: stretch;
}

.gift-page-card {
	min-height: 100%;
	gap: 16px;
	padding: 34px;
	border-radius: 32px;
}

.gift-page-card .dropoff-price-card-top {
	align-items: flex-start;
}

.gift-page-card .dropoff-price-eyebrow,
.gift-page-card .tag {
	min-height: 28px;
}

.gift-page-card .dropoff-price-note {
	min-height: 78px;
}

.gift-page-card ul {
	display: grid;
	gap: 6px;
}

.gift-page-card .dropoff-price-value strong {
	font-size: 44px;
}

.gift-page-card .dropoff-price-value em {
	font-size: 18px;
	padding-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.gift-option-digital::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.gift-option-digital .dropoff-price-value strong,
.gift-option-digital .dropoff-price-footer b,
.gift-option-digital h3 {
	color: #2a63a7;
}

.gift-option-digital .dropoff-price-eyebrow,
.gift-option-digital .dropoff-price-footer span {
	color: #5877a2;
}

.gift-option-physical::before {
	background: linear-gradient(90deg, #ffb89a, #ffe7dd);
}

.gift-option-physical .dropoff-price-value strong,
.gift-option-physical .dropoff-price-footer b,
.gift-option-physical h3 {
	color: #b56134;
}

.gift-option-physical .dropoff-price-eyebrow,
.gift-option-physical .dropoff-price-footer span {
	color: #99664a;
}

.gift-option-custom {
	border-width: 2px;
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
	box-shadow: 0 22px 46px rgba(166, 107, 0, 0.10);
}

.gift-option-custom::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.gift-option-custom .dropoff-price-value strong,
.gift-option-custom .dropoff-price-footer b,
.gift-option-custom h3 {
	color: #a56b00;
}

.gift-option-custom .dropoff-price-value em,
.gift-option-custom .dropoff-price-footer span,
.gift-option-custom > small {
	color: #8b6c1f;
}

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

.gift-page-occasion-grid .gift-page-card .dropoff-price-note {
	min-height: 0;
}

.gift-occasion-grandparents::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.gift-occasion-grandparents .dropoff-price-footer b,
.gift-occasion-grandparents h3 {
	color: #a56b00;
}

.gift-occasion-grandparents .dropoff-price-eyebrow,
.gift-occasion-grandparents .dropoff-price-footer span {
	color: #8b6c1f;
}

.gift-occasion-parties::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.gift-occasion-parties .dropoff-price-footer b,
.gift-occasion-parties h3 {
	color: #b44d79;
}

.gift-occasion-parties .dropoff-price-eyebrow,
.gift-occasion-parties .dropoff-price-footer span {
	color: #8d5f78;
}

.gift-occasion-corporate::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.gift-occasion-corporate .dropoff-price-footer b,
.gift-occasion-corporate h3 {
	color: #2a7b45;
}

.gift-occasion-corporate .dropoff-price-eyebrow,
.gift-occasion-corporate .dropoff-price-footer span {
	color: #4d7e5f;
}

.gift-occasion-sendprint::before {
	background: linear-gradient(90deg, #89b8ff, #d7eaff);
}

.gift-occasion-sendprint .dropoff-price-footer b,
.gift-occasion-sendprint h3 {
	color: #2a63a7;
}

.gift-occasion-sendprint .dropoff-price-eyebrow,
.gift-occasion-sendprint .dropoff-price-footer span {
	color: #5877a2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
	align-items: start;
  gap: 16px;
  margin-top: 30px;
}
.faq-grid details {
	position: relative;
	align-self: start;
	overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
  border: 1px solid #dfe8f6;
  border-radius: 28px;
  padding: 22px 24px;
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-grid details::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}
.faq-grid details:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(8, 26, 73, 0.08);
}
.faq-grid details[open] {
	border-color: #f2d182;
	background: linear-gradient(180deg, #fffdf6, #fff7e4 100%);
	box-shadow: 0 20px 42px rgba(166, 107, 0, 0.10);
}
.faq-grid details[open]::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}
.faq-grid summary {
  cursor: pointer;
	font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
	line-height: 1.25;
	list-style: none;
	padding-right: 42px;
	position: relative;
	color: #223f6f;
}
.faq-grid summary::-webkit-details-marker {
	display: none;
}
.faq-grid summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #dbe6f5;
	font-size: 20px;
	line-height: 1;
	color: #5f779d;
	box-shadow: 0 6px 16px rgba(8, 26, 73, 0.06);
}
.faq-grid details[open] summary::after {
	content: '−';
	color: #8b6c1f;
	border-color: #f0d48a;
	background: #fff8e6;
}
.faq-grid p {
  color: #607592;
  font-size: 16px;
  line-height: 1.65;
  margin: 16px 0 0;
}

.faq-page .section-head > p,
.faq-page .subhead,
.faq-page .notice,
.faq-page .notice a,
.faq-page .faq-grid summary,
.faq-page .faq-grid p {
	color: #223f6f;
}

.faq-page .faq-grid p,
.faq-page .section-head > p,
.faq-page .notice {
	color: #607592;
}

.faq-page .subhead {
	color: #17315f;
}

.faq-page .notice a {
	color: #173b84;
}
.gift {
  background: #fff;
}
.gift-copy {
	display: grid;
	gap: 16px;
}

.gift-copy .section-kicker {
	justify-self: start;
	width: fit-content;
}

.gift-note {
	max-width: 42ch;
	margin: -2px 0 0;
	font-size: 18px;
	line-height: 1.7;
	color: #4d6188;
}

.gift-cta-stack {
	display: grid;
	gap: 12px;
	align-content: start;
}

.gift-cta-note {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #6b7a96;
}

.gift-cta-note a {
	font-weight: 800;
	color: var(--ink2);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.gift-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.gift-grid > div:last-child {
	position: relative;
	padding: 12px 0 0 26px;
}

.gift-grid > div:last-child::before,
.gift-grid > div:last-child::after {
	content: '';
	position: absolute;
	border-radius: 30px;
	pointer-events: none;
}

.gift-grid > div:last-child::before {
	inset: 34px 18px 52px 0;
	background: linear-gradient(145deg, rgba(255, 219, 132, 0.14), rgba(255, 219, 132, 0));
	filter: blur(4px);
	transform: rotate(-5deg);
}

.gift-grid > div:last-child::after {
	inset: 18px 36px 38px 14px;
	background: linear-gradient(160deg, rgba(7, 20, 48, 0.10), rgba(7, 20, 48, 0.03));
	border: 1px solid rgba(173, 134, 45, 0.08);
	transform: rotate(-7deg);
	z-index: 0;
}

.gift-card {
  width: min(100%, 400px);
  aspect-ratio: 1.7/1;
  border-radius: 34px;
  background:
	radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 28%),
	linear-gradient(145deg, #08152f 0%, #102b5b 42%, #1d4a92 100%);
  color: #fff;
  padding: 32px 30px 28px;
  margin: 28px 0 22px;
	box-shadow: 0 38px 78px rgba(8, 26, 73, 0.24), 0 10px 24px rgba(8, 26, 73, 0.12);
  position: relative;
  overflow: hidden;
	border: 1px solid rgba(255, 233, 182, 0.20);
	transform: rotate(-3deg);
	z-index: 1;
}

.gift-card-upgrade {
	width: min(100%, 540px);
	aspect-ratio: 1.58/1;
	padding: 40px 44px 34px;
	border-radius: 24px;
	background: linear-gradient(180deg, #2f2a2d 0%, #2a2629 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), 0 8px 18px rgba(0, 0, 0, 0.16);
	transform: none;
	display: grid;
	align-content: start;
	overflow: hidden;
	color: #fff;
}

.gift-card-upgrade::before,
.gift-card-upgrade::after {
	display: none;
}

.gift-card-copy,
.gift-card-present,
.gift-card-selected-amount {
	position: relative;
	z-index: 2;
}

.gift-card-present {
	position: absolute;
	z-index: 3;
}

.gift-card-selected-amount {
	position: absolute;
	z-index: 4;
}

.gift-card-copy {
	margin-top: 124px;
	display: grid;
	gap: 2px;
}

.gift-card-copy strong,
.gift-card-copy span {
	display: block;
	font-family: 'Outfit', sans-serif;
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-shadow: none;
	filter: none;
	background: none;
	-webkit-text-fill-color: initial;
}

.gift-card-copy strong {
	margin: 0;
	font-size: clamp(62px, 5.8vw, 82px);
	font-weight: 300;
	color: #f4f1f2;
	max-width: none;
}

.gift-card-copy span {
	font-size: clamp(32px, 3.2vw, 44px);
	font-weight: 300;
	color: #ef2548;
	padding-left: 16px;
}

.gift-card-present {
	position: absolute;
	right: 34px;
	top: 58px;
	width: 200px;
	height: 228px;
	color: #ff355d;
	z-index: 3;
	filter: drop-shadow(0 0 10px rgba(255, 53, 93, 0.16));
}

.gift-card-present-bow,
.gift-card-present-knot,
.gift-card-present-lid,
.gift-card-present-box,
.gift-card-present-ribbon {
	position: absolute;
	display: block;
	box-sizing: border-box;
}

.gift-card-present-bow {
	top: 0;
	width: 54px;
	height: 60px;
	border: 5px solid currentColor;
	border-radius: 70% 70% 56% 56%;
	background: transparent;
}

.gift-card-present-bow-left {
	left: 42px;
	transform: rotate(-34deg);
}

.gift-card-present-bow-right {
	right: 40px;
	transform: rotate(34deg);
}

.gift-card-present-knot {
	left: 50%;
	top: 44px;
	width: 12px;
	height: 16px;
	border-radius: 999px;
	background: currentColor;
	transform: translateX(-50%);
}

.gift-card-present-lid {
	left: 0;
	top: 80px;
	width: 100%;
	height: 36px;
	border: 5px solid currentColor;
	background: transparent;
}

.gift-card-present-box {
	left: 18px;
	top: 116px;
	width: calc(100% - 36px);
	height: 112px;
	border: 5px solid currentColor;
	border-top: 0;
	background: transparent;
}

.gift-card-present-ribbon {
	left: 50%;
	top: 80px;
	width: 18px;
	height: 148px;
	transform: translateX(-50%);
	border-left: 5px solid currentColor;
	border-right: 5px solid currentColor;
	background: transparent;
}

.gift-card-selected-amount {
	left: 44px;
	right: auto;
	top: 40px;
	bottom: auto;
	display: inline-block;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-family: 'Outfit', sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #fff;
	text-transform: none;
	text-shadow: none;
}
.gift-card::before {
	content: '';
	position: absolute;
	inset: 14px;
	border-radius: 26px;
	border: 1px solid rgba(255, 230, 173, 0.22);
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 34%),
		linear-gradient(180deg, rgba(255, 236, 197, 0.10), rgba(255, 255, 255, 0) 46%);
	pointer-events: none;
}
.gift-card:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
	right: -52px;
	bottom: -106px;
  border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 198, 74, 0.34), rgba(255, 198, 74, 0));
}

.gift-card-upgrade {
	position: relative;
	isolation: isolate;
}

.gift-card-upgrade::before,
.gift-card-upgrade::after {
	content: none;
	display: none;
}

.gift-card-upgrade .gift-card-bow,
.gift-card-upgrade small,
.gift-card-upgrade .gift-card-amounts,
.gift-card-upgrade .gift-card-points,
.gift-card-upgrade .gift-card-footer {
	display: none;
}

.gift-card-copy strong,
.gift-card-copy span {
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: initial;
	text-shadow: none;
	filter: none;
	max-width: none;
}
.amounts {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.amounts button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.who-grid > div {
	background: linear-gradient(180deg, #ffffff, #f8fbff);
	border: 1px solid #dde8f5;
	box-shadow: 0 14px 28px rgba(8, 26, 73, 0.06);
  border-radius: 20px;
  padding: 20px;
}
.who-grid b {
	font-family: "Outfit", sans-serif;
}
.who-grid p {
  font-size: 12px;
  color: #6b7a96;
  margin: 7px 0 0;
}
.visit {
  background: var(--ink);
  color: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.visit-copy {
	display: grid;
	gap: 18px;
}
.visit-copy .section-kicker.light {
	width: fit-content;
	max-width: 100%;
	padding: 10px 18px 10px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
	border-color: rgba(159, 199, 255, 0.26);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	letter-spacing: 0.06em;
}
.visit h2 span {
  color: var(--yellow);
}
.visit-location-card {
	padding: 20px 22px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
	max-width: 360px;
}
.visit-location-card span {
	display: block;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d8dcb2;
	margin-bottom: 10px;
}
.visit-location-card strong {
	display: block;
	font-family: 'Englebert', cursive;
	font-size: 28px;
	color: #fff0c8;
	color: #fff;
	margin-bottom: 8px;
}
.visit-location-card p {
	margin: 0;
	color: #d5e4fb;
	line-height: 1.6;
}
.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.visit-info > div {
  background: #102d69;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
}
.visit-info > div:not(.visit-hours-card) {
	position: relative;
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 120px;
	padding: 22px 22px 20px;
	background: linear-gradient(165deg, #143474, #0f2c67 62%, #0b2558);
	border-color: rgba(159, 199, 255, 0.18);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}
.visit-info > div:not(.visit-hours-card)::before {
	content: '';
	position: absolute;
	width: 116px;
	height: 116px;
	right: -42px;
	top: -42px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(159, 199, 255, 0.1), rgba(159, 199, 255, 0));
	pointer-events: none;
}
.visit-hours-card {
	grid-column: 1 / -1;
	padding: 22px 22px 20px !important;
	background: linear-gradient(165deg, #1a4188, #123472 58%, #0b275e) !important;
	border-color: rgba(159, 199, 255, 0.24) !important;
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
	overflow: hidden;
}
.visit-hours-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(159, 199, 255, 0.18);
}
.visit-hours-head b {
	font-size: 26px;
	line-height: 1;
	color: #fff;
}
.visit-hours-head span {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #dce9ff;
	font-size: 16px;
	font-weight: 700;
}
.visit-info b {
	font-family: "Outfit", sans-serif;
	font-size: 20px;
	line-height: 1.12;
	color: #fff;
}
.visit-info p {
  color: #c8d4e9;
	margin: 0;
	font-size: 18px;
	line-height: 1.58;
}
.visit-info > div:not(.visit-hours-card) p,
.visit-info > div:not(.visit-hours-card) a {
	color: #ddeaff;
}
.visit-info > div:not(.visit-hours-card) a {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(221, 234, 255, 0.45);
	text-underline-offset: 4px;
}
.visit-info > div:not(.visit-hours-card) a:hover {
	text-decoration-color: rgba(255, 255, 255, 0.85);
}
.visit-hours-list {
	display: grid;
	gap: 12px;
}
.visit-hours-list > div {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.visit-hours-list strong {
	font-family: 'Englebert', cursive;
	font-size: 24px;
	line-height: 1.05;
	color: #fff;
}
.visit-hours-list span {
	color: #e4efff;
	font-size: 16px;
	line-height: 1.5;
}
.visit-hours-highlight {
	background: linear-gradient(180deg, rgba(255, 195, 41, 0.14), rgba(255, 195, 41, 0.08)) !important;
	border-color: rgba(255, 214, 99, 0.28) !important;
}
.visit-hours-highlight span {
	color: #fff2c4;
	font-weight: 800;
}

.footer {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 10%, rgba(24, 185, 223, 0.18), transparent 24%),
		radial-gradient(circle at 88% 12%, rgba(255, 195, 41, 0.16), transparent 22%),
		linear-gradient(180deg, #061438 0%, #082051 58%, #091933 100%);
	color: #b8c6df;
	padding: 74px 0 28px;
}
.footer::before {
	content: '';
	position: absolute;
	inset: 28px 0 auto;
	height: 1px;
	/* background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(173, 205, 255, 0.24), rgba(255, 255, 255, 0)); */
	opacity: 0.8;
}
.footer .shell,
.footer-bottom {
	position: relative;
	z-index: 1;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1fr;
	gap: 34px;
}
.footer-grid > div:first-child {
	padding-right: 18px;
}
.footer-grid > div:not(:first-child) {
	padding-top: 10px;
	/* border-top: 1px solid rgba(173, 205, 255, 0.14); */
}
.footer-logo {
	width: 154px;
	margin-bottom: 18px;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.22));
}
.footer p {
	max-width: 34ch;
	margin: 0;
	color: #d3def2;
	line-height: 1.75;
}
.footer h4 {
	color: #fff7d0;
	font-family: "Outfit", sans-serif;
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1;
}
.footer a {
	display: block;
	width: fit-content;
	margin: 10px 0;
	color: #d4e0f3;
	line-height: 1.4;
	position: relative;
	padding-bottom: 3px;
}
.footer a:hover {
	color: #fff;
}
.footer a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #ffd566 0%, #ffb61d 55%, #f28b00 100%);
	transition: right 0.25s ease;
}
.footer a:hover::after {
	right: 0;
}
.footer-bottom {
	width: min(calc(100% - 48px), var(--max));
	margin: 22px auto 0;
	padding: 18px 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: space-between;
	gap: 18px;
	color: #9fb3d6;
}
@media (max-width: 1100px) {
  .nav {
    gap: 15px;
  }
  .nav a {
    font-size: 12px;
  }
  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-mascot {
    min-height: 520px;
  }
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card:nth-child(2) {
    transform: none;
  }
  .footer-grid {
	grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    display: none;
  }
}
@media (max-width: 860px) {
	main {
		padding-top: var(--header-height-mobile);
	}
	.nav-wrap {
		min-height: var(--header-height-mobile);
		flex-wrap: wrap;
		gap: 8px 14px;
		padding: 6px 0 8px;
		align-items: center;
	}
	.brand {
		position: relative;
		z-index: 3;
		flex: 0 0 auto;
	}
	.brand img {
		height: 52px;
		width: auto;
	}
	.nav-toggle {
		display: inline-flex;
		position: relative;
		z-index: 3;
		width: 44px;
		height: 44px;
		padding: 0 11px;
		border-radius: 14px;
		gap: 4px;
	}
	.nav-toggle span {
		width: 20px;
	}
	.nav {
		order: 3;
		width: 100%;
		margin-left: 0;
		padding-top: 4px;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 12px 18px;
	}
	.nav a {
		padding: 6px 0;
		white-space: normal;
	}
	.nav a:after {
		bottom: 0;
	}
	.nav-cta {
		order: 4;
		margin-left: 0;
	}
	.site-header[data-menu-ready="true"] .nav-wrap {
		align-items: center;
	}
	.site-header[data-menu-ready="true"] .nav,
	.site-header[data-menu-ready="true"] .nav-cta {
		display: none;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav-wrap {
		background: rgba(255, 250, 240, 0.98);
		border-radius: 0 0 24px 24px;
		box-shadow: 0 18px 40px rgba(8, 26, 73, 0.12);
		padding-bottom: 14px;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-top: 8px;
		padding: 16px 18px 14px;
		border: 1px solid rgba(8, 26, 73, 0.08);
		border-radius: 24px;
		background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
		box-shadow: 0 14px 28px rgba(8, 26, 73, 0.08);
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a {
		display: inline-flex;
		align-items: center;
		min-height: 0;
		padding: 8px 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:after {
		left: 0;
		right: 100%;
		bottom: 2px;
		height: 2px;
		opacity: 1;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:hover:after,
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a[aria-current="page"]:after {
		right: 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a[aria-current="page"] {
		color: var(--ink);
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:last-child {
		margin-bottom: 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav-cta {
		display: inline-flex;
		width: 100%;
		margin-top: 14px;
		justify-content: center;
	}
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 30px), var(--max));
  }
	main {
		padding-top: var(--header-height-mobile);
	}
  .site-header {
	position: fixed;
  }
  .nav-wrap {
	min-height: var(--header-height-mobile);
    flex-wrap: wrap;
	gap: 8px 14px;
	padding: 6px 0 8px;
	align-items: center;
  }
  .brand {
	position: relative;
	z-index: 3;
	flex: 0 0 auto;
  }
  .brand img {
	height: 52px;
	width: auto;
  }
  .nav-toggle {
	display: inline-flex;
	position: relative;
	z-index: 3;
	width: 44px;
	height: 44px;
	padding: 0 11px;
	border-radius: 14px;
	gap: 4px;
  }
	.nav-toggle span {
		width: 20px;
	}
  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
	padding-top: 4px;
	flex-wrap: wrap;
    justify-content: flex-start;
	gap: 12px 18px;
  }
  .nav a {
    padding: 6px 0;
    white-space: normal;
  }
  .nav a:after {
    bottom: 0;
  }
  .nav-cta {
	order: 4;
	margin-left: 0;
  }
	.site-header[data-menu-ready="true"] .nav-wrap {
		align-items: center;
	}
	.site-header[data-menu-ready="true"] .nav,
	.site-header[data-menu-ready="true"] .nav-cta {
		display: none;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav-wrap {
		background: rgba(255, 250, 240, 0.98);
		border-radius: 0 0 24px 24px;
		box-shadow: 0 18px 40px rgba(8, 26, 73, 0.12);
		padding-bottom: 14px;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-top: 8px;
		padding: 16px 18px 14px;
		border: 1px solid rgba(8, 26, 73, 0.08);
		border-radius: 24px;
		background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
		box-shadow: 0 14px 28px rgba(8, 26, 73, 0.08);
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a {
		display: inline-flex;
		align-items: center;
		min-height: 0;
		padding: 8px 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:after {
		left: 0;
		right: 100%;
		bottom: 2px;
		height: 2px;
		opacity: 1;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:hover:after,
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a[aria-current="page"]:after {
		right: 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a[aria-current="page"] {
		color: var(--ink);
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav a:last-child {
		margin-bottom: 0;
	}
	.site-header[data-menu-ready="true"][data-menu-open="true"] .nav-cta {
		display: inline-flex;
		width: 100%;
		margin-top: 14px;
		justify-content: center;
	}
  .section-pad {
    padding: 78px 0;
  }
  .hero {
    padding-top: 25px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-grid {
    min-height: 0;
  }
  .hero-mascot {
    min-height: 430px;
  }
  .hero-mascot:before {
    width: 350px;
    height: 350px;
  }
  .hero-mascot img {
    width: 95%;
  }
  .talk-card {
    right: 0;
    top: 4%;
    max-width: 190px;
  }
  .hero-stats div {
    min-width: calc(33.33% - 7px);
  }
  .section-head,
  .split-grid,
  .gift-grid,
  .visit-grid {
    display: block;
  }
  .section-head > p {
    margin-top: 18px;
  }
  .zone-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .feature-list,
  .who-grid,
  .visit-info {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
	.visit-location-card,
	.visit-hours-card {
		max-width: none;
	}
	.visit-hours-head {
		display: grid;
		justify-content: start;
	}
	.visit-info > div:not(.visit-hours-card) {
		min-height: 0;
	}
	.visit-hours-list > div {
		grid-template-columns: 1fr;
	}
  .mini-features,
  .steps {
    grid-template-columns: 1fr;
  }
  .steps > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mascot-card {
    margin-top: 30px;
  }
  .footer-grid {
	grid-template-columns: 1fr;
	gap: 22px;
  }
  .footer-grid > div:first-child {
	grid-column: auto;
	padding-right: 0;
	}
	.footer-brand {
		justify-items: center;
	}
	.footer-grid > div:not(:first-child) {
	padding-top: 18px;
  }
	.footer-social {
		justify-content: center;
	}
  .footer-grid > div:last-child {
    display: block;
  }
  .footer-bottom {
	display: grid;
	padding-left: 0;
	padding-right: 0;
  }
  .footer-bottom span {
	display: block;
	margin: 0;
  }
  .price-card {
    padding: 24px;
  }

	.gift-note {
		font-size: 16px;
	}

	.gift-grid > div:last-child {
		padding-left: 0;
	}

	.gift-grid > div:last-child::before,
	.gift-grid > div:last-child::after {
		display: none;
	}

	.gift-amount-selector {
		flex-wrap: wrap;
		gap: 12px;
	}

	.gift-amount-option {
		min-width: 110px;
		min-height: 72px;
		padding: 0 18px;
		border-radius: 22px;
		font-size: 24px;
	}

	.gift-amount-option-custom {
		min-width: 140px;
	}

	.gift-custom-amount {
		flex: 1 1 100%;
	}

	.gift-custom-amount::before {
		left: 16px;
		font-size: 24px;
	}

	.gift-custom-amount-input {
		min-height: 72px;
		padding: 0 16px 0 40px;
		border-radius: 22px;
		font-size: 24px;
	}

	.gift-page-visual {
		padding-left: 0;
	}

	.gift-page-visual::before,
	.gift-page-visual::after {
		display: none;
	}

	.gift-page-occasion-grid {
		grid-template-columns: 1fr;
	}

	.gift-card {
		padding: 24px;
	}

	.gift-card-upgrade {
		width: min(100%, 100%);
		padding: 24px 24px 22px;
		border-radius: 22px;
	}

	.gift-card-copy {
		margin-top: 92px;
	}

	.gift-card-copy strong {
		font-size: 46px;
	}

	.gift-card-copy span {
		font-size: 28px;
		padding-left: 10px;
	}

	.gift-card-present {
		right: 12px;
		top: 42px;
		width: 118px;
		height: 136px;
	}

	.gift-card-present-bow {
		width: 32px;
		height: 34px;
		border-width: 4px;
	}

	.gift-card-present-bow-left {
		left: 27px;
	}

	.gift-card-present-bow-right {
		right: 25px;
	}

	.gift-card-present-knot {
		top: 28px;
		width: 8px;
		height: 12px;
	}

	.gift-card-present-lid {
		top: 48px;
		height: 26px;
		border-width: 4px;
	}

	.gift-card-present-box {
		left: 12px;
		top: 74px;
		width: calc(100% - 24px);
		height: 62px;
		border-width: 4px;
		border-top: 0;
	}

	.gift-card-present-ribbon {
		top: 48px;
		width: 12px;
		height: 88px;
		border-left-width: 4px;
		border-right-width: 4px;
	}

	.gift-card-selected-amount {
		left: 24px;
		top: 24px;
		bottom: auto;
		font-size: 22px;
	}
}

.section-intro,
.about p,
.group-callout p {
	max-width: 72ch;
}

.addons {
	background: #fffdf9;
}

.journey-map {
	background: #fff;
}

.journey-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.journey-card {
	position: relative;
	overflow: hidden;
	grid-column: span 3;
	background: linear-gradient(180deg, #fff, #f8fbff);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(8, 26, 73, .05);
}

.journey-card::after {
	content: '';
	position: absolute;
	width: 170px;
	height: 170px;
	right: -88px;
	top: -88px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 153, 239, .28), rgba(18, 153, 239, 0));
	pointer-events: none;
}

.journey-card:nth-child(1) {
	background: linear-gradient(140deg, #fff8e8, #fff 48%, #ebf8ff);
	border-color: #d5e8ff;
}

.journey-card:nth-child(1)::before {
	content: 'Most Popular';
	position: absolute;
	right: 18px;
	top: 18px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 900;
	color: #0d4f92;
	background: #dff1ff;
	border: 1px solid #b6dcff;
}

.journey-card:nth-child(3) {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	background: linear-gradient(125deg, #f3f9ff, #ffffff 44%, #fdf7ea);
}

.journey-card:nth-child(3) p {
	max-width: 52ch;
	margin: 0;
}

.journey-card:nth-child(3) a {
	justify-self: end;
}

.journey-card small {
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 800;
	color: #6b7f9f;
}

.journey-card h3 {
	font-size: 27px;
	margin: 9px 0 10px;
}

.journey-card p {
	font-size: 14px;
	color: #5f7395;
	margin: 0 0 14px;
}

.journey-card a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid #b7c8e2;
	font-size: 13px;
	font-weight: 800;
	color: var(--ink2);
	background: #fff;
}

.journey-card a:hover {
	border-color: var(--blue);
	transform: translateY(-1px);
}

.explore-hero {
	background:
		radial-gradient(circle at 12% 12%, rgba(255, 157, 24, .14), transparent 20%),
		radial-gradient(circle at 88% 16%, rgba(18, 153, 239, .14), transparent 24%),
		linear-gradient(180deg, #fffdf8, #f6fbff 62%, #fff8ef);
	overflow: hidden;
}

.explore-hero .section-head {
	align-items: flex-end;
	margin-bottom: 28px;
}

.explore-hero .section-head>p {
	max-width: 34ch;
	font-size: 15px;
	line-height: 1.6;
}

.explore-journey-grid {
	position: relative;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.explore-journey-grid .journey-card {
	border-radius: 30px;
	padding: 28px;
	box-shadow: 0 20px 44px rgba(8, 26, 73, .08);
	min-height: 230px;
}

.explore-journey-grid .journey-card::before {
	content: '';
	position: absolute;
	inset: auto 26px 26px auto;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fff, #f4f8ff);
	box-shadow: 0 16px 28px rgba(8, 26, 73, .08);
	opacity: .98;
}

.explore-journey-grid .journey-card::after {
	background: radial-gradient(circle, rgba(18, 153, 239, .20), rgba(18, 153, 239, 0));
	opacity: 1;
}

.explore-journey-grid .journey-card h3 {
	font-size: clamp(26px, 2.6vw, 42px);
	line-height: .98;
	max-width: 9ch;
}

.explore-journey-grid .journey-card p {
	max-width: 30ch;
	font-size: 15px;
	line-height: 1.6;
}

.explore-feature {
	grid-column: span 4;
	min-height: 380px;
	padding-right: 140px;
	background: linear-gradient(140deg, #fff7e4, #ffffff 42%, #ebf8ff);
	border-color: #d9eaff;
}

.explore-feature h3 {
	font-size: clamp(44px, 5vw, 72px);
	max-width: 6ch;
	margin-top: 12px;
	margin-bottom: 14px;
}

.explore-feature p {
	max-width: 38ch;
	font-size: 16px;
	margin-bottom: 18px;
}

.explore-feature-art {
	position: absolute;
	right: 34px;
	bottom: 28px;
	width: min(34%, 220px);
	height: auto;
	z-index: 2;
	filter: drop-shadow(0 16px 28px rgba(8, 26, 73, .14));
	pointer-events: none;
}

.explore-feature::before {
	width: 132px !important;
	height: 132px !important;
	right: 34px !important;
	bottom: 34px !important;
	border-radius: 36px !important;
	background: linear-gradient(180deg, #fff7c4, #ffd257) !important;
	box-shadow: 0 20px 32px rgba(255, 157, 24, .24) !important;
}

.explore-support {
	grid-column: span 2;
	padding-right: 150px;
	background: linear-gradient(160deg, #eefaff, #ffffff 58%, #f7fbff);
}

.explore-support-art {
	position: absolute;
	right: 26px;
	bottom: 24px;
	width: min(42%, 146px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 22px rgba(8, 26, 73, .12));
	pointer-events: none;
	z-index: 2;
}

.explore-journey-grid .journey-card:nth-child(3) {
	grid-column: span 3;
	display: grid;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	gap: 8px;
}

.explore-journey-grid .journey-card:nth-child(3) p {
	margin: 0;
}

.explore-secondary {
	grid-column: span 3;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) 150px;
	grid-template-areas:
		"meta art"
		"title art"
		"copy art";
	grid-template-rows: auto auto 1fr;
	align-items: start;
	align-content: start;
	column-gap: 18px;
	row-gap: 10px;
	height: 230px;
	min-height: 230px;
	padding-right: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.explore-secondary small {
	grid-area: meta;
	align-self: end;
	}

.explore-secondary h3 {
	grid-area: title;
	margin: 0;
	max-width: none;
	white-space: nowrap;
}

.explore-secondary p {
	grid-area: copy;
	margin: 0;
	max-width: 32ch;
	align-self: start;
}

.explore-card-art {
	grid-area: art;
	justify-self: end;
	align-self: center;
	width: min(100%, 136px);
	height: auto;
	margin: 0;
	object-fit: contain;
	filter: drop-shadow(0 14px 22px rgba(8, 26, 73, .12));
	z-index: 2;
}

.explore-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}

.explore-metrics span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid #d5e4f5;
	background: rgba(255, 255, 255, .86);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #49648f;
}

.explore-journey-grid .orange::before {
	background: linear-gradient(180deg, #fff0ce, #ffcb69)
}

.explore-journey-grid .blue::before {
	background: linear-gradient(180deg, #def8ff, #73dbff)
}

.explore-journey-grid .green::before {
	background: linear-gradient(180deg, #e9ffd7, #9fdf62)
}

.explore-journey-grid .purple::before {
	background: linear-gradient(180deg, #f2e7ff, #cda5ff)
}

.explore-journey-grid .pink::before {
	background: linear-gradient(180deg, #ffe4f1, #ff8eb9)
}

.explore-journey-grid .cyan::before {
	background: linear-gradient(180deg, #defcff, #84e7ff)
}

.explore-journey-grid .yellow::before {
	background: linear-gradient(180deg, #fff8c8, #ffd447)
}

.explore-journey-grid .navy::before {
	background: linear-gradient(180deg, #dfe9ff, #8ba8ea)
}

@media(max-width:1100px) {

	.explore-feature,
	.explore-support,
	.explore-journey-grid .journey-card {
		grid-column: span 3;
	}

	.explore-secondary {
		grid-template-columns: minmax(0, 1.15fr) 124px;
		height: 214px;
		min-height: 214px;
	}

	.explore-support {
		padding-right: 126px;
	}

	.explore-support-art {
		width: min(40%, 118px);
		right: 20px;
		bottom: 20px;
	}

	.explore-card-art {
		width: min(100%, 116px);
	}

	.explore-feature {
		padding-right: 120px;
		min-height: 340px;
	}

	.explore-feature-art {
		width: min(30%, 180px);
		right: 26px;
		bottom: 22px;
	}

}

@media(max-width:760px) {
	.explore-hero .section-head {
		display: block;
	}

	.explore-journey-grid {
		grid-template-columns: 1fr;
	}

	.explore-feature,
	.explore-support,
	.explore-journey-grid .journey-card {
		grid-column: 1;
	}

	.explore-support {
		padding-right: 28px;
	}

	.explore-secondary {
		grid-template-columns: 1fr;
		grid-template-areas:
			"meta"
			"title"
			"copy"
			"art";
		row-gap: 10px;
		padding-right: 28px;
		height: auto;
		min-height: 0;
	}

	.explore-secondary h3 {
		white-space: normal;
	}

	.explore-feature,
	.explore-journey-grid .journey-card {
		padding-right: 28px;
		min-height: 0;
	}

	.explore-card-art {
		justify-self: start;
		width: min(100%, 132px);
	}

	.explore-support-art {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: min(100%, 132px);
		margin: 10px 0 0 auto;
	}

	.explore-feature-art {
		position: relative;
		right: auto;
		bottom: auto;
		display: block;
		width: min(100%, 180px);
		margin: 10px 0 0 auto;
	}

	.explore-journey-grid .journey-card h3,
	.explore-feature h3,
	.explore-journey-grid .journey-card h3 {
		max-width: none;
	}
}

.storyline {
	background: radial-gradient(circle at 95% 5%, rgba(18, 153, 239, .10), transparent 32%), #fff;
}

.storyline-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: center;
}

.story-steps {
	display: grid;
	gap: 10px;
}

.story-step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 14px;
	background: #fff;
}

.story-step b {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), #0f5fb5);
}

.story-step p {
	margin: 2px 0 0;
	font-size: 14px;
	color: #607491;
}

.longform-intro {
	background: #eef4ff;
	border-top: 1px solid #d9e4f8;
	border-bottom: 1px solid #d9e4f8;
}

.longform-intro .section-intro {
	margin: 8px 0 0;
}

.addon-grid,
.deal-grid,
.why-grid,
.rule-grid,
.camera-grid,
.team-grid,
.tour-grid,
.plan-grid,
.event-grid {
	display: grid;
	gap: 14px;
}

.addon-grid {
	margin-top: 28px;
	grid-template-columns: repeat(3, 1fr);
}

.addon-grid>div,
.deal-grid>div,
.why-grid>div,
.rule-grid>div,
.camera-grid>div,
.team-grid>div,
.tour-grid>div,
.plan-grid>div,
.event-grid>div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 22px;
	box-shadow: 0 10px 26px rgba(8, 26, 73, .04);
}

.addon-grid b,
.deal-grid b,
.why-grid b,
.rule-grid b,
.camera-grid b,
.team-grid b,
.tour-grid h3,
.event-grid b,
.subhead,
.group-callout h3,
.group-callout h4 {
	font-family: 'Outfit', sans-serif;
}

.addon-grid strong,
.deal-grid strong {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 33px;
	line-height: 1;
	margin: 10px 0 6px;
}

.addon-grid p,
.deal-grid span,
.why-grid p,
.rule-grid p,
.camera-grid span,
.team-grid p,
.tour-grid p,
.event-grid p,
.group-callout p,
.plan-grid span {
	color: #667998;
	font-size: 16px;
}

.notice,
.group-callout,
.deal-wide,
.pass {
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 26px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(8, 26, 73, .05);
}

.notice {
	margin-top: 18px;
	background: #fff8ea;
	border-color: #f5d28f;
}

.notice ul,
.group-callout ul,
.price-card ul {
	padding-left: 18px;
}

.pricing .table-wrap {
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: auto;
	background: #fff;
	box-shadow: 0 14px 36px rgba(8, 26, 73, .05);
}

.pricing table {
	width: 100%;
	border-collapse: collapse;
	min-width: 620px;
}

.pricing th,
.pricing td {
	text-align: left;
	padding: 15px 18px;
	border-bottom: 1px solid #e9eef7;
	font-size: 14px;
}

.pricing th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #5e7295;
	background: #f8fbff;
}

.pricing tbody tr:hover td {
	background: #fcfeff;
}

.deal-grid {
	margin: 22px 0 16px;
	grid-template-columns: repeat(3, 1fr);
}

.deal-grid>div {
	background: linear-gradient(180deg, #fff, #f6fbff);
}

.subhead {
	margin: 26px 0 12px;
	font-size: 30px;
}

.contact-note {
	margin-top: 20px;
	color: #5f7294;
}

.contact-note a {
	color: var(--ink2);
	font-weight: 700;
}

.about .split-grid {
	grid-template-columns: 1.2fr .8fr;
}

.about p {
	color: #d4dff1;
}

.story-mascot {
	background: #0f2f6d;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 28px;
	padding: 18px;
}

.story-mascot img {
	width: 100%;
	max-width: 360px;
	margin: auto;
}

.rating {
	margin-top: 12px;
	background: #fff;
	color: var(--ink);
	border-radius: 16px;
	padding: 14px 16px;
	text-align: center;
}

.rating strong {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 36px;
	line-height: 1;
}

.rating span,
.rating small {
	display: block;
}

.difference,
.cameras {
	background: #fff;
}

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

.difference .why-grid > div {
	display: grid;
	justify-items: start;
	gap: 14px;
	padding: 24px;
	background: linear-gradient(180deg, #fff, #f8fbff);
}
.dropoff-safety-card p{
	margin: 0px;
}
.dropoff-safety-icon {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	margin-bottom: 2px;
	/* border-radius: 24px; */
	/* background: linear-gradient(180deg, #fff, #f4f8ff);
	border: 1px solid #d9e6f4;
	box-shadow: 0 16px 24px rgba(8, 26, 73, 0.08); */
}

.dropoff-safety-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* filter: drop-shadow(0 10px 14px rgba(8, 26, 73, 0.12)); */
}

.about-feature-icon {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	/* border-radius: 24px;
	padding: 10px;
	background: linear-gradient(180deg, #fff, #f4f8ff);
	border: 1px solid #d9e6f4;
	box-shadow: 0 16px 24px rgba(8, 26, 73, 0.08); */
}


.about-feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(8, 26, 73, 0.12));
}

.rules .rule-grid {
	grid-template-columns: repeat(3, 1fr);
}

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

.camera-grid>div {
	display: grid;
	justify-items: start;
	gap: 6px;
}

.camera-grid span {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 5px 10px;
	background: #e9fff3;
	color: #037f38;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
}

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

.team-grid b{
	font-size: 22px;
}

.about-team .team-grid > div > span {
	display: block;
	color: #6b7f9f;
	font-size: 12px;
	margin: 7px 0;
}

.about-team .team-grid > div {
	position: relative;
	display: grid;
	gap: 12px;
	padding: 24px;
	background: linear-gradient(180deg, #ffffff, #f8fbff 74%);
	overflow: hidden;
}

.about-team .section-head h2 {
	color: #203d70;
}

.about-team .section-head > p {
	color: #6b7ea0;
}

.about-team .team-grid > div::after {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	right: -44px;
	top: -48px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 153, 239, .12), rgba(18, 153, 239, 0));
	pointer-events: none;
}

.team-card-top {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
}

.team-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	margin: 0;
	border-radius: 18px;
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	padding-top: 0;
	color: #35537f;
	background: linear-gradient(180deg, #fff8db, #ffd66f 60%, #f5bc39 100%);
	box-shadow: inset 0 2px 0 rgba(255,255,255,.7), 0 12px 20px rgba(8, 26, 73, .1);
}

.team-role {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	justify-content: center;
	/* min-height: 36px; */
	max-width: 100%;
	padding: 6px 14px 5px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
	color: #40608f;
	background: #eef5ff;
	border: 1px solid #d8e4f5;
	margin: 0;
}

.about-team .team-grid b {
	font-size: 24px;
	line-height: 1.1;
	margin-top: 4px;
	color: #29456f;
}

.about-team .team-grid p {
	margin: 0;
	color: #4f658d;
	line-height: 1.6;
}

.team-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.team-tags span {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	background: #fff;
	border: 1px solid #dce7f7;
	color: #56719b;
}

.team-card-play .team-avatar,
.team-card-play::after {
	background: linear-gradient(180deg, #fff8db, #ffd66f 60%, #f5bc39 100%);
}

.team-card-play .team-avatar {
	color: #8f6000;
}

.team-card-play .team-role,
.team-card-play b,
.team-card-play .team-tags span {
	color: #8f6000;
}

.team-card-play .team-role,
.team-card-play .team-tags span {
	border-color: #f0d48a;
	background: #fff8e6;
}

.team-card-art .team-avatar {
	background: linear-gradient(180deg, #ffe5f2, #ffb0cb 58%, #ea6b98 100%);
}

.team-card-art .team-avatar {
	color: #a53a66;
}

.team-card-art .team-role,
.team-card-art b,
.team-card-art .team-tags span {
	color: #a53a66;
}

.team-card-art .team-role,
.team-card-art .team-tags span {
	border-color: #f1c1d4;
	background: #fff1f7;
}

.team-card-art::after {
	background: radial-gradient(circle, rgba(234, 107, 152, .14), rgba(234, 107, 152, 0));
}

.team-card-safety .team-avatar {
	background: linear-gradient(180deg, #e6ffed, #9fe58a 58%, #45af5f 100%);
}

.team-card-safety .team-avatar {
	color: #2f7f44;
}

.team-card-safety .team-role,
.team-card-safety b,
.team-card-safety .team-tags span {
	color: #2f7f44;
}

.team-card-safety .team-role,
.team-card-safety .team-tags span {
	border-color: #bfe4c7;
	background: #effcf2;
}

.team-card-safety::after {
	background: radial-gradient(circle, rgba(69, 175, 95, .14), rgba(69, 175, 95, 0));
}

.team-card-cafe .team-avatar {
	background: linear-gradient(180deg, #fff2da, #ffc885 58%, #eb8f32 100%);
}

.team-card-cafe .team-avatar {
	color: #a35a10;
}

.team-card-cafe .team-role,
.team-card-cafe b,
.team-card-cafe .team-tags span {
	color: #a35a10;
}

.team-card-cafe .team-role,
.team-card-cafe .team-tags span {
	border-color: #f0c99f;
	background: #fff5e8;
}

.team-card-cafe::after {
	background: radial-gradient(circle, rgba(235, 143, 50, .14), rgba(235, 143, 50, 0));
}

.team-card-dropoff .team-avatar {
	background: linear-gradient(180deg, #e2f4ff, #89d8ff 58%, #3f96e4 100%);
}

.team-card-dropoff .team-avatar {
	color: #2d69a8;
}

.team-card-dropoff .team-role,
.team-card-dropoff b,
.team-card-dropoff .team-tags span {
	color: #2d69a8;
}

.team-card-dropoff .team-role,
.team-card-dropoff .team-tags span {
	border-color: #b9d8f4;
	background: #edf7ff;
}

.team-card-dropoff::after {
	background: radial-gradient(circle, rgba(63, 150, 228, .14), rgba(63, 150, 228, 0));
}

.tour-grid,

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

.event-spotlight {
	position: relative;
	display: block;
	margin: 0 0 24px;
	border-radius: 34px;
	overflow: hidden;
	background: linear-gradient(145deg, #fffdf8 0%, #fff8ee 46%, #f4f9ff 100%);
	box-shadow: 0 18px 44px rgba(8, 26, 73, .08);
}

.event-spotlight-media {
	margin: 0;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #fff;
}

.event-spotlight-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 26, 73, .04) 0%, rgba(8, 26, 73, .08) 32%, rgba(8, 26, 73, .72) 100%);
}

.event-spotlight-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-spotlight-copy {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 28px;
	z-index: 1;
	display: grid;
	gap: 14px;
	align-content: end;
	max-width: 30rem;
	padding: 22px 24px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 24px;
	background: linear-gradient(160deg, rgba(11, 35, 85, .78), rgba(15, 60, 130, .58));
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 34px rgba(8, 26, 73, .18);
}

.event-spotlight-copy .section-kicker {
	width: fit-content;
	color: #d8e8ff;
	background: linear-gradient(130deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
	border-color: rgba(255, 255, 255, .2);
	box-shadow: none;
}

.event-spotlight-copy h3 {
	margin: 0;
	font-size: clamp(34px, 4vw, 48px);
	line-height: .96;
	color: #fff;
}

.event-spotlight-copy p {
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	color: #d8e4f8;
}

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

.event-grid>div {
	position: relative;
	overflow: hidden;
	grid-column: span 2;
	display: grid;
	align-content: start;
	gap: 12px;
	background: linear-gradient(160deg, #fff, #f8fbff);
}

.event-grid>div::after {
	content: '';
	position: absolute;
	width: 140px;
	height: 140px;
	left: -72px;
	bottom: -72px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(24, 185, 223, .22), rgba(24, 185, 223, 0));
	pointer-events: none;
}

.event-grid>div:nth-child(1) {
	grid-column: span 3;
	grid-row: span 2;
	background: linear-gradient(145deg, #0f3578, #1b5eb4);
	border-color: #1f5aa8;
	color: #fff;
	font-size: 16px;
	box-shadow: 0 18px 34px rgba(8, 26, 73, .22);
}

.event-grid>div:nth-child(1) p,
.event-grid>div:nth-child(1) span {
	color: #d8e9ff;
}

.event-grid>div:nth-child(1)::before {
	content: 'Featured';
	position: absolute;
	right: 18px;
	top: 18px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 900;
	color: #0f3a80;
	background: #fff6c9;
	border: 1px solid #ffe88f;
}

.event-grid>div:nth-child(2) {
	grid-column: span 3;
	background: linear-gradient(135deg, #fff1f7, #ffffff 58%, #eaf8ff);
	border-color: #f7d9e8;
}

.event-grid>div:nth-child(6) {
	grid-column: span 6;
	background: linear-gradient(135deg, #eff8ff, #ffffff 55%, #fff7e9);
}

.tour-grid small,
.event-grid span {
	display: inline-block;
	color: #5d7296;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.event-grid b {
	display: block;
	margin: 0;
	font-size: 28px;
	line-height: 1.02;
	color: #17315f;
}

.event-grid p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
}

.event-grid>div:nth-child(1) b {
	color: #fff;
}

.events-page .event-grid span {
	color: #3d5179;
}

.events-page .event-grid p {
	color: #44556b;
}

.plan-grid {
	margin: 24px 0;
	grid-template-columns: repeat(3, 1fr);
}

.plan-grid b {
	font-family: 'Outfit', sans-serif;
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}

.plan-grid span {
	display: block;
	background: #f8fbff;
	border: 1px solid #e5edf8;
	border-radius: 999px;
	padding: 9px 12px;
	margin: 8px 0;
}

.group-callout {
	margin-top: 18px;
	color: #5f7294;
	background: linear-gradient(180deg, #fff, #f7fbff);
}

.event-groups {
	position: relative;
	background:
		radial-gradient(circle at 10% 22%, rgba(255, 195, 41, .12), transparent 20%),
		radial-gradient(circle at 88% 18%, rgba(24, 185, 223, .1), transparent 22%),
		linear-gradient(180deg, #fffdfa 0%, #fff7ee 48%, #f6fbff 100%);
}

.event-groups-grid {
	gap: 34px;
	align-items: stretch;
}

.event-groups-copy {
	display: grid;
	align-content: center;
	gap: 18px;
}

.event-groups .section-kicker.light {
	width: fit-content;
	color: #355c95;
	background: linear-gradient(130deg, rgba(255, 255, 255, .9), rgba(245, 250, 255, .82));
	border-color: rgba(53, 92, 149, .12);
	box-shadow: 0 14px 28px rgba(8, 26, 73, .06);
}

.event-groups h2 {
	color: #17315f;
}

.event-groups p {
	color: #5d7394;
}

.event-groups-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.event-groups-points span {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(23, 49, 95, .1);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .05);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #45628d;
}

.event-groups .group-callout {
	margin-top: 0;
	padding: 28px;
	border-radius: 30px;
	border-color: #d9e6f7;
	background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 251, 255, .96));
	box-shadow: 0 18px 38px rgba(8, 26, 73, .07);
}

.event-groups .group-callout h3 {
	margin: 0 0 10px;
	font-size: 34px;
	color: #17315f;
}

.event-groups .group-callout ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 18px;
	margin: 0;
	padding-left: 20px;
	color: #536a8b;
}

.event-groups .group-callout li {
	line-height: 1.6;
}

.event-groups-contact {
	margin-top: 18px;
	padding: 18px 20px;
	border-radius: 22px;
	background: linear-gradient(145deg, #fff8e6, #fffdf7);
	border: 1px solid #f0d799;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.event-groups-contact strong {
	display: block;
	margin-bottom: 6px;
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	color: #8c6110;
}

.event-groups-contact p {
	margin: 0;
	color: #6c7d97;
}

.event-groups-contact a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(140, 97, 16, 0.45);
	text-underline-offset: 3px;
}

.event-groups-contact a:hover {
	text-decoration-color: #8c6110;
}

.deals .deal-wide+.deal-wide,
.deals .pass {
	margin-top: 14px;
}

.deal-wide code {
	display: inline-flex;
	margin: 6px 0 5px;
	border: 1px dashed #b8c8e6;
	border-radius: 10px;
	padding: 6px 10px;
	font-weight: 700;
	color: #2e4f86;
	background: #f7fbff;
}

.deal-wide form,
.pass form {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 12px;
}

input {
	min-height: 48px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid #c9d6ea;
	background: #fff;
	font: inherit;
	color: var(--ink);
}

input:focus,
button:focus,
a:focus {
	outline: none;
}

input:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
	box-shadow: 0 0 0 3px rgba(18, 153, 239, .25);
	border-radius: 10px;
}

.pass {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 22px;
	align-items: center;
}

.pass>img {
	width: min(280px, 32vw);
}

body {
	font-family: 'Outfit', sans-serif;
	font-size: 16px
}

h1,
h2,
h3,
h4,
h5,
h6,
.speech,
.hero-stats strong,
/* .hero blockquote,
.quote-grid blockquote, */
.feature-list b,
.mascot-card strong,
.mini-features b,
.steps b,
.price-card>strong,
.faq-grid summary,
.gift-card strong,
.who-grid b,
.visit-info b,
.footer h4,
.story-step b,
.addon-grid b,
.deal-grid b,
.why-grid b,
.rule-grid b,
.camera-grid b,
.team-grid b,
.tour-grid h3,
.event-grid b,
.subhead,
.group-callout h3,
.group-callout h4,
.addon-grid strong,
.deal-grid strong,
.rating strong,
.plan-grid b {
	font-family: 'Englebert', cursive;
}

.hero blockquote small,
.quote-grid small {
	font-family: 'Outfit', sans-serif;
}

@media(max-width:1100px) {

	.addon-grid,
	.deal-grid,
	.team-grid,
	.rules .rule-grid,
	.plan-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.event-grid>div,
	.event-grid>div:nth-child(1),
	.event-grid>div:nth-child(2),
	.event-grid>div:nth-child(6) {
		grid-column: auto;
		grid-row: auto;
	}

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

	.camera-grid,
	.tour-grid,
	.event-grid,
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}

	.event-groups .group-callout ul {
		grid-template-columns: 1fr;
	}

	.event-spotlight {
		border-radius: 30px;
	}

	.event-spotlight-copy {
		max-width: 27rem;
	}

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

@media(max-width:760px) {

	.addon-grid,
	.deal-grid,
	.why-grid,
	.rules .rule-grid,
	.camera-grid,
	.team-grid,
	.tour-grid,
	.plan-grid,
	.event-grid,
	.pass {
		grid-template-columns: 1fr;
	}

	.notice,
	.group-callout,
	.deal-wide,
	.team-grid>div,
	.tour-grid>div,
	.plan-grid>div,
	.event-grid>div {
		border-radius: 18px;
		padding: 18px;
	}

	.tour-grid>div,
	.event-grid>div {
		position: relative;
		overflow: hidden;
		background: linear-gradient(165deg, #fff, #f8fbff);
	}

	.event-spotlight {
		border-radius: 22px;
	}

	.event-spotlight-media {
		border-radius: 20px;
		aspect-ratio: 4 / 5;
	}

	.event-spotlight-copy {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		max-width: none;
		margin: -28px 16px 0;
		padding: 20px 18px;
		border-radius: 20px;
	}

	.event-spotlight-copy h3 {
		font-size: 34px;
	}

	.event-spotlight-copy p {
		font-size: 16px;
	}

	.event-groups-grid {
		gap: 22px;
	}

	.event-groups .group-callout {
		padding: 22px 20px;
		border-radius: 24px;
	}

	.event-groups .group-callout h3 {
		font-size: 28px;
	}

	.event-groups-points {
		gap: 8px;
	}

	.event-groups-points span {
		width: 100%;
		justify-content: center;
	}

	.tour-grid>div::after,
	.event-grid>div::after {
		content: '';
		position: absolute;
		width: 120px;
		height: 120px;
		right: -60px;
		bottom: -60px;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(18, 153, 239, .18), rgba(18, 153, 239, 0));
		pointer-events: none;
	}

	.tour-grid>div,
	.plan-grid>div,
	.event-grid>div {
		grid-column: auto;
	}

	.pricing th,
	.pricing td {
		padding: 12px;
	}

	.subhead {
		font-size: 25px;
	}

	input {
		width: 100%;
	}
}

@media (prefers-reduced-motion:reduce) {

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

/* Shared badge treatment for section labels */
.eyebrow,
.section-kicker {
	position: relative;
	isolation: isolate;
	gap: 10px;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(16, 43, 104, .14);
	background: linear-gradient(120deg, #ffffff 0%, #fff7e4 52%, #eef6ff 100%);
	box-shadow: 0 10px 24px rgba(8, 26, 73, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
	color: #3d5a8a;
}

.eyebrow span {
	display: inline-block;
	width: 13px;
	height: 13px;
	background: linear-gradient(150deg, var(--blue) 0%, var(--cyan) 100%);
	clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
	filter: drop-shadow(0 2px 6px rgba(8, 26, 73, .22));
	transform: translateY(-.5px);
	vertical-align: middle;
}

.eyebrow span {
	color: transparent;
	font-size: 0;
}

.section-kicker::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: linear-gradient(150deg, var(--blue) 0%, var(--cyan) 100%);
	clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
	filter: drop-shadow(0 2px 6px rgba(8, 26, 73, .22));
	transform: translateY(-.5px);
	flex: 0 0 auto;
}

.trust .section-kicker,
.dark-section .section-kicker.light {
	background: linear-gradient(130deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
	border-color: rgba(255, 255, 255, .22);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
	color: #d7e4ff;
}

.trust .section-kicker::before,
.dark-section .section-kicker.light::before {
	background: linear-gradient(150deg, #58c9ff 0%, #d6f5ff 100%);
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .28));
}

.hero-mascot .doodle {
	position: absolute;
	border-radius: 50%;
	opacity: .95;
	filter: drop-shadow(0 8px 20px rgba(8, 26, 73, .18));
	background-size: cover;
	background-repeat: no-repeat;
	color: transparent;
	font-size: 0;
}

.hero-mascot .doodle-a {
	width: 86px;
	height: 86px;
	top: 7%;
	left: 3%;
	background-image: url('assets/vectors/orb-orange.svg');
}

.hero-mascot .doodle-b {
	width: 72px;
	height: 72px;
	top: 18%;
	right: 6%;
	background-image: url('assets/vectors/orb-blue.svg');
}

.hero-mascot .doodle-c {
	width: 64px;
	height: 64px;
	bottom: 14%;
	right: 2%;
	background-image: url('assets/vectors/orb-orange.svg');
}

.zone-icon {
	position: relative;
	overflow: hidden;
	font-size: 0;
	color: transparent;
	background: transparent;
	border: 0;
	width: 62px;
	height: 62px;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: drop-shadow(0 6px 10px rgba(8, 26, 73, .16));
}

.orange .zone-icon {
	background-image: url('assets/vectors/zone-fortress.svg')
}

.blue .zone-icon {
	background-image: url('assets/vectors/zone-slides.svg')
}

.green .zone-icon {
	background-image: url('assets/vectors/zone-art.svg')
}

.purple .zone-icon {
	background-image: url('assets/vectors/zone-desk.svg')
}

.pink .zone-icon {
	background-image: url('assets/vectors/zone-sports.svg')
}

.cyan .zone-icon {
	background-image: url('assets/vectors/zone-toddler.svg')
}

.yellow .zone-icon {
	background-image: url('assets/vectors/zone-led.svg')
}

.navy .zone-icon {
	background-image: url('assets/vectors/zone-cafe.svg')
}

/* Subtle motion layer */
@keyframes rise-soft {
	from {
		opacity: 0;
		transform: translateY(8px)
	}

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

@keyframes drift-soft {

	0%,
	100% {
		transform: translateY(0)
	}

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

@keyframes mascot-hello {

	0%,
	14%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	20% {
		transform: translateY(-3px) rotate(2.4deg)
	}

	28% {
		transform: translateY(-4px) rotate(-1.8deg)
	}

	36% {
		transform: translateY(-3px) rotate(2.2deg)
	}

	44% {
		transform: translateY(-4px) rotate(-1.4deg)
	}

	52% {
		transform: translateY(-3px) rotate(1.8deg)
	}

	66% {
		transform: translateY(-5px) rotate(.6deg)
	}

	82% {
		transform: translateY(-1px) rotate(0deg)
	}
}

@keyframes bob-soft {

	0%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	50% {
		transform: translateY(-8px) rotate(2deg)
	}
}

@keyframes bob-soft-alt {

	0%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	50% {
		transform: translateY(-6px) rotate(-2deg)
	}
}

@keyframes wave-soft {

	0%,
	100% {
		transform: rotate(0deg)
	}

	25% {
		transform: rotate(-5deg)
	}

	75% {
		transform: rotate(5deg)
	}
}

@keyframes pulse-soft{
	0%,100%{transform:scale(1);opacity:.95}
	50%{transform:scale(1.06);opacity:1}
}

.hero-copy>* {
	animation: rise-soft .55s ease both;
}

.hero-copy>*:nth-child(2) {
	animation-delay: .05s
}

.hero-copy>*:nth-child(3) {
	animation-delay: .1s
}

.hero-copy>*:nth-child(4) {
	animation-delay: .14s
}

.hero-copy>*:nth-child(5) {
	animation-delay: .18s
}

.hero-mascot img {
	animation: mascot-hello 4.8s ease-in-out infinite;
	transform-origin: 52% 88%;
	will-change: transform;
}

.hero-mascot .doodle-a {
	animation: bob-soft 4s ease-in-out infinite;
}

.hero-mascot .doodle-b {
	animation: wave-soft 2.8s ease-in-out infinite;
	transform-origin: 50% 20%;
}

.hero-mascot .doodle-c {
	animation: bob-soft-alt 3.6s ease-in-out infinite;
}

.hero-orbit {
	animation: pulse-soft 3.5s ease-in-out infinite;
}

.mascot-card img {
	animation: bob-soft 4.8s ease-in-out infinite;
}

.talk-card {
	animation: rise-soft .7s ease both .16s;
}

.hero-stats div,
.pill-row span,
.feature-list>div,
.mini-features>div,
.visit-info>div,
.quote-grid blockquote {
	transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.hero-stats div:hover,
.pill-row span:hover,
.feature-list>div:hover,
.mini-features>div:hover,
.visit-info>div:hover,
.quote-grid blockquote:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(8, 26, 73, .10);
}

.quote-grid blockquote:hover,
.feature-list>div:hover,
.visit-info>div:hover {
	border-color: #bfd1ee;
}

.editorial-dropoff {
	background:
		radial-gradient(circle at 10% 18%, rgba(255, 195, 41, .08), transparent 18%),
		radial-gradient(circle at 88% 14%, rgba(18, 153, 239, .12), transparent 22%),
		linear-gradient(180deg, #081a49 0%, #0b225b 100%);
}

.editorial-dropoff::before {
	width: 520px;
	height: 520px;
	right: -180px;
	top: -180px;
	background: radial-gradient(circle, rgba(19, 70, 150, .92), rgba(8, 26, 73, 0) 68%);
}

.dropoff-stage {
	position: relative;
	grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
	gap: 72px;
	align-items: center;
	padding-bottom: 8px;
}

.dropoff-copy {
	max-width: 520px;
	position: relative;
	z-index: 1;
}

.editorial-dropoff h1,
.editorial-dropoff h2 {
	max-width: 7ch;
	margin-bottom: 18px;
	text-wrap: balance;
}

.editorial-dropoff .dropoff-copy>p {
	max-width: 42ch;
	font-size: 17px;
	line-height: 1.72;
	margin: 0;
	color: #d4deef;
}

.dropoff-callout {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 18px;
	align-items: start;
	max-width: 370px;
	margin-top: 34px;
	padding: 8px 0 4px;
}

.dropoff-callout span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #7cf0d1 0%, #70d0ff 100%);
	color: #0a255f;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
	min-height: 122px;
}

.dropoff-callout p {
	margin: 0;
	padding-top: 6px;
	font-size: 28px;
	line-height: 1.12;
	font-family: 'Englebert', cursive;
	color: #fff6dc;
	/* max-width: 14ch; */
}

.editorial-dropoff blockquote {
	margin: 34px 0 0;
	max-width: 392px;
	display: block;
	padding: 28px 24px 22px;
	border: 0;
	background: linear-gradient(180deg, #fffdf8 0%, #fff8eb 100%);
	box-shadow: 0 24px 42px rgba(0, 0, 0, .18);
	border-radius: 10px;
	font-size: 17px;
	color: #18335f;
	line-height: 1.45;
	position: relative;
	overflow: hidden;
	transform: rotate(-2deg);
}

.editorial-dropoff blockquote p {
	margin: 0;
	max-width: 24ch;
	font-family: 'Englebert', cursive;
	font-size: 28px;
	line-height: 1.12;
	color: #17315f;
}

/* .editorial-dropoff blockquote::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 22px;
	width: 86px;
	height: 22px;
	background: rgba(120, 208, 255, .26);
	border: 1px solid rgba(255, 255, 255, .42);
	box-shadow: 0 8px 16px rgba(8, 26, 73, .08);
	transform: rotate(-6deg);
	border-radius: 4px;
	z-index: 2;
	backdrop-filter: blur(2px);
	opacity: .95;
	clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
	pointer-events: none; */

/* } */

.editorial-dropoff blockquote::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 58px;
	background: linear-gradient(180deg, rgba(255, 244, 219, .1), #f7ecd7 90%);
	border-top: 1px solid rgba(24, 49, 95, .08);
	pointer-events: none;
}

.editorial-dropoff blockquote small {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	margin-top: 22px;
	padding-top: 14px;
	position: relative;
	z-index: 1;
	color: #6a7b98;
	font-size: 16px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.editorial-dropoff blockquote .dropoff-reviewer {
	font-family: 'Englebert', cursive;
	font-size: 18px;
	line-height: 1.02;
	color: #18335f;
}

.editorial-dropoff blockquote .dropoff-review-tag {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	color: #8b5e1f;
	font-size: 16px;
	font-weight: 700;
}

.dropoff-visual {
	position: relative;
	min-height: 520px;
	display: grid;
	place-items: center;
	padding: 10px 0;
	align-self: stretch;
}

.dropoff-visual::before,
.dropoff-visual::after {
	content: '';
	position: absolute;
	bottom: 82px;
	right: 26px;
	pointer-events: none;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
	clip-path: inset(0 0 0 50%);
	border-top-right-radius: 240px;
	border-top-left-radius: 240px;
	z-index: 0;
}

/* .dropoff-visual::before {
	width: 226px;
	height: 244px;
	background: linear-gradient(180deg, #ffc04d 0%, #ffb230 100%);
	opacity: .98;
}

.dropoff-visual::after {
	width: 182px;
	height: 198px;
	right: 40px;
	background: linear-gradient(180deg, #b378dd 0%, #9d66d6 100%);
	z-index: 1;
} */

.dropoff-mascot-card {
	width: min(100%, 620px);
	min-height: 500px;
	border-radius: 48px;
	background: linear-gradient(155deg, #f9f3e8 0%, #fffdfa 48%, #eef6ff 100%);
	border: 1px solid rgba(255, 255, 255, .20);
	box-shadow: 0 34px 70px rgba(0, 0, 0, .24);
	align-items: center;
	justify-content: center;
	padding: 36px 24px 0;
	isolation: isolate;
	z-index: 2;
}

.dropoff-mascot-card::before {
	width: 420px;
	height: 420px;
	top: 44px;
	background: radial-gradient(circle at 50% 50%, #dfeefe 0%, #cfe6ff 54%, #a6cef7 100%);
	left: 50%;
	transform: translateX(-50%);
	box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .55);
	opacity: 1;
	z-index: 0;
}

.dropoff-mascot-card img {
	width: min(82%, 440px);
	max-height: 440px;
	align-self: center;
	margin-top: 42px;
	filter: drop-shadow(0 24px 32px rgba(8, 26, 73, .18));
	z-index: 2;
}

.dropoff-mascot-card>div {
	left: 28px;
	top: 28px;
	max-width: 240px;
	border-radius: 24px;
	padding: 16px 18px;
	box-shadow: 0 18px 36px rgba(8, 26, 73, .14);
	background: rgba(255, 255, 255, .96);
	border: 1px solid rgba(16, 43, 104, .08);
	z-index: 3;
}

.dropoff-mini-features {
	margin-top: 18px;
	padding-top: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.dropoff-mini-features>div {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 178px;
	background: linear-gradient(165deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05));
	border-color: rgba(159, 199, 255, .20);
	padding: 24px 22px 22px;
	backdrop-filter: blur(8px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
}

.dropoff-feature-icon {
	position: relative;
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.72), 0 16px 24px rgba(0, 0, 0, 0.16);
	background: linear-gradient(180deg, #fff4ca, #ffc94b 58%, #dd8f00 100%);
}

.dropoff-feature-icon::before,
.dropoff-feature-icon::after {
	content: '';
	position: absolute;
	display: block;
}

.dropoff-feature-passcode .dropoff-feature-icon {
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 30%),
		linear-gradient(180deg, #fff4ca, #ffc94b 58%, #dd8f00 100%);
}

.dropoff-feature-passcode .dropoff-feature-icon::before {
	left: 22px;
	top: 18px;
	width: 28px;
	height: 18px;
	border: 5px solid #fffef8;
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	box-shadow: 0 2px 0 rgba(170, 106, 0, 0.1);
}

.dropoff-feature-passcode .dropoff-feature-icon::after {
	left: 19px;
	top: 34px;
	width: 34px;
	height: 24px;
	border-radius: 10px;
	background: linear-gradient(180deg, #ffffff, #e7eef8 100%);
	box-shadow: inset 0 -4px 8px rgba(121, 148, 184, 0.22);
}

.dropoff-feature-caregivers .dropoff-feature-icon {
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 30%),
		linear-gradient(180deg, #effde3, #95dd6d 54%, #47a43c 100%);
}

.dropoff-feature-caregivers .dropoff-feature-icon::before {
	left: 18px;
	top: 14px;
	width: 36px;
	height: 42px;
	background: linear-gradient(180deg, #ffffff, #e9fff1);
	clip-path: polygon(50% 0, 90% 14%, 90% 56%, 50% 100%, 10% 56%, 10% 14%);
	box-shadow: inset 0 -6px 10px rgba(84, 150, 96, 0.16);
}

.dropoff-feature-caregivers .dropoff-feature-icon::after {
	left: 29px;
	top: 29px;
	width: 14px;
	height: 8px;
	border-left: 4px solid #22904a;
	border-bottom: 4px solid #22904a;
	transform: rotate(-45deg);
}

.dropoff-feature-camera .dropoff-feature-icon {
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 30%),
		linear-gradient(180deg, #e3f6ff, #70d2ff 54%, #1f82d7 100%);
}

.dropoff-feature-camera .dropoff-feature-icon::before {
	left: 16px;
	top: 26px;
	width: 40px;
	height: 24px;
	border-radius: 10px;
	background: linear-gradient(180deg, #ffffff, #e8f4ff 100%);
	box-shadow: inset 0 -5px 8px rgba(95, 141, 193, 0.18), 0 -8px 0 -2px #ffffff;
}

.dropoff-feature-camera .dropoff-feature-icon::after {
	left: 28px;
	top: 31px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #7be0ff, #1d84d8 68%, #135396 100%);
	box-shadow: inset 0 0 0 4px #f7fbff;
}

.dropoff-mini-features>div::before {
	content: '';
	position: absolute;
	width: 122px;
	height: 122px;
	right: -46px;
	top: -46px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124, 240, 209, 0.1), rgba(124, 240, 209, 0));
	pointer-events: none;
}

.dropoff-mini-features b {
	display: block;
	font-size: 22px;
	line-height: 1.08;
	color: #fff7d0;
}

.dropoff-mini-features p {
	margin: 0;
	font-size: 18px;
	line-height: 1.58;
	color: #d7e6fb;
}

@media(max-width:1100px) {
	.dropoff-stage {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.dropoff-copy {
		max-width: none;
	}

	.dropoff-visual {
		min-height: 460px;
	}

	.dropoff-mascot-card {
		width: min(100%, 560px);
	}

	.dropoff-mini-features {
		grid-template-columns: 1fr;
	}

	.dropoff-mini-features>div {
		min-height: 0;
	}

}

@media(max-width:760px) {
	.dropoff-callout {
		grid-template-columns: 1fr;
		gap: 12px;
		max-width: none;
	}

	.dropoff-callout span {
		writing-mode: horizontal-tb;
		transform: none;
		min-height: 0;
		width: fit-content;
		padding: 10px 14px;
	}

	.dropoff-callout p {
		font-size: 24px;
		max-width: none;
	}

	.dropoff-visual {
		min-height: 360px;
	}

	.dropoff-visual::before {
		width: 160px;
		height: 174px;
		right: 8px;
		bottom: 56px;
	}

	.dropoff-visual::after {
		width: 128px;
		height: 142px;
		right: 20px;
		bottom: 56px;
	}

	.dropoff-mascot-card {
		min-height: 360px;
		padding: 24px 16px 0;
		border-radius: 32px;
	}

	.dropoff-mascot-card::before {
		width: 280px;
		height: 280px;
		top: 58px;
	}

	.dropoff-mascot-card img {
		width: min(84%, 280px);
		max-height: 300px;
		margin-top: 54px;
	}

	.dropoff-mascot-card>div {
		left: 16px;
		top: 16px;
		max-width: 190px;
		padding: 14px 16px;
	}

	.editorial-dropoff blockquote {
		font-size: 16px;
		max-width: 100%;
		padding: 24px 18px 20px;
		transform: rotate(-1deg);
	}

	.editorial-dropoff blockquote p {
		font-size: 24px;
	}

}

.page-cover {
	position: relative;
	overflow: hidden;
}

.page-cover-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
	gap: 30px;
	align-items: center;
}

.page-cover-copy {
	position: relative;
	z-index: 1;
}

.page-cover-mobile-image {
	display: none;
	width: 100%;
	height: auto;
	margin-top: 18px;
	border-radius: 26px;
	border: 1px solid rgba(16, 43, 104, .08);
	box-shadow: 0 18px 36px rgba(8, 26, 73, .08);
	object-fit: cover;
}

.page-cover-copy h1,
.page-cover-copy h2 {
	color: #17315f;
}

.page-cover-mascot {
	/* position: relative;
	min-height: 280px;
	margin: 0; */
	/* padding: 20px 18px 0; */
	/* display: grid;
	place-items: end center; */
	/* border-radius: 36px;
	border: 1px solid #d8e4f2;
	background: linear-gradient(155deg, #fff9ef 0%, #fffdfa 56%, #eef7ff 100%);
	box-shadow: 0 22px 44px rgba(8, 26, 73, .10); */
	overflow: hidden;
}

.page-cover-mascot::before {
	content: none;
}

.page-cover-mascot img {
	position: relative;
	z-index: 1;
	width: min(100%, 250px);
	float: right;
	/* max-height: 250px; */
	object-fit: contain;
	filter: drop-shadow(0 20px 28px rgba(8, 26, 73, .16));
}

.page-cover-help .page-cover-mascot::before {
	background: radial-gradient(circle at 50% 45%, #e3f2ff 0%, #b8dcff 58%, rgba(184, 220, 255, .18) 74%);
}

.page-cover-deals .page-cover-mascot::before {
	background: radial-gradient(circle at 50% 45%, #ebffd7 0%, #bfe788 58%, rgba(191, 231, 136, .18) 74%);
}

.page-cover-cafe {
	padding-top: 44px;
	padding-bottom: 44px;
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
		url('assets/cafe-bg.png') center center / cover no-repeat;
	border-radius: 0 0 42px 42px;
}

.page-cover-cafe .page-cover-grid {
	min-height: 430px;
	align-items: center;
}

.page-cover-cafe .page-cover-copy {
	max-width: 620px;
	padding: 18px 0;
	background: none;
	border-radius: 0;
}

.page-cover-cafe .page-cover-mascot {
	display: none;
}

.page-cover-cafe .section-intro {
	max-width: 36rem;
	color: #48607f;
	text-shadow: 0 2px 14px rgba(255, 255, 255, .36);
}

.page-cover-cafe .deal-grid > div {
	background: rgba(255, 255, 255, .84);
	border-color: rgba(23, 49, 95, .1);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .04);
}

.page-cover-celebrate .pill-row span {
	border-color: rgba(23, 49, 95, .18);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 10px 20px rgba(8, 26, 73, .06);
	color: #3f5a87;
}

.page-cover-celebrate {
	padding-top: 44px;
	padding-bottom: 44px;
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
		url('assets/parties-bg.png') center center / cover no-repeat;
	border-radius: 0 0 42px 42px;
}

.page-cover-celebrate .page-cover-grid {
	min-height: 430px;
	align-items: center;
}

.page-cover-celebrate .page-cover-copy {
	max-width: 620px;
	padding: 18px 0;
	background: none;
	border-radius: 0;
}

.page-cover-celebrate .page-cover-mascot {
	display: none;
}

.page-cover-celebrate .section-intro {
	max-width: 36rem;
	color: #48607f;
	text-shadow: 0 2px 14px rgba(255, 255, 255, .36);
}

.page-cover-welcome .pill-row {
	padding:  14px 0px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 22px;
	background: rgba(255, 255, 255, .05);
}

.page-cover-welcome {
	padding-top: 44px;
	padding-bottom: 44px;
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
		url('assets/about-bg.png') center center / cover no-repeat;
	border-radius: 0 0 42px 42px;
}

.page-cover-welcome .page-cover-grid {
	min-height: 430px;
	align-items: center;
}

.page-cover-welcome .page-cover-copy {
	max-width: 620px;
	padding: 18px 0;
	border-radius: 0;
	background: none;
}

.page-cover-welcome .page-cover-mascot {
	display: none;
}

.page-cover-welcome .section-intro {
	max-width: 36rem;
	color: #48607f;
	text-shadow: 0 2px 14px rgba(255, 255, 255, .36);
}

.page-cover-welcome .pill-row span {
	border-color: rgba(23, 49, 95, .12);
	background: rgba(255, 255, 255, .8);
	box-shadow: 0 12px 22px rgba(8, 26, 73, .04);
	color: #35507e;
}

.page-cover-help,
.page-cover-deals {
	padding-top: 44px;
	padding-bottom: 44px;
	border-radius: 0 0 42px 42px;
}

.page-cover-help .page-cover-grid,
.page-cover-deals .page-cover-grid {
	min-height: 430px;
	align-items: center;
}

.page-cover-help .page-cover-copy,
.page-cover-deals .page-cover-copy {
	max-width: 620px;
	padding: 18px 0;
	background: none;
	border-radius: 0;
}

.page-cover-help .page-cover-mascot,
.page-cover-deals .page-cover-mascot {
	display: none;
}

.page-cover-help .section-intro,
.page-cover-deals .section-intro {
	max-width: 36rem;
	color: #48607f;
	text-shadow: 0 2px 14px rgba(255, 255, 255, .36);
}

.page-cover-help {
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
		url('assets/pricing-bg.png') center center / cover no-repeat;
}

.page-cover-help .deal-grid > div {
	background: rgba(255, 255, 255, .84);
	border-color: rgba(23, 49, 95, .1);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .04);
}

.page-cover-help .pill-row span {
	border-color: rgba(23, 49, 95, .12);
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 12px 22px rgba(8, 26, 73, .04);
	color: #35507e;
}

.page-cover-deals {
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/fundraiser-bg.png') center center / cover no-repeat;
}

.page-cover-nova-pass {
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 26%, rgba(255, 253, 248, .56) 46%, rgba(255, 253, 248, .12) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/deals-bg.png') center center / cover no-repeat;
}

.page-cover-deals .deal-grid > div {
	background: rgba(255, 255, 255, .84);
	border-color: rgba(23, 49, 95, .1);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .04);
}

.gift.page-cover {
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .92) 24%, rgba(255, 253, 248, .58) 42%, rgba(255, 253, 248, .16) 58%, rgba(255, 253, 248, 0) 72%),
		url('assets/gift-card-bg.png') center center / cover no-repeat;
}

.gift.page-cover .page-cover-copy {
	max-width: 640px;
}

.gift.page-cover .section-intro {
	max-width: 34rem;
	color: #48607f;
	text-shadow: 0 2px 14px rgba(255, 255, 255, .38);
}

.section-mascot-accent {
	position: relative;
	width: min(100%, 172px);
	margin: -8px 0 18px auto;
	padding: 14px 16px 0;
	border-radius: 28px;
	border: 1px solid #d8e4f2;
	background: linear-gradient(155deg, #fff8ed 0%, #fffdfa 56%, #eef7ff 100%);
	box-shadow: 0 18px 34px rgba(8, 26, 73, .08);
	overflow: hidden;
}

.section-mascot-accent::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 16px;
	width: 112px;
	height: 112px;
	border-radius: 50%;
	transform: translateX(-50%);
	background: radial-gradient(circle at 50% 45%, #ffe8b7 0%, #ffd77d 58%, rgba(255, 215, 125, .16) 74%);
	box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .55);
}

.section-mascot-accent img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 120px);
	margin: 0 auto;
	filter: drop-shadow(0 16px 22px rgba(8, 26, 73, .14));
}

.section-mascot-accent-wide {
	width: min(100%, 194px);
	margin-top: -2px;
}

/* Section polish: Kids Say, Nova Cafe, Families Say */
.kids-say .section-head,
.family-say .section-head {
	align-items: flex-end;
	margin-bottom: 34px;
}

.kids-say .section-head>p,
.family-say .section-head>p {
	max-width: 44ch;
}

.kids-carousel-shell {
	position: relative;
}

.kids-carousel-shell::before,
.kids-carousel-shell::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 14px;
	width: 56px;
	z-index: 3;
	pointer-events: none;
}

.kids-carousel-shell::before {
	left: 0;
	background: linear-gradient(90deg, var(--cream), rgba(255, 250, 240, 0));
}

.kids-carousel-shell::after {
	right: 0;
	background: linear-gradient(270deg, var(--cream), rgba(255, 250, 240, 0));
}

.quote-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
	padding: 28px;
	border-radius: 24px;
	border: 1px solid #d9e6f4;
	background: linear-gradient(180deg, #fff, #f8fbff);
}

.quote-card p {
	margin: 0;
	line-height: 1.48;
	color: #2b3f66;
}

.quote-card small {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: auto;
	font-size: 16x;
	font-weight: 800;
	color: #4f6691;
}

.quote-card small span {
	font-size: 14px;
	font-weight: 700;
	color: #7c8fad;
	letter-spacing: .02em;
}

.kids-say .quote-grid {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 4px 6px 14px;
	scroll-snap-type: x mandatory;
	scroll-padding-left: 6px;
	scrollbar-width: thin;
	scrollbar-color: #b9cde9 transparent;
}

.kids-say .quote-grid::-webkit-scrollbar {
	height: 10px;
}

.kids-say .quote-grid::-webkit-scrollbar-track {
	background: transparent;
}

.kids-say .quote-grid::-webkit-scrollbar-thumb {
	background: #c9d8ee;
	border-radius: 999px;
}

.kids-carousel-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	margin-top: 10px;
}

.kids-carousel-hint {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #6d83a7;
}

.kids-carousel-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.kids-carousel-btn,
.kids-carousel-dot {
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.kids-carousel-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #d3dfef;
	box-shadow: 0 8px 18px rgba(8, 26, 73, .08);
	font-size: 18px;
	font-weight: 900;
	color: #24497f;
}

.kids-carousel-btn:hover {
	transform: translateY(-1px);
	background: #f5faff;
}

.kids-carousel-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.kids-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #c9d8ee;
	opacity: .8;
}

.kids-carousel-dot.is-active {
	width: 28px;
	background: #1299ef;
	opacity: 1;
}

.kids-say .quote-card {
	position: relative;
	flex: 0 0 calc((100% - 32px) / 3);
	min-height: 250px;
	padding-top: 40px;
	background: linear-gradient(165deg, #fff, #f7fbff 52%, #fff8ed);
	scroll-snap-align: start;
}

.cafe-layout {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 24px;
	align-items: stretch;
}

.cafe-visual-panel {
	margin: 0;
	height: 100%;
	display: flex;
}

.cafe-mascot-card {
	width: 100%;
	height: 100%;
	min-height: 540px;
	background: linear-gradient(180deg, #fff7ea, #fefeff 55%, #eef8ff);
	border: 1px solid #d8e4f2;
	box-shadow: 0 18px 40px rgba(8, 26, 73, .1);
}

.cafe-mascot-card::before {
	background: radial-gradient(circle at 50% 45%, #ffe5a8, #ffd36e 55%, rgba(255, 211, 110, .2) 70%);
	top: 48px;
}

.cafe-mascot-card img {
	width: 84%;
	filter: drop-shadow(0 18px 28px rgba(8, 26, 73, .14));
}

.cafe-upgrade .cafe-copy {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 240px;
	gap: 18px;
	padding: 30px;
	border-radius: 28px;
	border: 1px solid #d8e4f2;
	background: linear-gradient(150deg, #fffdf7, #f5faff 58%, #eef7ff);
	box-shadow: 0 18px 40px rgba(8, 26, 73, .1);
	overflow: hidden;
}

.cafe-copy-main {
	position: relative;
	z-index: 2;
}

.cafe-upgrade .cafe-copy::after {
	content: '';
	position: absolute;
	right: -40px;
	bottom: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 153, 239, .16), rgba(18, 153, 239, 0) 70%);
	pointer-events: none;
}

.cafe-upgrade .cafe-copy p {
	max-width: 45ch;
}

.cafe-highlight-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 20px;
	max-width: 620px;
}

.cafe-highlight-strip>div {
	padding: 16px 18px;
	border-radius: 20px;
	border: 1px solid #d7e4f3;
	background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(244, 250, 255, .92));
	box-shadow: 0 12px 24px rgba(8, 26, 73, .06);
}

.cafe-highlight-strip strong {
	display: block;
	margin-bottom: 8px;
	font-family: 'Englebert', cursive;
	font-size: 18px;
	color: #17315f;
}

.cafe-highlight-strip p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #4f6691;
}

.cafe-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	max-width: none;
}

.cafe-points span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid #d3dfef;
	background: #fff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #4f6691;
}

.cafe-mascot-inline {
	position: relative;
	align-self: end;
	margin: 0;
	max-width: 240px;
	z-index: 2;
}

.cafe-mascot-inline img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(8, 26, 73, .18));
	animation: drift-soft 4.4s ease-in-out infinite;
}


.cafe-feature-stage {
	display: grid;
	gap: 14px;
	height: 100%;
	align-content: start;
}

.cafe-upgrade .feature-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-content: start;
}

.cafe-feature-card {
	position: relative;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 22px 22px 22px 20px;
	min-height: 132px;
	border-radius: 24px;
	background: linear-gradient(160deg, #fff, #f7fbff 72%, #fff5e8);
	border: 1px solid #d6e3f2;
	box-shadow: 0 16px 28px rgba(8, 26, 73, .08);
}

.cafe-feature-card b {
	display: block;
	margin-bottom: 6px;
	font-family: 'Englebert', cursive;
	font-size: 22px;
	line-height: 1.05;
	color: #17315f;
}

.cafe-feature-card p {
	margin: 0;
	color: #56709a;
	line-height: 1.55;
}

.cafe-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: 22px;
	background: linear-gradient(180deg, #fff7e8, #ffe5b4);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), 0 14px 18px rgba(245, 148, 44, .22);
	overflow: hidden;
}

.cafe-icon::before {
	content: '';
	position: absolute;
	inset: 10px;
	border-radius: 18px;
	background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 36%), linear-gradient(180deg, #ffe8b0, #ffbf4f);
	box-shadow: inset 0 -6px 10px rgba(214, 130, 25, .18);
}

.cafe-icon .icon-shape,
.cafe-icon .icon-shape::before,
.cafe-icon .icon-shape::after {
	position: absolute;
	content: '';
	display: block;
}

.cafe-icon .icon-shape {
	z-index: 2;
}

.cafe-icon-drinks .icon-shape {
	width: 26px;
	height: 20px;
	border-radius: 0 0 10px 10px;
	background: linear-gradient(180deg, #6d4f34, #3d2514);
	left: 21px;
	top: 27px;
	box-shadow: 0 6px 0 #f5f7fb;
}

.cafe-icon-drinks .icon-shape::before {
	width: 10px;
	height: 10px;
	border: 4px solid #6d4f34;
	border-left: 0;
	border-radius: 0 8px 8px 0;
	right: -10px;
	top: 2px;
}

.cafe-icon-drinks .icon-shape::after {
	width: 18px;
	height: 6px;
	left: 4px;
	top: -9px;
	border-radius: 999px;
	background: #fff7ec;
	box-shadow: 0 -7px 0 0 rgba(255, 247, 236, .85), 8px -11px 0 -1px rgba(255, 247, 236, .75);
}

.cafe-icon-meals {
	background: linear-gradient(180deg, #eef9ff, #bfe4ff);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), 0 14px 18px rgba(24, 138, 212, .2);
}

.cafe-icon-meals::before {
	background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 36%), linear-gradient(180deg, #d8efff, #88ceff);
	box-shadow: inset 0 -6px 10px rgba(31, 127, 186, .15);
}

.cafe-icon-meals .icon-shape {
	width: 34px;
	height: 12px;
	left: 17px;
	top: 35px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffffff, #dbeaf7);
	box-shadow: 0 7px 0 rgba(102, 151, 194, .18);
}

.cafe-icon-meals .icon-shape::before {
	width: 20px;
	height: 12px;
	left: 7px;
	top: -13px;
	border-radius: 12px 12px 8px 8px;
	background: linear-gradient(180deg, #ff9b62, #f16a2d);
	box-shadow: -11px 1px 0 -3px #8ccf5a, 11px 2px 0 -4px #ffd86a;
}

.cafe-icon-meals .icon-shape::after {
	width: 6px;
	height: 22px;
	right: -9px;
	top: -16px;
	border-radius: 999px;
	background: linear-gradient(180deg, #a6bdda, #6988af);
	box-shadow: -34px 0 0 #6988af;
}

.cafe-icon-safe {
	background: linear-gradient(180deg, #eefbe9, #bde99c);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, .9), 0 14px 18px rgba(88, 168, 54, .22);
}

.cafe-icon-safe::before {
	background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 36%), linear-gradient(180deg, #ddf5cc, #99da65);
	box-shadow: inset 0 -6px 10px rgba(79, 146, 42, .16);
}

.cafe-icon-safe .icon-shape {
	width: 28px;
	height: 32px;
	left: 20px;
	top: 18px;
	border-radius: 14px 14px 18px 18px;
	background: linear-gradient(180deg, #ffffff, #dff6f7);
	clip-path: polygon(50% 0, 88% 16%, 88% 58%, 50% 100%, 12% 58%, 12% 16%);
	box-shadow: 0 7px 0 rgba(95, 153, 104, .14);
}

.cafe-icon-safe .icon-shape::before {
	width: 14px;
	height: 7px;
	left: 7px;
	top: 13px;
	border-left: 4px solid #1e9b53;
	border-bottom: 4px solid #1e9b53;
	transform: rotate(-45deg);
}

.cafe-icon-safe .icon-shape::after {
	width: 18px;
	height: 18px;
	left: 5px;
	top: 7px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(30, 155, 83, .18), rgba(30, 155, 83, 0) 72%);
	z-index: -1;
}

.cafe-bottom-note {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	border-radius: 22px;
	border: 1px solid #d8e4f3;
	background: linear-gradient(180deg, #fff, #f6fbff);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .06);
}

.cafe-bottom-note strong {
	font-family: 'Englebert', cursive;
	font-size: 20px;
	color: #17315f;
}

.cafe-bottom-note span {
	max-width: 34ch;
	font-size: 14px;
	line-height: 1.45;
	color: #56709a;
}

.family-say .quote-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.family-say .quote-card {
	border-color: #d8e5f4;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
	min-height: 260px;
}

.family-say .stars {
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	letter-spacing: .16em;
	color: #ffcf47;
	font-weight: 900;
	margin: 2px 0 8px;
	text-shadow: 0 1px 0 #fff2b8, 0 2px 0 #f6ae18, 0 3px 0 #dc8e00, 0 8px 14px rgba(176, 109, 0, .18);
	background: linear-gradient(180deg, #fff6b6 0%, #ffd75a 32%, #ffb81f 65%, #e09100 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 4px 8px rgba(194, 125, 0, .18));
}

@media(max-width:1100px) {
	.family-say .quote-grid {
		grid-template-columns: 1fr 1fr;
	}

	.page-cover-grid {
		grid-template-columns: 1fr;
	}

	.page-cover-welcome {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/about-bg.png') 68% center / cover no-repeat;
	}

	.page-cover-celebrate {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/parties-bg.png') 68% center / cover no-repeat;
	}

	.page-cover-help {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/pricing-bg.png') 68% center / cover no-repeat;
	}

	.page-cover-deals {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/deals-bg.png') 68% center / cover no-repeat;
	}

	.page-cover-nova-pass {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/deals-bg.png') 68% center / cover no-repeat;
	}

	.gift.page-cover {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 28%, rgba(255, 253, 248, .62) 46%, rgba(255, 253, 248, .2) 62%, rgba(255, 253, 248, 0) 74%),
			url('assets/gift-card-bg.png') 68% center / cover no-repeat;
	}

	.page-cover-welcome .page-cover-grid {
		min-height: 520px;
	}

	.page-cover-celebrate .page-cover-grid {
		min-height: 520px;
	}

	.page-cover-help .page-cover-grid,
	.page-cover-deals .page-cover-grid {
		min-height: 520px;
	}

	.page-cover-mascot {
		max-width: 320px;
		margin: 0 auto;
	}

	.kids-say .quote-card {
		flex-basis: calc((100% - 16px) / 2);
	}

	.cafe-layout {
		grid-template-columns: 1fr;
	}

	.cafe-upgrade .cafe-copy {
		grid-template-columns: minmax(0, 1fr) 200px;
	}

	.cafe-mascot-card {
		min-height: 420px;
	}
}

@media(max-width:760px) {

	.kids-say .section-head,
	.family-say .section-head {
		display: block;
	}

	.page-cover-mascot {
		min-height: 236px;
		padding-top: 14px;
		border-radius: 30px;
	}

	.page-cover-welcome {
		padding-top: 30px;
		padding-bottom: 28px;
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/about-bg.png') 72% center / cover no-repeat;
		border-radius: 0 0 30px 30px;
	}

	.page-cover-celebrate {
		padding-top: 30px;
		padding-bottom: 28px;
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/parties-bg.png') 72% center / cover no-repeat;
		border-radius: 0 0 30px 30px;
	}

	.page-cover-help,
	.page-cover-deals {
		padding-top: 30px;
		padding-bottom: 28px;
		border-radius: 0 0 30px 30px;
	}

	.page-cover-help {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/pricing-bg.png') 72% center / cover no-repeat;
	}

	.page-cover-deals {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/deals-bg.png') 72% center / cover no-repeat;
	}

	.page-cover-nova-pass {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/deals-bg.png') 72% center / cover no-repeat;
	}

	.gift.page-cover {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .9) 30%, rgba(255, 253, 248, .58) 48%, rgba(255, 253, 248, .12) 64%, rgba(255, 253, 248, 0) 78%),
			url('assets/gift-card-bg.png') 74% center / cover no-repeat;
	}

	.page-cover-welcome .page-cover-grid {
		min-height: 440px;
	}

	.page-cover-celebrate .page-cover-grid {
		min-height: 440px;
	}

	.page-cover-help .page-cover-grid,
	.page-cover-deals .page-cover-grid {
		min-height: 440px;
	}

	.page-cover-welcome .page-cover-copy {
		padding: 8px 0 0;
	}

	.page-cover-celebrate .page-cover-copy {
		padding: 8px 0 0;
	}

	.page-cover-help .page-cover-copy,
	.page-cover-deals .page-cover-copy {
		padding: 8px 0 0;
	}

	.page-cover-mascot::before {
		width: 180px;
		height: 180px;
	}

	.page-cover-mascot img {
		width: min(100%, 210px);
		max-height: 210px;
	}

	.section-mascot-accent,
	.section-mascot-accent-wide {
		margin: 12px auto 18px;
	}

	.kids-say .section-head>p,
	.family-say .section-head>p {
		margin-top: 14px;
		max-width: none;
	}

	.kids-say .quote-grid,
	.family-say .quote-grid,
	.cafe-upgrade .feature-list {
		grid-template-columns: 1fr;
	}

	.cafe-highlight-strip,
	.cafe-bottom-note {
		grid-template-columns: 1fr;
		display: grid;
	}

	.kids-carousel-shell::before,
	.kids-carousel-shell::after {
		width: 34px;
	}

	.kids-carousel-meta {
		display: block;
	}

	.kids-carousel-controls {
		margin-top: 10px;
		justify-content: space-between;
	}

	.kids-say .quote-grid {
		padding-bottom: 10px;
	}

	.kids-say .quote-card,
	.kids-say .quote-card {
		flex-basis: calc(100vw - 64px);
		max-width: calc(100vw - 64px);
		min-height: 0;
	}

	.cafe-upgrade .cafe-copy {
		grid-template-columns: 1fr;
		padding: 24px 18px 18px;
	}

	.cafe-mascot-card {
		min-height: 320px;
	}

	.cafe-feature-card {
		grid-template-columns: 68px minmax(0, 1fr);
		padding: 18px;
	}

	/* Typography floor: keep readable UI text at 16px or larger */
	.nav a,
	.btn,
	.eyebrow,
	.section-kicker,
	.hero-stats span,
	.hero blockquote small,
	.talk-card span,
	.pill-row span,
	.zone-card small,
	.zone-card p,
	.quote-grid small,
	.feature-list p,
	.mascot-card span,
	.mini-features p,
	.steps p,
	.price-card .tag,
	.price-card > small,
	.price-card ul,
	.faq-grid p,
	.who-grid p,
	.visit-info b,
	.visit-info p,
	.footer p,
	.footer a,
	.footer-bottom,
	.journey-card small,
	.journey-card p,
	.journey-card a,
	.explore-hero .section-head > p,
	.explore-metrics span,
	.story-step p,
	.addon-grid p,
	.deal-grid span,
	.why-grid p,
	.rule-grid p,
	.camera-grid span,
	.team-grid span,
	.team-grid p,
	.pricing th,
	.pricing td,
	.tour-grid small,
	.event-grid span,
	.event-grid p,
	.plan-grid span,
	.dropoff-callout span,
	.editorial-dropoff blockquote small,
	.quote-card small,
	.quote-card small span,
	.kids-carousel-hint,
	.cafe-highlight-strip p,
	.cafe-points span,
	.cafe-bottom-note span,
	.family-say .stars,
	.gift-card small,
	.rating span,
	.rating small {
		font-size: 16px !important;
	}
	}


.coming-page-main {
	padding-top: var(--header-height);
}

.coming-soon-cover .page-cover-copy {
	max-width: 520px;
	padding: 22px 0;
}

.coming-soon-cover .section-intro {
	max-width: 28rem;
}

.coming-soon-cover .actions {
	margin-top: 24px;
}

.coming-soon-cover .btn-primary {
	min-height: 50px;
	padding: 0 24px;
}

.coming-page {
	min-height: calc(100vh - var(--header-height));
	padding: 48px 0 72px;
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 192, 64, .18), transparent 18%),
		radial-gradient(circle at 86% 16%, rgba(18, 153, 239, .14), transparent 18%),
		linear-gradient(180deg, #fffdf7 0%, #fff6ea 52%, #f4f9ff 100%);
}

.coming-page-stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
	gap: 34px;
	align-items: center;
	padding: 42px;
	border: 1px solid rgba(18, 43, 104, .08);
	border-radius: 42px;
	background:
		radial-gradient(circle at right top, rgba(255, 214, 104, .22), transparent 24%),
		linear-gradient(140deg, rgba(255, 255, 255, .98), rgba(248, 251, 255, .96));
	box-shadow: 0 28px 80px rgba(8, 26, 73, .08);
	overflow: hidden;
}

.coming-page-stage::before,
.coming-page-stage::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(2px);
}

.coming-page-stage::before {
	width: 260px;
	height: 260px;
	left: -120px;
	bottom: -120px;
	background: rgba(24, 185, 223, .12);
}

.coming-page-stage::after {
	width: 240px;
	height: 240px;
	right: -90px;
	top: -90px;
	background: rgba(255, 157, 24, .15);
}

.coming-page-copy {
	position: relative;
	z-index: 1;
	max-width: 620px;
}

.coming-page-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(18, 43, 104, .08);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .05);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #163d86;
}

.coming-page-tag::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(180deg, #ffd35c, #ff9d18);
	box-shadow: 0 0 0 6px rgba(255, 195, 41, .16);
}

.coming-page-copy h1 {
	margin: 18px 0 18px;
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: clamp(58px, 6.8vw, 96px);
	line-height: .9;
	letter-spacing: -.06em;
	text-transform: uppercase;
	color: #0f2d68;
}

.coming-page-copy h1 span {
	display: inline;
	background: linear-gradient(180deg, #ffcf5e 0%, #ff9b0f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.coming-page-copy p {
	max-width: 34rem;
	margin: 0;
	font-size: 19px;
	line-height: 1.72;
	color: #526887;
}

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

.coming-page-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.coming-page-pills span {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(18, 43, 104, .06);
	border: 1px solid rgba(18, 43, 104, .08);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #35507e;
}

.coming-page-notes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.coming-page-notes article {
	padding: 18px 18px 16px;
	border-radius: 24px;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(18, 43, 104, .08);
	box-shadow: 0 16px 26px rgba(8, 26, 73, .05);
}

.coming-page-notes strong {
	display: block;
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: 26px;
	line-height: .95;
	letter-spacing: -.04em;
	color: #12306f;
}

.coming-page-notes p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.55;
	color: #5f7493;
}

.coming-page-visual {
	position: relative;
	min-height: 620px;
	border-radius: 34px;
	background:
		radial-gradient(circle at 50% 18%, rgba(255, 215, 110, .34), rgba(255, 215, 110, 0) 34%),
		linear-gradient(180deg, #12306f 0%, #173b84 54%, #102655 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 28px 60px rgba(8, 26, 73, .18);
	overflow: hidden;
	padding: 28px;
}

.coming-page-status {
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 3;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(10px);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff7dc;
}

.coming-page-orbit {
	position: absolute;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0 18px 30px rgba(6, 15, 38, .18);
}

.coming-page-orbit strong,
.coming-page-orbit span {
	display: block;
	line-height: 1;
	color: #0e285e;
}

.coming-page-orbit strong {
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: 26px;
	letter-spacing: -.03em;
}

.coming-page-orbit span {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.coming-page-orbit-blue {
	top: 70px;
	left: 30px;
	background: linear-gradient(180deg, #e9f6ff, #bfe4ff 100%);
	transform: rotate(-10deg);
}

.coming-page-orbit-gold {
	top: 160px;
	right: 38px;
	background: linear-gradient(180deg, #fff0be, #ffd56c 100%);
	transform: rotate(12deg);
}

.coming-page-card {
	position: absolute;
	left: 34px;
	right: 34px;
	top: 150px;
	z-index: 2;
	padding: 26px 26px 24px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 247, 228, .94));
	border: 1px solid rgba(255, 255, 255, .36);
	box-shadow: 0 24px 44px rgba(5, 14, 38, .2);
}

.coming-page-card-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.coming-page-card-top img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.coming-page-card-top span {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #687d9f;
}

.coming-page-card strong {
	display: block;
	font-family: 'Elms Sans', 'Outfit', sans-serif;
	font-size: 42px;
	line-height: .94;
	letter-spacing: -.05em;
	color: #102b68;
}

.coming-page-card p {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.62;
	color: #536886;
}

.coming-page-mini-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.coming-page-mini-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(16, 43, 104, .08);
	font-size: 14px;
	font-weight: 800;
	color: #173b84;
	transition: .25s;
}

.coming-page-mini-actions a:hover {
	transform: translateY(-2px);
	background: rgba(16, 43, 104, .12);
}

.coming-page-mascot {
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: min(88%, 480px);
	margin: 0;
	z-index: 1;
}

.coming-page-mascot img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 28px 36px rgba(4, 10, 31, .24));
}

.waitlist-page {
	background:
		radial-gradient(circle at 10% 18%, rgba(18, 153, 239, .14), transparent 18%),
		radial-gradient(circle at 88% 20%, rgba(255, 157, 24, .14), transparent 18%),
		radial-gradient(circle at 80% 86%, rgba(24, 185, 223, .1), transparent 20%),
		linear-gradient(180deg, #fffdf7 0%, #fff5df 42%, #eef7ff 100%);
}

.waitlist-stage {
	grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
	align-items: center;
}

.waitlist-copy .coming-page-tag {
	background: linear-gradient(120deg, #ffffff 0%, #fff7e4 52%, #eef6ff 100%);
	border-color: rgba(16, 43, 104, .12);
	box-shadow: 0 12px 24px rgba(8, 26, 73, .06);
	color: #35507e;
}

.waitlist-copy h1 {
	max-width: 12ch;
	font-family: var(--heading);
	font-size: clamp(58px, 6.4vw, 84px);
	line-height: .96;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink);
}

.waitlist-copy h1 span {
	background: linear-gradient(180deg, #ffcf5e 0%, var(--orange) 58%, #e88900 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.waitlist-copy p {
	max-width: 35rem;
	color: #48607f;
}

.waitlist-notes {
	margin-top: 30px;
}

.waitlist-notes article {
	padding: 22px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 10px 26px rgba(8, 26, 73, .04);
}

.waitlist-notes strong {
	display: block;
	font-family: var(--heading);
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0;
	color: var(--ink2);
}

.waitlist-notes p {
	margin-top: 12px;
	color: #5f7294;
}

.waitlist-card {
	position: relative;
	border-radius: 34px;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #fff9ee 100%);
	box-shadow: 0 32px 72px rgba(8, 26, 73, .14);
	border: 1px solid rgba(16, 43, 104, .08);
	align-self: stretch;
}

.waitlist-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #f8b700;
}

.waitlist-form-shell {
	padding: 28px 28px 30px;
	color: var(--ink);
	background:
		radial-gradient(circle at 100% 0, rgba(255, 210, 80, .16), transparent 18%),
		radial-gradient(circle at 0 100%, rgba(18, 153, 239, .12), transparent 18%),
		linear-gradient(180deg, #fffdf8 0%, #eef6ff 100%);
}

.waitlist-form-eyebrow {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #56709e;
}

.waitlist-form-shell h2 {
	margin: 10px 0 12px;
	font-family: var(--heading);
	font-size: clamp(34px, 4vw, 46px);
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink);
}

.waitlist-form-shell>p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #5a6f90;
}

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

.fun-list-field {
	display: grid;
	gap: 8px;
}

.fun-list-field label {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #43608d;
}

.fun-list-field input {
	width: 100%;
	min-height: 56px;
	padding: 0 18px;
	border: 2px solid #d8e4f3;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(8, 26, 73, .06);
	color: #102b68;
}

.fun-list-field input:focus {
	outline: none;
	border-color: rgba(18, 153, 239, .6);
	box-shadow: 0 0 0 4px rgba(24, 185, 223, .12), 0 12px 24px rgba(8, 26, 73, .08);
}

.fun-list-consent {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.6;
	color: #5b7193;
}

.fun-list-consent input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex: 0 0 20px;
	accent-color: var(--yellow);
	box-shadow: none;
}

.fun-list-submit {
	min-width: 228px;
	background: linear-gradient(180deg, #ffd24e 0%, #ffbc1f 100%);
	color: #102b68;
	box-shadow: 0 18px 30px rgba(255, 181, 34, .22);
}

.fun-list-form-note {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #6980a1;
}

@media(max-width:1100px) {
	.coming-page-stage {
		grid-template-columns: 1fr;
		padding: 30px;
	}

	.coming-page-copy {
		max-width: none;
	}

	.coming-page-visual {
		min-height: 580px;
	}

	.coming-page-card {
		left: 28px;
		right: 28px;
	}

	.waitlist-stage {
		grid-template-columns: 1fr;
	}
}

@media(max-width:760px) {
	.coming-page-main {
		padding-top: var(--header-height-mobile);
	}

	.coming-soon-cover .page-cover-copy {
		padding: 10px 0 0;
	}

	.coming-soon-cover .section-intro {
		max-width: 24rem;
	}

	.coming-page {
		min-height: calc(100vh - var(--header-height-mobile));
		padding: 28px 0 44px;
	}

	.coming-page-stage {
		padding: 20px;
		border-radius: 28px;
		gap: 20px;
	}

	.coming-page-copy h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.coming-page-copy p {
		font-size: 16px;
	}

	.coming-page-notes {
		grid-template-columns: 1fr;
	}

	.coming-page-notes strong {
		font-size: 24px;
	}

	.coming-page-visual {
		min-height: 500px;
		padding: 18px;
		border-radius: 26px;
	}

	.coming-page-status {
		top: 16px;
		right: 16px;
		font-size: 11px;
	}

	.coming-page-orbit {
		width: 88px;
		height: 88px;
	}

	.coming-page-orbit strong {
		font-size: 20px;
	}

	.coming-page-orbit span {
		font-size: 10px;
	}

	.coming-page-orbit-blue {
		top: 72px;
		left: 16px;
	}

	.coming-page-orbit-gold {
		top: 132px;
		right: 18px;
	}

	.coming-page-card {
		left: 18px;
		right: 18px;
		top: 138px;
		padding: 20px;
		border-radius: 22px;
	}

	.coming-page-card strong {
		font-size: 32px;
	}

	.coming-page-card p {
		font-size: 16px;
	}

	.waitlist-card {
		border-radius: 28px;
	}

	.waitlist-form-shell {
		padding: 22px 18px 22px;
	}

	.waitlist-form-shell h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.waitlist-form-shell>p {
		font-size: 16px;
	}

	.fun-list-field input {
		min-height: 54px;
		border-radius: 16px;
	}

	.fun-list-submit {
		width: 100%;
		min-width: 0;
	}

	.coming-page-mascot {
		width: min(92%, 340px);
		bottom: -2px;
	}
	.cafe-feature-card b {
		font-size: 20px;
	}

	.cafe-bottom-note {
		gap: 8px;
	}

	.cafe-mascot-inline {
		position: static;
		max-width: 190px;
		margin: 12px auto 0;
	}
}

.why-grid b{
	font-size: 22px;
}

.cafe-page .section-head > p,
.cafe-page .section-intro,
.cafe-page .nut-free-banner p,
.cafe-page .cafe-hl-card p,
.cafe-page .cafe-party-note p,
.cafe-page .menu-item-desc,
.cafe-page .menu-category-head small,
.cafe-page .menu-divider span {
	color: #607592;
}

.cafe-page .cafe-menu-grid {
	max-width: 960px;
	margin: 0 auto;
}

.cafe-page .menu-category {
	position: relative;
	overflow: hidden;
	margin-bottom: 24px;
	padding: 28px;
	border-radius: 30px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f8fbff 100%);
	box-shadow: 0 18px 40px rgba(8, 26, 73, 0.06);
}

.cafe-page .menu-category::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.cafe-page .menu-category.is-gold::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.cafe-page .menu-category.is-green::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.cafe-page .menu-category.is-pink::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.cafe-page .menu-category-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid #dfe8f6;
	position: relative;
	z-index: 1;
}

.cafe-page .menu-category-icon,
.cafe-page .nf-icon,
.cafe-page .hl-icon,
.cafe-page .cp-icon {
	display: grid;
	place-items: center;
	background: transparent;
	box-shadow: none;
}

.cafe-page .menu-category-icon {
	width: 76px;
	height: 76px;
	border-radius: 0;
	flex-shrink: 0;
}

.cafe-page .menu-category-icon img,
.cafe-page .nf-icon img,
.cafe-page .hl-icon img,
.cafe-page .cp-icon img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(8, 26, 73, 0.16));
}

.cafe-page .menu-category-head h3 {
	font-family: var(--heading);
	font-size: 28px;
	font-weight: 800;
	color: #223f6f;
	margin: 0;
}

.cafe-page .menu-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(8, 26, 73, .06);
	position: relative;
	z-index: 1;
}

.cafe-page .menu-item:last-child {
	border-bottom: none;
}

.cafe-page .menu-item-left {
	flex: 1;
}

.cafe-page .menu-item-name {
	font-family: var(--heading);
	font-weight: 700;
	font-size: 17px;
	color: #223f6f;
	display: inline;
}

.cafe-page .menu-item-price {
	font-family: var(--heading);
	font-weight: 800;
	font-size: 18px;
	color: #17315f;
	white-space: nowrap;
}

.cafe-page .menu-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .8px;
	padding: 3px 8px;
	border-radius: 999px;
	margin-left: 8px;
	vertical-align: middle;
}

.cafe-page .menu-tag-kid {
	background: rgba(18, 153, 239, .1);
	color: var(--blue);
}

.cafe-page .menu-tag-new {
	background: rgba(254, 133, 5, .1);
	color: var(--yellow-text, #c77800);
}

.cafe-page .menu-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 48px 0 24px;
}

.cafe-page .menu-divider hr {
	flex: 1;
	border: none;
	border-top: 2px solid rgba(8, 26, 73, .06);
}

.cafe-page .menu-divider span {
	font-family: var(--heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	white-space: nowrap;
}

.cafe-page .nut-free-banner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
	max-width: 920px;
	margin: 0 auto 48px;
	padding: 28px 30px;
	border: 1px solid #d9e9dd;
	border-radius: 30px;
	background: linear-gradient(180deg, #f7fff7 0%, #eef9ef 100%);
	box-shadow: 0 16px 34px rgba(38, 104, 54, 0.08);
}

.cafe-page .nf-icon {
	width: 82px;
	height: 82px;
	border-radius: 0;
}

.cafe-page .nut-free-banner h3,
.cafe-page .cafe-hl-card h4,
.cafe-page .cafe-party-note h3 {
	margin: 0 0 6px;
	font-family: var(--heading);
	color: #223f6f;
}

.cafe-page .nut-free-banner h3,
.cafe-page .cafe-party-note h3 {
	font-size: 28px;
	line-height: 1.05;
}

.cafe-page .cafe-hl-card h4 {
	font-size: 20px;
	font-weight: 700;
}

.cafe-page .cafe-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 920px;
	margin: 0 auto;
}

.cafe-page .cafe-hl-card {
	position: relative;
	overflow: hidden;
	padding: 24px 22px;
	border-radius: 28px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
	text-align: center;
}

.cafe-page .cafe-hl-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.cafe-page .cafe-hl-card.is-gold::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.cafe-page .cafe-hl-card.is-pink::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.cafe-page .hl-icon {
	width: 76px;
	height: 76px;
	margin: 0 auto 12px;
	border-radius: 0;
}

.cafe-page .cafe-party-note {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
	max-width: 920px;
	margin: 0 auto;
	padding: 28px 30px;
	border-radius: 30px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
}

.cafe-page .cp-icon {
	width: 82px;
	height: 82px;
	border-radius: 0;
}

.fundraiser-page .section-head > p,
.fundraiser-page .fr-highlight p,
.fundraiser-page .fr-bonus p,
.fundraiser-page .fr-step p,
.fundraiser-page .fr-card p,
.fundraiser-page .fr-math-card p,
.fundraiser-page .fr-cta p {
	font-size: 16px;
	color: #607592;
}

.fundraiser-page .fr-highlight {
	position: relative;
	overflow: hidden;
	padding: 34px 36px;
	border: 1px solid #e3cb88;
	border-radius: 32px;
	background: linear-gradient(180deg, #fffdf6 0%, #fff3d6 100%);
	box-shadow: 0 20px 42px rgba(166, 107, 0, 0.10);
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.fundraiser-page .fr-highlight::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.fundraiser-page .fr-pct {
	display: inline-block;
	font-family: var(--heading);
	font-size: clamp(58px, 8vw, 78px);
	line-height: .95;
	color: #a56b00;
	text-shadow: 0 6px 20px rgba(255, 191, 61, 0.25);
}

.fundraiser-page .fr-highlight h3 {
	margin: 10px 0 6px;
	font-size: 28px;
	color: #223f6f;
}

.fundraiser-page .fr-bonus {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: center;
	max-width: 820px;
	margin: 28px auto 0;
	padding: 24px 26px;
	border: 1px solid #dfe8f6;
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
}

.fundraiser-page .fr-bonus-media,
.fundraiser-page .fr-card-media,
.fundraiser-page .fr-step-media {
	display: grid;
	place-items: center;
	background: transparent;
	box-shadow: none;
}

.fundraiser-page .fr-bonus-media {
	width: 82px;
	height: 82px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.fundraiser-page .fr-bonus-media img,
.fundraiser-page .fr-step-media img,
.fundraiser-page .fr-card-media img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(8, 26, 73, 0.16));
}

.fundraiser-page .fr-bonus h4,
.fundraiser-page .fr-card h4,
.fundraiser-page .fr-math-card h4 {
	margin: 0 0 6px;
	font-family: var(--heading);
	font-size: 20px;
	font-weight: 700;
	color: #223f6f;
}

.fundraiser-page .fr-step h3 {
	margin: 0 0 6px;
	font-family: var(--heading);
	font-size: 28px;
	line-height: 1.02;
	color: #223f6f;
}

.fundraiser-page .fr-math {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.fundraiser-page .fr-math-card {
	position: relative;
	overflow: hidden;
	padding: 26px 24px;
	border-radius: 28px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f8fbff 100%);
	box-shadow: 0 16px 38px rgba(8, 26, 73, 0.05);
	text-align: center;
}

.fundraiser-page .fr-math-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.fundraiser-page .fr-math-card.is-gold::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.fundraiser-page .fm-num {
	font-family: var(--heading);
	font-size: 42px;
	line-height: 1;
}

.fundraiser-page .fr-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	max-width: 1080px;
	margin: 0 auto;
}

.fundraiser-page .fr-step {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 26px;
	border-radius: 30px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f8fbff 100%);
	box-shadow: 0 18px 40px rgba(8, 26, 73, 0.06);
}

.fundraiser-page .fr-step::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.fundraiser-page .fr-step.is-gold::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.fundraiser-page .fr-step.is-green::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.fundraiser-page .fr-step.is-navy::before {
	background: linear-gradient(90deg, #9fb3da, #dfe6f5);
}

.fundraiser-page .fr-step-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.fundraiser-page .fr-step-num {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid #dbe6f5;
	background: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #607592;
}

.fundraiser-page .fr-step-media {
	width: 76px;
	height: 76px;
	border-radius: 0;
}

.fundraiser-page .fr-orgs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}

.fundraiser-page .fr-org {
	padding: 11px 18px;
	border-radius: 999px;
	border: 1px solid #dbe6f5;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 10px 22px rgba(8, 26, 73, 0.04);
	color: #223f6f;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .01em;
}

.fundraiser-page .fr-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 980px;
	margin: 0 auto;
}

.fundraiser-page .fr-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: start;
	padding: 24px;
	border-radius: 28px;
	border: 1px solid #dfe8f6;
	background: linear-gradient(180deg, #ffffff, #f7fbff 100%);
	box-shadow: 0 14px 36px rgba(8, 26, 73, 0.05);
}

.fundraiser-page .fr-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: linear-gradient(90deg, #d9e8fb, #eef5ff);
}

.fundraiser-page .fr-card.is-gold::before {
	background: linear-gradient(90deg, #ffd568, #fff1be);
}

.fundraiser-page .fr-card.is-green::before {
	background: linear-gradient(90deg, #93e39e, #e4f8e7);
}

.fundraiser-page .fr-card.is-pink::before {
	background: linear-gradient(90deg, #ffb6d2, #ffe4f1);
}

.fundraiser-page .fr-card-media {
	width: 82px;
	height: 82px;
	border-radius: 0;
}

.fundraiser-page .fr-faq-shell {
	max-width: 980px;
	margin: 0 auto;
}

.fundraiser-page .faq-grid {
	margin-top: 0;
}

.fundraiser-page .faq-grid summary,
.fundraiser-page .faq-grid p {
	color: #223f6f;
}

.fundraiser-page .faq-grid p {
	color: #607592;
}

.fundraiser-page .fr-cta {
	max-width: 860px;
	margin: 0 auto;
	padding: 42px 36px;
	border-radius: 32px;
	background: linear-gradient(135deg, var(--ink), #0a1a3f);
	box-shadow: 0 24px 44px rgba(8, 26, 73, 0.22);
	text-align: center;
}

.fundraiser-page .fr-cta h2 {
	color: #fff;
	margin-bottom: 8px;
	font-size: clamp(42px, 5vw, 64px);
	line-height: 0.98;
}

.fundraiser-page .fr-cta p {
	color: rgba(255, 255, 255, 0.68);
	font-size: 16px;
}

.fundraiser-page .fr-cta-note {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1100px) {
	.fundraiser-page .fr-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 770px) {
	.cafe-page .cafe-highlights,
	.cafe-page .nut-free-banner,
	.cafe-page .cafe-party-note {
		grid-template-columns: 1fr;
	}

	.cafe-page .nut-free-banner,
	.cafe-page .cafe-party-note,
	.cafe-page .cafe-hl-card {
		text-align: center;
	}

	.cafe-page .nf-icon,
	.cafe-page .cp-icon,
	.cafe-page .menu-category-icon {
		margin: 0 auto;
	}

	.cafe-page .menu-category-head {
		flex-direction: column;
		text-align: center;
	}

	.cafe-page .menu-item {
		flex-wrap: wrap;
	}

	.cafe-page .menu-category,
	.cafe-page .nut-free-banner,
	.cafe-page .cafe-party-note,
	.cafe-page .cafe-hl-card {
		border-radius: 24px;
	}

	.fundraiser-page .fr-math,
	.fundraiser-page .fr-grid,
	.fundraiser-page .fr-steps,
	.fundraiser-page .faq-grid {
		grid-template-columns: 1fr;
	}

	.fundraiser-page .fr-bonus,
	.fundraiser-page .fr-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.fundraiser-page .fr-bonus-media,
	.fundraiser-page .fr-card-media,
	.fundraiser-page .fr-step-media {
		margin: 0 auto;
	}

	.fundraiser-page .fr-step-head {
		justify-content: center;
	}

	.fundraiser-page .fr-highlight,
	.fundraiser-page .fr-cta {
		padding: 30px 24px;
		border-radius: 26px;
	}

	.fundraiser-page .fr-step,
	.fundraiser-page .fr-card,
	.fundraiser-page .fr-math-card {
		border-radius: 24px;
	}
}


/* =========================================
   ABOUT US — MOBILE IMAGE BELOW CONTENT
========================================= */

/* Hidden by default on desktop */
.page-cover-mobile-image {
    display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

    /*
     * Remove about-bg.png as a background.
     * The image will now appear below the text.
     */
	.page-cover-has-mobile-image {
        background: #fffdf8 !important;

        padding-top: 30px;
        padding-bottom: 0;

        overflow: hidden;

        border-radius: 0 0 30px 30px;
    }


    /*
     * Make the content normal vertical flow
     */
	.page-cover-has-mobile-image .page-cover-grid {
        display: block;

        min-height: auto;

        padding-bottom: 30px;
    }


    /*
     * Make sure content stays above
     */
	.page-cover-has-mobile-image .page-cover-copy {
        position: relative;
        z-index: 2;
    }

	.page-cover-has-mobile-image .page-cover-mascot {
		display: none;
	}


    /*
     * SHOW THE COMPLETE ABOUT BACKGROUND IMAGE
     * BELOW THE CONTENT
     */
    .page-cover-mobile-image {
        display: block;

        width: 100%;
        height: auto;

        max-width: none;

        margin: 0;

        object-fit: contain;

        position: relative;
        z-index: 1;
    }

}
/* ═══ FUN LIST SUCCESS STATE ═══ */
.fun-list-success { text-align: center; padding: 40px 20px; }
.fun-list-success-icon { font-size: 48px; margin-bottom: 16px; }
.fun-list-success h3 { font-family: var(--heading); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.fun-list-success p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.fun-list-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ═══ FOOTER SOCIAL LINKS ═══ */
.footer-brand {
	display: grid;
	gap: 16px;
}

.footer-social {
	display: flex;
	gap: 12px;
	justify-content: flex-start;
	padding-top: 4px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	aspect-ratio: 1;
	margin: 0;
	padding: 0;
	padding-bottom: 0;
	line-height: 1;
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .06);
	box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
	color: rgba(255, 255, 255, .92);
	transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
	text-decoration: none;
}

.footer-social .social-link::after {
	content: none;
}

.social-link svg {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	display: block;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.social-link[aria-label="Instagram"] svg {
	width: 20px;
	height: 20px;
	transform: translate(-50%, calc(-50% + 1px));
}

.social-link[aria-label="Facebook"] svg {
	width: 20px;
	height: 20px;
	transform: translate(-50%, -50%);
}

.social-link[aria-label="TikTok"] svg {
	width: 20px;
	height: 20px;
	transform: translate(calc(-50% + .5px), calc(-50% + .5px));
}

.social-link:hover {
	background: rgba(255, 213, 102, .12);
	border-color: rgba(255, 213, 102, .42);
	color: #ffe08a;
	box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
	transform: translateY(-2px);
}

/* ═══ HIDDEN: Reviews section (unhide when real reviews are available) ═══ */
.family-say { display: none !important; }
.kids-say { display: none !important; }
