/* =========================================================================
   RHI TUITION — design system
   Navy, blush pink, white & subtle gold · Fraunces / Inter / Caveat
   -------------------------------------------------------------------------
   Contents:
   01 Fonts            02 Tokens          03 Base & reset
   04 Utilities        05 Buttons         06 Header & nav
   07 Hero             08 Subjects        09 Why choose
   10 Steps            11 Pricing         12 Ways to learn
   13 Meet             14 Page heroes     15 Prose
   16 About extras     17 Booking & form  18 FAQ
   19 Reviews/schedule 20 Notes fallback  21 CTA band
   22 Footer           23 WhatsApp float  24 Mobile action bar
   25 Reveal & motion  26 Responsive      27 Reduced motion
   ====================================================================== */

/* 01 · Fonts (self-hosted, UK-GDPR friendly) ---------------------------- */
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-italic.woff2') format('woff2');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Caveat';
	src: url('../fonts/caveat.woff2') format('woff2');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

/* 02 · Tokens ----------------------------------------------------------- */
:root {
	--navy:       #14263F;
	--navy-hi:    #1E3A5F;
	--navy-deep:  #0C1930;
	--ink:        #1C2B45;
	--ink-soft:   #51617E;
	--paper-1:    #FDFBFC;
	--paper-2:    #F9EFF2;
	--card:       #FFFFFF;
	--blush:      #F3DCE2;
	--rose:       #C9748E;
	--rose-deep:  #A85874;
	--gold:       #C9A24B;
	--gold-deep:  #A4813C;
	--gold-soft:  #EFD9A0;
	--wa:         #25D366;

	--font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
	--font-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;
	--font-hand:    'Caveat', 'Bradley Hand', cursive;

	--wrap: 74rem;
	--wrap-narrow: 46rem;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow-1: 0 2px 10px rgba(20, 38, 63, .07);
	--shadow-2: 0 14px 40px -12px rgba(20, 38, 63, .22);
	--grid-ink: rgba(20, 38, 63, .045);
	--grid-light: rgba(255, 255, 255, .05);
	--ease-bounce: cubic-bezier(.2, 1.4, .4, 1);
}

/* 03 · Base ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.72;
	color: var(--ink);
	background: var(--paper-1);
	font-feature-settings: 'ss01' on;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 580;
	line-height: 1.12;
	letter-spacing: -.012em;
	margin: 0 0 .5em;
	color: var(--ink);
	text-wrap: balance;
}
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }
::selection { background: var(--gold-soft); color: var(--navy-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 200;
	background: var(--navy); color: #fff; padding: .7em 1.2em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* 04 · Utilities --------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 4.7rem); }
section[id], div[id] { scroll-margin-top: 96px; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* squared-paper surfaces: white, blush, navy */
.paper {
	background-color: var(--paper-1);
	background-image:
		linear-gradient(var(--grid-ink) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-ink) 1px, transparent 1px);
	background-size: 27px 27px;
}
.paper-deep {
	background-color: var(--paper-2);
	background-image:
		linear-gradient(rgba(168, 88, 116, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 88, 116, .05) 1px, transparent 1px);
	background-size: 27px 27px;
}
.navy, .navy-deep {
	background-color: var(--navy);
	background-image:
		radial-gradient(120% 90% at 20% 0%, var(--navy-hi) 0%, transparent 55%),
		linear-gradient(var(--grid-light) 1px, transparent 1px),
		linear-gradient(90deg, var(--grid-light) 1px, transparent 1px);
	background-size: auto, 27px 27px, 27px 27px;
	color: #F6EEF0;
}
.navy-deep { background-color: var(--navy-deep); }
.navy h1, .navy h2, .navy h3, .navy-deep h2, .navy-deep h3, .navy-deep p { color: #F6EEF0; }

.eyebrow {
	font-size: .78rem; font-weight: 700; letter-spacing: .16em;
	text-transform: uppercase; color: var(--rose-deep); margin-bottom: .9em;
}
.eyebrow a { color: inherit; text-decoration: none; }
.section-head { margin-bottom: clamp(2rem, 5vw, 3.2rem); max-width: 44rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.85rem, 4vw, 2.8rem); }
.section-title em { font-style: italic; color: var(--rose-deep); }

.link-more {
	font-weight: 650; text-decoration: none; color: var(--rose-deep);
	border-bottom: 2px solid var(--gold); padding-bottom: 2px;
	transition: border-color .2s, color .2s;
}
.link-more:hover { color: var(--navy); border-color: var(--rose); }
.results-more { text-align: center; margin-top: 2.4rem; }
.center-actions { display: flex; justify-content: center; }
.text-link {
	display: inline-flex; align-items: center; gap: .45em; font-weight: 700;
	text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}

