:root {
  --purple-900: #2b0b56;
  --purple-800: #40147a;
  --purple-700: #55208f;
  --purple-100: #f3ebfb;
  --cream: #fffaf3;
  --paper: #ffffff;
  --ink: #271d31;
  --muted: #665c70;
  --red: #e91b27;
  --orange: #ff7b0b;
  --yellow: #ffb800;
  --green: #5aa832;
  --blue: #0f8fd0;
  --pink: #e9007f;
  --whatsapp: #16834b;
  --shadow: 0 18px 45px rgba(43, 11, 86, 0.12);
  --radius: 1.5rem;
  --shell: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
}

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

a {
  color: var(--purple-800);
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.65rem;
  color: white;
  background: var(--purple-900);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
  text-align: center;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(64, 20, 122, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  color: var(--purple-800);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark strong {
  color: var(--pink);
}

.site-nav {
  display: none;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--purple-700);
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-small {
  min-height: 2.7rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.button-primary,
.button-call {
  color: white;
  background: var(--purple-800);
  box-shadow: 0 10px 24px rgba(64, 20, 122, 0.22);
}

.button-primary:hover,
.button-call:hover {
  background: var(--purple-900);
  box-shadow: 0 14px 30px rgba(64, 20, 122, 0.28);
}

.button-whatsapp {
  color: white;
  background: var(--whatsapp);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 20%, #fcf5ff 67%, #f0e7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -15% -10rem 30%;
  z-index: -2;
  height: 17rem;
  border: 2.1rem solid var(--purple-100);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-pathways {
  position: absolute;
  right: -4rem;
  top: 7rem;
  z-index: -1;
  width: 13rem;
  height: 13rem;
  border: 0.8rem solid var(--red);
  border-right-color: var(--orange);
  border-bottom-color: var(--yellow);
  border-radius: 50%;
  opacity: 0.12;
}

.hero-grid {
  min-height: calc(100svh - 4.75rem);
  display: grid;
  align-items: center;
  gap: 1.5rem;
  padding-top: 3rem;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--purple-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span:nth-child(1) { color: var(--orange); }
.eyebrow span:nth-child(2) { color: var(--green); }

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

h1,
h2,
h3 {
  color: var(--purple-900);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 11vw, 5.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.hero-actions,
.booking-actions {
  display: grid;
  gap: 0.75rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 900;
}

.hero-art {
  align-self: end;
  margin: 0;
  filter: drop-shadow(0 22px 25px rgba(43, 11, 86, 0.12));
}

.hero-art img {
  width: min(100%, 38rem);
  margin-inline: auto;
  border-radius: 2rem 2rem 0 0;
}

.intro {
  background: var(--cream);
}

.intro p:last-child,
.section-heading > p:last-child,
.why-copy > p:last-child,
.enquiry-copy > p {
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 47rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  border: 1px solid rgba(43, 11, 86, 0.08);
  border-top: 0.45rem solid var(--card-accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -2.4rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border: 1.1rem solid var(--card-accent);
  border-radius: 50%;
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(43, 11, 86, 0.16);
}

.service-card p {
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.service-icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.card-red { --card-accent: var(--red); }
.card-orange { --card-accent: var(--orange); }
.card-yellow { --card-accent: var(--yellow); }
.card-green { --card-accent: var(--green); }
.card-blue { --card-accent: var(--blue); }

.centered-action {
  margin-top: 2.5rem;
  text-align: center;
}

.why {
  background: linear-gradient(180deg, var(--purple-100), #fff);
}

.why-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 1.2rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
}

.benefit-list strong {
  color: var(--purple-900);
  font-size: 1.15rem;
}

.benefit-list p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.benefit-dot {
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem white;
}

.dot-red { background: var(--red); }
.dot-yellow { background: var(--yellow); }
.dot-blue { background: var(--blue); }
.dot-green { background: var(--green); }

.booking {
  padding-bottom: 0;
}

.booking-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  border-radius: 2rem;
  padding: clamp(2rem, 6vw, 4rem);
  color: white;
  background: var(--purple-800);
  box-shadow: var(--shadow);
}

.booking-panel::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 25rem;
  height: 18rem;
  border: 1rem solid var(--red);
  border-top-color: var(--yellow);
  border-left-color: var(--green);
  border-radius: 50%;
  opacity: 0.22;
  transform: rotate(-10deg);
}

.booking-panel > * {
  position: relative;
  z-index: 1;
}

.booking-panel h2,
.booking-panel p {
  color: white;
}

.section-kicker.light {
  color: #f6d86c;
}

.button-light {
  color: var(--purple-900);
  background: white;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: white;
  background: transparent;
}

.booking-link {
  color: white;
  font-weight: 900;
  text-align: center;
}

.enquiry {
  background: var(--cream);
}

.enquiry-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.direct-contact {
  display: grid;
  gap: 0.2rem;
  border-left: 0.35rem solid var(--yellow);
  margin-top: 2rem;
  padding-left: 1.2rem;
}

.direct-contact p {
  margin-bottom: 1rem;
}

.direct-contact a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.enquiry-form {
  border: 1px solid rgba(43, 11, 86, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: white;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--purple-900);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 2px solid #d8cfe3;
  border-radius: 0.8rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: white;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-700);
  outline: 3px solid rgba(15, 143, 208, 0.28);
  outline-offset: 1px;
}

.honeypot {
  display: none;
}

.privacy-note {
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
}

.submit-button {
  width: 100%;
  border: 0;
}

.site-footer {
  padding: 3rem 0 2rem;
  color: #eee5f7;
  background: var(--purple-900);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-wordmark,
.footer-wordmark span {
  color: white;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-contact {
  display: grid;
  gap: 0.5rem;
}

.footer-contact a {
  width: fit-content;
  color: white;
  font-weight: 800;
}

.copyright {
  color: #cfc0df;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}

.mobile-contact-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom));
  background: var(--purple-900);
  box-shadow: 0 -5px 20px rgba(43, 11, 86, 0.2);
}

.mobile-contact-bar a {
  min-height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border-radius: 0.65rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-contact-bar a:nth-child(2) {
  background: var(--whatsapp);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, #fff, var(--purple-100));
}

.thank-you-card {
  max-width: 40rem;
  border-radius: 2rem;
  padding: clamp(2rem, 7vw, 4rem);
  text-align: center;
  background: white;
  box-shadow: var(--shadow);
}

.thank-you-card .rainbow-dots {
  margin-bottom: 1.5rem;
  color: var(--red);
  font-size: 1.7rem;
  letter-spacing: 0.3em;
}

@media (min-width: 36rem) {
  .hero-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .site-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2.5rem;
    padding-top: 1.5rem;
  }

  .hero-art img {
    max-height: calc(100svh - 6rem);
    width: auto;
    object-fit: contain;
  }

  .why-grid,
  .enquiry-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3rem, 8vw, 6rem);
  }

  .booking-panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }

  .mobile-contact-bar {
    display: none;
  }
}

@media (min-width: 64rem) {
  .section {
    padding: 6rem 0;
  }

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

  .service-card {
    grid-column: span 2;
  }

  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 24rem) {
  .header-call {
    padding-inline: 0.7rem;
  }

  .header-call span {
    display: none;
  }

  .mobile-contact-bar a {
    font-size: 0.76rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
