/* ============================================
   LEESHA BAKES — cream & dusty pink, mobile-first
   ============================================ */

:root {
  --cream: #fdf4f1;
  --cream-deep: #f7e3dd;
  --pink-soft: #f5c5be;
  --pink-dusty: #e89991;
  --pink-deep: #d96b66;
  --pink-bright: #e8908b;
  --brown-warm: #6b3e30;
  --brown-deep: #3d1f17;
  --brown-darkest: #2a1410;
  --ink: #2a1410;
  --ink-soft: #6b3e30;
  --white: #fffaf7;
  --shadow-sm: 0 2px 8px rgba(61, 31, 23, 0.12);
  --shadow-md: 0 8px 24px rgba(61, 31, 23, 0.18);
  --shadow-lg: 0 20px 50px rgba(61, 31, 23, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Quicksand', 'Helvetica', sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Decorative sprinkles background */
.sprinkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, var(--pink-soft) 2px, transparent 2px),
    radial-gradient(circle, var(--cream-deep) 1px, transparent 1px);
  background-size: 80px 80px, 50px 50px;
  background-position: 0 0, 25px 25px;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brown-deep);
}

h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
h3 { font-size: 1.3rem; }

h1 em {
  font-style: italic;
  color: var(--pink-deep);
}

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink-deep);
  margin-bottom: 0.5rem;
  display: inline-block;
}

p { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brown-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--pink-dusty);
}

.btn-ghost:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 234, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream-deep);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--brown-deep);
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 1rem 1.25rem 2rem;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--cream-deep);
}