/* the marked-book underline */
.mark { position: relative; white-space: nowrap; }
.mark-stroke {
	position: absolute; left: -2%; right: -2%; bottom: -.02em;
	width: 104%; height: .16em; color: var(--gold); overflow: visible;
	pointer-events: none;
}
.mark-stroke path { stroke-dasharray: 130; stroke-dashoffset: 130; }
.reveal.in .mark-stroke path,
.in .mark-stroke path { stroke-dashoffset: 0; transition: stroke-dashoffset .8s ease .35s; }

/* teacher's tick */
.tick { width: 1.15em; height: 1.15em; color: var(--gold-deep); flex: none; }
.tick-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.tick-list li { display: flex; gap: .55em; align-items: flex-start; padding-block: .32em; }
.tick-list .tick { margin-top: .22em; }
.tick-list-big { font-size: 1.05rem; }
.tick-list-big li { padding-block: .5em; }

/* the gold dot (wordmark full stop, hero, CTA) */
.gold-dot {
	display: inline-block; width: .34em; height: .34em; border-radius: 50%;
	background: radial-gradient(circle at 32% 30%, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .22);
}
.dot-wordmark { margin-left: .12em; transform: translateY(-.02em); }
.dot-hero { width: .22em; height: .22em; margin-left: .12em; }
.dot-cta { width: 1.1rem; height: 1.1rem; margin-bottom: .8rem; animation: rt-hover 3.5s ease-in-out infinite; }
@keyframes rt-hover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.boards-note {
	max-width: 44rem; margin: 1.6rem auto 0; text-align: center;
	font-size: 1.02rem; color: var(--ink-soft);
}
.boards-note strong { color: var(--ink); }
.method-note {
	max-width: 46rem; margin: 2.6rem auto 0; text-align: center;
	font-size: .99rem; color: var(--ink-soft);
	background: var(--card); border: 1px dashed rgba(164, 129, 60, .55);
	border-radius: var(--radius-sm); padding: 1.1rem 1.6rem;
}

