:root {
  --ink: #49303d;

  --purple: #8a13ad;
  --purple-dark: #76059a;

  --pink: #ff9acb;
  --pink-soft: #f7d7ec;
  --pink-pale: #fff3fa;

  --lilac: #ead5f4;

  --coral: #ea653b;
  --teal: #25aab2;
  --yellow: #ffd55e;

  --cream: #fffaf5;
  --white: #ffffff;

  --line: rgba(137, 0, 189, 0.16);

  --shadow:
    0 24px 70px rgba(96, 29, 94, 0.12);

  --shadow-soft:
    0 14px 35px rgba(96, 29, 94, 0.08);

  --radius-lg: 34px;
  --radius-md: 24px;

  --max: 1220px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  overflow-x: hidden;

  color: var(--ink);

  background:
    linear-gradient(
      135deg,
      #fff7fb 0%,
      #fffaf5 45%,
      #f9effb 100%
    );

  font-family:
    "Trebuchet MS",
    Arial,
    sans-serif;

  line-height: 1.6;
}


/* ---------------------------------
   PAGE LOAD
--------------------------------- */

.js body {
  opacity: 1;
}


.js body.page-ready {
  opacity: 1;

  transition:
    opacity 0.65s ease;
}


.hero__copy {
  opacity: 1;

  transform: none;
}


.page-ready .hero__copy {
  opacity: 1;

  transform:
    translateY(0);

  transition:
    opacity 0.8s ease 0.1s,
    transform 0.8s ease 0.1s;
}


.hero__visual {
  opacity: 1;

  transform: none;
}


.page-ready .hero__visual {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);

  transition:
    opacity 1s ease 0.26s,
    transform 1s ease 0.26s;
}


/* ---------------------------------
   GENERAL
--------------------------------- */

img {
  max-width: 100%;
}


/* HTML hidden state must always win over component display rules. */
[hidden] {
  display: none !important;
}

/* Critical booking/detail visibility states. */
.workshop-detail-loading[hidden],
.workshop-detail-error[hidden],
#workshop-detail[hidden],
.workshop-booking-form[hidden],
.workshop-booking-closed[hidden],
.square-payment-panel[hidden],
.workshop-booking-success[hidden] {
  display: none !important;
}


a {
  color: inherit;
}


button,
a {
  -webkit-tap-highlight-color:
    transparent;
}


/* ---------------------------------
   AMBIENT HEARTS & STARS
--------------------------------- */

.ambient-art {
  position: fixed;

  inset: 0;

  z-index: -1;

  overflow: hidden;

  pointer-events: none;
}


.ambient-shape {
  position: absolute;

  bottom: -90px;

  color: var(--purple);

  opacity: 0;

  pointer-events: none;

  will-change:
    transform,
    opacity;

  animation:
    bubbleRise
    var(--rise-speed, 20s)
    linear infinite;

  animation-delay:
    var(--delay, 0s);
}


@keyframes bubbleRise {

  0% {
    transform:
      translate3d(0, 0, 0)
      rotate(var(--rotation, 0deg))
      scale(0.7);

    opacity: 0;
  }


  8% {
    opacity:
      var(--bubble-opacity, 0.07);
  }


  45% {
    transform:
      translate3d(
        var(--drift-mid, 12px),
        -55vh,
        0
      )
      rotate(
        calc(
          var(--rotation, 0deg) + 10deg
        )
      )
      scale(1);
  }


  88% {
    opacity:
      var(--bubble-opacity, 0.07);
  }


  94% {
    transform:
      translate3d(
        var(--drift-end, -8px),
        -108vh,
        0
      )
      rotate(
        calc(
          var(--rotation, 0deg) + 22deg
        )
      )
      scale(1.08);

    opacity:
      var(--bubble-opacity, 0.07);
  }


  98% {
    transform:
      translate3d(
        var(--drift-end, -8px),
        -111vh,
        0
      )
      rotate(
        calc(
          var(--rotation, 0deg) + 26deg
        )
      )
      scale(1.3);

    opacity: 0.035;
  }


  100% {
    transform:
      translate3d(
        var(--drift-end, -8px),
        -112vh,
        0
      )
      rotate(
        calc(
          var(--rotation, 0deg) + 28deg
        )
      )
      scale(0);

    opacity: 0;
  }

}


/* ---------------------------------
   HEADER
--------------------------------- */

.site-header {
  position: sticky;

  top: 0;

  z-index: 100;

  border-bottom:
    1px solid rgba(137, 0, 189, 0.08);

  background:
    rgba(255, 248, 252, 0.88);

  backdrop-filter:
    blur(18px);
}


.site-header__inner {
  width:
    min(
      calc(100% - 42px),
      var(--max)
    );

  min-height: 88px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


.brand__logo {
  width: 62px;
  height: 62px;

  object-fit: contain;

  /*
    The source PNG has breathing room around the artwork,
    so this increases the visible alpaca without making
    the whole header taller.
  */
  transform: scale(1.18);
  transform-origin: center;
}


.brand__text {
  display: flex;

  flex-direction: column;

  line-height: 1.1;
}


.brand__text strong {
  color: var(--purple-dark);

  font-size: 1.16rem;
}


.brand__text span {
  margin-top: 5px;

  color: rgba(73, 48, 61, 0.68);

  font-size: 0.72rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.site-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}


.site-nav a {
  position: relative;

  padding: 10px 0;

  font-weight: 700;

  text-decoration: none;
}


.site-nav a::after {
  position: absolute;

  left: 0;

  right: 100%;

  bottom: 4px;

  height: 2px;

  border-radius: 999px;

  background: var(--pink);

  content: "";

  transition:
    right 0.22s ease;
}


.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}


.nav-toggle {
  display: none;
}


/* ---------------------------------
   HERO
--------------------------------- */

.hero {
  width:
    min(
      calc(100% - 42px),
      var(--max)
    );

  min-height:
    calc(100svh - 88px);

  margin: 0 auto;

  padding:
    38px 0 54px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.85fr);

  align-items: center;

  gap: 72px;
}

.hero__copy,
.hero__visual {
  position: relative;
  top: -10px;
}


.eyebrow {
  margin:
    0 0 14px;

  color: var(--purple);

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.hero h1 {
  margin: 0;

  max-width: 760px;

  color: var(--purple-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      3.7rem,
      6.5vw,
      6.7rem
    );

  font-weight: 700;

  line-height: 0.92;

  letter-spacing: -0.045em;
}


.hero h1 span {
  display: block;

  margin:
    12px 0;

  color: var(--coral);

  font-size: 0.48em;

  letter-spacing: 0;
}


.hero__intro {
  max-width: 670px;

  margin:
    24px 0 0;

  font-size:
    clamp(
      1.08rem,
      1.5vw,
      1.25rem
    );
}


.button-row {
  margin-top: 28px;

  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}


.button {
  min-height: 54px;

  padding:
    13px 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}


.button:hover,
.button:focus-visible {
  transform:
    translateY(-3px);
}


.button--primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      #81139f,
      #a92ab5
    );

  box-shadow:
    0 14px 30px
    rgba(118, 5, 154, 0.2);
}


.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 18px 36px
    rgba(118, 5, 154, 0.25);
}


.button--secondary {
  color: var(--purple-dark);

  border:
    1.5px solid
    rgba(137, 0, 189, 0.45);

  background:
    rgba(255, 255, 255, 0.64);
}


.social-links {
  margin-top: 28px;

  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


.social-links a {
  min-height: 44px;

  padding:
    8px 14px 8px 9px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  border:
    1px solid
    rgba(137, 0, 189, 0.14);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.62);

  color: var(--ink);

  font-size: 0.82rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}


