:root {
  --ink: #172018;
  --ink-soft: #465149;
  --green-900: #173a20;
  --green-800: #22512c;
  --green-700: #2f6d3a;
  --green-600: #3b8148;
  --green-100: #e5f0e2;
  --green-050: #f2f7ef;
  --cream: #f7f4ec;
  --cream-deep: #eee8db;
  --white: #fff;
  --line: #dce4d9;
  --gold: #b2873f;
  --show: #7346c7;
  --show-bright: #a579ff;
  --show-bg: #11101d;
  --show-panel: #1b1830;
  --danger: #9b2f2f;
  --shadow-sm: 0 8px 26px rgba(25, 48, 29, .08);
  --shadow-md: 0 18px 50px rgba(25, 48, 29, .14);
  --shadow-lg: 0 28px 80px rgba(16, 35, 20, .2);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .16em; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.15rem, 7vw, 6.65rem); }
h2 { font-size: clamp(2.25rem, 4.25vw, 4.15rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p:last-child { margin-bottom: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 132px) 0; }
.section--tint { background: linear-gradient(180deg, var(--green-050), #edf4e8); }
.section--soft { background: var(--cream); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: #fff; color: #111; box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 14px; color: var(--green-700); font-size: .78rem; font-weight: 800; letter-spacing: .16em; line-height: 1.25; text-transform: uppercase; }
.small-text { color: var(--ink-soft); font-size: .88rem; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .menu-toggle:focus-visible, .icon-button:focus-visible, .link-button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(59,129,72,.28); outline-offset: 3px; }
.button--large { min-height: 56px; padding: 14px 22px; border-radius: 14px; }
.button--primary { background: var(--green-700); color: #fff; box-shadow: 0 11px 28px rgba(47,109,58,.22); }
.button--primary:hover { background: var(--green-800); box-shadow: 0 15px 34px rgba(47,109,58,.28); }
.button--outline { border-color: #b8c5b7; background: #fff; color: var(--ink); }
.button--outline:hover { border-color: var(--green-700); color: var(--green-800); }
.button--light { border-color: rgba(255,255,255,.68); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(12px); }
.button--light:hover { background: #fff; color: var(--green-900); }
.button--ghost-ink { border-color: #d8ded6; background: transparent; color: var(--ink); }
.button--show { background: linear-gradient(135deg, var(--show-bright), var(--show)); color: #fff; box-shadow: 0 14px 34px rgba(115,70,199,.33); }
.button--show:hover { box-shadow: 0 18px 42px rgba(115,70,199,.43); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--green-700); font-weight: 800; text-decoration: none; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(5px); }
.text-link--show { color: var(--show-bright); }
.link-button { padding: 0; border: 0; background: none; color: inherit; text-decoration: underline; text-underline-offset: .16em; cursor: pointer; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(24,44,28,.08);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(20,40,25,.09); }
.header-inner { display: flex; min-height: var(--header-h); align-items: center; gap: 28px; }
.brand { display: inline-flex; width: 218px; flex: 0 0 auto; align-items: center; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; margin-left: auto; align-items: center; gap: clamp(15px, 1.7vw, 27px); }
.main-nav a { position: relative; padding: 29px 0 26px; color: #29322b; font-size: .92rem; font-weight: 680; text-decoration: none; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--green-700); content: ""; transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-call { min-height: 44px; flex: 0 0 auto; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }

/* Home hero */
.hero { position: relative; min-height: min(760px, calc(100svh - var(--header-h))); overflow: hidden; background: var(--green-900); color: #fff; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.hero__overlay { background: linear-gradient(90deg, rgba(14,33,18,.94) 0%, rgba(17,42,23,.82) 39%, rgba(17,42,23,.28) 71%, rgba(17,42,23,.06) 100%); }
.hero__content { position: relative; z-index: 2; display: flex; min-height: 630px; max-width: var(--container); flex-direction: column; justify-content: center; padding-top: 58px; padding-bottom: 150px; }
.hero .eyebrow { color: #b9ddb7; }
.hero h1 { max-width: 730px; margin-bottom: 24px; color: #fff; font-size: clamp(3.4rem, 7vw, 6.8rem); }
.hero h1 em { color: #b5dfaa; font-style: normal; }
.hero__lead { max-width: 680px; margin-bottom: 30px; color: rgba(255,255,255,.91); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__note { max-width: 720px; margin-top: 22px; color: rgba(255,255,255,.7); font-size: .94rem; }
.hero__facts { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.18); background: rgba(244,248,240,.94); color: var(--ink); backdrop-filter: blur(12px); }
.hero__facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__facts-grid > div { display: flex; min-height: 112px; align-items: center; gap: 14px; padding: 22px 25px; border-right: 1px solid rgba(35,70,38,.1); }
.hero__facts-grid > div:last-child { border-right: 0; }
.hero__facts-grid svg { width: 28px; height: 28px; color: var(--green-700); stroke-width: 1.7; }
.hero__facts-grid span { display: grid; gap: 2px; color: var(--ink-soft); font-size: .84rem; line-height: 1.4; }
.hero__facts-grid strong { color: var(--ink); font-size: .98rem; }

.intro-band { padding: 76px 0; background: var(--cream); }
.intro-band__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(45px, 7vw, 100px); }
.intro-band h2 { max-width: 700px; margin-bottom: 18px; font-size: clamp(2.1rem, 3.4vw, 3.5rem); }
.intro-band p { color: var(--ink-soft); }
.intro-band blockquote { margin: 0; border-left: 3px solid var(--green-700); padding: 10px 0 10px 30px; color: #394039; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.1vw, 1.85rem); font-style: italic; line-height: 1.45; }
.intro-band cite { display: block; margin-top: 14px; color: var(--green-700); font-family: Inter, sans-serif; font-size: .8rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.split-layout { display: grid; grid-template-columns: minmax(310px, .84fr) minmax(0, 1.16fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.split-layout--reverse { grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); }
.portrait-card { position: relative; max-width: 490px; }
.portrait-card::before { position: absolute; z-index: -1; top: 30px; right: -28px; bottom: -28px; left: 32px; border-radius: var(--radius-lg); background: var(--green-100); content: ""; }
.portrait-card img { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; object-position: center; }
.portrait-card__caption { position: absolute; right: -25px; bottom: 24px; display: grid; min-width: 225px; gap: 2px; border-radius: 15px; padding: 15px 20px; background: #fff; box-shadow: var(--shadow-md); }
.portrait-card__caption span { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.portrait-card__caption small { color: var(--green-700); font-weight: 700; }
.prose h2 { max-width: 780px; margin-bottom: 28px; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose strong { color: var(--ink); }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin-bottom: 7px; color: var(--ink-soft); }
.timeline { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 22px; }
.timeline-card { position: relative; overflow: hidden; min-height: 390px; border: 1px solid rgba(47,109,58,.12); border-radius: var(--radius); padding: 32px; background: rgba(255,255,255,.86); box-shadow: var(--shadow-sm); }
.timeline-card:first-child { grid-row: span 2; }
.timeline-card__number { position: absolute; top: 12px; right: 22px; color: rgba(47,109,58,.09); font-family: Georgia, serif; font-size: 5.5rem; font-weight: 700; line-height: 1; }
.timeline-card__icon { display: grid; width: 50px; height: 50px; margin-bottom: 28px; place-items: center; border-radius: 15px; background: var(--green-100); color: var(--green-700); }
.timeline-card__icon svg { width: 24px; height: 24px; }
.timeline-card__duration { margin-bottom: 8px; color: var(--green-700); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline-card h3 { margin-bottom: 18px; }
.timeline-card p { color: var(--ink-soft); font-size: .96rem; }
.timeline-card__visual { overflow: hidden; margin: 28px -32px -32px; }
.timeline-card__visual img { width: 100%; height: 220px; object-fit: cover; }
.programme-summary { display: grid; grid-template-columns: .65fr .65fr .75fr 1.65fr; align-items: center; gap: 1px; overflow: hidden; margin-top: 24px; border-radius: var(--radius); background: var(--green-900); color: #fff; box-shadow: var(--shadow-md); }
.programme-summary > div { display: grid; min-height: 110px; align-content: center; padding: 22px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.programme-summary span { color: rgba(255,255,255,.64); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.programme-summary strong { color: #fff; font-family: Georgia, serif; font-size: 2rem; }
.programme-summary .button { margin: 20px; }

.image-statement { position: relative; display: grid; min-height: 510px; place-items: center; overflow: hidden; background: var(--green-900); color: #fff; }
.image-statement__media { position: absolute; inset: 0; }
.image-statement__media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,31,15,.92), rgba(10,31,15,.55), rgba(10,31,15,.35)); content: ""; }
.image-statement__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.image-statement__content { position: relative; z-index: 2; }
.image-statement__content .eyebrow { color: #b9ddb7; }
.image-statement h2 { max-width: 720px; margin-bottom: 20px; color: #fff; }
.image-statement p:last-child { max-width: 650px; color: rgba(255,255,255,.78); font-size: 1.1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; min-height: 180px; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b4ccb4; box-shadow: var(--shadow-sm); }
.service-card > svg { width: 34px; height: 34px; margin-bottom: auto; color: var(--green-700); }
.service-card h3 { margin: 25px 0 0; font-family: Inter, sans-serif; font-size: 1.07rem; line-height: 1.35; letter-spacing: -.01em; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card img::after { content: ""; }
.service-card:has(img)::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(20,35,20,.1), rgba(20,35,20,.85)); content: ""; }
.service-card:has(img) h3 { position: relative; z-index: 2; color: #fff; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(45px, 8vw, 100px); }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p:last-child { color: var(--ink-soft); }
.accordion { border-top: 1px solid #cbd5c8; }
.accordion details { border-bottom: 1px solid #cbd5c8; }
.accordion summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; color: var(--ink); font-weight: 800; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border: 1px solid #aebbaa; border-radius: 50%; color: var(--green-700); content: "+"; font-size: 1.25rem; font-weight: 500; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion details > div { padding: 0 40px 25px 4px; color: var(--ink-soft); }

/* Contact */
.contact-section { padding: clamp(80px, 9vw, 125px) 0; background: var(--green-900); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(45px, 7vw, 90px); }
.contact-copy { padding-top: 25px; }
.contact-copy .eyebrow { color: #b9ddb7; }
.contact-copy h2 { max-width: 520px; margin-bottom: 23px; color: #fff; }
.contact-copy > p { color: rgba(255,255,255,.74); }
.direct-contact { display: grid; gap: 12px; margin: 32px 0; }
.direct-contact > a, .direct-contact > div { display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; padding: 14px 16px; background: rgba(255,255,255,.06); color: #fff; text-decoration: none; transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.direct-contact > a:hover { transform: translateX(4px); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.1); }
.direct-contact > * > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: rgba(255,255,255,.11); color: #c8ebc5; }
.direct-contact svg { width: 21px; height: 21px; }
.direct-contact div div, .direct-contact a div { display: grid; }
.direct-contact small { color: rgba(255,255,255,.55); font-size: .75rem; text-transform: uppercase; }
.direct-contact strong { font-size: 1.05rem; }
.contact-email { font-size: .95rem; }
.contact-email a { color: #d3f0cf; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; border-radius: var(--radius-lg); padding: clamp(27px, 4vw, 46px); background: #fff; color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.form-heading { grid-column: 1/-1; margin-bottom: 6px; }
.form-heading h3 { margin-bottom: 8px; font-size: 1.9rem; }
.form-heading p { color: var(--ink-soft); font-size: .93rem; }
.contact-form label:not(.check-field):not(.honeypot) { display: grid; gap: 7px; color: #273029; font-size: .88rem; font-weight: 800; }
.contact-form label span[aria-hidden] { color: var(--danger); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #ccd6ca; border-radius: 11px; padding: 12px 13px; background: #fcfdfb; color: var(--ink); font-size: 1rem; font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { min-height: 135px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(59,129,72,.1); outline: none; }
.form-full { grid-column: 1/-1; }
.check-field { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: .82rem; line-height: 1.5; }
.check-field input { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--green-700); }
.check-field a { color: var(--green-700); font-weight: 700; }
.form-note { margin: -5px 0 0; color: #68736a; font-size: .77rem; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
.site-footer { padding: 66px 0 0; background: #101611; color: rgba(255,255,255,.74); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .85fr .85fr; gap: 70px; padding-bottom: 45px; }
.footer-brand img { width: 205px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .93; }
.footer-brand p { font-size: .93rem; }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-family: Inter, sans-serif; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-links span { display: flex; align-items: flex-start; gap: 9px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-links svg { width: 18px; height: 18px; margin-top: 4px; color: #a9d4a5; }
.footer-links--plain a, .footer-links--plain button { color: rgba(255,255,255,.74); font-size: .92rem; }
.medical-note { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.medical-note p { max-width: 1030px; color: rgba(255,255,255,.56); font-size: .78rem; line-height: 1.65; }
.footer-bottom { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: none; }

/* HypnoDreams */
.show-page { background: var(--show-bg); color: #eeedf6; }
.show-page h1, .show-page h2, .show-page h3 { color: #fff; }
.show-page .site-header { border-bottom-color: rgba(255,255,255,.08); background: rgba(17,16,29,.93); }
.show-page .site-header .brand img { filter: brightness(0) invert(1); }
.show-page .main-nav a { color: rgba(255,255,255,.8); }
.show-page .main-nav a::after { background: var(--show-bright); }
.show-page .header-call { background: var(--show); box-shadow: none; }
.show-page .menu-toggle { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: #fff; }
.show-hero { position: relative; min-height: min(770px, calc(100svh - var(--header-h))); overflow: hidden; }
.show-hero__media, .show-hero__overlay { position: absolute; inset: 0; }
.show-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.show-hero__overlay { background: linear-gradient(90deg, rgba(14,11,29,.96), rgba(20,14,40,.76) 48%, rgba(20,14,40,.16)); }
.show-hero__content { position: relative; z-index: 2; display: flex; min-height: 680px; flex-direction: column; justify-content: center; padding: 70px 0; }
.show-hero .eyebrow { color: #c7aaff; }
.show-wordmark { width: min(610px, 80%); height: auto; margin-bottom: 10px; filter: drop-shadow(0 4px 15px rgba(0,0,0,.35)); }
.show-hero h1 { margin-bottom: 16px; font-size: clamp(2.8rem, 5vw, 5.4rem); }
.show-hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.78); font-size: 1.18rem; }
.show-hero .button { width: fit-content; margin-top: 18px; }
.show-hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; margin-top: 20px; }
.show-hero__actions .button { margin-top: 0; }
.button--messenger { border: 1.5px solid rgba(255,255,255,.72); background: rgba(255,255,255,.15); color: #fff; box-shadow: 0 10px 28px rgba(8,5,18,.24); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.button--messenger:hover, .button--messenger:focus-visible { border-color: #fff; background: rgba(255,255,255,.24); color: #fff; }
.show-intro { background: var(--show-bg); }
.show-intro .eyebrow { color: var(--show-bright); }
.show-intro .prose p { color: rgba(255,255,255,.68); }
.show-feature { position: relative; }
.show-feature > img:first-child { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 25px 70px rgba(0,0,0,.44); }
.show-feature__mascot { position: absolute; right: -28px; bottom: -28px; width: 135px; height: 135px; border: 6px solid var(--show-bg); border-radius: 50%; background: #fff; object-fit: contain; }
.show-audiences { background: #201a35; }
.show-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.show-audience-card { min-height: 260px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); }
.show-audience-card > span { display: inline-grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; border-radius: 50%; background: rgba(165,121,255,.18); color: #d7c2ff; font-size: .75rem; font-weight: 800; }
.show-audience-card h3 { margin-bottom: 12px; font-size: 1.75rem; }
.show-audience-card p { color: rgba(255,255,255,.67); }
.show-area { display: flex; align-items: center; gap: 12px; margin-top: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 18px 22px; background: rgba(10,8,19,.28); }
.show-area strong { margin-right: 4px; color: #fff; }
.show-area span { border-radius: 999px; padding: 7px 12px; background: rgba(165,121,255,.16); color: #dbcaff; font-size: .85rem; font-weight: 750; }
.show-area a { margin-left: auto; color: #e3d5ff; font-weight: 750; }
.show-gallery { padding: 105px 0; background: linear-gradient(180deg, #18152a, #0e0d18); }
.section-heading--light h2 { color: #fff; }
.section-heading--light .eyebrow { color: var(--show-bright); }
.section-heading--light > p { color: rgba(255,255,255,.63); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption { padding: 17px 20px; color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 700; }
.show-faq { background: #11101d; }
.show-faq .faq-intro .eyebrow { color: var(--show-bright); }
.show-faq .faq-intro p:last-child { color: rgba(255,255,255,.58); }
.accordion--dark details { border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.045); }
.accordion--dark summary { color: #fff; }
.accordion--dark details div p { color: rgba(255,255,255,.66); }
.contact-section--show { background: #171426; }
.contact-section--show .eyebrow { color: var(--show-bright); }
.direct-contact--dark > a { border-color: rgba(165,121,255,.22); }
.direct-contact--dark > * > span { color: #d6c0ff; }
.contact-form--dark { background: #f8f7fc; }
.show-page .contact-form--dark .form-heading h3 { color: #1b1728; }
.contact-form--dark .button--show { border: 0; }
.site-footer--dark { background: #090812; }
.home-show-link { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 38px; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 50px); background: linear-gradient(135deg, #1b172c, #332454); color: rgba(255,255,255,.74); }
.home-show-link > div { max-width: 730px; }
.home-show-link .eyebrow { color: #cdb4ff; }
.home-show-link h3 { margin-bottom: 12px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.home-show-link p:last-child { margin: 0; }
.home-show-link .button { flex: 0 0 auto; }

/* NFC */
.nfc-body { background: var(--cream); }
.nfc-body .site-header, .nfc-body .site-footer { display: none; }
.nfc-page { min-height: 100svh; display: grid; place-items: center; padding: 55px 0; background: radial-gradient(circle at top left, #eaf5e5, transparent 40%), radial-gradient(circle at bottom right, #e6dbf8, transparent 42%), var(--cream); }
.nfc-page__inner { max-width: 850px; text-align: center; }
.nfc-page h1 { max-width: 760px; margin-inline: auto; font-size: clamp(2.7rem, 6vw, 5.2rem); }
.nfc-page__lead { color: var(--ink-soft); font-size: 1.1rem; }
.nfc-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0 28px; text-align: left; }
.nfc-choice { display: grid; grid-template-rows: 1fr auto; gap: 12px; }
.nfc-card { position: relative; display: grid; min-height: 355px; grid-template-rows: 180px 1fr; overflow: hidden; border: 1px solid rgba(24,50,28,.08); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); text-decoration: none; transition: transform .24s var(--ease), box-shadow .24s ease; }
.nfc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nfc-card > img { width: 100%; height: 180px; padding: 22px; object-fit: contain; }
.nfc-card--therapy > img { background: #eef7ea; }
.nfc-card--show > img { background: #171426; }
.nfc-card > span { display: grid; align-content: center; gap: 4px; padding: 25px 60px 25px 25px; }
.nfc-card small { color: var(--green-700); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nfc-card--show small { color: var(--show); }
.nfc-card strong { font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.18; }
.nfc-card em { color: var(--ink-soft); font-size: .88rem; font-style: normal; }
.nfc-card > svg { position: absolute; right: 23px; bottom: 28px; width: 25px; height: 25px; color: var(--green-700); }
.nfc-card--show > svg { color: var(--show); }
.nfc-review-button { display: flex; min-height: 58px; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(24,50,28,.14); border-radius: 18px; padding: 12px 18px; background: rgba(255,255,255,.92); box-shadow: 0 10px 24px rgba(16,35,19,.08); color: var(--ink); font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.nfc-review-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,35,19,.13); }
.nfc-review-button:focus-visible { outline: 3px solid rgba(47,109,58,.28); outline-offset: 3px; }
.nfc-review-button--therapy:hover { border-color: rgba(47,109,58,.48); }
.nfc-review-button--show:hover { border-color: rgba(115,70,199,.48); }
.nfc-review-button__stars { color: #e8a500; font-size: .92rem; letter-spacing: .04em; line-height: 1; }
.nfc-messenger { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 15px; color: var(--ink-soft); font-size: .82rem; }
.nfc-messenger > span { opacity: .78; }
.nfc-messenger a { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(115,70,199,.18); border-radius: 999px; padding: 6px 10px; background: rgba(255,255,255,.58); color: #5c477c; font-weight: 750; text-decoration: none; transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.nfc-messenger a:hover { transform: translateY(-1px); border-color: rgba(115,70,199,.34); background: rgba(255,255,255,.88); }
.nfc-messenger svg { width: 16px; height: 16px; }

/* Legal pages */
.legal-page { background: #fbfcfa; }
.legal-hero { padding: 85px 0 65px; background: var(--cream); }
.legal-hero h1 { margin-bottom: 16px; font-size: clamp(2.8rem, 5vw, 5rem); }
.legal-hero p:last-child { color: var(--ink-soft); }
.legal-content { padding: 75px 0 110px; }
.legal-layout { display: grid; grid-template-columns: 245px minmax(0, 790px); align-items: start; justify-content: space-between; gap: 70px; }
.legal-narrow { max-width: 900px; }
.legal-toc { position: sticky; top: 115px; display: grid; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.legal-toc strong { margin-bottom: 5px; color: var(--green-700); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-toc a { border-radius: 8px; padding: 7px 8px; color: var(--ink-soft); font-size: .85rem; text-decoration: none; }
.legal-toc a:hover { background: var(--green-050); color: var(--green-800); }
.legal-prose { min-width: 0; }
.legal-prose h2 { margin: 48px 0 18px; font-size: 2.05rem; }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 { margin: 30px 0 12px; font-size: 1.42rem; }
.legal-prose p, .legal-prose li { color: var(--ink-soft); }
.legal-prose a { color: var(--green-700); font-weight: 650; }
.legal-warning { border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; padding: 18px 20px; background: #fff8e7; color: #554627 !important; }
.legal-model { margin: 15px 0; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; background: #fff; color: var(--ink-soft); font-size: .92rem; font-style: normal; }

/* Thank you / 404 */
.thanks-body { background: var(--cream); }
.thanks-page { min-height: calc(100svh - var(--header-h)); display: grid; place-items: center; padding: 70px 0; }
.thanks-card { max-width: 760px; border-radius: var(--radius-lg); padding: clamp(35px, 7vw, 75px); background: #fff; box-shadow: var(--shadow-md); text-align: center; }
.thanks-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.thanks-icon svg { width: 34px; height: 34px; }
.thanks-card h1 { margin-bottom: 20px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.thanks-card > p { color: var(--ink-soft); }
.thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

/* Cookie UI */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner { position: fixed; z-index: 500; right: 18px; bottom: 18px; left: 18px; }
.cookie-banner__content { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; max-width: 1120px; margin-inline: auto; border: 1px solid #d6ded4; border-radius: 22px; padding: 23px 25px; background: #fff; box-shadow: 0 25px 70px rgba(12,28,16,.25); }
.cookie-banner h2 { margin-bottom: 6px; font-family: Inter, sans-serif; font-size: 1.22rem; letter-spacing: -.01em; }
.cookie-banner .eyebrow { margin-bottom: 6px; font-size: .68rem; }
.cookie-banner p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-banner__actions .button { min-height: 43px; padding: 9px 14px; font-size: .85rem; }
.cookie-modal { position: fixed; z-index: 600; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-modal__backdrop { position: absolute; inset: 0; background: rgba(9,17,10,.6); backdrop-filter: blur(5px); }
.cookie-modal__panel { position: relative; z-index: 1; width: min(620px, 100%); max-height: min(750px, calc(100svh - 40px)); overflow: auto; border-radius: var(--radius); padding: 32px; background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.cookie-modal__panel h2 { margin-bottom: 25px; font-family: Inter, sans-serif; font-size: 1.7rem; }
.icon-button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.cookie-modal__close { position: absolute; top: 18px; right: 18px; }
.cookie-choice { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; border-top: 1px solid var(--line); padding: 20px 0; }
.cookie-choice strong { display: block; margin-bottom: 4px; }
.cookie-choice p { margin: 0; color: var(--ink-soft); font-size: .83rem; }
.status-pill { border-radius: 999px; padding: 6px 10px; background: var(--green-100); color: var(--green-800); font-size: .72rem; font-weight: 800; }
.cookie-choice--toggle { cursor: pointer; }
.cookie-choice--toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle { position: relative; width: 50px; height: 28px; border-radius: 999px; background: #bac3b9; transition: background .2s ease; }
.toggle::after { position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 7px rgba(0,0,0,.22); content: ""; transition: transform .2s ease; }
.cookie-choice--toggle input:checked + .toggle { background: var(--green-700); }
.cookie-choice--toggle input:checked + .toggle::after { transform: translateX(22px); }
.cookie-choice--toggle input:focus-visible + .toggle { outline: 3px solid rgba(59,129,72,.25); outline-offset: 3px; }
.cookie-modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .header-inner { gap: 16px; }
  .brand { width: 190px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: .85rem; }
  .header-call span { display: none; }
  .header-call { width: 45px; padding: 10px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-card:first-child { grid-row: auto; grid-column: 1/-1; }
  .programme-summary { grid-template-columns: repeat(3, 1fr); }
  .programme-summary .button { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav { position: fixed; top: var(--header-h); right: 0; left: 0; display: grid; align-content: start; gap: 0; max-height: calc(100svh - var(--header-h)); overflow: auto; border-top: 1px solid var(--line); padding: 18px 22px 28px; background: #fff; box-shadow: 0 24px 50px rgba(20,40,25,.18); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { border-bottom: 1px solid var(--line); padding: 15px 4px; color: var(--ink); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .show-page .main-nav { border-top-color: rgba(255,255,255,.1); background: #151326; }
  .show-page .main-nav a { border-bottom-color: rgba(255,255,255,.1); color: #fff; }
  .header-call { width: auto; }
  .header-call span { display: inline; }
  .hero { min-height: 860px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(14,33,18,.92), rgba(14,33,18,.65)); }
  .hero__content { min-height: 670px; padding-top: 52px; padding-bottom: 245px; }
  .hero__facts-grid { grid-template-columns: 1fr 1fr; }
  .hero__facts-grid > div { min-height: 90px; border-bottom: 1px solid rgba(35,70,38,.1); }
  .hero__facts-grid > div:nth-child(2) { border-right: 0; }
  .intro-band__grid, .split-layout, .split-layout--reverse, .section-heading, .faq-layout, .contact-grid, .legal-layout { grid-template-columns: 1fr; }
  .intro-band__grid { gap: 40px; }
  .portrait-card { width: min(520px, calc(100% - 25px)); margin-inline: auto; }
  .section-heading { align-items: start; gap: 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .faq-intro, .legal-toc { position: static; }
  .contact-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .show-hero__overlay { background: linear-gradient(90deg, rgba(14,11,29,.94), rgba(20,14,40,.55)); }
  .show-hero__content { min-height: 650px; }
  .show-audience-grid { grid-template-columns: 1fr; }
  .show-audience-card { min-height: 0; }
  .show-area { flex-wrap: wrap; }
  .show-area a { width: 100%; margin: 8px 0 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:last-child { grid-column: 1/-1; }
  .legal-layout { gap: 35px; }
  .legal-toc { display: flex; overflow-x: auto; gap: 5px; white-space: nowrap; }
  .legal-toc strong { display: none; }
  .cookie-banner__content { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner__actions { justify-content: flex-start; }
  .home-show-link { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .site-header .brand { width: 174px; }
  .header-call { display: none; }
  .hero { min-height: 915px; }
  .hero__media img { object-position: 62% center; }
  .hero__overlay { background: linear-gradient(180deg, rgba(14,33,18,.88), rgba(14,33,18,.74)); }
  .hero__content { min-height: 690px; justify-content: flex-start; padding-top: 74px; padding-bottom: 250px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.8rem); }
  .hero__actions { display: grid; width: 100%; }
  .hero__actions .button { width: 100%; }
  .hero__facts-grid > div { gap: 10px; padding: 15px 12px; }
  .hero__facts-grid svg { width: 23px; height: 23px; }
  .hero__facts-grid strong { font-size: .88rem; }
  .hero__facts-grid span { font-size: .75rem; }
  .intro-band { padding: 60px 0; }
  .intro-band blockquote { padding-left: 20px; }
  .portrait-card::before { right: -16px; bottom: -16px; }
  .portrait-card__caption { right: -10px; bottom: 12px; min-width: 190px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-card:first-child { grid-column: auto; }
  .timeline-card { min-height: 0; padding: 25px; }
  .timeline-card__visual { margin: 25px -25px -25px; }
  .programme-summary { grid-template-columns: 1fr; }
  .programme-summary > div { min-height: 82px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .programme-summary .button { grid-column: auto; margin: 14px; }
  .image-statement { min-height: 470px; }
  .services-grid, .gallery-grid, .nfc-choices { grid-template-columns: 1fr; }
  .gallery-grid figure:last-child { grid-column: auto; }
  .service-card { min-height: 155px; }
  .contact-form { grid-template-columns: 1fr; padding: 25px; }
  .form-full, .form-heading { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 17px 0; }
  .show-hero__media img { object-position: 58% center; }
  .show-hero__overlay { background: linear-gradient(180deg, rgba(14,11,29,.86), rgba(20,14,40,.8)); }
  .show-hero__content { min-height: 690px; justify-content: flex-start; padding-top: 44px; padding-bottom: 62px; }
  .show-hero__actions { width: min(100%, 480px); gap: 12px; margin-top: 18px; }
  .show-hero__actions .button { width: 100%; justify-content: center; }
  .button--messenger { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.78); }
  .show-wordmark { width: 95%; }
  .show-feature__mascot { right: -8px; bottom: -20px; width: 105px; height: 105px; }
  .nfc-page { padding: 35px 0; }
  .nfc-card { min-height: 320px; }
  .nfc-messenger { flex-wrap: wrap; gap: 6px 8px; margin-top: 13px; font-size: .78rem; }
  .legal-hero { padding: 62px 0 48px; }
  .legal-content { padding: 50px 0 80px; }
  .legal-toc { margin-right: -15px; margin-left: -15px; border-right: 0; border-left: 0; border-radius: 0; padding: 12px 15px; box-shadow: none; }
  .legal-prose h2 { font-size: 1.75rem; }
  .thanks-actions { display: grid; }
  .cookie-banner { right: 8px; bottom: 8px; left: 8px; }
  .cookie-banner__content { padding: 18px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner__actions .button:last-child { grid-column: 1/-1; }
  .cookie-modal__panel { padding: 25px 20px; }
  .cookie-choice { align-items: start; }
  .cookie-modal__actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-modal, .legal-toc { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .legal-layout { display: block; }
  a { color: #000; text-decoration: none; }
}

/* v4 - HypnoDreams hero contact actions: secondary Messenger CTA must read as a button */
.show-hero__actions {
  width: min(100%, 440px);
}
.show-hero__actions .button {
  width: 100%;
  justify-content: center;
}
.show-hero__actions .button--messenger {
  border: 2px solid rgba(213, 190, 255, .96);
  background: linear-gradient(135deg, rgba(56, 35, 91, .94), rgba(28, 22, 48, .94));
  color: #fff;
  box-shadow: 0 12px 30px rgba(5, 3, 13, .34), inset 0 0 0 1px rgba(255,255,255,.08);
  text-shadow: 0 1px 1px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.show-hero__actions .button--messenger svg {
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2.2;
}
.show-hero__actions .button--messenger:hover,
.show-hero__actions .button--messenger:focus-visible {
  border-color: #fff;
  background: linear-gradient(135deg, rgba(103, 64, 170, .98), rgba(52, 35, 86, .98));
  color: #fff;
  box-shadow: 0 16px 36px rgba(5, 3, 13, .42), 0 0 0 3px rgba(165,121,255,.16);
}

@media (max-width: 760px) {
  .show-hero__content {
    padding-top: 28px;
  }
  .show-hero__actions {
    width: 100%;
    gap: 12px;
  }
  .show-hero__actions .button--messenger {
    min-height: 58px;
    background: linear-gradient(135deg, rgba(64, 40, 105, .97), rgba(30, 23, 51, .97));
  }
}