/* 05 · Buttons ----------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-body); font-weight: 680; font-size: 1rem;
	line-height: 1.2; text-decoration: none; cursor: pointer; text-align: center;
	padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
	transition: transform .15s var(--ease-bounce), box-shadow .15s, background .2s, color .2s;
	-webkit-tap-highlight-color: transparent;
}
.btn-primary {
	background: var(--navy); color: #fff;
	box-shadow: 0 4px 0 var(--navy-deep), 0 10px 24px -10px rgba(12, 25, 48, .55);
}
.btn-primary:hover { background: var(--navy-hi); color: #fff; transform: translateY(-1px); box-shadow: 0 5px 0 var(--navy-deep), 0 14px 28px -10px rgba(12, 25, 48, .6); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--navy-deep); }
.btn-gold {
	background: var(--gold); color: var(--navy-deep);
	box-shadow: 0 4px 0 var(--gold-deep), 0 10px 24px -10px rgba(164, 129, 60, .6);
}
.btn-gold:hover { background: #D4AF5C; color: var(--navy-deep); transform: translateY(-1px); box-shadow: 0 5px 0 var(--gold-deep), 0 14px 28px -10px rgba(164, 129, 60, .65); }
.btn-gold:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--gold-deep); }
.btn-outline {
	border-color: rgba(20, 38, 63, .35); color: var(--ink); background: transparent;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(20, 38, 63, .04); color: var(--ink); }
.btn-outline-light { border-color: rgba(246, 238, 240, .45); color: #F6EEF0; background: transparent; }
.btn-outline-light:hover { border-color: #F6EEF0; background: rgba(246, 238, 240, .08); color: #fff; }
.btn-small { font-size: .92rem; padding: .65em 1.2em; }
.btn-wide { width: 100%; }
.wa-icon { width: 1.2em; height: 1.2em; flex: none; }
.btn .wa-icon { color: var(--wa); }
.btn-outline-light .wa-icon { color: #6FE39A; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* 06 · Header & nav ------------------------------------------------------ */
.site-header {
	position: fixed; inset-inline: 0; top: 0; z-index: 100;
	transition: background .3s, box-shadow .3s, transform .3s;
	background: rgba(253, 251, 252, .92);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 rgba(20, 38, 63, .08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.wordmark {
	font-family: var(--font-display); font-weight: 640; font-size: 1.32rem;
	color: var(--ink); text-decoration: none; letter-spacing: -.01em; white-space: nowrap;
}
.wordmark:hover { color: var(--ink); }
.wordmark-rhi { letter-spacing: .045em; }
.site-nav { display: flex; align-items: center; gap: 1.3rem; }
.nav-list { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
	font-size: .95rem; font-weight: 600; color: var(--ink); text-decoration: none;
	padding-bottom: 3px; background: linear-gradient(var(--gold), var(--gold)) left bottom / 0 2px no-repeat;
	transition: background-size .25s;
}
.nav-list a:hover, .nav-list .current-menu-item a, .nav-list .current_page_item a { background-size: 100% 2px; color: var(--ink); }
.nav-toggle { display: none; }
/* header-level CTA: shown only when the nav is behind the hamburger but the
   mobile action bar isn't there yet (tablet widths) */
.header-cta { display: none; margin-left: auto; }
@media (max-width: 1080px) and (min-width: 701px) {
	.header-cta { display: inline-flex; }
}

/* transparent over the navy hero, navy once scrolled */
body.has-dark-hero .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
body.has-dark-hero .site-header .wordmark,
body.has-dark-hero .site-header .nav-list a { color: #F6EEF0; }
body.has-dark-hero .site-header.is-scrolled {
	background: rgba(12, 25, 48, .92);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 rgba(246, 238, 240, .08);
}

/* 07 · Hero --------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden;
	padding-top: clamp(7rem, 16vh, 10rem);
	padding-bottom: clamp(4rem, 10vh, 6.5rem);
	min-height: 92svh;
	display: flex; align-items: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 56rem; }
.hero-kicker {
	font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--gold-soft); margin-bottom: 1.2rem;
}
.hero-title {
	font-size: clamp(2.4rem, 6.2vw, 4.4rem);
	font-weight: 590; line-height: 1.06; margin-bottom: .45em; color: #F6EEF0;
}
.hero-line { display: block; }
.hero-line-em em { font-style: italic; color: var(--gold); }
.mark-hero { color: var(--gold); }
.mark-hero .mark-stroke { color: var(--gold); }
.mark-hero .mark-stroke path { animation: rt-draw .7s ease 1.1s forwards; }
@keyframes rt-draw { to { stroke-dashoffset: 0; } }
.hero-sub {
	font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 34em; font-weight: 600;
	line-height: 1.45; color: rgba(246, 238, 240, .92); margin-bottom: 1.5em;
}
.hero-claim {
	font-family: var(--font-display); font-style: italic; font-size: clamp(1.02rem, 2vw, 1.25rem);
	color: var(--blush); border-left: 3px solid var(--gold);
	padding-left: .9em; max-width: 32em; margin-bottom: 1.6em;
}
.hero-points { max-width: 32em; margin-bottom: 2rem; color: #F6EEF0; font-size: 1.02rem; }
.hero-points li { padding-block: .38em; }
.hero-points .tick {
	width: 1.5em; height: 1.5em; padding: .28em; margin-top: .02em; border-radius: 50%;
	color: var(--navy); background: var(--gold); box-sizing: border-box;
}
.hero .cta-row { margin-bottom: 1rem; }
.hero-note { font-size: .92rem; color: rgba(246, 238, 240, .62); margin: 0; }

/* formula scatter — the science in the air */
.formula-scatter span {
	position: absolute; font-family: var(--font-hand); font-size: clamp(1rem, 2vw, 1.5rem);
	color: rgba(246, 238, 240, .16); transform: rotate(var(--r, 0deg));
	white-space: nowrap; user-select: none; pointer-events: none;
}

/* trust strip */
.trust-strip {
	display: flex; flex-wrap: wrap; gap: .5em 1.7em; list-style: none; margin: 0; padding: 0;
	font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
	color: rgba(246, 238, 240, .7);
}
.trust-strip li { display: flex; align-items: center; gap: .55em; }
.trust-strip li::before {
	content: ''; width: .45em; height: .45em; border-radius: 50%; flex: none;
	background: radial-gradient(circle at 32% 30%, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-deep) 100%);
}

/* scroll cue */
.scroll-cue {
	position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
	width: 26px; height: 42px; border: 2px solid rgba(246, 238, 240, .4);
	border-radius: 14px; z-index: 2;
}
.scroll-cue span {
	position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
	border-radius: 2px; background: var(--gold); animation: rt-cue 1.8s ease-in-out infinite;
}
@keyframes rt-cue { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(12px); opacity: .2; } }

/* 08 · Subjects ------------------------------------------------------------ */
.subject-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.subject-grid-three { grid-template-columns: repeat(3, 1fr); }
.subject-icon {
	display: block; width: 3.1rem; height: 3.1rem; margin-bottom: 1.05rem;
	color: var(--rose-deep);
	fill: none; stroke: currentColor; stroke-width: 2.2;
	stroke-linecap: round; stroke-linejoin: round;
	--ico-wash: var(--blush); --ico-accent: var(--gold-deep);
}
.subject-icon .ico-wash { fill: var(--ico-wash); stroke: none; }
.subject-icon .ico-accent { stroke: var(--ico-accent); }
.subject-icon .ico-accent-fill { fill: var(--ico-accent); stroke: none; }
.subject-card {
	background: var(--card); border: 1px solid rgba(20, 38, 63, .1);
	border-radius: var(--radius); padding: 2rem 1.9rem 1.6rem; box-shadow: var(--shadow-1);
	transition: transform .25s var(--ease-bounce), box-shadow .25s, border-color .25s;
}
.subject-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: rgba(201, 162, 75, .55); }
.subject-level {
	display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .13em;
	text-transform: uppercase; color: var(--navy);
	background: var(--blush); border-radius: 999px; padding: .35em 1em; margin: 0 0 .9em;
}
.subject-card h3 { font-size: 1.5rem; margin-bottom: .5em; }
.subject-card p { color: var(--ink-soft); font-size: .98rem; margin: .9em 0 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.chip-row li {
	font-size: .88rem; font-weight: 700; color: var(--ink);
	background: rgba(201, 162, 75, .14); border: 1px solid rgba(164, 129, 60, .4);
	border-radius: 999px; padding: .3em 1em;
}
.chip-row-big { justify-content: center; }
.chip-row-big li { font-size: 1.05rem; padding: .45em 1.4em; }

/* 09 · Why choose ------------------------------------------------------------ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.why-item {
	display: flex; gap: .8em; align-items: flex-start;
	background: var(--card); border: 1px solid rgba(20, 38, 63, .09);
	border-radius: var(--radius-sm); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-1);
}
.why-item .tick { margin-top: .3em; width: 1.35em; height: 1.35em; }
.why-item h3 { font-size: 1.08rem; margin-bottom: .25em; }
.why-item p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* 10 · Steps ------------------------------------------------------------------ */
.steps-grid {
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem;
	list-style: none; margin: 0; padding: 0; counter-reset: step;
}
.steps-grid-three { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 4rem); }
.step { position: relative; padding-top: .4rem; }
.step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.4em; height: 2.4em; border-radius: 50%;
	font-family: var(--font-display); font-weight: 650; font-size: 1.1rem;
	background: var(--gold); color: var(--navy-deep);
	box-shadow: 0 3px 0 var(--gold-deep); margin-bottom: .9rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: .35em; }