.site-nav.open {
  transform: translateY(0);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--brown-deep);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.site-nav a:hover {
  background: var(--pink-soft);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0.5rem 0 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.hero-image {
  margin-top: 2.5rem;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0.25rem 0 0.75rem;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* About */
.about {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin: 1rem;
  box-shadow: var(--shadow-sm);
}

.about-body {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.about-body p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Gallery */
.gallery {
  text-align: center;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: 999px;
  color: var(--pink-deep);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.gallery-card {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-note {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--pink-deep);
}

/* Full gallery grid */
.gallery-full {
  padding-top: 2rem;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Workshops */
.workshop-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.workshop-empty {
  flex-direction: column;
  text-align: center;
  align-items: center;
  border: 2px dashed var(--pink-dusty);
  background: transparent;
}

.workshop-empty p {
  margin-bottom: 1rem;
}

.workshop-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  color: var(--brown-deep);
}

.workshop-date .day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.workshop-date .month {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.workshop-content h3 {
  margin-bottom: 0.25rem;
}

.workshop-meta {
  font-size: 0.9rem;
  color: var(--pink-deep);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.workshop-content p {
  margin-bottom: 0.75rem;
}

/* Events gallery (past workshops) */
.events-gallery {
  max-width: 1100px;
  margin: 3rem auto 0;
}

.events-heading {
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.event-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-photo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.event-photo:hover img {
  transform: scale(1.05);
}

/* Order form */
.order {
  background: linear-gradient(180deg, transparent, var(--white) 30%);
}

.order-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-form label span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
}

.order-form input,
.order-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--pink-dusty);
  background: var(--white);
}

.order-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* Contact */
.contact {
  text-align: center;
  padding-bottom: 4rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--brown-deep);
  text-decoration: none;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  justify-content: center;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--pink-deep);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--brown-deep);
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.site-footer p {
  color: var(--cream);
  font-size: 0.9rem;
}

/* ============================================
   TABLET / DESKTOP
   ============================================ */
@media (min-width: 768px) {
  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    transform: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  .hero {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-cta {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-image {
    margin-top: 0;
  }

  section {
    padding: 5rem 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }

  .gallery-full-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .about {
    margin: 1rem auto;
    max-width: 1100px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.7s ease backwards;
}

.hero-inner .eyebrow { animation-delay: 0.1s; }
.hero-inner h1 { animation-delay: 0.2s; }
.hero-inner .hero-sub { animation-delay: 0.35s; }
.hero-inner .hero-cta { animation-delay: 0.5s; }

.hero-image {
  animation: fadeUp 0.8s 0.4s ease backwards;
}

/* ============================================
   STANDALONE PAGES (terms, contact)
   ============================================ */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.page-head {
  text-align: center;
  margin-bottom: 3rem;
}

.page-head h1 {
  margin: 0.25rem 0 0.75rem;
}

.page-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Terms */
.terms-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.terms-section {
  margin-bottom: 1.25rem;
}

.terms-section:last-of-type {
  margin-bottom: 0.5rem;
}

.terms-section h2 {
  font-size: 1.3rem;
  color: var(--pink-deep);
  margin-bottom: 0.5rem;
}

.terms-section p {
  margin-bottom: 0.5rem;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section ul {
  margin: 0.4rem 0 0.5rem 1.5rem;
  color: var(--ink-soft);
}

.terms-section ul li {
  margin-bottom: 0.35rem;
}

.terms-section strong {
  color: var(--brown-deep);
}

.terms-section a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-decoration-color: rgba(217, 107, 102, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.terms-section a:hover {
  text-decoration-color: var(--pink-deep);
}

.terms-updated {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.page-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

/* Contact page */
.contact-page-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deep);
  margin-bottom: 1rem;
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contact-extras {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.contact-extras h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-bullets {
  list-style: none;
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}

.contact-bullets li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(61, 31, 23, 0.08);
  color: var(--ink-soft);
}

.contact-bullets li:last-child {
  border-bottom: none;
}

.contact-bullets strong {
  color: var(--brown-deep);
}

.contact-bullets a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-decoration-color: rgba(217, 107, 102, 0.3);
}

/* Footer nav */
.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--pink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

/* Form note link */
.form-note a {
  color: var(--pink-deep);
  text-decoration: underline;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 20, 16, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lb-stage {
  max-width: 95vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lb-image {
  max-width: 95vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  animation: lbZoomIn 0.25s ease;
}

@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}

.lb-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lb-prev:hover,
.lb-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .contact-page-body {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-cta {
    flex-direction: row;
    justify-content: center;
  }

  .terms-body {
    padding: 2.5rem 2.5rem;
  }

  .lb-close { top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; }
  .lb-prev { left: 1.5rem; }
  .lb-next { right: 1.5rem; }
}

/* Subtle terms reference under order form */
.form-microtext {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 0.25rem;
}

.form-microtext a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(107, 62, 48, 0.3);
}

.form-microtext a:hover {
  color: var(--pink-deep);
  text-decoration-color: var(--pink-deep);
}

/* ============================================
   CONTACT FORM (page) + INFO BOXES
   ============================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink-dusty);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .req {
  color: var(--pink-deep);
  font-weight: 600;
}

/* Other ways to reach */
.other-contact {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.other-contact h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: var(--brown-deep);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-info .contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.6rem;
}

.contact-info h4 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--brown-deep);
  font-family: var(--font-display);
}

.contact-info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown-warm);
  word-break: break-word;
}

.contact-info .info-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.25rem 2.25rem;
  }
}

/* ============================================
   WORKSHOP NOTIFY FORM
   ============================================ */
