/* =====================
   Global Reset & Base
===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cabin', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #FAF8F3; /* Warm off-white */
    color: #444;
    line-height: 1.75;
    font-weight: 400;
}

/* =====================
   Header Height Vars & Offsets
===================== */
:root { --header-h: 72px; }
@media (min-width: 768px){ :root { --header-h: 88px; } }

/* Reserve space for fixed header globally (fallback for pages without a hero) */
body { padding-top: calc(var(--header-h) + env(safe-area-inset-top)); }

/* =====================
   Cormorant Garamond
===================== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/cormorant-garamond-v20-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/cormorant-garamond-v20-latin-600.woff2') format('woff2');
  font-display: swap;
}

/* =====================
   Cabin
===================== */
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/cabin-v26-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/cabin-v26-latin-500.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/cabin-v26-latin-700.woff2') format('woff2');
  font-display: swap;
}

/* Optional italic if used */
@font-face {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/cabin-v26-latin-italic.woff2') format('woff2');
  font-display: swap;
}

/* =====================
   Typography Scale (Fluid)
===================== */
h1, h2, h3, .overlay-text {
    font-family: 'Cormorant Garamond', serif;
    color: #2E2E2E;
    font-weight: 600;
}

/* Headings */
h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Mobile to desktop */
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.4;
}

/* Overlay Text (Hero Captions) */
.overlay-text {
    font-size: clamp(1.2rem, 2.8vw, 2.5rem);
    line-height: 1.3;
    color: #fff;
}

/* Paragraphs & Lists */
p, li {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    line-height: 1.75;
    font-weight: 400;
    color: #444;
}

/* =====================
   Form Labels
===================== */
form label {
    display: block;
    font-size: clamp(1rem, 1.8vw, 1.4rem); /* Fluid, between body and micro-text */
    font-family: inherit;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

form p.hidden label {
    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    color: #aaa;
}

/* Micro-Text (Notes, Disclaimers, Small Labels) */
.single-section-note,
.small-text {
    font-size: clamp(0.85rem, 1.4vw, 1.2rem); /* Subtle scaling */
    font-weight: 300;
    color: #5C4F47;
    display: block;
}

/* Buttons & UI Elements */
button, .btn, .floating-btn, .floating-button {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 500;
}

/* Small Text (footer, cookies) */
footer, footer p, footer a, .cookie-banner {
    font-size: clamp(0.7rem, 1vw, 0.8rem); /* Fluid micro text scaling */
    font-weight: 300;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: underline;
}

/* =====================
   Layout Containers
===================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================
   Header & Navigation (Updated)
===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: transform 0.6s ease, opacity 0.6s ease, background 0.4s ease;
    background: rgba(248, 245, 239, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    min-height: var(--header-h);
    padding-top: env(safe-area-inset-top);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
}

/* Logo (responsive, single source of truth) */
.logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: clamp(44px, 7vw, 64px);
}

/* NAV LINKS - Larger & Thicker */
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; 
    font-weight: 600; 
    color: #2A2927; 
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #A67B5B; /* Warm accent hover */
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #2E2E2E;
    z-index: 2100;
}
/* =====================
   Hero Sections
===================== */
.hero {
    position: relative;
    min-height: clamp(60vh, 80svh, 92vh); /* allow content to grow instead of cropping; svh handles mobile browser chrome */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible; /* prevent clipping of heading/text */
    isolation: isolate; /* establish a stacking context so z-index works predictably */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;            /* put overlay behind content */
    opacity: 0.35; /* Adjust overlay strength */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero .hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}
.hero .hero-text {
    text-wrap: balance;
    hyphens: auto;
    overflow-wrap: anywhere;
    max-width: min(92vw, 800px);
    margin-inline: auto;
}