.social-links a:hover,
.social-links a:focus-visible {
  transform:
    translateY(-3px);

  border-color:
    rgba(137, 0, 189, 0.3);

  box-shadow:
    var(--shadow-soft);
}


.social-icon {
  width: 30px;
  height: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 30px;

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.82);
}

.social-icon img {
  width: 17px;
  height: 17px;

  display: block;

  object-fit: contain;
}

.social-icon--coffee {
  background: #fff6c9;
}


.hero__visual {
  position: relative;

  min-height: 500px;

  display: grid;

  place-items: center;
}


.logo-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  opacity: 0.76;

  background:
    radial-gradient(
      circle at 40% 35%,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 209, 232, 0.78) 30%,
      rgba(255, 154, 203, 0.42) 52%,
      rgba(234, 213, 244, 0.32) 68%,
      rgba(255, 255, 255, 0) 78%
    );

  filter:
    blur(3px);

  animation:
    logoGlow 6s
    ease-in-out infinite alternate;
}


@keyframes logoGlow {

  from {
    transform: scale(0.97);
    opacity: 0.68;
  }

  to {
    transform: scale(1.025);
    opacity: 0.82;
  }

}


.hero__logo {
  position: relative;

  z-index: 2;

  width:
    min(
      100%,
      455px
    );

  filter:
    drop-shadow(
      0 24px 22px
      rgba(96, 29, 94, 0.14)
    );

  animation:
    logoFloat 7s
    ease-in-out infinite alternate;
}


@keyframes logoFloat {

  from {
    transform:
      translateY(4px)
      rotate(-0.4deg);
  }

  to {
    transform:
      translateY(-10px)
      rotate(0.6deg);
  }

}


.hero-spark {
  position: absolute;

  z-index: 1;

  color: var(--pink);

  opacity: 0.45;

  font-size: 2.2rem;

  animation:
    sparkFloat 8s
    ease-in-out infinite alternate;
}


.hero-spark--1 {
  top: 12%;

  left: 8%;
}


.hero-spark--2 {
  top: 18%;

  right: 3%;

  color: var(--purple);
}


.hero-spark--3 {
  bottom: 15%;

  left: 4%;

  color: var(--yellow);
}


.hero-spark--4 {
  right: 9%;

  bottom: 10%;

  color: var(--teal);
}


@keyframes sparkFloat {

  from {
    transform:
      translateY(0)
      rotate(-5deg)
      scale(0.95);
  }

  to {
    transform:
      translateY(-18px)
      rotate(7deg)
      scale(1.08);
  }

}


/* ---------------------------------
   SCROLL REVEALS
--------------------------------- */

.reveal {
  opacity: 0;

  transform:
    translateY(34px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}


.reveal.reveal--left {
  transform:
    translateX(-38px);
}


.reveal.reveal--right {
  transform:
    translateX(38px);
}


.reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0);
}


.reveal-delay-1 {
  transition-delay: 0.08s;
}


.reveal-delay-2 {
  transition-delay: 0.16s;
}


.reveal-delay-3 {
  transition-delay: 0.24s;
}


/* ---------------------------------
   SECTIONS
--------------------------------- */

.section {
  padding:
    110px 24px;
}


.section > * {
  width:
    min(
      100%,
      var(--max)
    );

  margin-left: auto;

  margin-right: auto;
}


.section-heading {
  margin-bottom: 54px;

  display: flex;

  align-items: end;

  justify-content: space-between;

  gap: 50px;
}


.section h2 {
  margin: 0;

  color: var(--purple-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      2.7rem,
      5vw,
      4.7rem
    );

  line-height: 1.02;

  letter-spacing: -0.035em;
}


.section-heading__intro {
  max-width: 410px;

  margin: 0;

  font-size: 1.08rem;
}

/* ---------------------------------
   WORKSHOPS
--------------------------------- */

.workshops {
  position: relative;

  overflow: hidden;

  isolation: isolate;

  padding-top: 64px;
  padding-bottom: 72px;

  background:
    rgba(255, 255, 255, 0.35);
}


/* Soft art-room doodles behind the workshop content. */

.workshops::before {
  position: absolute;

  left: -105px;
  bottom: 30px;

  z-index: 0;

  width: 215px;
  height: 36px;

  border-radius:
    62% 38% 58% 42%
    / 55% 45% 55% 45%;

  background:
    linear-gradient(
      90deg,
      rgba(255, 154, 203, 0.52),
      rgba(234, 101, 59, 0.36)
    );

  content: "";

  opacity: 0.1;

  pointer-events: none;

  transform:
    rotate(-7deg);
}


.workshops::after {
  position: absolute;

  top: 105px;
  right: -52px;

  z-index: 0;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background:
    /* flower centre */
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 213, 94, 0.28) 0 10px,
      transparent 11px
    ),

    /* petals */
    radial-gradient(
      ellipse at 50% 24%,
      rgba(255, 154, 203, 0.22) 0 17px,
      transparent 18px
    ),

    radial-gradient(
      ellipse at 76% 42%,
      rgba(234, 213, 244, 0.24) 0 17px,
      transparent 18px
    ),

    radial-gradient(
      ellipse at 67% 72%,
      rgba(255, 154, 203, 0.18) 0 17px,
      transparent 18px
    ),

    radial-gradient(
      ellipse at 33% 72%,
      rgba(234, 213, 244, 0.23) 0 17px,
      transparent 18px
    ),

    radial-gradient(
      ellipse at 24% 42%,
      rgba(255, 154, 203, 0.2) 0 17px,
      transparent 18px
    ),

    /* tiny teal paint spot */
    radial-gradient(
      circle at 82% 78%,
      rgba(37, 170, 178, 0.18) 0 6px,
      transparent 7px
    );

  content: "";

  opacity: 0.8;

  pointer-events: none;

  transform:
    rotate(8deg);

  animation:
    workshopBloomFloat
    10s ease-in-out
    infinite alternate;
}


@keyframes workshopBloomFloat {

  from {
    transform:
      translateY(0)
      rotate(6deg);
  }

  to {
    transform:
      translateY(-9px)
      rotate(11deg);
  }

}


.workshops > * {
  position: relative;

  z-index: 1;
}

/* ---------------------------------
   WORKSHOP HEADING
--------------------------------- */

.workshops .section-heading {
  margin-bottom: 34px;

  align-items: end;

  gap: 60px;
}


.workshops .section-heading > div {
  max-width: 760px;
}


.workshops .section-heading h2 {
  font-size:
    clamp(
      2.7rem,
      4vw,
      4.15rem
    );

  line-height: 0.98;

  letter-spacing: -0.035em;
}


.workshops .section-heading h2::after {
  display: block;

  width: 170px;
  height: 6px;

  margin-top: 14px;

  border-radius:
    70% 30% 65% 35%
    / 60% 45% 55% 40%;

  background:
    linear-gradient(
      90deg,
      rgba(234, 101, 59, 0.72),
      rgba(255, 154, 203, 0.72),
      rgba(138, 19, 173, 0.62),
      rgba(37, 170, 178, 0.68)
    );

  content: "";

  opacity: 0.52;

  transform:
    rotate(-1.5deg);
}


.workshops .section-heading__intro {
  max-width: 420px;

  margin-right: 70px;

  padding-bottom: 6px;

  font-size: 1.08rem;
}


/* Keep "Leave colourful." together */

.keep-together {
  white-space: nowrap;
}


/* Main heading gradient */