.workshop-notify {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.workshop-notify-intro {
  text-align: center;
}

.workshop-notify-intro h3 {
  font-family: var(--font-display);
  color: var(--brown-deep);
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.workshop-notify-intro p {
  color: var(--ink-soft);
  margin: 0;
}

.workshop-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workshop-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.workshop-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
}

.workshop-form input[type="text"],
.workshop-form input[type="email"],
.workshop-form input[type="tel"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.workshop-form input:focus {
  outline: none;
  border-color: var(--pink-dusty);
  background: var(--white);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 400 !important;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--pink-deep);
}

.form-consent .req {
  color: var(--pink-deep);
}

@media (min-width: 768px) {
  .workshop-notify {
    padding: 2rem 2.25rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-cake-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}

.pricing-cake-icon svg {
  width: 100%;
  height: 100%;
}

.pricing-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-deep);
  margin: 0 0 0.25rem;
  font-style: italic;
  font-weight: 500;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--pink-deep);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.pricing-card .serves {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.pricing-card .serves li {
  margin: 0;
}

.pricing-notes {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-note-line {
  font-family: var(--font-script);
  color: var(--pink-deep);
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
}

.pricing-bullets {
  list-style: none;
  padding: 0;
  max-width: 460px;
  margin: 0 auto;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.pricing-bullets li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(61, 31, 23, 0.08);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pricing-bullets li:last-child {
  border-bottom: none;
}

.pricing-bullets strong {
  color: var(--brown-deep);
}

/* Pricing link on order form */
.order-pricing-link {
  margin-top: 0.5rem;
}

.order-pricing-link a {
  color: var(--pink-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid rgba(217, 107, 102, 0.3);
  transition: border-color 0.2s ease;
  padding-bottom: 1px;
}

.order-pricing-link a:hover {
  border-bottom-color: var(--pink-deep);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .pricing-cake-icon {
    width: 100px;
    height: 100px;
  }
}

/* ============================================
   ORDER PAGE — BUILDER FORM
   ============================================ */
.order-page {
  max-width: 720px;
}

.order-form-builder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.order-step h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-deep);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  font-style: italic;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--pink-deep);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
}

.order-step .step-sub {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.step-hint {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 0.4rem 0 0;
}

/* Size selector — 2x2 grid of cards */
.size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.size-card {
  cursor: pointer;
  position: relative;
}

.size-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-card-inner {
  background: var(--cream);
  border: 2px solid var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem 0.85rem;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.size-card:hover .size-card-inner {
  border-color: var(--pink-dusty);
}

.size-card input:checked + .size-card-inner {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
}

.size-cake-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.4rem;
}

.size-cake-icon svg {
  width: 100%;
  height: 100%;
}

.size-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-deep);
  margin: 0 0 0.2rem;
  font-weight: 500;
}

.size-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink-deep);
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.size-serves {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.3;
}

/* Option list — flavour and filling */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

/* The <label> must explicitly be a flex container at block level — some browsers default labels to inline */
label.option-row {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

.option-row:hover {
  border-color: var(--pink-dusty);
}

.option-row input[type="radio"] {
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--pink-deep);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Highlight when checked — works in Chrome 105+, Safari, Firefox 121+ */
.option-row:has(input:checked) {
  border-color: var(--pink-deep);
  background: var(--pink-soft);
}

.option-text {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--brown-deep);
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 500;
}

.option-star {
  font-size: 0.72rem;
  color: var(--pink-deep);
  font-weight: 600;
  margin-left: 0.25rem;
  white-space: nowrap;
}

.option-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.option-note-extra {
  color: var(--pink-deep);
  font-weight: 600;
}

/* Extras note — highlighted */
.extras-note {
  background: linear-gradient(135deg, var(--pink-soft), var(--cream-deep));
  border-left: 4px solid var(--pink-deep);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--brown-deep);
  line-height: 1.45;
}

.extras-note strong {
  color: var(--pink-deep);
}

/* Form rows within order page */
.order-step .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-step label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
}

.order-step input[type="text"],
.order-step input[type="email"],
.order-step input[type="tel"],
.order-step input[type="date"],
.order-step textarea,
.ws-booking-form input[type="text"],
.ws-booking-form input[type="email"],
.ws-booking-form input[type="tel"],
.ws-booking-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  line-height: 1.2;
}

.ws-booking-form input:focus,
.ws-booking-form textarea:focus,
.ws-booking-form select:focus {
  outline: none;
  border-color: var(--pink-dusty);
  background: var(--white);
}