.step p { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.hand-arrow {
	position: absolute; top: .3rem; right: -2rem; width: 3.4rem; color: var(--gold-deep);
	opacity: .8;
}

/* 11 · Pricing ------------------------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card {
	position: relative; display: flex; flex-direction: column;
	background: var(--card); border: 1px solid rgba(20, 38, 63, .1); border-radius: var(--radius);
	padding: 2rem 1.7rem 1.6rem; box-shadow: var(--shadow-1);
	transition: transform .25s var(--ease-bounce), box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.price-badge {
	position: absolute; top: -0.85em; left: 1.4rem;
	background: var(--gold); color: var(--navy-deep); font-size: .74rem; font-weight: 800;
	letter-spacing: .08em; text-transform: uppercase;
	padding: .35em .9em; border-radius: 999px; box-shadow: 0 2px 0 var(--gold-deep);
}
.price-audience { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-deep); margin: 0 0 .5em; }
.price-title { font-size: 1.45rem; margin-bottom: .1em; }
.price-amount { margin: 0 0 .7em; }
.price-amount strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 640; color: var(--navy); }
.price-amount span { color: var(--ink-soft); font-size: .92rem; margin-left: .25em; }
.price-desc { font-size: .95rem; color: var(--ink-soft); }
.price-desc p { margin-bottom: .9em; }
.price-card .tick-list { font-size: .92rem; margin-top: auto; }
.price-foot { border-top: 1px dashed rgba(20, 38, 63, .2); padding-top: 1rem; margin-top: .4rem; }
.price-format { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1em; }

/* 12 · Ways to learn --------------------------------------------------------------- */
.ways-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.way-tile {
	background: var(--card); border: 1px solid rgba(20, 38, 63, .09); border-radius: var(--radius);
	padding: 1.6rem 1.5rem; box-shadow: var(--shadow-1); border-top: 4px solid var(--blush);
	transition: transform .25s var(--ease-bounce), box-shadow .25s, border-color .25s;
}
.way-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); border-top-color: var(--gold); }
.way-tile h3 { font-size: 1.15rem; margin-bottom: .4em; }
.way-tile p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* 13 · Meet ------------------------------------------------------------------- */
.meet-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.portrait-frame {
	border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2);
	transform: rotate(-1.6deg); border: 6px solid var(--card);
}
.portrait-caption { text-align: center; font-family: var(--font-hand); font-size: 1.3rem; color: var(--ink-soft); margin-top: 1rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1.4em; }
.badge-row li {
	font-size: .82rem; font-weight: 700; color: var(--ink);
	background: rgba(243, 220, 226, .55); border: 1px solid rgba(201, 116, 142, .45);
	border-radius: 999px; padding: .35em 1em;
}

