:root {
  --ink: #111111;
  --muted: #5d6470;
  --paper: #fff8df;
  --white: #ffffff;
  --yellow: #ffd51f;
  --red: #f5362e;
  --blue: #1479ff;
  --dark-blue: #10192f;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 22px 70px rgba(12, 18, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 12px;
  font-weight: 900;
}

.logo-tile {
  display: grid;
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 58px;
  place-items: center;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--red);
}

.brand-mark {
  display: block;
  position: absolute;
  top: -9px;
  left: -19px;
  width: 92px;
  max-width: none;
  height: auto;
}

.brand-text {
  color: var(--white);
  line-height: 1.05;
}

.hero-brand {
  --hero-logo-width: clamp(170px, 22vw, 260px);
  display: inline-flex;
  align-items: center;
  width: calc(var(--hero-logo-width) + 32px);
  max-width: 100%;
  margin: 0 0 26px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(-1deg);
}

.hero-logo-crop {
  position: relative;
  display: block;
  overflow: hidden;
  width: var(--hero-logo-width);
  aspect-ratio: 0.9;
  max-width: 100%;
}

.hero-logo-crop img {
  position: absolute;
  top: -14%;
  left: -38%;
  display: block;
  width: 176%;
  max-width: none;
  height: auto;
}

.nav {
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--yellow);
}

.nav-button {
  padding: 10px 14px;
  color: var(--ink) !important;
  background: var(--yellow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(32px, 5vw, 76px);
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 72px) 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(16, 25, 47, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 84px),
    var(--dark-blue);
}

.thank-you-hero {
  grid-template-columns: minmax(0, 920px);
  align-content: center;
}

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

.hero-eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3.1rem, 8.4vw, 7.8rem);
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-reassurance li {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--red);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid currentColor;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin: 42px 0 0;
}

.quick-info div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.quick-info dt {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 7px 0 0;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin-top: clamp(34px, 6vw, 84px);
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 10px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  aspect-ratio: 5 / 4;
  transform: rotate(1.5deg);
}

.hero-photo::before,
.hero-photo::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 30px;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    var(--ink) 0 20px,
    rgba(255, 255, 255, 0.92) 20px 36px
  );
}

.hero-photo::before {
  left: 0;
}

.hero-photo::after {
  right: 0;
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: min(250px, calc(100% - 36px));
  padding: 16px 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--red);
  transform: rotate(-3deg);
}

.hero-photo figcaption span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  font-size: 1.28rem;
}

.film-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 12px solid var(--ink);
  background: #f7f8fb;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.film-frame::before,
.film-frame::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 34px;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    var(--ink) 0 20px,
    #f7f8fb 20px 36px
  );
}

.film-frame::before {
  left: 0;
}

.film-frame::after {
  right: 0;
}

.camera-top {
  height: 52px;
  background:
    repeating-linear-gradient(135deg, var(--ink) 0 18px, var(--yellow) 18px 36px);
}

.set-sky {
  position: relative;
  height: 250px;
  margin: 0 34px;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 213, 31, 0.26), transparent 18%),
    linear-gradient(180deg, #1c2f69, #1479ff);
}

.planet,
.star {
  position: absolute;
  display: block;
}

.planet {
  top: 40px;
  right: 54px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 14px rgba(255, 213, 31, 0.16);
}

.star {
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
}

.star-one {
  top: 74px;
  left: 64px;
}

.star-two {
  top: 132px;
  left: 46%;
}

.star-three {
  top: 38px;
  left: 62%;
}

.set-floor {
  position: relative;
  height: 162px;
  margin: 0 34px;
  background:
    linear-gradient(transparent 0 35%, rgba(17, 17, 17, 0.08) 35%),
    repeating-linear-gradient(90deg, #f1c10d 0 54px, #e7b900 54px 108px);
}

.brick,
.mini-figure {
  position: absolute;
  bottom: 34px;
}

.brick {
  width: 84px;
  height: 42px;
  border: 4px solid var(--ink);
  box-shadow: 0 8px 0 rgba(17, 17, 17, 0.18);
}

.brick::before,
.brick::after {
  position: absolute;
  top: -18px;
  width: 22px;
  height: 14px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  content: "";
}

.brick::before {
  left: 10px;
}

.brick::after {
  right: 10px;
}

.brick-red {
  left: 54px;
  background: var(--red);
}

.brick-yellow {
  left: 158px;
  bottom: 66px;
  background: var(--yellow);
}

.brick-blue {
  right: 66px;
  background: var(--blue);
}

.mini-figure {
  left: 50%;
  width: 74px;
  height: 124px;
  transform: translateX(-50%);
}

.mini-figure span {
  position: absolute;
  left: 50%;
  display: block;
  border: 4px solid var(--ink);
  transform: translateX(-50%);
}

.head {
  top: 0;
  width: 46px;
  height: 40px;
  border-radius: 16px 16px 12px 12px;
  background: var(--yellow);
}

.body {
  top: 42px;
  width: 66px;
  height: 48px;
  background: var(--red);
}

.legs {
  top: 88px;
  width: 58px;
  height: 34px;
  background: var(--blue);
}

.timeline {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 56px;
  padding: 0 54px;
  background: var(--ink);
}

.timeline span {
  flex: 1;
  height: 16px;
  background: var(--yellow);
}

.timeline span:nth-child(even) {
  background: var(--red);
}

.clapper {
  position: absolute;
  right: -4px;
  bottom: 18px;
  width: min(260px, 70%);
  padding: 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 9px 9px 0 var(--red);
  transform: rotate(-3deg);
}

.clapper span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clapper strong {
  font-size: 1.35rem;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.benefit-copy h2,
.pricing-panel h2 {
  color: var(--ink);
}

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

.steps article,
.date-grid article,
.trust-grid article,
.pricing-panel,
.info-panel,
.faq-list details,
.priority-form {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.16);
}

.steps article {
  min-height: 230px;
  padding: 24px;
}

.steps span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-family: Anton, Impact, sans-serif;
  font-size: 2.25rem;
}