.ws-booking-form textarea {
  resize: vertical;
  min-height: 90px;
}

.ws-booking-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ws-booking-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-deep);
}

/* Date input on iOS Safari shows the placeholder/value alignment differently — force consistency */
.order-step input[type="date"] {
  display: block;
  text-align: left;
  font-family: var(--font-body);
}

.order-step input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.order-step input:focus,
.order-step textarea:focus {
  outline: none;
  border-color: var(--pink-dusty);
  background: var(--white);
}

.order-step textarea {
  resize: vertical;
  min-height: 90px;
}

.order-step .req {
  color: var(--pink-deep);
  font-weight: 600;
}

/* Submit button — slightly larger for emphasis */
.btn-large {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Pricing cards — now anchor tags, remove underline */
a.pricing-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

a.pricing-card::after {
  content: "Tap to order →";
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--pink-deep);
  opacity: 0.7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .size-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }

  .order-step {
    padding: 1.75rem 1.75rem;
  }

  .order-step h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-page { max-width: 900px; }

.reviews-grid {
  columns: 2;
  column-gap: 1rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  break-inside: avoid;
  border: 1px solid var(--cream-deep);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-dusty));
  flex-shrink: 0;
}

.review-handle {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-deep);
  flex: 1;
}

.review-heart {
  color: var(--pink-deep);
  font-size: 1rem;
}

.review-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem 1rem;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
}

.reviews-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown-deep);
  margin: 0 0 1rem;
}

@media (max-width: 600px) {
  .reviews-grid { columns: 1; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page { max-width: 1100px; }

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   HOMEPAGE TEASERS
   ============================================ */
.workshops-teaser, .reviews-teaser {
  padding: 3rem 1.5rem;
  text-align: center;
}

.workshops-teaser { background: var(--cream-deep); }

.reviews-teaser-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.teaser-quote {
  flex: 1 1 250px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--pink-dusty);
  font-style: normal;
}

/* ============================================
   ORDER PAGE — SUBSTEP HEADINGS
   ============================================ */
.order-substep {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-deep);
  margin: 1.3rem 0 0.6rem;
}
.order-substep:first-of-type { margin-top: 0.5rem; }

/* ============================================
   WORKSHOPS PAGE
   ============================================ */
.workshops-page { max-width: 800px; }

.ws-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  border: 1px solid var(--cream-deep);
}

.ws-feature-banner {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.ws-banner-pink {
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-deep));
  color: var(--white);
}

.ws-banner-pastel {
  background: linear-gradient(135deg, #f7d6c4, #d4e4f0 50%, #e0d4f0);
  color: var(--brown-deep);
}

.ws-banner-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.4rem;
  opacity: 0.9;
}

.ws-feature-banner h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.9rem;
  font-weight: 600;
  color: inherit;
}

.ws-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ws-fact {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
}

.ws-banner-pastel .ws-fact {
  background: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.7);
}

.ws-feature-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ws-feature-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.ws-feature-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.ws-feature-body p {
  margin: 0 0 0.9rem;
  line-height: 1.6;
  color: var(--ink);
}

.ws-list {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.ws-list li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
  color: var(--ink);
}

.ws-note {
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.92rem;
  color: var(--brown-deep);
}

.ws-details-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}

.ws-detail {
  font-size: 0.95rem;
  color: var(--brown-deep);
}

.ws-detail-label {
  font-weight: 600;
  margin-right: 0.4rem;
}

/* Workshop booking form */
.ws-booking {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-deep);
  margin-bottom: 2.5rem;
}

.ws-booking-form {
  max-width: 500px;
  margin: 0 auto;
}

.ws-booking-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}

@media (min-width: 768px) {
  .ws-feature-banner h2 { font-size: 2.1rem; }
  .ws-details-row { flex-direction: row; justify-content: space-between; }
}