.hero h1 {
    font-size: clamp(1.6rem, 5.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.hero p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.hero .btn {
    background: #8b5e3c; /* Unique hero colour */
    border-radius: 25px; /* Slightly more rounded than global */
    padding: 0.8rem 2rem; /* Specific spacing for hero CTA */
}
.hero .btn:hover {
    background: #734d30; /* Unique hover colour */
}

/* =====================
   Individual Page Images & Gradients
===================== */

/* Feeling Happy */
.hero-happy {
    background-image: url('images/feeling-happy-hero.jpg');
}
.hero-happy::before {
    background: linear-gradient(to bottom right, rgba(255, 221, 200, 0.9), rgba(250, 248, 243, 0.7)); /* peach > cream */
}

/* Feeling Brave */
.hero-brave {
    background-image: url('images/feeling-brave-hero.jpg');
}
.hero-brave::before {
    background: linear-gradient(to bottom right, rgba(230, 180, 120, 0.85), rgba(210, 195, 175, 0.65)); /* amber > neutral */
}

/* Feeling Motivated */
.hero-motivated {
    background-image: url('images/feeling-motivated-hero.jpg');
}
.hero-motivated::before {
    background: linear-gradient(to bottom right, rgba(190, 210, 190, 0.85), rgba(245, 240, 230, 0.65)); /* sage > beige */
}

/* Sessions */
.hero-sessions {
    background-image: url('images/sessions-hero.jpg');
}
.hero-motivated::before {
    background: linear-gradient(to bottom right, rgba(190, 210, 190, 0.85), rgba(245, 240, 230, 0.65)); /* sage > beige */
}

/* =====================
   Homepage Hero
===================== */
.hero-home {
    background-image: url('images/homepage-hero.jpg');
}

.hero-home::before {
    background: linear-gradient(to bottom right, rgba(245, 225, 200, 0.85), rgba(240, 235, 225, 0.6)); 
    /* warm neutral gradient */
}
/* Clear fixed header & add breathing room */
.hero.hero-home { 
  padding-top: calc(var(--header-h) + 2rem + env(safe-area-inset-top));
  padding-bottom: calc(3rem + env(safe-area-inset-bottom));
  min-height: 80vh;      /* keep hero tall on larger screens */
}
@media (max-width: 768px){
  .hero.hero-home{ padding-top: calc(var(--header-h) + 1rem); padding-bottom: calc(2.5rem + env(safe-area-inset-bottom)); }
}

/* Offset for fixed header on all hero variants */
.hero:not(.hero-home) {
    padding-top: calc(var(--header-h) + 1.5rem + env(safe-area-inset-top));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

@media (max-width: 768px){
  .hero:not(.hero-home){
    padding-top: calc(var(--header-h) + 0.75rem);
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }
}

/* Tighten H1 spacing inside hero */
.hero .hero-text h1{ margin-top: 0; margin-bottom: 1rem; }
/* Space for brand block inside hero */
.hero .hero-text{ padding-inline: 1rem; }
.hero-brand img { max-width: clamp(180px, 45vw, 280px); }
/* =====================
   Video Section
===================== */
.intro-video {
    padding: 80px 20px; /* Adds breathing room top & bottom */
    text-align: center;
}

.intro-video h2 {
    margin-bottom: 10px;
}

.intro-video p {
    max-width: 700px;
    margin: 0 auto 30px; /* centre + keep bottom spacing */
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;      /* scale to wrapper width */
    height: auto;     /* preserve aspect ratio */
    display: block;   /* remove inline baseline gap */
}

/* =====================
   Pricing Emphasis
===================== */
.price {
    font-weight: 600; /* Slight emphasis */
    text-align: center;
    margin-top: 1.5rem;
    color: #6a5f54; /* Warm grey-brown for differentiation */
}

/* ======================
   Blog
====================== */
.blog-strip {
    background: #f8f6f3;
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-strip h2 {
    margin-bottom: 10px; /* Only spacing override */
}

.blog-strip .intro-text {
    font-size: 1.6rem; /* Slightly smaller than paragraphs for hierarchy */
    font-weight: 300;
    color: #555;
    margin-bottom: 25px;
}

/* Blog Feed Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 30px;
    text-align: left;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.blog-card h3 {
    margin-bottom: 8px; /* Font inherits from global h3 */
}

.blog-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card h3 a:hover {
    color: #a45d5d;
}

.read-more {
    display: inline-block;
    font-size: 1.2rem; /* Slightly smaller CTA link */
    color: #a45d5d;
    font-weight: 500;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #823e3e;
}
/* =====================
   Buttons
===================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #7C5E4D;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}
.btn:hover { background: #9a7b68; }

.btn.dark {
    background: #2E2E2E;
    border-radius: 50px;
    padding: 0.75rem 2rem;
}
.btn.dark:hover { background: #A67658; }

/* =====================
   CTA Section
===================== */
.cta {
    padding: 5rem 1rem 3rem; /* More space at top, less at bottom */
    text-align: center;
    background: #fff; /* Keep clean background */
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Button (ensure it's visible sitewide) */
.floating-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #7A5741; /* Warm brown matching palette */
    border-radius: 30px; /* Unique pill shape */
    padding: 0.8rem 1.5rem; /* Specific spacing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1100;
}

.floating-btn:hover {
    background: #6A4C3A;
}

/* Final CTA */
.final-cta {
    background: #fff;
    text-align: center;
    padding: 70px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.final-cta h2 {
    margin-bottom: 10px;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 20px;
}

.final-cta .btn {
    background: #8b5e3c; /* Unique CTA colour */
    border-radius: 25px;
    padding: 0.7rem 2rem;
}

.final-cta .btn:hover {
    background: #734d30;
}
/* =====================
   Split Section
===================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    min-height: 80vh;
    padding: 4rem 2rem;
    background: #FAF8F3; /* Default off-white */
}

.split .image { 
    position: relative; 
    overflow: hidden; 
}

.split .image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px; 
}

.split .overlay-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #fff;
    font-size: 2.5rem; /* Unique overlay size */
    max-width: 80%;
    line-height: 1.3;
}

.split .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 600px;
}

.split .text h2,
.split .text h3,
.split .text p {
    margin-bottom: 1rem; /* Only spacing needed */
}

/* Reverse layout */
.split.reverse {
    grid-template-columns: 1fr 1fr;
}

.split.reverse .image {
    order: 2;
}

.split.reverse .text {
    order: 1;
    text-align: left;
}

/* Alternate backgrounds */
.split:nth-of-type(even) {
    background: #F7F5EF; /* Slightly deeper off-white */
}
/* =====================
   Single Section
===================== */
.single-section {
    background-color: #E8DED7;
    color: #2E2E2E;
    padding: 4rem 1rem;
    text-align: center;
}

.single-section h2 {
    margin-bottom: 1.5rem; /* Spacing only */
}

.single-section p {
    max-width: 700px;
    margin: 0 auto;
}

.single-section-note {
    display: block;
    font-size: 1.2rem; /* Unique small note text */
    color: #5C4F47; /* Slightly darker note text */
    margin-top: 1rem;
}
/* =====================
   Info & Steps
===================== */
.info-block {
    text-align: center;
    padding: 80px 20px; /* Combined duplicate padding */
    background: #f9f7f3;
    position: relative;
}

.info-block h2 {
    margin-bottom: 1.5rem; /* Global h2 sizing applies */
}

.info-block p {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic; /* Unique styling */
}

/* Decorative lines */
.info-block::before,
.info-block::after {
    content: '';
    display: block;
    height: 1px;
    width: 80%;
    margin: 0 auto 40px;
    background: rgba(0, 0, 0, 0.1);
}

.info-block::after {
    margin: 40px auto 0;
}

/* Steps Grid */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    justify-items: stretch;
    margin-top: 2rem;
}

@media (max-width: 900px){
  .steps { gap: 1.25rem; }
  .info-block { padding-bottom: 40px; } /* reduce extra space below the cards */
  .info-block::after { margin: 30px auto 0; } /* tighten decorative rule spacing */
}

.step {
    flex: 1 1 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Equalise step card heights and pin CTA to bottom */
.steps { align-items: stretch; }
.step {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.step .btn {
    margin-top: auto;           /* push CTA to bottom */
    align-self: flex-start;     /* avoid full-width stretch */
}
/* Tidy list spacing inside step cards */
.step ul { margin: 0.5rem 0 1rem; }

.steps h3 {
    margin-bottom: 1.5rem; /* Global h3 size applies */
}

.steps p {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Image Tiles */
/* Remove default margin-bottom for HBM tile images (no extra gap beneath tile images) */
.hbm-grid .hbm-tile img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hbm-grid .hbm-tile h3 {
    margin-bottom: 0.5rem;
}

.hbm-grid .hbm-tile p {
    font-size: 1rem; /* Smaller text unique to tiles */
    margin-bottom: 1rem;
    color: #444;
}

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

.contact h2 {
    margin-bottom: 1.5rem; /* Global h2 styling handles size & weight */
}

.contact p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact p.hidden {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit; /* Inherits Lato from body */
    font-size: inherit; /* Inherits global paragraph size */
    line-height: inherit;
}

.contact button { 
    margin-top: 1rem; /* Button inherits global .btn styling */
}

/* =====================
   Footer
===================== */
footer {
    background: #f8f6f3;
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* =====================
   Cookie Banner
===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #eee;
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1 1 auto; }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-banner button {
    background: #7C5E4D;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.4rem 1rem;
    cursor: pointer;
}
.cookie-banner button:hover { background: #9a7b68; }
.cookie-banner button.secondary {
    background: #ccc;
    color: #333;
}
.cookie-banner button.secondary:hover { background: #aaa; }

/* =====================
   Floating Contact Button
===================== */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7C5E4D;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1100;
}
.floating-button:hover { background: #9a7b68; transform: translateY(-3px); }

@media (max-width: 768px) {
    .floating-button {
        bottom: 15px;
        right: 15px;
        padding: 0.6rem 1.2rem;
    }
}

/* =====================
   Animations
===================== */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s ease forwards; }
.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.fade-in-left { opacity: 0; transform: translateX(-30px); animation: fadeInLeft 1s ease forwards; }
.fade-in-right { opacity: 0; transform: translateX(30px); animation: fadeInRight 1s ease forwards; }

@keyframes fadeInLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } }

.fade-in, .fade-in-left, .fade-in-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.visible.fade-in, .visible.fade-in-left, .visible.fade-in-right { opacity: 1; transform: translate(0, 0); }

/* =====================
   Responsive Nav & Sections
===================== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links { 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1500;
    }

    .nav-links.show { 
        opacity: 1;
        visibility: visible;
    }

    .hamburger { 
        display: block; 
    }

    .logo img {
        max-height: 48px; /* keep it modest on small screens while respecting aspect ratio */
        height: auto;
    }

    /* Split Sections */
    .split { 
        grid-template-columns: 1fr; 
        text-align: center; 
        padding: 2rem 1.5rem; 
    }

    .split .image img { 
        height: auto; 
        border-radius: 6px; 
    }

    .split .text { 
        padding: 2rem 1rem; 
        max-width: 100%; 
    }

    /* Overlay text position */
    .overlay-text { 
        bottom: 15%; 
    }

    /* Buttons */
    .btn, .floating-btn, .floating-button {
        padding: 0.6rem 1.2rem;
    }

    .step { padding-bottom: 1.25rem; }
}

/* =====================
   Extra Small Devices
===================== */
@media (max-width: 480px) {
    .overlay-text {
        font-size: 1.4rem; /* Keep this only if needed for readability */
    }

    .btn, .floating-btn, .floating-button {
        padding: 0.5rem 1rem;
    }
}

/* =====================
   Alt Section Background
===================== */
.alt-section {
    background: #f8f6f3; /* Warm, calming neutral */
    padding: 60px 20px;
}

.alt-section h2 {
    text-align: center;
    margin-bottom: 1.5rem; /* Global h2 size applies */
}

.alt-section p {
    max-width: 750px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

/* =====================
   List Styling (Sessions Page)
===================== */
section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto;
    max-width: 750px;
}

section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
}

