/* ============================================
   IMPERFECT ART, DESIGN SYSTEM
   Brand palette: Canvas · Peach · Chocolate · Forest · Sage · Fairy Lights · Green Tea
   ============================================ */

/* Zen Maru Gothic (SIL Open Font License), latin subset self-hosted from /fonts. It used to be an @import from
   Google Fonts, which made every page wait on a second domain before drawing anything. Characters outside
   the latin range (e.g. the star in "5★") fall back to the system font, same as before. */
@font-face {
  font-family: 'Zen Maru Gothic';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/ZenMaruGothic-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Zen Maru Gothic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/ZenMaruGothic-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Zen Maru Gothic';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/ZenMaruGothic-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Caraque';
  src: url('fonts/Caraque_W_RgMelted.woff2') format('woff2'),
       url('fonts/Caraque_W_RgMelted.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Felt Tip Woman';
  src: url('fonts/FeltTipWoman-Regular.woff2') format('woff2'),
       url('fonts/FeltTipWoman-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: optional; /* accent font: never swap in late, a late swap moved whole page sections (CLS) */
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---- Tokens ---- */
:root {
  /* Brand palette */
  --canvas:       #FFFEF6;   /* off-white background */
  --canvas-mid:   #F5F3E6;   /* slightly deeper canvas */
  --sage:         #D5D2B4;   /* warm sage / dividers */
  --sage-dark:    #C4C09C;   /* darker sage border */
  --forest:       #3B3F04;   /* deep olive-green, headlines */
  --forest-mid:   #5A5F10;   /* mid forest, body text */
  --green-tea:    #71681E;   /* warm olive gold, labels (darkened from #817824 so small text passes WCAG AA, 5.1:1 on canvas-mid) */
  --peach:        #D78A6B;   /* primary accent, CTA */
  --peach-h:      #C47759;   /* peach hover (lightened slightly 2026-09-22, C07255 -> C47759,
                                 so chocolate text stays above 4.5:1 on hover, was 4.46:1) */
  --fairy-lights: #FFE7A7;   /* warm yellow highlight */
  --chocolate:    #341A04;   /* darkest brown, footer */
  --white:        #FFFFFF;

  /* Semantic aliases (used throughout) */
  --cream:      var(--canvas);
  --cream-mid:  var(--canvas-mid);
  --cream-dark: var(--sage);
  --brown:      var(--forest);
  --brown-mid:  var(--forest-mid);
  --tan:        var(--green-tea);
  --accent:     var(--peach);
  --accent-h:   var(--peach-h);
  --text-soft:  var(--forest-mid);

  --nav-h: 70px;
  --max:   1080px;
  --r:     12px;
  --r-lg:  20px;

  --shadow:    0 2px 16px rgba(52,26,4,.07);
  --shadow-lg: 0 8px 40px rgba(52,26,4,.13);
  --ease:      .2s ease;
}

/* ---- Base ---- */
body {
  font-family: 'Zen Maru Gothic', -apple-system, sans-serif;
  background: var(--canvas);
  color: var(--forest);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Caraque', Georgia, serif;
  line-height: 1.18;
  font-weight: 800;
  color: var(--forest);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; }

p { font-size: .95rem; line-height: 1.75; color: var(--forest-mid); }

em { font-family: 'Felt Tip Woman', cursive; font-style: normal; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- Label ---- */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 10px;
  font-family: 'Caraque', sans-serif;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: 'Caraque', sans-serif;
}
.btn-primary  { background: var(--peach); color: var(--chocolate); } /* 2026-09-22: was white, 2.71:1, failed AA; chocolate is 5.97:1 */
.btn-primary:hover {
  background: var(--peach-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(215,138,107,.35);
}
.btn-outline  { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--canvas); }
.btn-ghost    { background: var(--canvas-mid); color: var(--forest); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); }
.btn-light    { background: var(--white); color: var(--forest); }
.btn-light:hover { background: var(--canvas); }
.btn-sm       { padding: 9px 18px; font-size: .82rem; }

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announce-bar {
  cursor: pointer;
  background: var(--forest);
  color: var(--fairy-lights);
  height: 40px;
  overflow: hidden;
  position: relative;
  z-index: 300;
}
.announce-bar .marquee-track {
  display: flex;
  animation: marquee 46s linear infinite;
  height: 100%;
  align-items: center;
  width: max-content;
}
.announce-bar .marquee-track:hover,
.announce-bar .marquee-track:focus-within { animation-play-state: paused; }
/* touchstart adds this class (removed shortly after touchend) so a finger
   resting on the bar pauses the scroll long enough for the tap to land on
   whatever text is actually under it, same intent as :hover on desktop. */
.announce-bar.touch-active .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .announce-bar .marquee-track { animation: none; }
}
.announce-bar .marquee-item {
  display: flex; align-items: center; min-height: 40px; /* full bar height: a 24px+ tap target for the links */
  font-size: .8rem; font-weight: 600;
  font-family: 'Caraque', sans-serif;
  letter-spacing: .03em;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
/* A marquee message with no link is plain text, so no hand cursor over it. */
.announce-bar span.marquee-item { cursor: default; }
.announce-bar a.marquee-item:hover,
.announce-bar a.marquee-item:active,
.announce-bar.touch-active a.marquee-item {
  text-decoration: underline; text-underline-offset: 3px;
}
/* Brief pressed feedback so a tap/click visibly registers as a link being
   pressed, not just the underline: a touch fires the bar-wide touch-active
   class (see the pause rule above) rather than a reliable per-item :active
   on mobile, so it's included here too. */
.announce-bar a.marquee-item:active,
.announce-bar.touch-active a.marquee-item {
  color: #fff;
  transition: color var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .announce-bar a.marquee-item:active,
  .announce-bar.touch-active a.marquee-item { transition: none; }
}
.announce-bar .marquee-track .sep {
  width: 13px; height: 13px;
  margin: 0 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: .85;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* close button */
.announce-bar .bar-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--fairy-lights); opacity: .6; font-size: 1.1rem; line-height: 1;
  padding: 4px; min-width: 40px; min-height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--ease);
}
.announce-bar .bar-close:hover { opacity: 1; }