.gradient-word {
  display: inline;

  background:
    linear-gradient(
      90deg,
      #ea653b 0%,
      #ff9acb 35%,
      #8a13ad 68%,
      #25aab2 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* Supporting-copy gradient */

.gradient-colour {
  font-weight: 800;

  background:
    linear-gradient(
      90deg,
      #ff9acb 0%,
      #ea653b 30%,
      #8a13ad 65%,
      #25aab2 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* ---------------------------------
   WORKSHOP GRID
--------------------------------- */

.workshop-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}


.workshop-grid::before {
  position: absolute;

  left: 45%;
  bottom: -24px;

  z-index: -1;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background:
    rgba(138, 19, 173, 0.18);

  box-shadow:
    28px -9px 0 rgba(255, 154, 203, 0.19),
    53px 5px 0 rgba(255, 213, 94, 0.20),
    82px -6px 0 rgba(37, 170, 178, 0.18),
    110px 7px 0 rgba(234, 101, 59, 0.14);

  content: "";

  pointer-events: none;
}


/* ---------------------------------
   WORKSHOP CARD
--------------------------------- */

.workshop-card {
  min-width: 0;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  border:
    1px solid
    rgba(137, 0, 189, 0.08);

  border-radius: 32px;

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 16px 42px
    rgba(96, 29, 94, 0.08);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}


.workshop-card:hover {
  transform:
    translateY(-7px);

  border-color:
    rgba(138, 19, 173, 0.17);

  box-shadow:
    0 26px 58px
    rgba(96, 29, 94, 0.13);
}


/* ---------------------------------
   CARD VISUAL AREA
--------------------------------- */

.workshop-card__visual {
  position: relative;

  min-height: 150px;

  overflow: hidden;

  display: grid;

  place-items: center;
}


.workshop-card__visual::before {
  position: absolute;

  inset: 0;

  z-index: 1;

  background-image:
    radial-gradient(
      circle at 20% 28%,
      rgba(255, 255, 255, 0.72) 0 1px,
      transparent 1.8px
    ),
    radial-gradient(
      circle at 70% 62%,
      rgba(255, 255, 255, 0.38) 0 1px,
      transparent 1.7px
    );

  background-size:
    19px 19px,
    27px 27px;

  content: "";

  opacity: 0.16;

  pointer-events: none;
}


.workshop-card__visual::after {
  position: absolute;

  inset: 0;

  z-index: 1;

  content: "";

  pointer-events: none;

  background:
    radial-gradient(
      circle at 76% 22%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.24),
      rgba(255, 255, 255, 0)
    );
}


.workshop-card__visual--pink {
  background:
    radial-gradient(
      circle at 86% 20%,
      rgba(255, 255, 255, 0.32) 0 8px,
      transparent 9px
    ),
    radial-gradient(
      circle at 10% 78%,
      rgba(138, 19, 173, 0.10) 0 18px,
      transparent 19px
    ),
    linear-gradient(
      135deg,
      #ffd3e8,
      #ff9acb
    );
}


.workshop-card__visual--yellow {
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(234, 101, 59, 0.10) 0 12px,
      transparent 13px
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(138, 19, 173, 0.08) 0 20px,
      transparent 21px
    ),
    linear-gradient(
      135deg,
      #fff1ac,
      #ffd966
    );
}


.workshop-card__visual--teal {
  background:
    radial-gradient(
      circle at 16% 76%,
      rgba(255, 255, 255, 0.30) 0 10px,
      transparent 11px
    ),
    radial-gradient(
      circle at 87% 18%,
      rgba(234, 101, 59, 0.09) 0 16px,
      transparent 17px
    ),
    linear-gradient(
      135deg,
      #d7f6f4,
      #79d0d2
    );
}


/* ---------------------------------
   WORKSHOP BADGE
--------------------------------- */

.workshop-badge {
  position: absolute;

  top: 18px;
  left: 18px;

  z-index: 3;

  padding:
    7px 11px;

  border:
    1px solid
    rgba(255, 255, 255, 0.65);

  border-radius: 999px;

  color: var(--purple-dark);

  background:
    rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(10px);

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


.workshop-card:nth-child(1)
.workshop-badge {
  transform:
    rotate(-1.4deg);
}


.workshop-card:nth-child(2)
.workshop-badge {
  transform:
    rotate(1deg);
}


.workshop-card:nth-child(3)
.workshop-badge {
  transform:
    rotate(-0.8deg);
}


/* ---------------------------------
   CARD ART BASE
--------------------------------- */

.workshop-art {
  position: relative;

  z-index: 2;

  width: 130px;
  height: 110px;

  transition:
    transform 0.35s ease;
}


.workshop-card:hover
.workshop-art {
  transform:
    translateY(-3px)
    scale(1.035);
}


.workshop-card:hover
.workshop-art--paint {
  transform:
    translateY(-4px)
    rotate(-3deg)
    scale(1.055);
}


.workshop-card:hover
.workshop-art--palette {
  transform:
    translateY(-3px)
    rotate(3deg)
    scale(1.045);
}


.workshop-card:hover
.workshop-art--spark {
  transform:
    translateY(-4px)
    rotate(-2deg)
    scale(1.07);
}


/* ---------------------------------
   PAINT ART
--------------------------------- */

.paint-splotch {
  position: absolute;

  border-radius:
    45% 55% 58% 42%
    / 50% 48% 52% 50%;
}


.paint-splotch--1 {
  width: 58px;
  height: 54px;

  left: 10px;
  top: 28px;

  background: #8a13ad;

  opacity: 0.72;

  transform:
    rotate(-12deg);
}


.paint-splotch--2 {
  width: 51px;
  height: 49px;

  right: 8px;
  top: 17px;

  background: #25aab2;

  opacity: 0.76;

  transform:
    rotate(15deg);
}


.paint-splotch--3 {
  width: 45px;
  height: 42px;

  right: 30px;
  bottom: 5px;

  background: #ffd55e;

  opacity: 0.92;

  transform:
    rotate(-6deg);
}


.paint-brush {
  position: absolute;

  left: 56px;
  top: 12px;

  width: 24px;
  height: 96px;

  transform:
    rotate(33deg);

  transform-origin: center;
}


.paint-brush__handle {
  position: absolute;

  left: 8px;
  top: 29px;

  width: 9px;
  height: 66px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      #db7749,
      #9d4e33
    );
}


.paint-brush__tip {
  position: absolute;

  left: 3px;
  top: 2px;

  width: 20px;
  height: 35px;

  background:
    linear-gradient(
      180deg,
      #ff5e95,
      #8a13ad
    );

  clip-path:
    polygon(
      50% 0,
      100% 60%,
      75% 100%,
      25% 100%,
      0 60%
    );
}


/* ---------------------------------
   PALETTE ART
--------------------------------- */

.workshop-art--palette {
  display: grid;

  place-items: center;
}


.palette-shape {
  position: absolute;

  width: 105px;
  height: 82px;

  border-radius:
    55% 45% 50% 50%
    / 58% 55% 45% 42%;

  background:
    rgba(255, 255, 255, 0.72);

  transform:
    rotate(-8deg);

  box-shadow:
    0 10px 25px
    rgba(121, 80, 45, 0.08);
}


.palette-shape::after {
  position: absolute;

  width: 20px;
  height: 20px;

  right: 13px;
  bottom: 11px;

  border-radius: 50%;

  background: #ffe380;

  content: "";
}


.palette-dot {
  position: absolute;

  z-index: 2;

  width: 17px;
  height: 17px;

  border-radius: 50%;
}


.palette-dot--1 {
  left: 31px;
  top: 29px;

  background: #ff6e9f;
}


.palette-dot--2 {
  left: 53px;
  top: 18px;

  background: #8a13ad;
}


.palette-dot--3 {
  left: 66px;
  top: 43px;

  background: #25aab2;
}


.palette-dot--4 {
  left: 35px;
  top: 52px;

  background: #ea653b;
}


/* ---------------------------------
   SPARK ART
--------------------------------- */

.workshop-art--spark {
  display: grid;

  place-items: center;
}


.spark-shape {
  position: absolute;

  color: #f5a43d;

  filter:
    drop-shadow(
      0 7px 10px
      rgba(181, 104, 22, 0.12)
    );
}


.spark-shape--large {
  font-size: 4.4rem;

  transform:
    rotate(8deg);
}


.spark-shape--small {
  left: 19px;
  top: 22px;

  color: #ea653b;

  font-size: 1.8rem;

  transform:
    rotate(-12deg);
}


.spark-ring {
  position: absolute;

  width: 92px;
  height: 92px;

  border:
    1px solid
    rgba(255, 255, 255, 0.5);

  border-radius: 50%;
}


.workshop-card:hover
.spark-shape--large {
  animation:
    workshopSpark 0.62s ease;
}


@keyframes workshopSpark {
  0% {
    transform:
      rotate(8deg)
      scale(1);
  }

  50% {
    transform:
      rotate(17deg)
      scale(1.16);
  }

  100% {
    transform:
      rotate(8deg)
      scale(1);
  }
}


/* ---------------------------------
   CARD CONTENT
--------------------------------- */

.workshop-card__content {
  flex: 1;

  padding:
    22px 26px 24px;

  display: flex;
  flex-direction: column;
}


.workshop-card__topline {
  margin-bottom: 13px;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


.workshop-card__topline span {
  padding:
    5px 9px;

  border-radius: 999px;

  color:
    rgba(73, 48, 61, 0.82);

  background:
    rgba(255, 243, 250, 0.95);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.04em;
}


.workshop-card h3 {
  margin:
    0 0 10px;

  color: var(--ink);

  font-size: 1.4rem;

  line-height: 1.2;
}


.workshop-card__content > p {
  margin:
    0 0 16px;

  color:
    rgba(73, 48, 61, 0.82);

  font-size: 0.95rem;

  line-height: 1.55;
}


/* ---------------------------------
   WORKSHOP DETAILS
--------------------------------- */

.workshop-details {
  margin:
    auto 0 0;

  padding:
  14px 0;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;

  border-top:
    1px solid
    rgba(137, 0, 189, 0.09);

  border-bottom:
    1px solid
    rgba(137, 0, 189, 0.09);
}


.workshop-details div {
  min-width: 0;
}


.workshop-details dt {
  margin-bottom: 3px;

  color:
    rgba(73, 48, 61, 0.55);

  font-size: 0.67rem;

  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


.workshop-details dd {
  margin: 0;

  color: var(--ink);

  font-size: 0.84rem;

  font-weight: 700;
}


/* ---------------------------------
   CARD FOOTER
--------------------------------- */

.workshop-card__footer {
  padding-top: 14px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}


.availability {
  color: var(--purple);

  font-size: 0.81rem;

  font-weight: 800;
}


.availability--soon {
  color: var(--coral);
}


.workshop-arrow {
  width: 34px;
  height: 34px;

  flex:
    0 0 34px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: white;

  background:
    var(--purple);

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}


.workshop-card:hover
.workshop-arrow {
  transform:
    translateX(3px);

  background:
    var(--purple-dark);
}


/* ---------------------------------
   WORKSHOP RESPONSIVE
--------------------------------- */

@media (max-width: 950px) {

  .workshops {
    padding-top: 58px;
    padding-bottom: 64px;
  }


  .workshops .section-heading {
    margin-bottom: 30px;

    align-items: start;

    flex-direction: column;

    gap: 14px;
  }


  .workshops .section-heading h2 {
    font-size:
      clamp(
        2.5rem,
        7vw,
        3.7rem
      );
  }


  .workshops
  .section-heading__intro {
    margin-right: 0;
  }


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


  .workshop-card {
    display: grid;

    grid-template-columns:
      minmax(190px, 0.4fr)
      minmax(0, 1fr);
  }


  .workshop-card__visual {
  min-height: 135px;
}

}


@media (max-width: 650px) {

  .workshops {
    padding-top: 50px;
    padding-bottom: 56px;
  }


  .workshops
  .section-heading h2 {
    font-size:
      clamp(
        2.25rem,
        11vw,
        3.2rem
      );

    line-height: 1;
  }


  .keep-together {
    white-space: normal;
  }


  .workshop-card {
    display: flex;

    flex-direction: column;
  }


  .workshop-card__visual {
    min-height: 145px;
  }


  .workshop-card__content {
    padding:
      23px 24px 25px;
  }


  .workshop-details {
    gap: 10px;
  }

}

/* ---------------------------------
   WORKSHOP REDUCED MOTION
--------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .workshop-art,
  .workshop-card,
  .spark-shape--large {
    animation: none !important;
    transition: none !important;
  }

  .workshop-card:hover
  .workshop-art {
    transform: none;
  }
}

/* Soften workshop decorative star + heart */

.workshops .workshop-doodle-star,
.workshops .workshop-doodle-heart {
  opacity: 0.22;
}

.workshops .workshop-doodle-star {
  color: #8a13ad;
}

.workshops .workshop-doodle-heart {
  color: #ff9acb;
}

/* ---------------------------------
   ART SHOULD BE FUN
--------------------------------- */

.art-should-be-fun {
  background:
    linear-gradient(
      120deg,
      #fde7f4,
      #f4e5fb
    );
}


.fun-panel {
  padding: 38px 56px;
  display: grid;
  grid-template-columns: .68fr 1fr;
  align-items: center;
  gap: 48px;
  border: 1px solid rgba(137, 0, 189, .09);
  border-radius: 44px;
  background: rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-soft);
}


.fun-panel__art {
  display: grid;

  place-items: center;
}


.fun-panel__art img {
  width: 335px;
  transition: transform .35s ease;
}


.fun-panel:hover
.fun-panel__art img {
  transform:
    rotate(-2deg)
    scale(1.025);
}


.fun-panel__copy {
  transform: translateY(-4px);
}


/* ---------------------------------
   PRIVATE PARTIES
--------------------------------- */

.parties {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(470px, 1fr);

  align-items: center;
  gap: 72px;

  padding-top: 72px;
  padding-bottom: 96px;
}


/* ---------------------------------
   PARTY COPY
--------------------------------- */

.parties__copy .button {

  box-shadow: 0 12px 26px rgba(138, 19, 173, 0.16);

}


.parties__copy .eyebrow {
  margin-bottom: 18px;
}


.parties__copy h2 {
  margin: 0 0 22px;

  color: var(--purple);

  font-size: clamp(
    3.4rem,
    5vw,
    5.4rem
  );

  line-height: 0.96;
}


.parties__copy p {
  max-width: 590px;

  margin: 0 0 18px;

  font-size: 1.12rem;
  line-height: 1.7;
}


.parties__copy .button {
  margin-top: 8px;
}


/* ---------------------------------
   PARTY FEATURE CARD
--------------------------------- */

.party-card {
  position: relative;
  z-index: 2;

  overflow: hidden;

  min-height: 350px;

  padding: 52px 56px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border:
    1px solid
    rgba(138, 19, 173, 0.08);

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 243, 250, 0.9)
    );

  box-shadow:
    0 24px 60px
    rgba(102, 38, 94, 0.1);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.party-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 30px 72px
    rgba(102, 38, 94, 0.13);
}