/* 14 · Page heroes --------------------------------------------------------------- */
.page-hero { padding: clamp(8rem, 18vh, 11rem) 0 clamp(2.6rem, 6vw, 4rem); }
.page-title { font-size: clamp(2.3rem, 5.4vw, 3.7rem); font-weight: 590; }
.page-title-post { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.page-intro { font-size: 1.12rem; color: var(--ink-soft); max-width: 38em; }
.hero-404 { padding-bottom: clamp(4rem, 10vw, 7rem); }

/* 15 · Prose ---------------------------------------------------------------------- */
.prose { max-width: 42rem; }
.prose h2 {
	font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.8em;
	padding-bottom: .25em; border-bottom: 2px solid rgba(201, 162, 75, .5);
	display: inline-block;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3A4763; }
.prose a { font-weight: 650; }
.prose em { font-family: var(--font-display); }

/* 16 · About extras ------------------------------------------------------------------ */
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; padding: 0; margin: 0 0 2.4rem; }
.facts-grid-four { grid-template-columns: repeat(4, 1fr); }
.facts-grid li {
	background: var(--card); border-radius: var(--radius-sm); border: 1px solid rgba(20, 38, 63, .1);
	padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .2em; box-shadow: var(--shadow-1);
}
.facts-grid strong { font-size: 1.02rem; }
.facts-grid span { font-size: .88rem; color: var(--ink-soft); }
.promise-box {
	background: var(--card); border: 1.5px dashed var(--gold-deep); border-radius: var(--radius);
	padding: 1.8rem 2rem; box-shadow: var(--shadow-1);
}
.promise-box h3 { display: flex; align-items: center; gap: .5em; font-size: 1.3rem; }
.promise-box p { margin: 0; color: var(--ink-soft); }
.promise-action { margin-top: 1.2rem; }

/* 17 · Booking & form --------------------------------------------------------------- */
.contact-grid, .book-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.booking-intro { position: sticky; top: 106px; }
.booking-intro > p:not(.eyebrow):not(.response-promise) { color: var(--ink-soft); }
.booking-points { margin-block: 1.5rem; }
.booking-note {
	background: rgba(243, 220, 226, .55); border-left: 4px solid var(--rose);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.2rem 1.3rem; margin: 1.7rem 0;
}
.booking-note p { color: var(--ink-soft); font-size: .94rem; margin: .25em 0 .65em; }
.booking-note .wa-icon { color: var(--wa); }
.response-promise {
	font-family: var(--font-display); font-style: italic; color: var(--ink-soft);
	border-top: 1px dashed rgba(20, 38, 63, .24); padding-top: 1.2rem;
}
.booking-panel {
	min-width: 0; background: var(--card); border: 1px solid rgba(20, 38, 63, .09);
	border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden;
}
.booking-panel > .enquiry-form { border: 0; border-radius: 0; box-shadow: none; }
.booking-unavailable { padding: 2rem 2.2rem 0; }
.booking-unavailable h2 { font-size: 1.55rem; }
.booking-unavailable p:last-child { color: var(--ink-soft); margin-bottom: 0; }
.latepoint-shell { padding: clamp(1rem, 3vw, 2rem); min-height: 26rem; }
.booking-fallback { border-top: 1px solid rgba(20, 38, 63, .12); }
.booking-fallback > summary {
	cursor: pointer; list-style: none; padding: 1.2rem 2rem; font-weight: 700; color: var(--navy);
	background: var(--paper-2);
}
.booking-fallback > summary::-webkit-details-marker { display: none; }
.booking-fallback > summary::after { content: '+'; float: right; font-size: 1.25em; color: var(--rose-deep); }
.booking-fallback[open] > summary::after { content: '−'; }
.booking-fallback > p { padding: 1.3rem 2.2rem 0; color: var(--ink-soft); }
.booking-fallback .enquiry-form { border: 0; box-shadow: none; border-radius: 0; padding-top: 1rem; }
.contact-ways-title { font-size: 1.5rem; margin-bottom: 1.2rem; }
.way-card {
	background: var(--card); border: 1px solid rgba(20, 38, 63, .1); border-radius: var(--radius);
	padding: 1.5rem 1.6rem; margin-bottom: 1rem; box-shadow: var(--shadow-1);
}
.way-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.way-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .9em; }
.way-card p:last-child { margin-bottom: 0; }
.way-card-areas { background: transparent; border-style: dashed; box-shadow: none; }
.paper-card {
	background: var(--card); border-radius: var(--radius);
	box-shadow: var(--shadow-2); border: 1px solid rgba(20, 38, 63, .08);
}
.enquiry-form { padding: 2rem 2.2rem; }
.enquiry-form label { display: block; font-weight: 650; font-size: .92rem; margin-bottom: .35em; }
.enquiry-form input[type="text"], .enquiry-form input[type="email"], .enquiry-form input[type="tel"],
.enquiry-form select, .enquiry-form textarea {
	width: 100%; font: inherit; color: var(--ink);
	background: var(--paper-1); border: 1.5px solid rgba(20, 38, 63, .25);
	border-radius: 10px; padding: .65em .9em; transition: border-color .2s, box-shadow .2s;
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
	outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201, 162, 75, .22);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.2rem; }