/* ============================================
   LEGAL PAGE DRAFT MARKERS
   Remove .draft-notice and every .draft-todo span
   once these pages have been reviewed and finalised.
   ============================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.draft-notice {
  background: #FFF3CD; border: 1.5px solid #E0A800; border-radius: var(--r);
  padding: 16px 20px; margin-bottom: 36px; font-size: .86rem; color: #664d03; line-height: 1.6;
}
.draft-notice strong { display: block; margin-bottom: 4px; font-family: 'Caraque', sans-serif; font-size: .95rem; }
.draft-todo {
  background: #FFF3CD; border: 1px dashed #E0A800; border-radius: 4px;
  padding: 1px 6px; color: #664d03; font-weight: 600; font-size: .92em;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--forest); color: var(--fairy-lights);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.cookie-banner-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner-inner p {
  flex: 1; min-width: 240px; margin: 0;
  font-size: .84rem; line-height: 1.6; color: rgba(255,254,246,.85);
}
.cookie-banner-inner p a { color: var(--peach); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn-ghost {
  background: rgba(255,255,255,.1); color: var(--fairy-lights); border-color: rgba(255,255,255,.3);
}
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,.18); }
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-btns { justify-content: stretch; }
  .cookie-banner-btns .btn { flex: 1; justify-content: center; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,254,246,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sage);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a, .nav-links .nav-trigger {
  display: flex; align-items: center;
  padding: 7px 13px; border-radius: 8px;
  font-size: .86rem; font-weight: 600; color: var(--forest-mid);
  transition: all var(--ease);
  font-family: 'Caraque', sans-serif;
}
.nav-links a:hover, .nav-links .nav-trigger:hover { color: var(--forest); background: var(--canvas-mid); }
.nav-links .active { color: var(--forest); }

.nav-book { margin-left: 12px; }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--forest);
}

/* mobile drawer, must be sibling of <nav>, not child, to avoid backdrop-filter containment */
.drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--canvas);
  flex-direction: column; gap: 4px;
  padding: 20px 24px;
  z-index: 9999; overflow-y: auto;
}
.drawer.open { display: flex; }
.drawer a {
  padding: 14px 16px; border-radius: 12px;
  font-size: 1rem; font-weight: 600; color: var(--forest);
  transition: background var(--ease);
  font-family: 'Caraque', sans-serif;
}
.drawer a:hover { background: var(--canvas-mid); }
.drawer hr { border: none; border-top: 1px solid var(--sage); margin: 8px 0; }
.drawer .btn { margin-top: 4px; justify-content: center; font-size: .95rem; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a,
.nav-dropdown > .nav-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  background: none; border: none;
}
.nav-dropdown > a svg,
.nav-dropdown > .nav-trigger svg { flex-shrink: 0; transition: transform var(--ease); }
.nav-dropdown:hover > a svg, .nav-dropdown:hover > .nav-trigger svg,
.nav-dropdown:focus-within > a svg, .nav-dropdown:focus-within > .nav-trigger svg,
.nav-dropdown.open > .nav-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-lg); border: 1px solid var(--sage);
  padding: 6px; min-width: 176px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--ease);
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: .84rem; font-weight: 600; color: var(--forest-mid);
  transition: all var(--ease);
  font-family: 'Caraque', sans-serif;
}
.dropdown-menu a:hover { background: var(--canvas-mid); color: var(--forest); }