.party-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 20px;

  color: var(--purple);

  font-size: clamp(
    2.8rem,
    3.8vw,
    4.1rem
  );

  line-height: 0.98;
}


.party-card p {
  position: relative;
  z-index: 2;

  max-width: 540px;

  margin: 0;

  color: var(--ink);

  font-size: 1.06rem;
  line-height: 1.6;
}


/* ---------------------------------
   CAKE GRADIENT
--------------------------------- */

.party-gradient {
  display: inline;

  background:
    linear-gradient(
      90deg,
      #ea653b 0%,
      #ff9acb 48%,
      #8a13ad 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* ---------------------------------
   PARTY DOODLES
--------------------------------- */

.party-doodles {
  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;
}


.party-doodles span {
  position: absolute;

  opacity: 0.12;

  font-size: 3.2rem;

  animation:
    doodleFloat
    6s ease-in-out
    infinite alternate;
}


.party-doodles span:nth-child(1) {
  top: 28px;
  right: 38px;

  color: var(--pink);
}


.party-doodles span:nth-child(2) {
  right: 58px;
  bottom: 28px;

  color: var(--yellow);

  animation-delay: -2s;
}


.party-doodles span:nth-child(3) {
  left: 28px;
  bottom: 28px;

  color: var(--teal);

  animation-delay: -4s;
}


@keyframes doodleFloat {

  from {
    transform:
      translateY(0)
      rotate(-3deg);
  }

  to {
    transform:
      translateY(-8px)
      rotate(4deg);
  }

}


/* ---------------------------------
   RESPONSIVE
--------------------------------- */

@media (max-width: 950px) {

  .parties {
    grid-template-columns: 1fr;
    gap: 46px;

    padding-top: 72px;
    padding-bottom: 80px;
  }


  .party-card {
    min-height: 310px;

    padding:
      46px
      44px;
  }

}


@media (max-width: 650px) {

  .parties {
    gap: 38px;

    padding-top: 60px;
    padding-bottom: 68px;
  }


  .parties__copy h2 {
    font-size:
      clamp(
        3rem,
        15vw,
        4.4rem
      );
  }


  .party-card {
    min-height: 280px;

    padding:
      38px
      30px;

    border-radius: 28px;
  }


  .party-card h3 {
    font-size:
      clamp(
        2.55rem,
        12vw,
        3.6rem
      );
  }


  .party-doodles span {
    font-size: 2.7rem;
  }

}



/* ---------------------------------
   ABOUT CRAZY ALPACA
--------------------------------- */

.about {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding-top: 86px;
  padding-bottom: 96px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 250, 245, 0.94),
      rgba(255, 243, 250, 0.72) 55%,
      rgba(244, 229, 251, 0.72)
    );
}


