/** Site Theme Tokens **/

:root {
    --core-site-font-body: 'Hanken Grotesk', system-ui, sans-serif;
    --core-site-heading-font: 'Newsreader', Georgia, serif;
    --core-site-heading-line-height: 1.08;
    --core-site-heading-weight: 500;
    --core-site-heading-margin: 0;
    --core-site-color-text: var(--color-espresso);
    --core-site-color-link: var(--color-rust-dark);
    --core-accent: var(--color-rust);
    --core-radius: 10px;
}
body { font-family: var(--core-site-font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--core-site-heading-font); }
h1, h2, h3, h4, h5, h6 { line-height: var(--core-site-heading-line-height); }
h1, h2, h3, h4, h5, h6 { font-weight: var(--core-site-heading-weight); }
h1, h2, h3, h4, h5, h6 { margin-block: var(--core-site-heading-margin); }
body { color: var(--core-site-color-text); }
a { color: var(--core-site-color-link); }


/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ===== Koalaful Psychology — site palette (primitives + semantic anchors) ===== */ :root  {
  /* Warm neutral base */ --color-cream: #f5ecdd;
  --color-cream-light: #fbf5ea;
  --color-cream-dark: #ece0cb;
  --color-oat: #ddd0b8;
  --color-oat-dark: #c9b99b;
  /* Brand colours */ --color-ochre: #d99a2b;
  --color-ochre-light: #e8bd62;
  --color-ochre-dark: #b47d1c;
  --color-moss: #5c6f42;
  --color-moss-dark: #3c4a2b;
  --color-moss-darker: #29331d;
  /* Reserved CTA accent (terracotta) — primary actions only */ --color-rust: #b8481f;
  --color-rust-dark: #953716;
  /* Ink */ --color-espresso: #2c2318;
  --color-espresso-soft: #4a3f30;
  /* Semantic anchors */ --color-brand: var(--color-moss);
  --color-text: var(--color-espresso);
  --color-bg: var(--color-cream);
  /* Core engine anchors (accent + radius are set via theme tokens) */ --core-accent-contrast: #ffffff;
  --core-border: #d8cbb3;
  --core-muted: #7a6f5c;
  /* Core form theming */ --core-form-field-bg: #fbf5ea;
  --core-form-field-text-color: var(--color-espresso);
  --core-form-field-border: #b9a988;
  --core-form-field-border-focus: var(--color-rust);
  --core-form-placeholder: #8a7d68;
  --core-form-radius: 10px;
}
/* Background utilities (feed the section bg dropdown) */ .bg-cream  {
  background-color: var(--color-cream);
}
.bg-cream-light  {
  background-color: var(--color-cream-light);
}
.bg-cream-dark  {
  background-color: var(--color-cream-dark);
}
.bg-oat  {
  background-color: var(--color-oat);
}
.bg-oat-dark  {
  background-color: var(--color-oat-dark);
}
.bg-ochre  {
  background-color: var(--color-ochre);
}
.bg-ochre-light  {
  background-color: var(--color-ochre-light);
}
.bg-ochre-dark  {
  background-color: var(--color-ochre-dark);
}
.bg-moss  {
  background-color: var(--color-moss);
}
.bg-moss-dark  {
  background-color: var(--color-moss-dark);
}
.bg-moss-darker  {
  background-color: var(--color-moss-darker);
}
.bg-rust  {
  background-color: var(--color-rust);
}
.bg-espresso  {
  background-color: var(--color-espresso);
}
/* ===== Base ===== */ html  {
  scroll-behavior: smooth;
}
body  {
  font-size: var(--text-size-lg);
  line-height: 1.65;
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, .display  {
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p  {
  margin: 0;
  text-wrap: pretty;
}
a  {
  text-underline-offset: 3px;
}
a:hover  {
  color: var(--color-rust);
}
:focus-visible  {
  outline: 3px solid var(--color-rust);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection  {
  background: var(--color-ochre);
  color: var(--color-espresso);
}
img  {
  max-width: 100%;
  display: block;
}
/* ===== Shared helpers ===== */ .lede  {
  font-size: var(--text-size-xl);
  line-height: 1.55;
}
.media  {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 40px -24px rgba(44, 35, 24, 0.55);
  background: var(--color-oat);
}
.media img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== Buttons ===== */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: var(--text-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, transform 0.12s ease, border-color 0.16s ease;
}
.btn:active  {
  transform: translateY(1px);
}
.btn-primary  {
  background-color: var(--color-rust);
  color: #fff;
  border-color: var(--color-rust);
}
.btn-primary:hover  {
  background-color: var(--color-rust-dark);
  border-color: var(--color-rust-dark);
  color: #fff;
}
.btn-outline  {
  background-color: transparent;
  color: var(--color-espresso);
  border-color: var(--color-espresso);
}
.btn-outline:hover  {
  background-color: var(--color-espresso);
  color: var(--color-cream-light);
}
/* On dark grounds */ .on-dark .btn-outline  {
  color: var(--color-cream-light);
  border-color: rgba(245, 236, 221, 0.55);
}
.on-dark .btn-outline:hover  {
  background-color: var(--color-cream-light);
  color: var(--color-espresso);
  border-color: var(--color-cream-light);
}
/* ===== Trust cues (hero + enquire) ===== */ .trust-cues  {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.trust-cues li  {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
}
.trust-cues svg  {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-moss);
}
.on-dark .trust-cues svg  {
  color: var(--color-ochre-light);
}
/* ===== Two-column split (about / approach / problem / affirming) ===== */ .split  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split h2  {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}
.split .stack > * + *  {
  margin-top: 1.15rem;
}
.split-figure  {
  aspect-ratio: 4 / 5;
}
/* ===== Enquiry tray (slide-out booking form) ===== */ .enquire-tray .core-tray-header h4  {
  font-family: "Newsreader", serif;
  font-size: var(--text-size-3xl);
  font-weight: 500;
  color: var(--color-espresso);
  margin: 0;
}
.enquire-tray .enquire-lede  {
  color: var(--color-espresso-soft);
  font-size: var(--text-size-lg);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.enquire-tray .trust-cues  {
  margin: 1.4rem 0 1.8rem;
  gap: 0.6rem 1.4rem;
}
.enquire-tray .trust-cues svg  {
  color: var(--color-moss);
}
.enquire-tray .enquire-form label  {
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-size-sm);
  color: var(--color-espresso);
}
.enquire-tray .enquire-form .btn-primary  {
  width: 100%;
  margin-top: 0.4rem;
}
.enquire-tray .form-fineprint  {
  font-size: var(--text-size-xs);
  color: var(--core-muted);
  margin-top: 1rem;
}
.enquire-tray .w-form-done, .enquire-tray .w-form-fail  {
  background: var(--color-moss);
  color: var(--color-cream-light);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  font-size: var(--text-size-reg);
}
.enquire-tray .w-form-fail  {
  background: var(--color-rust-dark);
  margin-top: 1rem;
}
/* ===== Responsive (site-wide) ===== */ @media (max-width: 767px)  {
  body  {
    font-size: var(--text-size-reg);
  }
  .split  {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}


 /** Content Section Styles **/ 

.content-section-2735  {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: rgba(44, 35, 24, 0.9);
  &.content-section  {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(245, 236, 221, 0.12);
  }
  /* Frosted glass on a pseudo-element — a backdrop-filter on the wrapper itself
   would become a containing block and trap the mobile menu overlay. */ &.content-section::before  {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    pointer-events: none;
  }
  .content-section-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .logo  {
    display: inline-flex;
    align-items: center;
  }
  .logo img  {
    height: 34px;
    width: auto;
  }
  .core-menu  {
    margin-left: auto;
    margin-right: 2rem;
    --core-menu-link-color: #ffffff;
    --core-menu-mobile-link-color: #ffffff;
    --core-menu-link-hover-color: var(--color-ochre-light);
    --core-menu-mobile-link-hover-color: var(--color-ochre-light);
  }
  .core-menu-link  {
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.01em;
    transition: color 0.16s ease;
  }
  .header-cta  {
    min-height: 46px;
    padding: 0.6rem 1.4rem;
    font-size: var(--text-size-reg);
  }
  @media (max-width: 767px)  {
    .header-cta  {
      padding: 0.55rem 1.1rem;
      font-size: var(--text-size-sm);
    }
    .logo img  {
      height: 28px;
    }
  }
}
.content-section-2736  {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2.5rem;
  &.content-section  {
    color: rgba(245, 236, 221, 0.8);
    font-size: var(--text-size-sm);
  }
  .content-section-inner  {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }
  .logo img  {
    height: 40px;
    width: auto;
    margin-bottom: 1.1rem;
  }
  h4  {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: var(--text-size-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-ochre-light);
    margin: 0 0 0.9rem;
    font-weight: var(--font-weight-bold);
  }
  p, address  {
    margin: 0;
    font-style: normal;
    line-height: 1.7;
  }
  a  {
    color: var(--color-cream-light);
  }
  a:hover  {
    color: var(--color-ochre-light);
  }
  .core-eml-reveal  {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: var(--color-cream-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
  }
  .core-eml-reveal:hover  {
    color: var(--color-ochre-light);
  }
  .footer-legal  {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(245, 236, 221, 0.15);
    padding-top: 1.6rem;
    margin-top: 1rem;
    color: rgba(245, 236, 221, 0.55);
    font-size: var(--text-size-xs);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .footer-copyright  {
    flex: 0 0 auto;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
  }
  .footer-copy  {
    flex: 1;
    text-align: center;
  }
  .footer-credit  {
    flex: 0 0 auto;
    text-align: right;
  }
  @media (max-width: 767px)  {
    .content-section-inner  {
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }
    .footer-legal  {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.6rem;
    }
    .footer-copy, .footer-copyright, .footer-credit  {
      text-align: center;
    }
  }
}
.content-section-2737  {
  &.content-section  {
    position: relative;
    isolation: isolate;
  }
  &.content-section::before  {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/site-assets/images/hero-texture.jpg");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }
  .hero-layout  {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
  }
  h1  {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    margin-bottom: 1.4rem;
  }
  .colour-word  {
    color: var(--color-rust);
    font-style: italic;
  }
  .hero-lede  {
    max-width: 44ch;
    margin-bottom: 2.1rem;
    color: var(--color-espresso-soft);
  }
  .hero-actions  {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
  .hero-figure  {
    aspect-ratio: 1 / 1;
  }
  .trust-cues  {
    flex-wrap: nowrap;
    gap: 0.5rem 1.4rem;
  }
  .trust-cues li  {
    font-size: var(--text-size-xs);
  }
  .hero-cues  {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-oat-dark);
    gap: 1rem 2.5rem;
  }
  .hero-cues li  {
    white-space: nowrap;
    font-size: var(--text-size-sm);
  }
  @media (max-width: 767px)  {
    .hero-layout  {
      grid-template-columns: 1fr;
      gap: 2.2rem;
    }
    .hero-figure  {
      order: -1;
    }
    .hero-cues  {
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
    }
  }
}
.content-section-2738  {
  &.content-section  {
    color: var(--color-cream);
  }
  h2  {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream-light);
    margin-bottom: 1.1rem;
  }
  .concern-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.6rem;
  }
  .concern-card  {
    background: var(--color-cream-light);
    border-radius: 14px;
    padding: 1.9rem 1.8rem;
  }
  .concern-card h3  {
    font-family: "Newsreader", serif;
    font-size: var(--text-size-2xl);
    font-weight: 500;
    color: var(--color-moss-dark);
    margin-bottom: 0.55rem;
  }
  .concern-card p  {
    color: var(--color-espresso-soft);
    font-size: var(--text-size-reg);
    line-height: 1.55;
  }
  @media (max-width: 1023px)  {
    .concern-grid  {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 767px)  {
    .concern-grid  {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
}
.content-section-2739  {
  &.content-section  {
    position: relative;
    isolation: isolate;
  }
  &.content-section::before  {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/site-assets/images/hero-texture.jpg");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }
  .cta-band-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem 3rem;
    flex-wrap: wrap;
  }
  h2  {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 0.7rem;
  }
  .cta-band-copy  {
    max-width: 62ch;
  }
  .cta-band-copy p  {
    color: var(--color-espresso-soft);
  }
  .btn-primary  {
    flex: 0 0 auto;
  }
}
.content-section-2740  {
  .about-figure  {
    aspect-ratio: 3 / 4;
    max-width: 30rem;
  }
  .credentials  {
    color: var(--color-espresso-soft);
  }
}
.content-section-2741  {
}
.content-section-2742  {
  &.content-section  {
    color: var(--color-cream);
  }
  h2  {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-cream-light);
    margin-bottom: 2.8rem;
  }
  .steps  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }
  .step-num  {
    font-family: "Newsreader", serif;
    font-size: var(--text-size-8xl);
    line-height: 1;
    color: var(--color-ochre-light);
    display: block;
    margin-bottom: 0.8rem;
  }
  .step h3  {
    font-size: var(--text-size-3xl);
    color: var(--color-cream-light);
    margin-bottom: 0.6rem;
  }
  .step p  {
    color: rgba(245, 236, 221, 0.82);
    font-size: var(--text-size-reg);
  }
  .how-note  {
    margin-top: 2.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(245, 236, 221, 0.2);
    color: rgba(245, 236, 221, 0.82);
    font-size: var(--text-size-reg);
  }
  .how-actions  {
    margin-top: 2rem;
  }
  @media (max-width: 1023px)  {
    .steps  {
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }
    .step-num  {
      font-size: var(--text-size-7xl);
      margin-bottom: 0.4rem;
    }
  }
}
.content-section-2743  {
  &.content-section  {
    position: relative;
    isolation: isolate;
  }
  &.content-section::before  {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/site-assets/images/hero-texture.jpg");
    background-size: cover;
    background-position: center;
    mix-blend-mode: multiply;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }
}
.content-section-2744  {
  .split-figure  {
    aspect-ratio: 1 / 1;
  }
  h2  {
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    margin-bottom: 1.3rem;
  }
  p  {
    color: #4a3410;
  }
  .split-actions  {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
  }
}
.content-section-2745  {
  h2  {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.4rem;
  }
  details  {
    background: var(--color-cream);
    border: 1px solid var(--color-oat-dark);
  }
  summary  {
    font-family: "Newsreader", serif;
    color: var(--color-espresso);
  }
  details p  {
    margin-top: 0.4rem;
    color: var(--color-espresso-soft);
  }
}
.content-section-2746  {
  &.content-section  {
    color: var(--color-cream);
  }
  h2  {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--color-cream-light);
    margin-bottom: 1.2rem;
  }
  .enquire-layout  {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
  .enquire-lede  {
    color: rgba(245, 236, 221, 0.85);
    max-width: 40ch;
    margin-bottom: 1.8rem;
  }
  .enquire-form  {
    background: var(--color-cream-light);
    border-radius: 18px;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--color-espresso);
  }
  .enquire-form label  {
    font-weight: var(--font-weight-semibold);
    font-size: var(--text-size-sm);
    color: var(--color-espresso);
  }
  .enquire-form .btn-primary  {
    width: 100%;
    margin-top: 0.4rem;
  }
  .form-fineprint  {
    font-size: var(--text-size-xs);
    color: var(--core-muted);
    margin-top: 1rem;
  }
  .w-form-done, .w-form-fail  {
    background: var(--color-moss);
    color: var(--color-cream-light);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    font-size: var(--text-size-reg);
  }
  .w-form-fail  {
    background: var(--color-rust-dark);
    margin-top: 1rem;
  }
  @media (max-width: 1023px)  {
    .enquire-layout  {
      grid-template-columns: 1fr;
    }
  }
}
