
:root {
  --ink: #17324d;
  --blue: #43b9e7;
  --green: #65b84f;
  --orange: #ff8340;
  --yellow: #ffd54a;
  --cream: #fffaf0;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }

.prototype-bar {
  padding: 9px 20px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}
.site-header {
  height: 92px;
  max-width: 1440px;
  margin: auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255,255,255,.94);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 265px;
  height: auto;
  aspect-ratio: 1870 / 841;
  display: block;
  object-fit: contain;
  border: 0;
  background: #111;
}
.brand-mark {
  width: 52px; height: 52px; border-radius: 18px 18px 18px 8px;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  font-size: 20px; font-weight: 900; transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--yellow);
}
.brand strong { display: block; font-size: 20px; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: #587187; font-weight: 700; letter-spacing: .04em; }
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--orange); }
.button {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 16px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(197,74,23,.18);
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 11px 0 rgba(197,74,23,.15); }
.button-small { padding: 12px 19px; font-size: 14px; }

.hero {
  min-height: 690px;
  padding: 82px 7vw 80px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 15%, rgba(255,213,74,.22) 0 80px, transparent 81px),
    linear-gradient(120deg, #fffaf0 0 55%, #dff4fc 55%);
}
.hero-copy { max-width: 650px; position: relative; z-index: 2; }
.eyebrow, .section-label {
  display: inline-flex;
  color: #388438;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
}
.eyebrow:before { content: "✦"; margin-right: 9px; color: var(--orange); }
h1, h2 { margin: 0; font-weight: 900; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(58px, 6.1vw, 92px); margin: 23px 0 28px; }
h1 em { color: var(--orange); font-style: normal; position: relative; }
.hero-copy > p { max-width: 580px; font-size: 19px; line-height: 1.7; color: #50677a; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.text-link { font-weight: 900; border-bottom: 2px solid var(--yellow); padding: 5px 0; }
.text-link span { color: var(--orange); }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; font-size: 12px; font-weight: 800; color: #536d80; }
.trust-row span::first-letter { color: var(--green); }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-photo {
  width: 82%; aspect-ratio: 1.08; overflow: hidden;
  border-radius: 48% 52% 44% 56% / 50% 39% 61% 50%;
  border: 12px solid #fff;
  box-shadow: 0 25px 70px rgba(23,50,77,.18);
  transform: rotate(2deg);
}
.hero-photo img { height: 100%; object-fit: cover; }
.floating-card {
  position: absolute; left: 3%; bottom: 6%; background: #fff;
  border-radius: 20px; padding: 15px 19px; display: flex; gap: 12px;
  align-items: center; box-shadow: 0 18px 45px rgba(23,50,77,.18);
}
.floating-card > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { margin-top: 4px; color: #6b8092; }
.doodle { position: absolute; font-weight: 900; }
.sun { right: 4%; top: 0; font-size: 64px; color: var(--yellow); transform: rotate(10deg); }
.squiggle { right: -3%; bottom: 4%; font-size: 42px; color: var(--green); transform: rotate(-13deg); letter-spacing: -10px; }

.quick-facts {
  max-width: 1180px; margin: -36px auto 0; position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-radius: 24px; background: #fff; box-shadow: 0 20px 50px rgba(23,50,77,.12);
}
.quick-facts > div { padding: 26px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; border-right: 1px solid #e6edf1; }
.quick-facts > div:last-child { border: 0; }
.quick-facts span { grid-row: 1 / 3; font-size: 27px; }
.quick-facts strong, .quick-facts small { display: block; }
.quick-facts small { margin-top: 4px; color: #708494; }

.section { padding: 110px 7vw; }
.about { max-width: 1440px; margin: auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; margin-top: 20px; align-items: center; }
h2 { font-size: clamp(42px, 5vw, 72px); }
h2 span { color: var(--orange); }
.lead { font-size: 22px; font-weight: 700; line-height: 1.5; margin-top: 0; }
.about-grid p:not(.lead) { color: #607687; line-height: 1.75; }
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 70px; }
.value-cards article { padding: 30px; border-radius: 24px; background: #fff; border: 1px solid #eef1e9; box-shadow: 0 12px 35px rgba(23,50,77,.06); }
.value-cards article > span { width: 48px; height: 48px; border-radius: 16px; background: #dff4fc; display: grid; place-items: center; color: var(--blue); font-size: 22px; }
.value-cards article:nth-child(2) > span { background: #fff3ce; color: #db971a; }
.value-cards article:nth-child(3) > span { background: #e6f5df; color: var(--green); }
.value-cards h3 { font-size: 20px; margin: 20px 0 10px; }
.value-cards p { color: #667a89; line-height: 1.6; margin: 0; }

.programs { background: var(--ink); color: #fff; }
.center-heading { text-align: center; max-width: 720px; margin: auto; }
.center-heading .section-label { color: var(--yellow); }
.center-heading h2 { margin-top: 18px; }
.center-heading h2 span { color: var(--yellow); }
.center-heading > p { color: #b8c8d5; line-height: 1.7; }
.program-grid { max-width: 1180px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.program-card { min-height: 345px; padding: 34px; border-radius: 28px; color: var(--ink); background: #fff; display: flex; flex-direction: column; align-items: flex-start; }
.program-1 { background: #dff4fc; transform: rotate(-1deg); }
.program-2 { background: #fff1c4; transform: rotate(1deg); }
.program-3 { background: #e4f5de; transform: rotate(-.5deg); }
.program-icon { font-size: 48px; }
.program-card h3 { margin: 24px 0 12px; font-size: 25px; }
.program-card p { color: #536a7d; line-height: 1.65; }
.program-card a { margin-top: auto; font-size: 14px; font-weight: 900; color: #d75422; }

.tour { background: #fff; }
.tour-heading { max-width: 1180px; margin: auto 0; display: grid; grid-template-columns: 2fr 1fr; gap: 7vw; align-items: end; }
.tour-heading h2 { margin-top: 18px; }
.tour-heading > p { color: #647989; line-height: 1.7; font-size: 18px; }
.gallery { max-width: 1180px; margin: 55px auto 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.gallery-card { border-radius: 24px; overflow: hidden; background: var(--cream); border: 1px solid #e7ecef; }
.gallery-card img { height: 300px; object-fit: cover; }
.gallery-card div { padding: 25px 28px; }
.gallery-card h3 { margin: 0 0 8px; font-size: 22px; }
.gallery-card p { margin: 0; color: #657a89; line-height: 1.6; }
.gallery-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.5fr 1fr; }
.gallery-card.featured img { height: 430px; }
.gallery-card.featured div { align-self: center; padding: 50px; }

.classrooms-section {
  background:
    radial-gradient(circle at 12px 12px, rgba(23,50,77,.045) 2px, transparent 3px) 0 0 / 28px 28px,
    #fffdf8;
}
.classroom-list {
  max-width: 1180px;
  margin: 60px auto 0;
  display: grid;
  gap: 30px;
}
.classroom-card {
  --room-accent: var(--blue);
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.55fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #e7e5df;
  border-top: 8px solid var(--room-accent);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(20,20,20,.08);
}
.classroom-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .72fr);
}
.classroom-card:nth-child(even) .classroom-copy { order: 2; }
.classroom-card:nth-child(even) .classroom-photos { order: 1; }
.accent-yellow { --room-accent: #f4c433; }
.accent-red { --room-accent: #d72732; }
.accent-orange { --room-accent: #ef7b32; }
.accent-green { --room-accent: #79b83e; }
.accent-purple { --room-accent: #7e62b5; }
.accent-blue { --room-accent: #42a9e0; }
.accent-teal { --room-accent: #238b8b; }
.classroom-copy {
  position: relative;
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.classroom-number {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #e9e6df;
  font-size: 48px;
  font-weight: 900;
}
.classroom-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--room-accent) 18%, white);
  font-size: 30px;
}
.age-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--room-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.classroom-copy h3 {
  margin: 17px 0 12px;
  color: #171717;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}
.classroom-copy p {
  margin: 0;
  color: #64717d;
  line-height: 1.7;
}
.classroom-copy a {
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--room-accent);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 900;
}
.classroom-copy a span { color: var(--room-accent); }
.classroom-photos {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  min-height: 420px;
  background: #eee;
}
.room-photo {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.room-photo-main { grid-row: 1 / -1; }
.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.room-photo:hover img { transform: scale(1.035); }
.photos-2 { grid-template-columns: 1.35fr .85fr; grid-template-rows: 1fr; }
.photos-2 .room-photo-main { grid-row: auto; }

.schedule { background: #fff4ce; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.schedule-copy { max-width: 620px; justify-self: end; }
.schedule-copy h2 { margin: 18px 0 26px; }
.schedule-copy > p { font-size: 18px; line-height: 1.7; color: #536a7d; }
.schedule-note { margin-top: 35px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.7); display: flex; gap: 15px; align-items: center; }
.schedule-note > span { font-size: 34px; }
.schedule-note strong, .schedule-note small { display: block; }
.schedule-note small { color: #6b7d8a; margin-top: 5px; }
.tour-form { max-width: 620px; width: 100%; background: #fff; padding: 40px; border-radius: 30px; box-shadow: 0 25px 60px rgba(89,75,21,.12); }
.tour-form h3 { font-size: 28px; margin: 0; }
.tour-form > p { color: #6b7f8d; margin: 8px 0 25px; }
.tour-form label { display: block; font-size: 12px; font-weight: 900; margin-bottom: 16px; }
.tour-form input, .tour-form select, .tour-form textarea {
  width: 100%; margin-top: 7px; padding: 13px 14px; border-radius: 10px;
  border: 1px solid #dce3e7; background: #fbfcfc; color: var(--ink); outline: none;
}
.tour-form input:focus, .tour-form select:focus, .tour-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(67,185,231,.15); }
.tour-form textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-button { width: 100%; }
.privacy { display: block; text-align: center; color: #84929c; margin-top: 16px; }
.success { min-height: 465px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.success > span { width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; background: #e3f5dc; color: var(--green); font-size: 34px; }
.success h3 { margin-top: 20px; }
.success p { max-width: 420px; line-height: 1.6; }

footer { padding: 70px 7vw 28px; background: var(--ink); color: #fff; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 50px; }
footer .brand-mark { box-shadow: 4px 4px 0 var(--yellow); }
footer .brand small { color: #b9c9d4; }
footer h3 { color: var(--yellow); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
footer p { color: #bdcad4; line-height: 1.8; }
footer em { font-size: 12px; color: #889baa; }
.footer-brand > p { max-width: 340px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid #365069; padding-top: 25px; color: #8298aa; text-align: center; }

@media (max-width: 900px) {
  .site-header { height: auto; padding: 18px 5vw; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; background: linear-gradient(160deg,#fffaf0 0 58%,#dff4fc 58%); }
  .hero-visual { margin-top: 50px; min-height: 430px; }
  .quick-facts { margin: 0; border-radius: 0; grid-template-columns: repeat(2,1fr); }
  .quick-facts > div { border-bottom: 1px solid #e6edf1; }
  .about-grid, .tour-heading, .schedule { grid-template-columns: 1fr; }
  .classroom-card,
  .classroom-card:nth-child(even) { grid-template-columns: 1fr; }
  .classroom-card:nth-child(even) .classroom-copy,
  .classroom-card:nth-child(even) .classroom-photos { order: initial; }
  .classroom-photos { min-height: 380px; }
  .value-cards, .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 280px; transform: none; }
  .schedule-copy { justify-self: start; }
  .tour-form { max-width: none; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .prototype-bar { font-size: 10px; }
  .site-header .button-small { display: none; }
  .brand strong { font-size: 17px; }
  .brand-mark { width: 44px; height: 44px; }
  .hero { min-height: auto; padding: 55px 6vw; }
  h1 { font-size: 49px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-photo { width: 95%; }
  .floating-card { left: 0; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts > div { border-right: 0; }
  .section { padding: 80px 6vw; }
  h2 { font-size: 43px; }
  .value-cards, .gallery { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: auto; display: block; }
  .gallery-card.featured img, .gallery-card img { height: 260px; }
  .gallery-card.featured div { padding: 25px 28px; }
  .classroom-card { border-radius: 22px; }
  .classroom-copy { padding: 35px 25px; }
  .classroom-number { font-size: 38px; }
  .classroom-photos,
  .photos-2 { min-height: 420px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.25fr .75fr; }
  .room-photo-main,
  .photos-2 .room-photo-main { grid-column: 1 / -1; grid-row: auto; }
  .photos-2 .room-photo:last-child { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tour-form { padding: 28px 20px; }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

/* Busy Body's banner-inspired theme */
:root {
  --ink: #111111;
  --red: #d72732;
  --blue: #42a9e0;
  --green: #79b83e;
  --orange: #ef7b32;
  --yellow: #f4c433;
  --purple: #7e62b5;
  --cream: #fff9ee;
}

body {
  background:
    radial-gradient(circle at 15px 15px, rgba(215,39,50,.04) 2px, transparent 3px) 0 0 / 30px 30px,
    var(--cream);
}

.prototype-bar {
  background: var(--red);
  color: #fff;
}

.site-header {
  max-width: none;
  background: #0c0c0c;
  color: #fff;
  border-bottom: 7px solid var(--red);
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 4px;
  border: 4px solid var(--red);
  background: #050505;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  transform: none;
  box-shadow: none;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  letter-spacing: .01em;
}

.brand small {
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .22em;
}

nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--red);
  transition: .2s ease;
}

nav a:hover { color: #fff; }
nav a:hover::after { right: 0; }

.button {
  border-radius: 8px;
  background: var(--red);
  box-shadow: 5px 5px 0 #111;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
}

.site-header .button {
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 var(--red);
  background: #fff;
  color: #111;
}

.button:hover {
  box-shadow: 8px 8px 0 #111;
}

.hero {
  min-height: 720px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 17%, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 12% 22%, var(--yellow) 0 5px, transparent 6px),
    radial-gradient(circle at 91% 12%, var(--green) 0 6px, transparent 7px),
    linear-gradient(115deg, #080808 0 55%, #1a1a1a 55%);
  background-size: 90px 90px, 120px 120px, 130px 130px, auto;
  border-bottom: 12px solid var(--red);
}

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

.eyebrow::before {
  color: var(--red);
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(58px, 5.7vw, 88px);
  letter-spacing: -.035em;
}

h1 em {
  color: #fff;
  display: block;
  font-style: normal;
  text-shadow:
    4px 4px 0 var(--red),
    7px 7px 0 #000;
}

.hero-copy > p {
  color: #e7e7e7;
}

.text-link {
  border-color: var(--yellow);
  color: #fff;
}

.text-link span { color: var(--yellow); }
.trust-row { color: #d8d8d8; }

.hero-photo {
  width: 84%;
  border-radius: 18px;
  border: 10px solid #fff;
  outline: 7px solid var(--red);
  transform: rotate(1.5deg);
  box-shadow: 22px 22px 0 rgba(0,0,0,.65);
}

.floating-card {
  border-radius: 8px;
  border: 4px solid var(--red);
  background: #111;
  color: #fff;
  box-shadow: 12px 12px 0 rgba(215,39,50,.32);
}

.floating-card small { color: #dedede; }
.sun { color: var(--yellow); }
.squiggle {
  color: var(--blue);
  letter-spacing: 3px;
  font-size: 25px;
}

.quick-facts {
  border-radius: 8px;
  border: 4px solid #111;
  box-shadow: 12px 12px 0 var(--red);
}

.quick-facts > div {
  border-color: #d8d8d8;
}

.section-label {
  color: var(--red);
}

h2 span {
  color: var(--red);
}

.value-cards article {
  border-radius: 8px;
  border: 3px solid #111;
  box-shadow: 8px 8px 0 var(--red);
}

.value-cards article:nth-child(2) {
  box-shadow: 8px 8px 0 var(--yellow);
}

.value-cards article:nth-child(3) {
  box-shadow: 8px 8px 0 var(--blue);
}

.value-cards article > span {
  border-radius: 50%;
}

.programs {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.04) 50%, transparent 51%) 0 0 / 45px 45px,
    #0d0d0d;
  border-top: 10px solid var(--red);
  border-bottom: 10px solid var(--red);
}

.center-heading .section-label,
.center-heading h2 span {
  color: var(--yellow);
}

.program-card {
  border-radius: 8px;
  border: 5px solid #fff;
  box-shadow: 10px 10px 0 var(--red);
}

.program-1 { background: var(--blue); }
.program-2 { background: var(--yellow); }
.program-3 { background: var(--green); }
.program-card p { color: #17212a; }
.program-card a { color: #8e1018; }

.tour {
  background: #fff;
}

.gallery-card {
  border-radius: 8px;
  border: 4px solid #111;
  box-shadow: 9px 9px 0 var(--red);
  background: #fff;
}

.gallery-card:nth-child(2) { box-shadow: 9px 9px 0 var(--blue); }
.gallery-card:nth-child(3) { box-shadow: 9px 9px 0 var(--yellow); }
.gallery-card:nth-child(4) { box-shadow: 9px 9px 0 var(--green); }

.schedule {
  background:
    radial-gradient(circle at 20px 20px, rgba(255,255,255,.07) 4px, transparent 5px) 0 0 / 48px 48px,
    var(--red);
  color: #fff;
  border-top: 10px solid #111;
}

.schedule .section-label { color: var(--yellow); }
.schedule-copy h2 span { color: var(--yellow); }
.schedule-copy > p { color: #fff; }
.schedule-note {
  color: #111;
  border-radius: 8px;
}

.tour-form {
  border-radius: 8px;
  border: 6px solid #111;
  box-shadow: 14px 14px 0 rgba(0,0,0,.35);
  color: #111;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
  border-radius: 4px;
  border: 2px solid #b7b7b7;
}

footer {
  background: #080808;
  border-top: 10px solid var(--red);
}

footer .brand-mark {
  box-shadow: none;
}

.footer-logo {
  width: 290px;
  height: 78px;
}

footer h3 { color: var(--yellow); }

@media (max-width: 900px) {
  .hero {
    background:
      radial-gradient(circle at 8% 17%, var(--red) 0 4px, transparent 5px) 0 0 / 90px 90px,
      linear-gradient(160deg,#080808 0 60%,#1b1b1b 60%);
  }
}

@media (max-width: 600px) {
  .brand strong { font-size: 18px; }
  .brand-mark { width: 44px; height: 44px; font-size: 17px; }
  h1 { font-size: 47px; }
  h1 em { text-shadow: 3px 3px 0 var(--red), 5px 5px 0 #000; }
  .brand-logo { width: 210px; height: auto; }
  .footer-logo { width: 100%; max-width: 290px; height: 76px; }
}

/* Business-card visual system */
body {
  background:
    radial-gradient(circle, rgba(66,169,224,.11) 0 4px, transparent 5px) 16px 22px / 90px 90px,
    radial-gradient(circle, rgba(239,123,50,.10) 0 4px, transparent 5px) 55px 7px / 105px 105px,
    #fffaf0;
}

.site-header {
  border-bottom: 0;
}

.hero {
  position: relative;
  width: min(94%, 1440px);
  min-height: 680px;
  margin: 34px auto 0;
  padding: 72px 6vw 72px 8vw;
  border: 1px solid #242424;
  border-radius: 4px;
  border-bottom: 0;
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
  background:
    radial-gradient(circle at 12% 11%, var(--yellow) 0 5px, transparent 6px),
    radial-gradient(circle at 92% 13%, var(--red) 0 7px, transparent 8px),
    radial-gradient(circle at 89% 88%, var(--purple) 0 7px, transparent 8px),
    linear-gradient(130deg, #090909, #171717 60%, #101010);
}

.rainbow-rail {
  position: absolute;
  inset: 0 auto 0 0;
  width: 38px;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  overflow: hidden;
}

.rainbow-rail i,
.horizontal-rainbow i {
  display: block;
}
.rainbow-rail i:nth-child(1),
.horizontal-rainbow i:nth-child(1) { background: #e83d34; }
.rainbow-rail i:nth-child(2),
.horizontal-rainbow i:nth-child(2) { background: #ef8c28; }
.rainbow-rail i:nth-child(3),
.horizontal-rainbow i:nth-child(3) { background: #f5c321; }
.rainbow-rail i:nth-child(4),
.horizontal-rainbow i:nth-child(4) { background: #66a93e; }
.rainbow-rail i:nth-child(5),
.horizontal-rainbow i:nth-child(5) { background: #2f91ca; }
.rainbow-rail i:nth-child(6),
.horizontal-rainbow i:nth-child(6) { background: #7455a4; }

.horizontal-rainbow {
  width: min(94%, 1440px);
  height: 16px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.rainbow-title {
  display: block;
  font-family: Arial Rounded MT Bold, Arial, Helvetica, sans-serif;
  font-size: .86em;
  letter-spacing: -.075em;
  line-height: .96;
  white-space: nowrap;
}

.rainbow-title b {
  display: inline-block;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
  text-shadow: 3px 4px 0 rgba(0,0,0,.55);
}
.rainbow-title b:nth-child(6n+1) { color: #df3a35; }
.rainbow-title b:nth-child(6n+2) { color: #2f91ca; }
.rainbow-title b:nth-child(6n+3) { color: #f1b923; }
.rainbow-title b:nth-child(6n+4) { color: #65a83d; }
.rainbow-title b:nth-child(6n+5) { color: #ed792d; }
.rainbow-title b:nth-child(6n+6) { color: #7654a4; }

h1 em {
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .36em;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .23em;
  text-shadow: none;
}

.hero-copy > p {
  color: #f6ca32;
  font-weight: 800;
}

.hero-photo {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  outline: 8px solid var(--red);
  border: 10px solid #111;
  box-shadow: 0 0 0 3px #fff, 14px 18px 0 rgba(0,0,0,.5);
  transform: none;
}

.abc-blocks {
  position: absolute;
  right: 3%;
  top: 4%;
  width: 108px;
  height: 96px;
}

.abc-blocks span {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 3px 4px 0 rgba(0,0,0,.55);
}
.abc-blocks span:nth-child(1) { left: 35px; top: 0; background: var(--red); transform: rotate(9deg); }
.abc-blocks span:nth-child(2) { left: 5px; top: 43px; background: var(--blue); transform: rotate(5deg); }
.abc-blocks span:nth-child(3) { left: 54px; top: 46px; background: var(--green); transform: rotate(9deg); }

.pencil {
  position: absolute;
  right: 2%;
  bottom: 9%;
  color: var(--yellow);
  font-size: 82px;
  transform: rotate(-8deg);
}

.sun {
  left: 2%;
  right: auto;
  top: 2%;
}

.quick-facts {
  margin-top: 0;
  background: rgba(255,253,246,.96);
  border-color: #1b1b1b;
}

.about {
  position: relative;
}
.about::after {
  content: "★  ✎  A B C  ★";
  display: block;
  margin-top: 75px;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .55em;
  text-align: center;
}

.value-cards article,
.gallery-card,
.tour-form {
  background: #fffdf6;
}

.programs {
  position: relative;
}
.programs::before,
.programs::after {
  content: "★";
  position: absolute;
  font-size: 52px;
}
.programs::before { left: 4%; top: 8%; color: var(--yellow); transform: rotate(-10deg); }
.programs::after { right: 5%; bottom: 8%; color: var(--purple); transform: rotate(12deg); }

footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

.crayon-row {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 58px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.crayon-row i {
  width: 18px;
  height: 50px;
  border-radius: 5px 5px 0 0;
  background: var(--red);
  border: 2px solid #111;
  box-shadow: inset 0 8px 0 rgba(255,255,255,.25);
}
.crayon-row i:nth-child(2),
.crayon-row i:nth-child(7) { background: var(--orange); height: 42px; }
.crayon-row i:nth-child(3) { background: var(--yellow); height: 54px; }
.crayon-row i:nth-child(4),
.crayon-row i:nth-child(8) { background: var(--green); height: 46px; }
.crayon-row i:nth-child(5) { background: var(--blue); height: 55px; }
.crayon-row i:nth-child(6) { background: var(--purple); height: 43px; }

@media (max-width: 900px) {
  .hero {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding-left: 9vw;
  }
  .horizontal-rainbow { width: 100%; border-radius: 0; }
  .rainbow-title { white-space: normal; }
}

@media (max-width: 600px) {
  .hero { padding-left: 11vw; }
  .rainbow-rail { width: 24px; }
  .rainbow-title b { -webkit-text-stroke-width: 2px; }
  h1 em { font-size: .32em; letter-spacing: .14em; }
  .abc-blocks { transform: scale(.72); transform-origin: top right; }
  .pencil { font-size: 58px; }
}