.about::before {
  position: absolute;
  left: -115px;
  top: 72px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 154, 203, 0.16),
      rgba(255, 154, 203, 0) 70%
    );

  content: "";
  pointer-events: none;
}


.about::after {
  position: absolute;
  right: -70px;
  bottom: 30px;

  width: 190px;
  height: 190px;

  border-radius:
    55% 45% 52% 48%
    / 45% 58% 42% 55%;

  background:
    linear-gradient(
      135deg,
      rgba(37, 170, 178, 0.08),
      rgba(234, 213, 244, 0.18)
    );

  
  opacity: 0.62;

  content: "";
  pointer-events: none;
  transform: rotate(12deg);
}


.about__grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(500px, 1.05fr);

  align-items: center;
  gap: 76px;
}


.about__heading {
  min-width: 0;
}


.about__heading .eyebrow {
  margin-bottom: 16px;
}


.about__heading h2 {
  margin: 0 0 28px;

  font-size:
    clamp(
      3.4rem,
      5.2vw,
      5.3rem
    );

  line-height: 0.96;
}


.about__copy {
  max-width: 610px;
}


.about__copy p {
  margin: 0 0 18px;

  color:
    rgba(73, 48, 61, 0.86);

  font-size: 1.03rem;
  line-height: 1.72;
}


.about__shop-link {
  margin-top: 8px;

  min-height: 48px;
  padding: 10px 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border:
    1px solid
    rgba(138, 19, 173, 0.14);

  border-radius: 15px;

  color: var(--purple-dark);

  background:
    rgba(255, 255, 255, 0.72);

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow:
    0 10px 25px
    rgba(96, 29, 94, 0.06);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}


.about__shop-link span {
  transition:
    transform 0.22s ease;
}


.about__shop-link:hover,
.about__shop-link:focus-visible {
  transform: translateY(-3px);

  border-color:
    rgba(138, 19, 173, 0.28);

  box-shadow:
    0 16px 34px
    rgba(96, 29, 94, 0.1);
}


.about__shop-link:hover span,
.about__shop-link:focus-visible span {
  transform: translateX(3px);
}


/* ---------------------------------
   ABOUT ART WALL
--------------------------------- */

.about__visual {
  position: relative;

  min-height: 555px;

  display: flex;
  align-items: center;
  justify-content: center;
}


.about__visual::before {
  position: absolute;

  width: 470px;
  height: 430px;

  border-radius:
    55% 45% 48% 52%
    / 46% 58% 42% 54%;

  background:
    linear-gradient(
      135deg,
      rgba(255, 154, 203, 0.18),
      rgba(234, 213, 244, 0.3),
      rgba(37, 170, 178, 0.09)
    );

  content: "";

  transform: rotate(-6deg);
}


.about__art-label {
  position: absolute;
  top: 16px;
  right: 34px;
  z-index: 6;

  padding: 8px 14px;

  border:
    1px solid
    rgba(138, 19, 173, 0.09);

  border-radius: 999px;

  color: var(--purple);

  background:
    rgba(255, 255, 255, 0.9);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  box-shadow:
    0 10px 26px
    rgba(94, 48, 84, 0.07);
}


.about__art-stack {
  position: relative;
  z-index: 2;

  width: min(100%, 590px);
  height: 510px;
}


.about__art-card {
  position: absolute;

  overflow: hidden;

  margin: 0;

  border:
    7px solid
    rgba(255, 255, 255, 0.97);

  border-radius: 27px;

  background: white;

  box-shadow:
    0 24px 55px
    rgba(79, 43, 72, 0.14);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.about__art-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}


.about__art-card--one {
  top: 24px;
  left: 40px;

  width: 278px;
  height: 345px;

  padding: 8px;

  background:
    linear-gradient(
      145deg,
      #fff2f8,
      #f8e8f5
    );

  transform: rotate(-4deg);
}


.about__art-card--two {
  top: 90px;
  right: 18px;

  width: 238px;
  height: 292px;

  padding: 10px;

  background:
    linear-gradient(
      145deg,
      #f4fbf6,
      #e9f6ed
    );

  transform: rotate(5deg);
}


.about__art-card--three {
  left: 150px;
  bottom: -14px;

  width: 292px;
  height: 204px;

  background: #f5f2f3;

  transform: rotate(1.8deg);
}


.about__art-card--three img {
  object-fit: cover;
}


.about__art-card:hover {
  z-index: 10;

  transform:
    translateY(-8px)
    rotate(0deg)
    scale(1.025);

  box-shadow:
    0 32px 70px
    rgba(79, 43, 72, 0.18);
}


/* ---------------------------------
   ABOUT RESPONSIVE
--------------------------------- */

@media (max-width: 950px) {

  .about {
    padding-top: 76px;
    padding-bottom: 84px;
  }


  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }


  .about__copy {
    max-width: 720px;
  }


  .about__visual {
    width: min(100%, 680px);
    min-height: 520px;

    margin: 0 auto;
  }

}