.form-span { grid-column: 1 / -1; }
.form-small { font-size: .82rem; color: var(--ink-soft); margin: .8em 0; }
.hp-field { position: absolute !important; left: -9999px !important; }
.form-note { display: flex; gap: 1em; align-items: flex-start; border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.form-note p { margin: 0; font-size: .95rem; }
.form-note-success { background: rgba(201, 162, 75, .12); border: 1.5px solid rgba(164, 129, 60, .45); }
.form-note-success .tick { width: 2em; height: 2em; margin-top: .1em; }
.form-note-error { background: rgba(201, 116, 142, .1); border: 1.5px solid rgba(168, 88, 116, .45); }

/* 18 · FAQ ---------------------------------------------------------------------------- */
.faq-list { border-top: 1px solid rgba(20, 38, 63, .15); }
.faq-item { border-bottom: 1px solid rgba(20, 38, 63, .15); }
.faq-item summary {
	list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
	gap: 1em; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
	padding: 1.1rem .2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-marker {
	flex: none; width: 1.5em; height: 1.5em; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(243, 220, 226, .8); color: var(--rose-deep);
	font-family: var(--font-body); font-weight: 700; transition: transform .25s, background .25s;
}
.faq-item[open] .faq-marker { transform: rotate(45deg); background: var(--gold); color: var(--navy-deep); }
.faq-answer { padding: 0 .2rem 1.3rem; color: var(--ink-soft); max-width: 40rem; }
.faq-answer p { margin-bottom: .6em; }
.faq-help {
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	margin-top: clamp(2.4rem, 5vw, 4rem); padding: 1.6rem 1.8rem;
	background: var(--card); border: 1px dashed rgba(164, 129, 60, .55);
	border-radius: var(--radius); box-shadow: var(--shadow-1);
}
.faq-help h2 { font-size: 1.45rem; margin-bottom: .25em; }
.faq-help p { color: var(--ink-soft); margin: 0; }
.section > .faq-help { margin-top: 0; }

/* 19 · Reviews & schedule --------------------------------------------------------------- */
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.schedule-card {
	background: var(--card); border: 1px solid rgba(20, 38, 63, .1); border-radius: var(--radius);
	padding: 1.6rem; box-shadow: var(--shadow-1); border-top: 4px solid var(--gold);
}
.schedule-day {
	font-family: var(--font-display); font-size: 1.4rem; font-weight: 620; color: var(--navy);
	margin-bottom: .65rem;
}
.schedule-card ul { list-style: none; padding: 0; margin: 0; color: var(--ink-soft); }
.schedule-card li { display: grid; gap: .1rem; padding: .7rem 0; border-top: 1px dashed rgba(20, 38, 63, .16); }
.schedule-card li strong { color: var(--ink); font-size: .96rem; }
.schedule-card li span { font-size: .86rem; }
.schedule-card li em {
	justify-self: start; margin-top: .25rem; padding: .2em .7em; border-radius: 999px;
	font-size: .74rem; font-style: normal; font-weight: 700; color: var(--rose-deep);
	background: rgba(243, 220, 226, .65);
}
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.review-card {
	display: flex; flex-direction: column; background: var(--card); border: 1px solid rgba(20, 38, 63, .1);
	border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-1);
}
.review-rating { color: var(--ink-soft); font-size: .82rem; margin-bottom: .9rem; }
.review-rating span { color: var(--gold-deep); letter-spacing: .08em; margin-right: .35em; }
.review-card blockquote {
	font-family: var(--font-display); font-size: 1.08rem; line-height: 1.62; color: var(--ink);
	margin: 0 0 1.5rem; flex: 1;
}
.review-card footer { border-top: 1px dashed rgba(20, 38, 63, .18); padding-top: 1rem; }
.review-card footer strong, .review-card footer span { display: block; }
.review-card footer span { color: var(--ink-soft); font-size: .82rem; }
.review-close { text-align: center; }
.review-close > p:not(.eyebrow) { color: var(--ink-soft); }
.review-close .cta-row { justify-content: center; }

/* Legacy/future editorial helpers ------------------------------------------------------ */
.coming-soon { position: relative; padding: 2.6rem 2.6rem 2.2rem; }
.coming-badge {
	position: absolute; top: -0.9em; left: 2rem;
	background: var(--gold); color: var(--navy-deep); font-size: .78rem; font-weight: 800;
	letter-spacing: .1em; text-transform: uppercase;
	padding: .4em 1.1em; border-radius: 999px; box-shadow: 0 2px 0 var(--gold-deep);
}
.coming-soon h2 { font-size: 1.7rem; }
.coming-note { color: var(--ink-soft); font-size: .98rem; margin: 1.2em 0; }

/* 20 · Notes fallback ------------------------------------------------------------------ */
.notes-list { display: grid; gap: 1.2rem; }
.note-card {
	background: var(--card); border: 1px solid rgba(20, 38, 63, .1); border-radius: var(--radius);
	padding: 1.7rem 1.9rem; box-shadow: var(--shadow-1);
}
.note-date { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); margin-bottom: .3em; }
.note-title { font-size: 1.45rem; margin-bottom: .3em; }
.note-title a { color: var(--ink); text-decoration: none; }
.note-title a:hover { color: var(--rose-deep); }
.note-excerpt { color: var(--ink-soft); font-size: .98rem; }
.pagination { margin-top: 2rem; display: flex; justify-content: center; gap: 1rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; font-weight: 650; }
.post-nav a { text-decoration: none; }