section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.4rem;
    color: #c5a78b; /* Warm accent bullet */
}

/* =====================
   Split Section (Additional)
===================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split .image img {
    width: 100%;
    border-radius: 10px;
}

.split .text {
    max-width: 550px;
}

@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split .text {
        margin: 0 auto;
    }
}

/* =====================
   Session Types
===================== */
.session-types ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.session-types ul li {
    background: #fff;
    border: 1px solid #e8e4df;
    padding: 1rem;
    border-radius: 8px;
    color: #534b44;
    transition: transform 0.2s ease;
    /* Font inherits from global p */
}

.session-types ul li:hover {
    transform: translateY(-3px);
}

/* =====================
   Generic Card Bullets
   (Reusable small custom bullet style)
===================== */
.card-bullets {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.card-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin: 0.4rem 0;
    line-height: 1.6;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.card-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent, #7a5c4a); /* fallback accent */
    opacity: 0.9;
}

.card-bullets p {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .card-bullets li { padding-left: 1rem; }
    .card-bullets li::before { width: 5px; height: 5px; top: 0.78em; }
}

/* ======================
   Important overides
====================== */

.cookie-banner p,
.cookie-banner a {
    font-size: 0.8rem !important;
}

.cookie-banner {
    font-size: 0.8rem !important;
}