@media (max-width: 650px) {

  .about {
    padding-top: 62px;
    padding-bottom: 68px;
  }


  .about__heading h2 {
    font-size:
      clamp(
        3rem,
        15vw,
        4.4rem
      );
  }


  .about__copy p {
    font-size: 0.98rem;
    line-height: 1.68;
  }


  .about__visual {
    min-height: 430px;
  }


  .about__visual::before {
    width: 340px;
    height: 330px;
  }


  .about__art-label {
    top: 0;
    right: 8px;

    font-size: 0.64rem;
  }


  .about__art-stack {
    width: 100%;
    height: 400px;
  }


  .about__art-card {
    border-width: 5px;
    border-radius: 20px;
  }


  .about__art-card--one {
    top: 30px;
    left: 1%;

    width: 205px;
    height: 255px;
  }


  .about__art-card--two {
    top: 82px;
    right: 0;

    width: 172px;
    height: 210px;
  }


  .about__art-card--three {
    left: 24%;
    bottom: -8px;

    width: 210px;
    height: 145px;
  }

}

/* ---------------------------------
   CONTACT
--------------------------------- */

.contact {
  position: relative;

  overflow: hidden;

  padding-top: 92px;
  padding-bottom: 96px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #7f00ad,
      #a51ab9,
      #ef77b9
    );
}


.contact::after {
  position: absolute;

  width: 460px;

  height: 460px;

  right: -120px;

  bottom: -190px;

  border:
    2px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 50%;

  
  opacity: 0.55;

  content: "";
}


.contact__inner {
  position: relative;

  z-index: 2;

  max-width: 780px;

  margin:
    0 auto;

  text-align: center;
}


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


.contact h2 {
  color: white;
}


.contact p {
  max-width: 610px;

  margin:
    24px auto 0;

  font-size: 1.08rem;
}


.contact .button-row {
  justify-content: center;
}


.button--light {
  color: var(--purple-dark);

  background: white;
}


.button--outline-light {
  color: white;

  border:
    1.5px solid
    rgba(255, 255, 255, 0.7);
}


/* ---------------------------------
   FOOTER
--------------------------------- */

.site-footer {
  width:
    min(
      calc(100% - 42px),
      var(--max)
    );

  min-height: 170px;

  margin: 0 auto;

  padding:
    38px 0 50px;

  display: grid;

  grid-template-columns:
    1fr auto auto;

  align-items: center;

  gap: 40px;
}


.footer-brand {
  display: flex;

  align-items: center;

  gap: 14px;
}


.footer-brand img {
  width: 66px;
}


.footer-brand div {
  display: flex;

  flex-direction: column;
}


.footer-brand span,
.footer-location {
  color:
    rgba(73, 48, 61, 0.65);

  font-size: 0.85rem;
}


.footer-social {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;
}


.footer-social a {
  position: relative;

  font-size: 0.88rem;

  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--purple);

  transform:
    translateY(-2px);
}


.footer-location {
  margin: 0;
}


/* ---------------------------------
   TABLET
--------------------------------- */

@media (max-width: 950px) {

  .hero {
    grid-template-columns: 1fr;

    gap: 20px;

    padding-top: 65px;

    text-align: center;
  }


  .hero__intro {
    margin-left: auto;

    margin-right: auto;
  }


  .button-row,
  .social-links {
    justify-content: center;
  }


  .hero__visual {
    min-height: 450px;
  }


  .section-heading {
    align-items: start;

    flex-direction: column;

    gap: 18px;
  }


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


  .workshop-card {
    min-height: unset;
  }


  .fun-panel,
  .parties {
    grid-template-columns: 1fr;
  }


  .fun-panel {
    gap: 28px;
  }


  .parties {
    gap: 44px;
  }


  .site-footer {
    grid-template-columns: 1fr;

    justify-items: center;

    text-align: center;
  }

}


/* ---------------------------------
   MOBILE
--------------------------------- */

@media (max-width: 760px) {

  .site-header__inner {
    width:
      min(
        calc(100% - 28px),
        var(--max)
      );

    min-height: 74px;
  }


  .brand__logo {
    width: 48px;

    height: 48px;
  }


  .brand__text span {
    display: none;
  }


  .nav-toggle {
    display: inline-flex;

    padding:
      10px 15px;

    border: 0;

    border-radius: 13px;

    color: white;

    background: var(--purple);

    font-weight: 800;

    cursor: pointer;
  }


  .site-nav {
    position: absolute;

    top: 82px;

    left: 14px;

    right: 14px;

    display: none;

    padding: 14px;

    flex-direction: column;

    align-items: stretch;

    gap: 2px;

    border:
      1px solid
      rgba(137, 0, 189, 0.1);

    border-radius:
      20px;

    background:
      rgba(255, 255, 255, 0.98);

    box-shadow:
      var(--shadow);
  }


  .site-nav.is-open {
    display: flex;
  }


  .site-nav a {
    padding:
      12px;
  }


  .hero {
    width:
      min(
        calc(100% - 28px),
        var(--max)
      );

    min-height: auto;

    padding:
      58px 0 70px;
  }


  .hero h1 {
    font-size:
      clamp(
        3.5rem,
        17vw,
        5.5rem
      );
  }


  .hero__visual {
    min-height: 360px;
  }


  .logo-glow {
    width: 330px;

    height: 330px;
  }


  .hero__logo {
    width: 325px;
  }


  .section {
    padding:
      75px 18px;
  }


  .fun-panel {
    padding:
      32px 22px;

    border-radius:
      30px;
  }


  .party-card {
    padding:
      34px 26px;
  }


  .social-links span:last-child {
    display: none;
  }


  .social-links a {
    padding: 8px;
  }


  .site-footer {
    width:
      min(
        calc(100% - 28px),
        var(--max)
      );
  }

}


/* ---------------------------------
   REDUCED MOTION
--------------------------------- */

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

  *,
  *::before,
  *::after {
    scroll-behavior:
      auto !important;

    animation-duration:
      0.001ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.001ms !important;
  }


    .ambient-shape {
    opacity: 0;
    filter: saturate(0.9);

    /* prevents any symbol from visually reading as black */
    color: rgba(138, 19, 173, 0.12);
    }


  .reveal,
  .hero__copy,
  .hero__visual {
    opacity:
      1 !important;

    transform:
      none !important;
  }

}

/* ---------------------------------
   CRAZY ALPACA SCROLLBAR
--------------------------------- */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #c875d6 #fff3fa;
}


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}


::-webkit-scrollbar-track {
  background: #fff3fa;
}


::-webkit-scrollbar-thumb {
  border: 3px solid #fff3fa;
  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      #d98cce,
      #ad58c4
    );
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #ce7ac9,
      #9540ae
    );
}

/* Conversion and accessibility refinements */
[id] {
  scroll-margin-top: 104px;
}

.parties__copy > p:not(.eyebrow),
.contact__inner > p:not(.eyebrow) {
  max-width: 600px;
}

.party-details {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.party-details div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(137, 0, 189, 0.12);
}

.party-details dt {
  color: var(--purple-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.party-details dd {
  margin: 0;
}

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

.contact-note {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

@media (max-width: 650px) {
  .party-details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* ---------------------------------
   RESPONSIVE QA TOUCH TARGETS
--------------------------------- */

@media (max-width: 760px) {

  .nav-toggle {
    min-height: 44px;
  }

  .footer-social a {
    min-height: 44px;
    padding: 10px 3px;

    display: inline-flex;
    align-items: center;
  }

}

/* ---------------------------------
   LIVE WORKSHOP DATA
--------------------------------- */

.workshop-loading,
.workshop-empty {
  grid-column: 1 / -1;
}


.workshop-loading {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(138, 19, 173, 0.13);
  border-radius: 28px;
  color: rgba(73, 48, 61, 0.6);
  background: rgba(255, 255, 255, 0.54);
  font-weight: 800;
}


.workshop-empty {
  padding: 54px 40px;
  border: 1px dashed rgba(138, 19, 173, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.8),
      rgba(255, 243, 250, 0.72)
    );
  text-align: center;
}


.workshop-empty h3 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}


.workshop-empty p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(73, 48, 61, 0.7);
}


.workshop-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.workshop-card__visual--lilac {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.3) 0 12px,
      transparent 13px
    ),
    linear-gradient(
      135deg,
      #f5e6fb,
      #d7afe8
    );
}