/* Mobile drawer sub-links */
.drawer-sub {
  padding-left: 20px !important;
  font-size: .9rem !important;
  color: var(--forest-mid) !important;
}
.drawer-label {
  padding: 10px 16px 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-tea);
  font-family: 'Caraque', sans-serif;
}

@media (max-width: 740px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
}

/* Workshops two-column layout */
.ws-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 740px) {
  .ws-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 72px 0 64px;
  background: var(--canvas);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fairy-lights); border: 1px solid var(--sage);
  color: var(--forest); font-size: .8rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
  font-family: 'Caraque', sans-serif;
}
.hero h1 { color: var(--forest); margin-bottom: 16px; }
.hero h1 em { font-size: 1.2em; color: var(--peach); }

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.hero-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 500; color: var(--forest-mid);
}
.hero-pill svg { color: var(--peach); flex-shrink: 0; }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--white); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); min-width: 180px;
}
.hero-card strong { display: block; font-size: 1.5rem; color: var(--forest); font-family: 'Caraque', sans-serif; font-weight: 800; }
.hero-card span   { font-size: .78rem; color: var(--forest-mid); font-weight: 500; }

@media (max-width: 740px) {
  .hero { padding: 44px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .hero-visual img { aspect-ratio: 16/10; }
  .hero-card { left: 12px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--forest);
  padding: 18px 0;
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 500; color: rgba(255,254,246,.8);
  font-family: 'Caraque', sans-serif;
}
.trust-item svg { color: var(--fairy-lights); flex-shrink: 0; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { color: var(--forest); margin-bottom: 12px; }
.sec-head p  { max-width: 520px; margin: 0 auto; }

/* ============================================
   OFFERINGS
   ============================================ */
.offerings { background: var(--canvas); }
.offerings-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-price { font-size: .78rem; font-weight: 700; color: var(--peach); margin-bottom: 6px; font-family: 'Caraque', sans-serif; }
.card-body h3 { color: var(--forest); margin-bottom: 10px; font-size: 1.25rem; }
.card-body p  { font-size: .88rem; flex: 1; margin-bottom: 18px; }
.card-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  background: var(--canvas-mid); color: var(--forest-mid);
  font-size: .74rem; font-weight: 600; padding: 3px 11px; border-radius: 100px;
  font-family: 'Caraque', sans-serif;
}
@media (max-width: 860px) { .offerings-grid { grid-template-columns: 1fr; } }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: var(--canvas-mid); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 22px; text-align: center;
}
.step-n {
  width: 40px; height: 40px;
  background: var(--peach); color: var(--chocolate); border-radius: 50%; /* 2026-09-22: was white, 2.71:1 */
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  margin: 0 auto 14px;
  font-family: 'Caraque', sans-serif;
}
.step h4 { color: var(--forest); margin-bottom: 6px; font-size: .95rem; }
.step p  { font-size: .84rem; }
@media (max-width: 740px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--forest); }
.reviews .sec-head .label { color: var(--fairy-lights); }
.reviews .sec-head h2 { color: var(--canvas); }
.reviews .sec-head p  { color: rgba(255,254,246,.65); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 24px;
}
.stars { color: var(--fairy-lights); font-size: .95rem; margin-bottom: 10px; }
.review-card p { color: rgba(255,254,246,.82); font-size: .86rem; line-height: 1.7; margin-bottom: 14px; }
.reviewer { font-size: .76rem; font-weight: 700; color: var(--fairy-lights); font-family: 'Caraque', sans-serif; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================
   LOCATIONS
   ============================================ */
.locs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.loc-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; background: var(--chocolate); box-shadow: var(--shadow);
}
.loc-card img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  opacity: .72; transition: opacity .3s;
}
.loc-card:hover img { opacity: .55; }
.loc-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
  background: linear-gradient(to top, rgba(52,26,4,.9) 0%, transparent 100%);
}
.loc-info h3 { color: var(--canvas); margin-bottom: 4px; font-size: 1.3rem; }
.loc-info p  { color: rgba(255,254,246,.75); font-size: .84rem; margin-bottom: 14px; }
@media (max-width: 580px) { .locs-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--peach);
  padding: 72px 0; text-align: center;
}
.cta-band h2 { color: var(--chocolate); margin-bottom: 14px; } /* 2026-09-22: was white, 2.71:1 */
.cta-band p  { color: var(--chocolate); max-width: 480px; margin: 0 auto 28px; } /* was rgba(255,255,255,.85), 2.37:1 */

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--chocolate);
  color: var(--canvas);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