/* 21 · CTA band ---------------------------------------------------------------------------- */
.cta-band { padding: clamp(4rem, 9vw, 6.5rem) 0; text-align: center; }
.cta-band-inner { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.cta-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .2em; }
.cta-sub { color: rgba(246, 238, 240, .82); max-width: 32em; margin-bottom: 1.6em; }
.cta-band .cta-row { justify-content: center; }

/* 22 · Footer ---------------------------------------------------------------------------- */
.site-footer { padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 4fr 4fr 4fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.wordmark-footer { font-size: 1.5rem; color: #F6EEF0; margin-bottom: .2em; }
.footer-tag { font-family: var(--font-hand); font-size: 1.35rem; color: var(--gold); margin: 0 0 .8em; }
.footer-small { font-size: .88rem; color: rgba(246, 238, 240, .65); }
.site-footer h3 { font-size: 1.02rem; color: var(--gold); margin-bottom: .8em; }
.site-footer ul { list-style: none; padding: 0; margin: 0 0 1em; }
.site-footer li { margin-bottom: .45em; }
.site-footer a { color: rgba(246, 238, 240, .88); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-base {
	display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem;
	border-top: 1px solid rgba(246, 238, 240, .12); padding-block: 1.4rem;
	font-size: .85rem; color: rgba(246, 238, 240, .6);
}
.footer-base p { margin: 0; }
.footer-base a { color: inherit; }

/* 23 · Floating WhatsApp (desktop & tablet) ---------------------------------------------- */
.wa-float {
	position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--wa); color: #fff;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
	opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
	transition: opacity .3s, transform .3s var(--ease-bounce);
}
.wa-float .wa-icon { width: 30px; height: 30px; }
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* 24 · Mobile action bar (always visible on phones) --------------------------------------- */
.mobile-bar {
	position: fixed; inset-inline: 0; bottom: 0; z-index: 95;
	display: none; gap: .6rem; align-items: center;
	padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
	background: rgba(12, 25, 48, .96);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	box-shadow: 0 -6px 24px rgba(12, 25, 48, .35);
}
.mobile-bar a {
	display: flex; align-items: center; justify-content: center; gap: .45em;
	font-weight: 700; font-size: .95rem; text-decoration: none;
	border-radius: 999px; padding: .8em .5em; min-height: 48px;
}
.mobile-bar-wa { flex: 2; background: var(--wa); color: #fff; }
.mobile-bar-wa .wa-icon { width: 1.25em; height: 1.25em; }
.mobile-bar-book { flex: 3; background: var(--gold); color: var(--navy-deep); box-shadow: inset 0 -3px 0 rgba(164, 129, 60, .55); }

/* 25 · Reveal & motion ------------------------------------------------------------------------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* 26 · Responsive ------------------------------------------------------------------------------ */
@media (max-width: 1080px) {
	/* mobile nav: navy overlay */
	.nav-toggle {
		display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
		width: 46px; height: 46px; padding: 10px;
		background: transparent; border: 0; cursor: pointer; z-index: 130;
	}
	.nav-toggle span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
	body.has-dark-hero .nav-toggle span { background: #F6EEF0; }
	body.nav-open .nav-toggle span { background: #F6EEF0; }
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
	.site-nav {
		position: fixed; inset: 0; z-index: 120;
		flex-direction: column; justify-content: center; gap: 2rem;
		background-color: var(--navy);
		background-image:
			radial-gradient(120% 90% at 20% 0%, var(--navy-hi) 0%, transparent 55%),
			linear-gradient(var(--grid-light) 1px, transparent 1px),
			linear-gradient(90deg, var(--grid-light) 1px, transparent 1px);
		background-size: auto, 27px 27px, 27px 27px;
		opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
	}
	body.nav-open .site-nav { opacity: 1; visibility: visible; }
	body.nav-open { overflow: hidden; }
	.nav-list { flex-direction: column; align-items: center; gap: 1.4rem; }
	.nav-list a {
		font-family: var(--font-display); font-size: 1.6rem; font-weight: 580; color: #F6EEF0;
	}
	.nav-cta .btn { font-size: 1.05rem; padding: .9em 1.7em; }
	.no-js .site-header { position: static; background: var(--paper-1); backdrop-filter: none; box-shadow: 0 1px 0 rgba(20, 38, 63, .08); }
	.no-js .header-inner { flex-wrap: wrap; padding-block: .65rem; }
	.no-js .wordmark, .no-js body.has-dark-hero .site-header .wordmark { color: var(--ink); }
	.no-js .site-nav {
		position: static; flex: 1 0 100%; flex-direction: row; justify-content: flex-start;
		gap: .8rem; padding-bottom: .45rem; background: transparent; opacity: 1; visibility: visible;
	}
	.no-js .nav-list { flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; gap: .55rem 1.1rem; }
	.no-js .nav-list a, .no-js body.has-dark-hero .site-header .nav-list a {
		font-family: var(--font-body); font-size: .88rem; color: var(--ink);
	}
	.no-js .nav-toggle, .no-js .header-cta { display: none; }
	.no-js .nav-cta .btn { font-size: .85rem; padding: .6em 1em; }

	.why-grid { grid-template-columns: 1fr 1fr; }
	.ways-grid { grid-template-columns: 1fr 1fr; }
	.price-grid { grid-template-columns: 1fr 1fr; }
	.subject-grid-three { grid-template-columns: 1fr 1fr; }
	.meet-grid, .contact-grid, .book-grid { grid-template-columns: 1fr; }
	.meet-portrait { max-width: 22rem; }
	.booking-intro { position: static; }
	.facts-grid-four { grid-template-columns: 1fr 1fr; }
	.review-grid, .schedule-grid { grid-template-columns: 1fr 1fr; }

	/* steps become a vertical journey */
	.steps-grid { grid-template-columns: 1fr; gap: 0; max-width: 34rem; margin-inline: auto; }
	.step { display: grid; grid-template-columns: auto 1fr; gap: 0 1.1rem; padding-block: 1.05rem; }
	.step + .step { border-top: 1px dashed rgba(20, 38, 63, .18); }
	.step-num { grid-row: 1 / 3; margin-bottom: 0; }
	.step h3 { margin-bottom: .2em; align-self: center; }
	.step p { grid-column: 2; }
	.hand-arrow { display: none; }
}
@media (max-width: 700px) {
	body { font-size: 1rem; }
	.subject-grid, .subject-grid-three, .why-grid, .ways-grid, .price-grid, .facts-grid, .form-grid, .review-grid, .schedule-grid { grid-template-columns: 1fr; }
	.hero { min-height: 86svh; }
	.hero .cta-row .btn { width: 100%; }
	.cta-band .cta-row { width: 100%; }
	.cta-band .cta-row .btn { width: 100%; }
	.scroll-cue { display: none; }
	.enquiry-form { padding: 1.6rem 1.3rem; }
	.booking-unavailable { padding: 1.6rem 1.3rem 0; }
	.booking-fallback > summary { padding-inline: 1.3rem; }
	.booking-fallback > p { padding-inline: 1.3rem; }
	.faq-help { align-items: flex-start; flex-direction: column; }
	.coming-soon { padding: 2.2rem 1.5rem 1.8rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
	.footer-base { justify-content: flex-start; }

	/* the always-there action bar */
	.mobile-bar { display: flex; }
	body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
	.wa-float { display: none; }
}

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