.workshop-card__image + .workshop-art,
.workshop-card__visual:has(.workshop-card__image) .workshop-art {
  display: none;
}


.workshop-card__visual:has(.workshop-card__image)::before,
.workshop-card__visual:has(.workshop-card__image)::after {
  z-index: 1;
}


.workshop-card--live .workshop-badge {
  z-index: 3;
}


.workshop-arrow {
  border: 0;
  text-decoration: none;
}


/* ---------------------------------
   WORKSHOP DETAIL / BOOKING PAGE
--------------------------------- */

.workshop-page {
  min-height: 100svh;
  background:
    linear-gradient(
      135deg,
      #fff7fb 0%,
      #fffaf5 45%,
      #f9effb 100%
    );
}


.workshop-detail-main {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
  padding: 70px 0 100px;
}


.workshop-detail-loading {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: rgba(73, 48, 61, 0.65);
  font-weight: 800;
}


.workshop-detail-error {
  max-width: 760px;
  margin: 90px auto;
  padding: 50px;
  border: 1px solid rgba(138, 19, 173, 0.09);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  text-align: center;
}


.workshop-detail-error h1 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
}


.workshop-detail-error p {
  margin: 18px 0 0;
}


.workshop-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
}


.workshop-detail-copy h1 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6.2vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}


.workshop-detail-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(73, 48, 61, 0.82);
  font-size: 1.08rem;
}


.workshop-detail-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.workshop-detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(73, 48, 61, 0.78);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(96, 29, 94, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
}


.workshop-detail-image-wrap {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}


.workshop-detail-image-wrap::before {
  position: absolute;
  width: 92%;
  height: 92%;
  border-radius: 46% 54% 57% 43% / 52% 46% 54% 48%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 154, 203, 0.24),
      rgba(234, 213, 244, 0.34),
      rgba(37, 170, 178, 0.12)
    );
  content: "";
  transform: rotate(-5deg);
}


.workshop-detail-image {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  max-height: 470px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(96, 29, 94, 0.15);
  transform: rotate(2deg);
}


.workshop-detail-placeholder {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 38px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #ffb5d8, #cf8ade, #72d0d0);
  box-shadow: 0 26px 70px rgba(96, 29, 94, 0.13);
  font-size: 7rem;
}


.workshop-detail-body {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: 58px;
}


.workshop-story-card,
.workshop-booking-card {
  border: 1px solid rgba(138, 19, 173, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 55px rgba(96, 29, 94, 0.075);
}


.workshop-story-card {
  padding: 34px;
}


.workshop-story-card h2,
.workshop-booking-card h2 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}


.workshop-story-card p {
  margin: 18px 0 0;
  white-space: pre-line;
}


.workshop-story-facts {
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}


.workshop-story-facts div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(138, 19, 173, 0.08);
}


.workshop-story-facts dt {
  color: rgba(73, 48, 61, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}


.workshop-story-facts dd {
  margin: 0;
  font-weight: 700;
}


.workshop-booking-card {
  padding: 34px;
}


.workshop-booking-intro {
  margin: 14px 0 0;
  color: rgba(73, 48, 61, 0.7);
}


.workshop-session-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}


.workshop-session-option {
  position: relative;
  display: block;
  cursor: pointer;
}


.workshop-session-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.workshop-session-option__content {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1.5px solid rgba(138, 19, 173, 0.12);
  border-radius: 17px;
  background: rgba(255, 250, 253, 0.86);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}


.workshop-session-option input:checked + .workshop-session-option__content {
  border-color: rgba(138, 19, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 19, 173, 0.07);
}


.workshop-session-option input:focus-visible + .workshop-session-option__content {
  outline: 3px solid rgba(138, 19, 173, 0.16);
  outline-offset: 2px;
}


.workshop-session-option__content strong,
.workshop-session-option__content span {
  display: block;
}


.workshop-session-option__content span {
  margin-top: 2px;
  color: rgba(73, 48, 61, 0.6);
  font-size: 0.8rem;
}


.workshop-session-availability {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
}


.workshop-session-option.is-sold-out {
  opacity: 0.56;
  cursor: not-allowed;
}


.workshop-booking-form {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}


.workshop-booking-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}


.workshop-booking-field--wide {
  grid-column: 1 / -1;
}


.workshop-booking-field label {
  font-size: 0.8rem;
  font-weight: 800;
}


.workshop-booking-field input,
.workshop-booking-field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1.5px solid rgba(138, 19, 173, 0.14);
  border-radius: 14px;
  outline: 0;
  color: var(--ink);
  background: white;
  font: inherit;
}


.workshop-booking-field input:focus,
.workshop-booking-field select:focus {
  border-color: rgba(138, 19, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 19, 173, 0.07);
}


.workshop-booking-total {
  grid-column: 1 / -1;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 16px;
  background: rgba(255, 243, 250, 0.9);
}


.workshop-booking-total span {
  color: rgba(73, 48, 61, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
}


.workshop-booking-total strong {
  color: var(--purple-dark);
  font-size: 1.1rem;
}


.workshop-booking-submit {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}


.workshop-booking-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}


.workshop-booking-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}


.workshop-booking-status[data-type="error"] {
  color: #a43a4f;
}


.workshop-booking-status[data-type="success"] {
  color: #2d755c;
}


.workshop-booking-closed,
.workshop-booking-success {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 243, 250, 0.82);
}


.workshop-booking-success {
  border: 1px solid rgba(37, 170, 178, 0.16);
  background: rgba(230, 249, 247, 0.84);
}


.workshop-booking-success strong {
  color: var(--purple-dark);
}


.workshop-booking-success p,
.workshop-booking-closed p {
  margin: 7px 0 0;
}


@media (max-width: 950px) {
  .workshop-detail-hero,
  .workshop-detail-body {
    grid-template-columns: 1fr;
  }


  .workshop-detail-hero {
    gap: 35px;
  }


  .workshop-detail-image-wrap {
    min-height: 390px;
  }


  .workshop-detail-body {
    margin-top: 48px;
    gap: 28px;
  }
}


@media (max-width: 650px) {
  .workshop-detail-main {
    width: min(calc(100% - 28px), var(--max));
    padding: 48px 0 70px;
  }


  .workshop-detail-image-wrap {
    min-height: 320px;
  }


  .workshop-detail-placeholder {
    width: min(100%, 310px);
    font-size: 5rem;
  }


  .workshop-story-card,
  .workshop-booking-card,
  .workshop-detail-error {
    padding: 27px 22px;
    border-radius: 26px;
  }


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


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


  .workshop-booking-field--wide,
  .workshop-booking-total,
  .workshop-booking-submit,
  .workshop-booking-status {
    grid-column: auto;
  }
}


/* ---------------------------------
   SQUARE PAYMENT
--------------------------------- */

.square-payment-panel {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(138, 19, 173, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(96, 29, 94, 0.08);
}


.square-payment-panel__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}


.square-payment-panel__heading h3 {
  margin: 0;
  color: var(--purple-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}


.square-payment-panel__heading > strong {
  color: var(--purple-dark);
  font-size: 1.25rem;
}


.square-payment-hold {
  margin: 14px 0 18px;
  color: rgba(73, 48, 61, 0.7);
  font-size: 0.84rem;
}


.square-card-container {
  min-height: 96px;
  padding: 4px 0;
}


.square-payment-note {
  margin: 12px 0 0;
  color: rgba(73, 48, 61, 0.56);
  font-size: 0.75rem;
  line-height: 1.5;
}


.workshop-booking-success a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}