footer img.logo { height: 28px; width: auto; margin-bottom: 16px; filter: brightness(2) saturate(0); }
footer .foot-desc { font-size: .84rem; color: rgba(255,254,246,.55); line-height: 1.7; margin-bottom: 16px; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,254,246,.6); font-size: .8rem;
  transition: all var(--ease);
}
.foot-socials a:hover { background: rgba(255,255,255,.1); color: var(--canvas); }

footer h5,
footer .foot-h {
  font-family: 'Caraque', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fairy-lights); margin-bottom: 14px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: .84rem; color: rgba(255,254,246,.6); transition: color var(--ease); }
.foot-links a:hover { color: var(--canvas); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.foot-bottom p { font-size: .76rem; color: rgba(255,254,246,.6); }

@media (max-width: 740px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--canvas-mid);
  border-bottom: 1px solid var(--sage);
  padding: 60px 0;
}
.page-hero .label { margin-bottom: 10px; }
.page-hero h1    { color: var(--forest); margin-bottom: 14px; letter-spacing: .02em; }
.page-hero p     { font-size: 1.05rem; max-width: 540px; }

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-wrap { padding: 56px 0 80px; }

.loc-tabs {
  display: flex; gap: 6px;
  background: var(--canvas-mid); padding: 5px;
  border-radius: 100px; width: fit-content;
  margin: 0 auto 36px;
}
.ltab {
  padding: 9px 22px; border-radius: 100px; border: none;
  background: transparent; font-family: 'Caraque', sans-serif;
  font-size: .88rem; font-weight: 600; color: var(--forest-mid);
  cursor: pointer; transition: all var(--ease);
}
.ltab.active {
  background: var(--white); color: var(--forest);
  box-shadow: 0 2px 8px rgba(52,26,4,.1);
}

.booking-meta {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  justify-content: center; align-items: center;
  background: var(--white); border-radius: var(--r);
  padding: 18px 28px; margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.bm-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 500; color: var(--forest);
  font-family: 'Caraque', sans-serif;
}
.bm-item svg { color: var(--peach); }

.panel { display: none; }
.panel.active { display: block; }

.embed-shell {
  background: var(--white); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow); min-height: 400px;
}
.embed-note {
  background: var(--canvas-mid); border: 2px dashed var(--sage);
  border-radius: var(--r); padding: 40px; text-align: center; color: var(--forest-mid);
}
.embed-note code {
  display: block; margin-top: 12px; font-size: .8rem;
  background: var(--sage); padding: 8px 12px; border-radius: 6px; color: var(--forest);
}

/* ============================================
   SESSIONS PAGE, INCLUDES
   ============================================ */
.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.inc-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: var(--r); padding: 18px;
  box-shadow: var(--shadow);
}
.inc-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--fairy-lights); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.inc-item h4 { color: var(--forest); font-size: .9rem; margin-bottom: 2px; }
.inc-item p  { font-size: .82rem; margin: 0; }
@media (max-width: 540px) { .includes-grid { grid-template-columns: 1fr; } }

/* ============================================
   WORKSHOPS PAGE
   ============================================ */
.workshop-list { display: flex; flex-direction: column; gap: 18px; }
.wk-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 20px; align-items: center;
  background: var(--white); border-radius: var(--r);
  padding: 22px 24px; box-shadow: var(--shadow);
}
.wk-date {
  background: var(--fairy-lights); border-radius: 10px;
  padding: 10px 14px; text-align: center;
}
.wk-date .d { font-size: 1.8rem; font-weight: 800; line-height: 1; color: var(--forest); font-family: 'Caraque', sans-serif; }
.wk-date .m { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--peach); font-family: 'Caraque', sans-serif; }
.wk-info h3 { color: var(--forest); font-size: 1.05rem; margin-bottom: 4px; }
.wk-info p  { font-size: .85rem; margin-bottom: 6px; }
.wk-meta    { display: flex; gap: 16px; font-size: .78rem; color: var(--forest-mid); font-weight: 500; }
@media (max-width: 580px) {
  .wk-item { grid-template-columns: 1fr; }
  .wk-date { width: fit-content; }
}

/* ============================================
   THANK YOU
   ============================================ */