.steps p,
.date-grid p,
.trust-grid p,
.section-heading p,
.trust-note,
.benefit-copy p,
.priority-copy p,
.faq-list p,
.booking p,
.info-panel li,
.value-list li,
.small-note,
.form-note,
.integration-note {
  color: var(--muted);
  line-height: 1.58;
}

.priority-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.priority-section-top {
  background: #f6eecf;
}

.priority-section-bottom {
  background:
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.055) 0 2px, transparent 2px 78px),
    var(--paper);
}

.priority-copy {
  max-width: 760px;
}

.priority-copy h2 {
  color: var(--ink);
}

.priority-reassurance {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.priority-reassurance li {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--red);
}

.priority-reassurance li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  background: var(--white);
  content: "";
}

.priority-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.priority-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.priority-form input,
.priority-form select,
.priority-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.priority-form textarea {
  min-height: 112px;
  resize: vertical;
}

.priority-form input:focus,
.priority-form select:focus,
.priority-form textarea:focus {
  outline: 4px solid rgba(20, 121, 255, 0.28);
  outline-offset: 1px;
}

.priority-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin-bottom: 2px;
  font-weight: 700;
}

.integration-note {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
}

.parent-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.parent-benefits h2,
.parent-benefits p {
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 18px 20px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--red);
}

.benefit-media {
  display: grid;
  gap: 18px;
}

.benefit-photo {
  aspect-ratio: 2.2 / 1;
  border-width: 8px;
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(-1deg);
}

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

.date-grid article {
  min-height: 190px;
  padding: 22px;
}

.date-grid time {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
  gap: 18px;
  background: #f6eecf;
}

.pricing-panel,
.info-panel {
  padding: clamp(24px, 4vw, 42px);
}

.prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.prices div {
  padding: 18px;
  color: var(--ink);
  background: var(--yellow);
}

.prices span,
.prices strong {
  display: block;
}

.prices span {
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prices strong {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 400;
}

.value-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
}

.value-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  content: "";
  box-shadow: 3px 3px 0 var(--red);
}

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

.trust-confidence {
  background:
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.045) 0 2px, transparent 2px 78px),
    var(--paper);
}

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

.trust-grid article {
  min-height: 260px;
  padding: 24px;
}

.trust-icon {
  display: inline-grid;
  min-width: 54px;
  min-height: 44px;
  margin-bottom: 28px;
  padding: 8px 10px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.28rem;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--red);
}

.trust-grid h3 {
  color: var(--ink);
}

.trust-note {
  max-width: 850px;
  margin: 24px 0 0;
  padding: 18px 22px;
  border-left: 8px solid var(--red);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 950px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
}

.booking h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.booking p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.legal-note {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .hero,
  .parent-benefits,
  .practical,
  .priority-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

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

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

  .trust-grid article {
    grid-column: span 3;
  }

  .trust-grid article:last-child {
    grid-column: 2 / span 4;
  }

  .booking-actions {
    margin-top: 0;
  }
}

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

  .brand {
    max-width: calc(100vw - 36px);
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-brand {
    --hero-logo-width: min(210px, calc(100vw - 68px));
    align-items: center;
  }

  .nav {
    display: none;
  }

  .quick-info,
  .steps,
  .date-grid,
  .trust-grid,
  .prices {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    grid-column: auto;
    min-height: auto;
  }

  .trust-grid article:last-child {
    grid-column: auto;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-card {
    border-width: 7px;
  }

  .hero-photo {
    aspect-ratio: 1.08 / 1;
    transform: rotate(0.8deg);
  }

  .hero-photo::before,
  .hero-photo::after {
    width: 18px;
  }

  .hero-photo figcaption {
    right: 12px;
    bottom: 12px;
    padding: 13px 14px;
  }

  .benefit-photo {
    aspect-ratio: 1.45 / 1;
  }

  .priority-section {
    align-items: stretch;
  }

  .site-footer {
    flex-direction: column;
  }
}