/* ---------------------------------
   PRIVATE PARTY ENQUIRY
--------------------------------- */

.party-enquiry {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 243, 250, 0.88),
      rgba(255, 250, 245, 0.94)
    );
}


.party-enquiry::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: -120px;
  border: 2px solid rgba(255, 154, 203, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}


.party-enquiry__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  align-items: start;
  gap: 72px;
}


.party-enquiry__copy h2 {
  max-width: 520px;
}


.party-enquiry__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 1.06rem;
}


.party-enquiry__note {
  max-width: 500px;
  margin-top: 28px;
  padding: 18px 20px;
  display: grid;
  gap: 3px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}


.party-enquiry__note strong {
  color: var(--purple-dark);
}


.party-enquiry__note span {
  color: rgba(73, 48, 61, 0.65);
  font-size: 0.86rem;
}


.party-enquiry-form {
  position: relative;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
  border: 1px solid rgba(138, 19, 173, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 58px rgba(96, 29, 94, 0.08);
}


.party-enquiry-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}


.party-enquiry-field--wide,
.party-enquiry-submit,
.party-enquiry-status,
.party-enquiry-success {
  grid-column: 1 / -1;
}


.party-enquiry-field label {
  font-size: 0.8rem;
  font-weight: 800;
}


.party-enquiry-field label span {
  color: rgba(73, 48, 61, 0.5);
  font-weight: 700;
}


.party-enquiry-field input,
.party-enquiry-field select,
.party-enquiry-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1.5px solid rgba(138, 19, 173, 0.14);
  border-radius: 14px;
  outline: 0;
  color: var(--ink);
  background: white;
  font: inherit;
}


.party-enquiry-field textarea {
  min-height: 130px;
  resize: vertical;
}


.party-enquiry-field input:focus,
.party-enquiry-field select:focus,
.party-enquiry-field textarea:focus {
  border-color: rgba(138, 19, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(138, 19, 173, 0.07);
}


.party-enquiry-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}


.party-enquiry-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}


.party-enquiry-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
}


.party-enquiry-status[data-type="error"] {
  color: #a43a4f;
}


.party-enquiry-status[data-type="success"] {
  color: #2d755c;
}


.party-enquiry-success {
  padding: 18px 20px;
  border: 1px solid rgba(37, 170, 178, 0.16);
  border-radius: 18px;
  background: rgba(230, 249, 247, 0.84);
}


.party-enquiry-success strong {
  color: var(--purple-dark);
}


.party-enquiry-success p {
  margin: 5px 0 0;
}


.party-enquiry-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


@media (max-width: 950px) {
  .party-enquiry__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}


@media (max-width: 650px) {
  .square-payment-panel {
    padding: 21px 18px;
  }

  .square-payment-panel__heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .party-enquiry-form {
    padding: 26px 22px;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .party-enquiry-field--wide,
  .party-enquiry-submit,
  .party-enquiry-status,
  .party-enquiry-success {
    grid-column: auto;
  }
}

/* ---------------------------------
   WORKSHOP DETAIL — COMPACT CHECKOUT
   Keeps the desktop booking journey within a much shorter page.
--------------------------------- */

@media (min-width: 951px) {
  .workshop-detail-main {
    width: min(calc(100% - 56px), 1480px);
    padding: 38px 0 64px;
  }

  .workshop-detail-hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.62fr);
    gap: 54px;
    min-height: 330px;
  }

  .workshop-detail-copy h1 {
    max-width: 820px;
    font-size: clamp(3.7rem, 5vw, 5.2rem);
    line-height: 0.92;
  }

  .workshop-detail-copy > p:not(.eyebrow) {
    margin-top: 15px;
  }

  .workshop-detail-meta {
    margin-top: 19px;
  }

  .workshop-detail-image-wrap {
    min-height: 315px;
  }

  .workshop-detail-image-wrap::before {
    width: 86%;
    height: 86%;
  }

  .workshop-detail-image {
    width: min(100%, 390px);
    max-height: 315px;
    border-width: 7px;
    border-radius: 28px;
  }

  .workshop-detail-placeholder {
    width: min(100%, 310px);
    font-size: 5.5rem;
  }

  .workshop-detail-body {
    margin-top: 34px;
    grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.58fr);
    gap: 28px;
  }

  .workshop-story-card,
  .workshop-booking-card {
    border-radius: 26px;
  }

  .workshop-story-card {
    padding: 26px 28px;
  }

  .workshop-story-card h2,
  .workshop-booking-card h2 {
    font-size: clamp(1.9rem, 2.7vw, 2.65rem);
  }

  .workshop-story-card p {
    margin-top: 13px;
  }

  .workshop-story-facts {
    margin-top: 18px;
    gap: 0;
  }

  .workshop-story-facts div {
    padding: 11px 0;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
  }

  .workshop-booking-card {
    padding: 26px 28px 28px;
  }

  .workshop-booking-intro {
    margin-top: 8px;
  }

  .workshop-session-list {
    margin-top: 16px;
  }

  .workshop-session-option__content {
    padding: 13px 16px;
  }

  .workshop-checkout-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(350px, 1.08fr);
    align-items: stretch;
    gap: 18px;
  }

  .workshop-booking-form {
    margin-top: 0;
    padding: 20px;
    border: 1px solid rgba(138, 19, 173, 0.08);
    border-radius: 20px;
    background: rgba(255, 250, 253, 0.72);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .workshop-booking-session-select {
    display: none;
  }

  .workshop-booking-field {
    gap: 5px;
  }

  .workshop-booking-field label {
    font-size: 0.75rem;
  }

  .workshop-booking-field input,
  .workshop-booking-field select {
    min-height: 46px;
    padding: 9px 12px;
  }

  .workshop-booking-total {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .workshop-booking-submit {
    min-height: 48px;
  }

  .square-payment-panel {
    margin-top: 0;
    min-width: 0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: none;
  }

  .square-payment-panel__heading {
    align-items: center;
  }

  .square-payment-panel__heading h3 {
    font-size: 2rem;
  }

  .square-payment-hold {
    margin: 9px 0 11px;
    line-height: 1.45;
  }

  .square-card-container {
    min-height: 78px;
    padding: 0;
  }

  .square-payment-note {
    margin-top: 8px;
  }

  .workshop-booking-status {
    min-height: 0;
  }
}

@media (min-width: 1250px) {
  .workshop-detail-body {
    grid-template-columns: minmax(330px, 0.58fr) minmax(0, 1.62fr);
  }

  .workshop-checkout-grid {
    grid-template-columns: minmax(390px, 0.95fr) minmax(400px, 1.05fr);
  }
}

@media (max-width: 950px) {
  .workshop-checkout-grid {
    display: grid;
    gap: 18px;
  }

  .workshop-booking-session-select {
    display: none;
  }

  .square-payment-panel {
    margin-top: 0;
  }
}

@media (max-width: 650px) {
  .workshop-detail-main {
    padding-top: 32px;
  }

  .workshop-detail-hero {
    gap: 20px;
  }

  .workshop-detail-image-wrap {
    min-height: 240px;
  }

  .workshop-detail-body {
    margin-top: 28px;
  }

  .workshop-booking-card {
    padding: 24px 18px;
  }

  .workshop-session-option__content {
    padding: 13px 14px;
    gap: 12px;
  }

  .workshop-booking-form {
    margin-top: 0;
    gap: 12px;
  }
}