.ty-page {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 64px 24px;
}
.ty-icon {
  width: 76px; height: 76px; background: var(--peach); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--white); font-size: 1.8rem;
}
.ty-page h1 { color: var(--forest); margin-bottom: 14px; font-size: clamp(1.8rem,4vw,2.8rem); }
.ty-page p  { max-width: 440px; margin: 0 auto 28px; }

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.nl-overlay {
  position: fixed; inset: 0; background: rgba(52,26,4,.55);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.nl-overlay.show { opacity: 1; visibility: visible; }

.nl-popup {
  background: var(--canvas); border-radius: var(--r-lg);
  max-width: 480px; width: 100%; overflow: hidden;
  box-shadow: 0 24px 64px rgba(52,26,4,.3);
  transform: translateY(20px); transition: transform .3s ease;
  position: relative;
}
.nl-overlay.show .nl-popup { transform: translateY(0); }

.nl-popup-top {
  background: var(--forest);
  padding: 40px 40px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.nl-popup-top .nl-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.nl-fun-visual {
  display: flex; align-items: flex-end; justify-content: center; gap: 10px;
  height: 56px; margin-bottom: 14px;
}
.nl-fun-icon {
  display: block; filter: brightness(0) invert(1); opacity: .92;
  animation: nlBounce 1.8s ease-in-out infinite;
}
.nl-fun-icon-1 { width: 30px; height: 30px; animation-delay: 0s;   opacity: .75; }
.nl-fun-icon-2 { width: 44px; height: 44px; animation-delay: .2s; }
.nl-fun-icon-3 { width: 28px; height: 28px; animation-delay: .4s;  opacity: .75; }
@keyframes nlBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35%      { transform: translateY(-12px) rotate(-8deg); }
  60%      { transform: translateY(0) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .nl-fun-icon { animation: none; }
}
.nl-popup-top h3 {
  font-family: 'Caraque', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--canvas); margin-bottom: 8px;
}
.nl-popup-top p { color: rgba(255,254,246,.75); font-size: .9rem; }

.nl-popup-body { padding: 28px 32px 32px; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-form input[type="email"] {
  padding: 13px 16px; border: 1.5px solid var(--sage);
  border-radius: var(--r); font-family: 'Zen Maru Gothic', sans-serif;
  font-size: .9rem; color: var(--forest); background: var(--white);
  outline: none; transition: border-color var(--ease);
  width: 100%;
}
.nl-form input[type="email"]:focus { border-color: var(--peach); }
.nl-form .btn { width: 100%; justify-content: center; }
.nl-form-error { margin: 0; font-size: .8rem; color: #b3392c; }
.nl-skip {
  margin-top: 10px; text-align: center;
  font-size: .8rem; color: var(--forest-mid); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  background: none; border: none; font-family: 'Zen Maru Gothic', sans-serif;
  width: 100%;
}
.nl-skip:hover { color: var(--forest); }
.nl-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  color: var(--canvas); width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: background var(--ease);
}
.nl-close:hover { background: rgba(255,255,255,.25); }
.nl-success {
  padding: 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.nl-success .nl-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.nl-success h3 { color: var(--forest); margin-bottom: 8px; font-size: 1.4rem; }
.nl-success p { font-size: .88rem; }

/* ============================================
   UTILITIES
   ============================================ */
.t
/* ============================================
   VISIBLE FAQ BLOCK (studio pages, mirrors the FAQPage structured data)
   ============================================ */
.lp-faq { display: flex; flex-direction: column; gap: 8px; }
.lp-faq details { background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.lp-faq summary { padding: 16px 22px; min-height: 44px; font-family: 'Caraque', sans-serif; font-size: .95rem; color: var(--forest); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; font-size: 1.2rem; color: var(--peach); flex-shrink: 0; }
.lp-faq details[open] summary::after { content: '\2212'; }
.lp-faq details[open] summary { border-bottom: 1px solid var(--canvas-mid); }
.lp-faq details p { padding: 16px 22px; margin: 0; font-size: .92rem; color: var(--forest-mid); line-height: 1.7; }
.lp-faq a { color: var(--peach); font-weight: 600; }
.lp-related { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.lp-related a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 20px; border: 1.5px solid var(--sage); border-radius: 100px; text-decoration: none; color: var(--forest); font-weight: 600; font-size: .9rem; background: var(--white); }
.lp-related a:hover { border-color: var(--peach); }

/* Decorative brand icons drawn as a CSS background (see booking-tests/seo-tools/convert-decorative-icons.js). */
.ia-icon { display: block; max-width: 100%; flex-shrink: 0; background-repeat: no-repeat; background-position: center; background-size: contain; }