/* Hero brand block with full logo + tagline */
.hero-brand { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-brand img { width: auto; height: auto; display: block; max-width: clamp(180px, 45vw, 280px); }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: .5px; opacity: .9; }
.hero-blurb { margin-top: 1rem; }

/* HBM tiles: overlay heading + blurb over artwork */
.hbm-tile { position: relative; overflow: hidden; }
.hbm-media { position: relative; }
.hbm-media img { display: block; width: 100%; height: auto; }
.hbm-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding:
1rem 1.25rem; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.35); background: linear-gradient(to top, rgba(0,0,0,.55),
rgba(0,0,0,.1) 60%, rgba(0,0,0,0)); }
.hbm-overlay h3 { margin: 0 0 .25rem; font-weight: 600; }
.hbm-overlay p { margin: 0 0 .5rem; }

/* HBM overlay refinements */
.hbm-grid .hbm-tile .hbm-media img { margin-bottom: 0; border-radius: 10px; }
.hbm-tile { border-radius: 10px; }

/* Force overlay text white for readability */
.hbm-overlay h3, .hbm-overlay p { color: #fff !important; }

@media (max-width: 600px){
  .hbm-overlay{ padding: .75rem 1rem; }
  .hbm-overlay h3{ font-size: 1.2rem; }
  .hbm-overlay p{ font-size: .95rem; }
}
/* =====================
   Footer Accreditation
===================== */
footer .accreditation { 
  margin-top: 0.75rem; 
  text-align: center; 
}
footer .accreditation img { 
  max-height: 40px; 
  max-width: 180px; 
  width: auto; 
  height: auto; 
  display: inline-block; 
  object-fit: contain; 
}

