/* =========================================================================
   Sol Claro theme v3 · main.css
   Light sand palette. Images are sharp and fit their space edge to edge;
   buttons and chips are rounded pills. Fluid up to 1720px.
   ========================================================================= */
:root {
	--gold: #d4a017; --gold-2: #a87c0a; --yellow: #ffbb00; --yellow-2: #f0ae00;
	--navy: #0a0a0a; --navy-2: #1c1c1c; --ink: #1a1a1a; --text: #4a4a4a; --muted: #6b7280;
	--cream: #faf5e5; --cream-2: #fffaf0; --sand: #f0e6c5; --sand-2: #e9dcb2; --line: #e6dfc8; --line-dark: rgba(255,255,255,.14); --white: #fff;
	--serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
	--sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--ease: cubic-bezier(.2, .7, .2, 1);
	--gutter: clamp(16px, 4vw, 72px);
	--max: 1720px;
	--header-h: 80px;
	--pill: 999px;
	--radius: 10px;
	/* plugin tokens */
	--sc-gold: var(--gold-2); --sc-yellow: var(--yellow); --sc-navy: var(--navy); --sc-text: var(--text); --sc-muted: var(--muted);
	--sc-cream: var(--cream); --sc-sand: var(--sand); --sc-line: var(--line); --sc-white: var(--white); --sc-radius: var(--radius);
	--sc-serif: var(--serif); --sc-sans: var(--sans);
}

/* ------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.menu-open { overflow: hidden; }
body { margin: 0; font: 400 16px/1.65 var(--sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
@media (min-width: 1800px) { body { font-size: 17px; } }
img, svg, video, iframe { max-width: 100%; height: auto; }
img { display: block; border-radius: 0; }
a { color: var(--navy); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(40px, 5.2vw, 92px); line-height: 1.02; }
h2 { font-size: clamp(30px, 3.4vw, 60px); }
h3 { font-size: clamp(21px, 1.6vw, 28px); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
::selection { background: var(--yellow); color: var(--navy); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 1000; border-radius: var(--pill); }
.skip-link:focus { left: 8px; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--narrow { width: min(880px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--mid { width: min(1200px, 100% - 2 * var(--gutter)); margin-inline: auto; }

.kicker { font: 500 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 16px; display: inline-flex; align-items: center; gap: 10px; }
.kicker::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.lead { font-size: clamp(17px, 1.15vw, 21px); line-height: 1.6; color: var(--text); max-width: 60ch; }
.sec { padding: clamp(64px, 7vw, 128px) 0; }
.sec--tight { padding: clamp(40px, 4.5vw, 80px) 0; }
.sec--flush { padding: 0; }
.sec--cream { background: var(--cream); }
.sec--sand, .sec--dark { background: var(--sand); }
.sec-head { max-width: 820px; margin: 0 0 clamp(32px, 3.5vw, 56px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head .lead { margin-bottom: 0; }
.sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; flex-wrap: wrap; }
.sec-head--row > div { max-width: 820px; }

/* ------------------------------------------------------------ buttons (pills) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; border-radius: var(--pill); font: 600 14px/1 var(--sans); letter-spacing: .01em; border: 1.5px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s; white-space: nowrap; text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--yellow); color: var(--navy); border-color: var(--yellow); box-shadow: 0 8px 22px rgba(255,187,0,.32); }
.btn--primary:hover { background: var(--yellow-2); border-color: var(--yellow-2); color: var(--navy); box-shadow: 0 12px 28px rgba(255,187,0,.42); }
.btn--dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-2); color: #fff; }
.btn--ghost, .btn--outline-light { background: transparent; color: var(--navy); border-color: rgba(0,0,0,.28); }
.btn--ghost:hover, .btn--outline-light:hover { border-color: var(--navy); background: rgba(0,0,0,.04); color: var(--navy); }
.btn--on-image { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--on-image:hover { background: rgba(255,255,255,.24); color: #fff; border-color: #fff; }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 19px 36px; font-size: 15px; }
.btn--block { width: 100%; }
.btn .ico { flex: 0 0 auto; transition: transform .25s var(--ease); }
.btn:hover .ico--arrow { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font: 600 14px var(--sans); color: var(--navy); }
.link-arrow .ico { transition: transform .25s var(--ease); color: var(--gold-2); }
.link-arrow:hover .ico { transform: translateX(5px); }

/* ------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,245,229,.9); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, background .3s; }
.site-header.is-scrolled { background: rgba(255,255,255,.94); border-bottom-color: var(--line); box-shadow: 0 10px 34px rgba(0,0,0,.06); }
.site-header__inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--navy); text-decoration: none; flex: 0 0 auto; }
.brand__mark { width: 50px; height: 50px; flex: 0 0 50px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.brand__word { font: 700 20px/1 var(--sans); letter-spacing: .14em; color: var(--navy); white-space: nowrap; }
.brand__sub { font: 500 10px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.brand--light .brand__word { color: #fff; }
.brand--light .brand__sub { color: rgba(255,255,255,.6); }
.nav { margin-left: auto; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav__list a { display: inline-block; padding: 10px 14px; font: 500 15px var(--sans); color: var(--ink); position: relative; border-radius: var(--pill); transition: background .2s, color .2s; }
.nav__list a:hover { background: rgba(0,0,0,.05); color: var(--navy); }
.nav__list .is-active a { background: var(--navy); color: #fff; }
.site-header__actions { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--pill); background: rgba(255,255,255,.6); }
.lang a { font: 600 12px var(--sans); letter-spacing: .06em; color: var(--muted); padding: 6px 10px; border-radius: var(--pill); transition: background .2s, color .2s; }
.lang a:hover { color: var(--navy); }
.lang a.is-active { color: var(--navy); background: var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; color: var(--navy); cursor: pointer; }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; background: var(--cream); z-index: 98; overflow: auto; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s; }
.mobile-menu.is-open { opacity: 1; transform: none; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__inner { padding: 12px 0 40px; display: flex; flex-direction: column; min-height: 100%; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list a { display: block; padding: 18px 0; font: 600 30px var(--serif); color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 10px; }
.mobile-menu__lang { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.mobile-menu__lang a { font: 600 13px var(--sans); letter-spacing: .08em; color: var(--muted); padding: 9px 16px; border-radius: var(--pill); border: 1px solid var(--line); }
.mobile-menu__lang a.is-active { color: var(--navy); background: var(--yellow); border-color: var(--yellow); }
@media (max-width: 1100px) { .brand__sub { display: none; } }
@media (max-width: 1024px) {
	.nav, .site-header__cta, .site-header .lang { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-header__actions { margin-left: auto; }
	:root { --header-h: 68px; }
	.brand__mark { width: 42px; height: 42px; flex-basis: 42px; }
	.brand__word { font-size: 17px; }
}
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-menu { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } .admin-bar .mobile-menu { top: calc(var(--header-h) + 46px); } }

/* ------------------------------------------------------------ footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: clamp(56px, 6vw, 96px) 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-tagline { margin: 22px 0 22px; font: 500 18px var(--serif); color: #fff; max-width: 34ch; }
.social { display: flex; gap: 8px; }
.social a { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; color: #fff; border: 1px solid var(--line-dark); border-radius: 50%; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.social a:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); transform: translateY(-2px); }
.footer-col h3 { font: 600 11px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin: 8px 0 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-visit address { font-style: normal; display: grid; gap: 12px; font-size: 15px; }
.footer-visit address a, .footer-visit address span { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.72); }
.footer-visit address a:hover { color: #fff; }
.footer-visit .ico { flex: 0 0 auto; margin-top: 3px; color: var(--yellow); }
.footer-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom p { margin: 0; }
.footer-secure { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

/* ------------------------------------------------------------ motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ------------------------------------------------------------- hero (camera roll) */
.hero { display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); min-height: min(86vh, 920px); background: var(--cream); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 720px; height: 720px; left: -260px; bottom: -380px; border-radius: 50%; background: radial-gradient(circle, rgba(255,187,0,.22), rgba(255,187,0,0) 68%); pointer-events: none; }
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 110px) clamp(28px, 4vw, 80px) clamp(48px, 6vw, 110px) var(--gutter); position: relative; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lead { margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero__trust { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 28px; list-style: none; padding: 0; margin: 0; font-size: 14px; color: var(--ink); width: max-content; max-width: 100%; }
.hero__trust li { display: inline-flex; align-items: center; gap: 10px; }
.hero__trust .ico { color: var(--gold-2); }
.roll { position: relative; overflow: hidden; background: var(--sand); min-height: 420px; }
.roll__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.roll__slide.is-active { opacity: 1; }
.roll__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s linear; }
.roll__slide.is-active img { transform: scale(1); }
.roll::after { content: ''; position: absolute; inset: auto 0 0 0; height: 52%; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.8)); pointer-events: none; }
.roll__foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 clamp(20px, 3vw, 48px) clamp(20px, 3vw, 44px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px; }
.roll__quotes { position: relative; min-height: 96px; max-width: 540px; }
.roll__quote { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; opacity: 0; transform: translateY(10px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.roll__quote.is-active { opacity: 1; transform: none; }
.roll__quote p { margin: 0 0 8px; font: 500 clamp(17px, 1.3vw, 23px)/1.35 var(--serif); color: #fff; }
.roll__quote footer { font-size: 13px; color: rgba(255,255,255,.75); display: flex; gap: 10px; align-items: center; }
.roll__quote .stars { color: var(--yellow); letter-spacing: 2px; }
.roll__ctrl { display: flex; align-items: center; gap: 8px; }
.roll__dot { width: 34px; height: 4px; border-radius: var(--pill); background: rgba(255,255,255,.4); border: 0; padding: 0; cursor: pointer; position: relative; overflow: hidden; }
.roll__dot.is-active::after { content: ''; position: absolute; inset: 0; background: var(--yellow); transform-origin: left; transform: scaleX(0); }
.roll.is-playing .roll__dot.is-active::after { animation: roll-progress 5s linear forwards; }
.roll:not(.is-playing) .roll__dot.is-active::after { transform: scaleX(1); }
@keyframes roll-progress { to { transform: scaleX(1); } }
.roll__play { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.18); border: 0; color: #fff; cursor: pointer; margin-left: 6px; backdrop-filter: blur(6px); }
.roll__play .ico--play { display: none; }
.roll__play[aria-pressed="true"] .ico--play { display: block; }
.roll__play[aria-pressed="true"] .ico--pause { display: none; }
.roll__chip { position: absolute; top: clamp(16px, 2vw, 28px); right: clamp(16px, 2vw, 28px); z-index: 2; background: var(--yellow); color: var(--navy); font: 600 13px var(--sans); padding: 10px 16px; border-radius: var(--pill); display: inline-flex; gap: 8px; align-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
@media (max-width: 980px) {
	.hero { grid-template-columns: 1fr; min-height: 0; }
	.hero__copy { order: 2; padding: 40px var(--gutter) 48px; }
	.roll { order: 1; aspect-ratio: 4 / 3; min-height: 0; }
	.roll__foot { grid-template-columns: 1fr; gap: 12px; }
	.roll__quotes { min-height: 84px; }
	.hero__trust { grid-template-columns: 1fr 1fr; width: auto; }
	.hero h1 { font-size: clamp(36px, 9.5vw, 56px); }
}
@media (max-width: 480px) { .hero__trust { grid-template-columns: 1fr; } .roll__quote p { font-size: 16px; } }

/* marquee */
.marquee { overflow: hidden; background: var(--sand); color: var(--navy); font: 500 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee span { padding: 15px 32px; display: inline-flex; gap: 32px; align-items: center; white-space: nowrap; }
.marquee i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------- tiles (image panels, sharp, edge to edge) */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; background: var(--white); }
.tiles--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tiles--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tile { position: relative; display: block; min-height: clamp(380px, 38vw, 640px); overflow: hidden; color: #fff; background: var(--sand); }
.tile--short { min-height: clamp(300px, 26vw, 460px); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s var(--ease); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.82)); transition: background .6s var(--ease); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(22px, 2.4vw, 40px); transform: translateY(14px); transition: transform .6s var(--ease); }
.tile__kicker { font: 500 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; display: block; }
.tile__title { font: 600 clamp(24px, 2.2vw, 40px)/1.05 var(--serif); color: #fff; margin: 0 0 10px; }
.tile__text { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.85); margin: 0; max-width: 46ch; opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease) .05s, transform .5s var(--ease) .05s; }
.tile__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.8); opacity: 0; transition: opacity .5s var(--ease) .1s; }
.tile__foot b { color: #fff; font-weight: 600; }
.tile__foot .ico { color: var(--yellow); }
.tile:hover img, .tile:focus-visible img { transform: scale(1.06); }
.tile:hover::after, .tile:focus-visible::after { background: linear-gradient(180deg, rgba(0,0,0,.3) 5%, rgba(0,0,0,.92)); }
.tile:hover .tile__body, .tile:focus-visible .tile__body { transform: none; }
.tile:hover .tile__text, .tile:hover .tile__foot, .tile:focus-visible .tile__text, .tile:focus-visible .tile__foot { opacity: 1; transform: none; }
@media (hover: none) { .tile__text, .tile__foot { opacity: 1; transform: none; } .tile__body { transform: none; } }
@media (max-width: 900px) { .tiles, .tiles--4 { grid-template-columns: repeat(2, 1fr); } .tile { min-height: 300px; } }
@media (max-width: 560px) { .tiles, .tiles--2, .tiles--4 { grid-template-columns: 1fr; } .tile { min-height: 260px; } .tile--short { min-height: 220px; } }

/* ------------------------------------------------------------- feature rows: image fitted to one edge, faded text on the other */
.frows { display: grid; }
.frow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; min-height: clamp(300px, 27vw, 480px); background: var(--white); position: relative; transition: background .5s var(--ease); }
.frow:nth-child(even) { background: var(--cream); }
.frow--flip .frow__media { order: 2; }
.frow__media { position: relative; overflow: hidden; background: var(--sand); }
.frow__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter .6s var(--ease); }
.frow__media::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .6s var(--ease); }
.frow__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4vw, 80px) var(--gutter) clamp(32px, 4vw, 80px) clamp(32px, 5vw, 96px); position: relative; }
.frow--flip .frow__body { padding: clamp(32px, 4vw, 80px) clamp(32px, 5vw, 96px) clamp(32px, 4vw, 80px) var(--gutter); align-items: flex-end; text-align: right; }
.frow__body > * { max-width: 560px; }
.frow__num { font: 600 clamp(44px, 4vw, 72px)/1 var(--serif); color: var(--sand-2); margin-bottom: 12px; transition: color .5s var(--ease); }
.frow__title { font-size: clamp(26px, 2.4vw, 42px); margin: 0 0 12px; position: relative; display: inline-block; }
.frow__title::after { content: ''; position: absolute; left: 0; bottom: -8px; height: 3px; width: 100%; background: var(--yellow); border-radius: var(--pill); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.frow--flip .frow__title::after { transform-origin: right; }
.frow__text { font-size: clamp(16px, 1.1vw, 19px); line-height: 1.6; margin: 10px 0 0; }
.frow__title, .frow__text { opacity: .42; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.frow:hover .frow__title, .frow:hover .frow__text, .frow:focus-within .frow__title, .frow:focus-within .frow__text { opacity: 1; }
.frow:hover .frow__title::after, .frow:focus-within .frow__title::after { transform: scaleX(1); }
.frow:hover .frow__num { color: var(--yellow); }
.frow:hover .frow__media img { transform: scale(1.04); }
.frow:hover .frow__media::after { background: rgba(0,0,0,.28); }
@media (hover: none) { .frow__title, .frow__text { opacity: 1; } .frow__num { color: var(--yellow); } }
@media (max-width: 800px) {
	.frow, .frow--flip { grid-template-columns: 1fr; min-height: 0; }
	.frow--flip .frow__media { order: 0; }
	.frow__media { aspect-ratio: 16 / 10; }
	.frow__body, .frow--flip .frow__body { padding: 28px var(--gutter) 36px; align-items: flex-start; text-align: left; }
	.frow--flip .frow__title::after { transform-origin: left; }
	.frow__title, .frow__text { opacity: 1; }
}

/* ------------------------------------------------------------- split (half image fitted to the edge, half text) */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; background: var(--white); }
.split.sec--dark, .split.sec--sand { background: var(--sand); }
.split.sec--cream { background: var(--cream); }
.split--flip .split__media { order: 2; }
.split__media { position: relative; min-height: clamp(360px, 42vw, 760px); overflow: hidden; background: var(--sand); }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.split:hover .split__media img { transform: scale(1.03); }
.split__media--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--white); }
.split__media--grid figure { margin: 0; position: relative; overflow: hidden; min-height: 200px; }
.split__media--grid figure:first-child { grid-row: span 2; }
.split__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 5vw, 100px) var(--gutter); }
.split__body > .inner { max-width: 640px; }
.split--flip .split__body > .inner { margin-left: auto; }
.split .features { margin-top: 30px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } .split__media { min-height: 0; aspect-ratio: 16 / 10; } .split__body { padding: 40px var(--gutter); } .split__media--grid { aspect-ratio: auto; grid-auto-rows: 160px; } .split--flip .split__body > .inner { margin-left: 0; } }

.features { list-style: none; margin: 0; padding: 0; display: grid; }
.features li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.features li:last-child { border-bottom: 1px solid var(--line); }
.features li:hover { padding-left: 8px; }
.features .fi { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; transition: background .3s, color .3s; }
.features li:hover .fi { background: var(--yellow); color: var(--navy); }
.features h3 { font-size: 21px; margin-bottom: 4px; }
.features p { margin: 0; font-size: 15px; }

/* ------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; counter-reset: step; }
.step { padding: clamp(28px, 3vw, 48px); background: var(--white); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.step::before { counter-increment: step; content: '0' counter(step); font: 600 clamp(40px, 4vw, 64px)/1 var(--serif); color: var(--yellow); display: block; margin-bottom: 20px; }
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; font-size: 15px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- testimonials */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 2px 10px; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { flex: 0 0 min(420px, 86vw); scroll-snap-align: start; }
.carousel__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; }
.carousel__nav button { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--navy); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.carousel__nav button:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.carousel__nav button:disabled { opacity: .3; cursor: default; }
.carousel__nav [data-prev] .ico { transform: rotate(180deg); }
.quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px 24px; display: flex; flex-direction: column; height: 100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.quote:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.quote__stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font: 500 18px/1.5 var(--serif); color: var(--navy); flex: 1; margin-bottom: 20px; }
.quote footer { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--yellow); display: inline-flex; align-items: center; justify-content: center; font: 600 13px var(--sans); }

/* ------------------------------------------------------------- bands */
.bands { display: grid; grid-template-columns: 1fr 1fr; }
.band { padding: clamp(40px, 4.5vw, 80px) var(--gutter); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; min-height: 320px; position: relative; overflow: hidden; }
.band--dark, .band--sand { background: var(--sand); color: var(--navy); }
.band--gold { background: var(--yellow); color: var(--navy); }
.band--gold .kicker { color: var(--navy); }
.band--cream { background: var(--cream); }
.band h2 { font-size: clamp(28px, 2.8vw, 46px); margin-bottom: 10px; }
.band p { margin: 0; font-size: 16px; max-width: 46ch; }
.band__actions { display: flex; gap: 10px; flex-wrap: wrap; }
[data-spotlight] { --mx: 50%; --my: 50%; }
[data-spotlight]::before { content: ''; position: absolute; inset: 0; background: radial-gradient(520px circle at var(--mx) var(--my), rgba(255,255,255,.55), transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
[data-spotlight]:hover::before { opacity: 1; }
[data-spotlight] > * { position: relative; }
@media (max-width: 860px) { .bands { grid-template-columns: 1fr; } .band { min-height: 0; } }

/* ------------------------------------------------------------- faq */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 24px; transition: border-color .2s, box-shadow .3s; }
.faq details:hover { box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.faq details[open] { border-color: var(--gold); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font: 600 19px var(--serif); color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font: 300 26px/1 var(--sans); color: var(--gold-2); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; font-size: 15px; max-width: 70ch; }

/* ------------------------------------------------------------- page hero */
.page-hero { background: var(--cream); padding: clamp(36px, 4vw, 64px) 0 clamp(32px, 3.5vw, 56px); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 560px; height: 560px; right: -200px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(255,187,0,.24), rgba(255,187,0,0) 68%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(34px, 4vw, 66px); margin-bottom: 12px; max-width: 18ch; }
.page-hero .lead { margin: 0; }
.page-hero--split .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 800px) { .page-hero--split .wrap { grid-template-columns: 1fr; } }

/* image hero for inner pages */
.img-hero { position: relative; min-height: clamp(420px, 60vh, 740px); display: grid; align-items: end; color: #fff; overflow: hidden; background: var(--sand); }
.img-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.1) 40%, rgba(0,0,0,.86)); }
.img-hero__inner { position: relative; z-index: 2; padding: clamp(28px, 4vw, 64px) 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 460px); gap: 40px; align-items: end; }
.img-hero .kicker { color: var(--yellow); }
.img-hero h1 { color: #fff; margin-bottom: 8px; }
.img-hero .lead { color: rgba(255,255,255,.88); margin: 0; }
@media (max-width: 900px) { .img-hero__inner { grid-template-columns: 1fr; } .img-hero { min-height: 60vh; } }

/* events */
.events-panel { background: rgba(255,255,255,.96); color: var(--navy); border-radius: 18px; padding: 22px 24px; box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.events-panel h3 { font: 600 12px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 8px; display: flex; justify-content: space-between; align-items: center; }
.events-panel h3 a { color: var(--navy); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 13px; }
.event { display: grid; grid-template-columns: 62px 1fr auto; gap: 16px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.event:first-of-type { border-top: 0; }
.event__date { text-align: center; background: var(--cream); border-radius: 12px; padding: 8px 4px; }
.event__date b { display: block; font: 600 28px/1 var(--serif); color: var(--navy); }
.event__date span { font: 500 11px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.event h4 { color: var(--navy); margin: 0 0 2px; font: 600 19px/1.2 var(--serif); }
.event p { margin: 0; font-size: 13px; color: var(--text); }
.event .btn { padding: 10px 16px; font-size: 12px; }
@media (max-width: 560px) { .event { grid-template-columns: 56px 1fr; } .event .btn { grid-column: 1 / -1; justify-self: start; } }

/* ------------------------------------------------------------- gallery (edge to edge, sharp) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(180px, 16vw, 300px); gap: 3px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; background: var(--sand); }
.gallery figure:nth-child(1), .gallery figure:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .5s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure:hover::after { background: rgba(0,0,0,.35); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; font: 600 15px var(--serif); color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.gallery figure:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .gallery figcaption { opacity: 1; transform: none; background: linear-gradient(180deg, transparent, rgba(0,0,0,.7)); } }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }

/* ------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.stat { background: var(--cream); padding: clamp(24px, 2.6vw, 40px); transition: background .3s; }
.stat:hover { background: var(--sand); }
.stat b { display: block; font: 600 clamp(38px, 4vw, 64px)/1 var(--serif); color: var(--navy); margin-bottom: 8px; }
.stat span { font-size: 14px; color: var(--muted); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------- cells */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cell { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px, 2.4vw, 36px); display: flex; flex-direction: column; gap: 10px; color: inherit; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.cell:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(0,0,0,.09); border-color: var(--gold); }
.cell .fi { width: 50px; height: 50px; border-radius: 50%; background: var(--cream); color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; transition: background .3s, color .3s; }
.cell:hover .fi { background: var(--yellow); color: var(--navy); }
.cell h3 { margin: 0; font-size: 22px; }
.cell p { margin: 0; font-size: 15px; }
.cell .link-arrow { margin-top: auto; padding-top: 12px; }
.cell--media { padding: 0; }
.cell--media .cell__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.cell--media .cell__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cell--media:hover .cell__img img { transform: scale(1.05); }
.cell--media .cell__body { padding: 22px 26px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }
.partners { display: flex; flex-wrap: wrap; gap: 10px; }
.partners > a, .partners > span { display: inline-flex; align-items: center; padding: 13px 22px; border: 1px solid var(--line); border-radius: var(--pill); font-weight: 500; color: var(--navy); font-size: 15px; background: #fff; transition: background .2s, color .2s, border-color .2s; }
.partners > a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ------------------------------------------------------------- prose */
.prose { font-size: 17px; line-height: 1.75; }
.prose h2 { font-size: clamp(24px, 2.2vw, 32px); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 22px; margin: 1.4em 0 .4em; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .btn { text-decoration: none; }
.prose .wp-block-embed, .prose figure { margin: 1.5em 0; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; }

/* ------------------------------------------------------------- courses extras */
.included { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.included div { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start; font-size: 15px; transition: transform .3s var(--ease), box-shadow .3s; }
.included div:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.08); }
.included .ico { flex: 0 0 auto; color: var(--gold-2); margin-top: 2px; }
.included b { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
@media (max-width: 980px) { .included { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .included { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- companies */
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.price-table th, .price-table td { padding: 18px 22px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table thead th { background: var(--sand); color: var(--navy); font: 600 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.price-table td b { color: var(--navy); font-size: 18px; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: var(--cream-2); }
.price-table .btn { padding: 9px 16px; font-size: 12px; }
@media (max-width: 640px) {
	.price-table thead { display: none; }
	.price-table tr { display: grid; grid-template-columns: 1fr 1fr; padding: 12px 6px; border-bottom: 1px solid var(--line); }
	.price-table td { padding: 6px 12px; border: 0; }
	.price-table td:first-child { grid-column: 1 / -1; font-weight: 600; color: var(--navy); }
}

/* ------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 20px; align-items: stretch; }
.contact-info { background: var(--cream); border-radius: 20px; padding: clamp(28px, 3vw, 48px); display: flex; flex-direction: column; gap: 22px; }
.contact-info a, .contact-info > div { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.contact-info .fi { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; }
.contact-info b { display: block; color: var(--navy); }
.contact-info .map { display: block; margin-top: auto; }
.map iframe { display: block; width: 100%; height: 280px; border: 0; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 3vw, 48px); box-shadow: 0 20px 50px rgba(0,0,0,.06); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- level test */
.levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.level { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px, 2.6vw, 40px); display: flex; flex-direction: column; gap: 10px; color: inherit; transition: transform .35s var(--ease), box-shadow .35s, border-color .3s, background .3s; overflow: hidden; }
a.level:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.1); border-color: var(--gold); background: var(--cream-2); }
.level__code { font: 600 clamp(44px, 4vw, 64px)/1 var(--serif); color: var(--navy); }
.level__code small { font: 500 11px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-left: 12px; }
.level p { margin: 0; font-size: 15px; flex: 1; }
.level .link-arrow { margin-top: 10px; }
@media (max-width: 900px) { .levels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .levels { grid-template-columns: 1fr; } }
.rules { counter-reset: r; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.rules li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; font-size: 16px; }
.rules li::before { counter-increment: r; content: counter(r); width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--yellow); display: inline-flex; align-items: center; justify-content: center; font: 600 14px var(--sans); }

/* ------------------------------------------------------------- certificate */
.cert-form { display: flex; gap: 10px; max-width: 620px; margin: 0 auto; }
.cert-form input { flex: 1; font: 400 17px var(--sans); padding: 16px 22px; border: 1.5px solid var(--line); border-radius: var(--pill); }
.cert-form input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(255,187,0,.35); }
.cert-result { max-width: 620px; margin: 24px auto 0; padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: 16px; text-align: left; }
.cert-result.is-valid { border-color: #0f766e; }
.cert-result.is-valid h3 { color: #0f766e; }
.cert-result.is-invalid h3 { color: #b91c1c; }
.cert-result dl { margin: 0; display: grid; gap: 8px; }
.cert-result dl div { display: grid; grid-template-columns: 150px 1fr; gap: 12px; font-size: 15px; }
.cert-result dt { color: var(--muted); }
.cert-result dd { margin: 0; color: var(--navy); font-weight: 500; }
@media (max-width: 520px) { .cert-form { flex-direction: column; } .cert-result dl div { grid-template-columns: 1fr; gap: 2px; } }

/* ------------------------------------------------------------- misc */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.checks .ico { color: var(--gold-2); flex: 0 0 auto; margin-top: 3px; }
.error-page { text-align: center; padding: clamp(60px, 10vw, 140px) 0; background: var(--cream); }
.error-page h1 { font-size: clamp(80px, 14vw, 180px); line-height: 1; color: var(--yellow); margin-bottom: 8px; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mb-0 { margin-bottom: 0 !important; }
.muted { color: var(--muted); } .small { font-size: 14px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } .roll__slide img { transition: none; transform: none; } }

/* logo on dark (footer): give the mark a light disc so its black cut-out stays visible */
.brand--light .brand__mark { background: var(--cream); border-radius: 50%; padding: 3px; }
.contact-info .map { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }


/* =========================================================================
   v4 · soft edges, brand sunburst, hover panels, events + gallery
   ========================================================================= */
:root { --sun: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23e6c25c'%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(0 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(30 100 100)'/%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(60 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(90 100 100)'/%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(120 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(150 100 100)'/%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(180 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(210 100 100)'/%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(240 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(270 100 100)'/%3E%3Cpolygon points='100,6 105.5,66 94.5,66' transform='rotate(300 100 100)'/%3E%3Cpolygon points='100,22 105.5,66 94.5,66' transform='rotate(330 100 100)'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3C/g%3E%3C/svg%3E"); }
.kicker { font-size: 12px; }
.hero .kicker { font-size: 13px; }
.img-hero .kicker, .kicker--lg { font-size: 15px; letter-spacing: .2em; margin-bottom: 20px; }
.img-hero .kicker::before, .kicker--lg::before { width: 34px; }

/* ---- brand sunburst, slowly turning */
@keyframes sun-spin { to { transform: rotate(360deg); } }
.hero__copy::after, .page-hero::after, .img-hero::before, .sunmark::after { content: ''; position: absolute; background: var(--sun) center / contain no-repeat; opacity: .38; pointer-events: none; animation: sun-spin 160s linear infinite; z-index: 0; }
.hero__copy::after { width: clamp(340px, 34vw, 640px); aspect-ratio: 1; left: clamp(-320px, -17vw, -170px); bottom: clamp(-320px, -17vw, -170px); }
.hero__copy > * { position: relative; z-index: 1; }
.page-hero::after { width: clamp(260px, 24vw, 460px); aspect-ratio: 1; right: clamp(-230px, -12vw, -130px); top: clamp(-230px, -12vw, -130px); }
.page-hero::before { display: none; }
.hero::before { display: none; }
.sunmark { position: relative; overflow: hidden; }
.sunmark::after { width: clamp(280px, 26vw, 520px); aspect-ratio: 1; right: clamp(-260px, -13vw, -140px); bottom: clamp(-260px, -13vw, -140px); opacity: .5; }
.sunmark > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero__copy::after, .page-hero::after, .img-hero::before, .sunmark::after { animation: none; } }

/* ---- soft edges: the page colour fades over the borders of images */
.roll { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 26%); mask-image: linear-gradient(to right, transparent 0, #000 26%); background: transparent; margin-left: -8%; }
.roll__foot { padding-left: 30%; }
.frow__media, .split__media { background: transparent; -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(to right, #000 70%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%); mask-composite: intersect; }
.frow--flip .frow__media, .split--flip .split__media { -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%); mask-image: linear-gradient(to left, #000 70%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%); }
.split__media--grid { background: transparent; }
.tiles, .panels { -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%); }
.cell--media .cell__img, .evcard__img { -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); background: transparent; }
@media (max-width: 980px) {
	.roll { -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 78%, transparent 100%); margin-left: 0; }
	.roll__foot { padding-left: clamp(20px, 3vw, 48px); padding-bottom: 64px; }
}
@media (max-width: 900px) {
	.split__media, .split--flip .split__media { -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%); mask-image: linear-gradient(to bottom, #000 76%, transparent 100%); -webkit-mask-composite: source-over; mask-composite: add; }
}
@media (max-width: 800px) {
	.frow__media, .frow--flip .frow__media { -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%); mask-image: linear-gradient(to bottom, #000 76%, transparent 100%); -webkit-mask-composite: source-over; mask-composite: add; }
}

/* ---- inner-page image hero: copy on cream, photo melting in from the right */
.img-hero { background: var(--cream); color: var(--text); min-height: clamp(460px, 62vh, 760px); align-items: center; }
.img-hero::after { display: none; }
.img-hero::before { width: clamp(300px, 28vw, 540px); aspect-ratio: 1; left: clamp(-280px, -14vw, -150px); bottom: clamp(-280px, -14vw, -150px); }
.img-hero > img { left: auto; right: 0; width: 62%; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 34%), linear-gradient(to bottom, #000 82%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(to right, transparent 0, #000 34%), linear-gradient(to bottom, #000 82%, transparent 100%); mask-composite: intersect; }
.img-hero__inner { grid-template-columns: minmax(0, 47%) minmax(0, 1fr); align-items: center; padding: clamp(40px, 5vw, 88px) 0; }
.img-hero h1 { color: var(--navy); font-size: clamp(38px, 4.4vw, 78px); margin-bottom: 16px; }
.img-hero .lead { color: var(--text); }
.img-hero .kicker { color: var(--gold-2); }
.img-hero .btn--on-image { background: transparent; color: var(--navy); border-color: rgba(0,0,0,.28); backdrop-filter: none; }
.img-hero .btn--on-image:hover { border-color: var(--navy); background: rgba(0,0,0,.04); }
.img-hero .events-panel { justify-self: end; width: min(460px, 100%); }
@media (max-width: 900px) {
	.img-hero { display: flex; flex-direction: column; min-height: 0; align-items: stretch; }
	.img-hero > img { position: relative; width: 100%; aspect-ratio: 16 / 11; height: auto; -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); -webkit-mask-composite: source-over; mask-composite: add; }
	.img-hero__inner { grid-template-columns: 1fr; padding: 8px 0 44px; margin-top: -40px; }
	.img-hero .events-panel { justify-self: stretch; width: auto; }
}

/* ---- hover panels (home: who is learning) */
.panels { display: flex; height: clamp(480px, 44vw, 760px); overflow: hidden; background: var(--sand); }
.panel { position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; color: #fff; transition: flex .85s var(--ease); display: block; }
.panel + .panel { margin-left: 3px; }
.panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease), filter .8s var(--ease); }
.panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.86)); transition: opacity .6s; }
.panel__num { position: absolute; top: clamp(34px, 4vw, 64px); left: clamp(22px, 2.4vw, 44px); z-index: 2; font: 600 13px var(--sans); letter-spacing: .2em; color: #fff; display: inline-flex; align-items: center; gap: 12px; }
.panel__num::after { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,.7); transition: width .6s var(--ease); }
.panel__body { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(40px, 4vw, 72px) clamp(22px, 2.4vw, 44px); width: min(640px, 100%); }
.panel__kicker { display: block; font: 500 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.panel__title { font: 600 clamp(28px, 2.8vw, 52px)/1.02 var(--serif); color: #fff; margin: 0; }
.panel__more { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .7s var(--ease), opacity .5s var(--ease) .1s, margin .7s var(--ease); }
.panel__more > div { overflow: hidden; }
.panel__more p { margin: 0 0 18px; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.55; color: rgba(255,255,255,.88); max-width: 46ch; }
.panel__cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--pill); background: var(--yellow); color: var(--navy); font: 600 14px var(--sans); }
.panel__price { margin-left: 14px; font-size: 14px; color: rgba(255,255,255,.85); }
.panel__price b { color: #fff; }
@media (hover: hover) and (min-width: 901px) {
	.panels:hover .panel { flex: .72; }
	.panels .panel:hover, .panels .panel:focus-visible { flex: 2.1; }
	.panels:hover .panel:not(:hover) img { filter: saturate(.55) brightness(.78); }
	.panel:hover img { transform: scale(1.04); }
	.panel:hover .panel__more, .panel:focus-visible .panel__more { grid-template-rows: 1fr; opacity: 1; margin-top: 16px; }
	.panel:hover .panel__num::after { width: 90px; }
}
@media (hover: none), (max-width: 900px) {
	.panels { flex-direction: column; height: auto; -webkit-mask-image: none; mask-image: none; }
	.panel { min-height: 340px; flex: none; }
	.panel + .panel { margin: 3px 0 0; }
	.panel__more { grid-template-rows: 1fr; opacity: 1; margin-top: 12px; }
}

/* ---- events */
.evhead { display: flex; align-items: baseline; gap: 18px; margin: 0 0 22px; }
.evhead b { font: 600 clamp(54px, 6vw, 110px)/.9 var(--serif); color: var(--sand-2); }
.evhead span { font: 500 12px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.evgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.evcard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; color: inherit; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.evcard:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0,0,0,.12); border-color: var(--gold); }
.evcard__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.evcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.evcard:hover .evcard__img img { transform: scale(1.06); }
.evcard__date { position: absolute; top: 14px; left: 14px; z-index: 2; background: #fff; color: var(--navy); border-radius: 14px; padding: 8px 12px; text-align: center; box-shadow: 0 10px 26px rgba(0,0,0,.18); transition: background .3s; }
.evcard:hover .evcard__date { background: var(--yellow); }
.evcard__date b { display: block; font: 600 24px/1 var(--serif); }
.evcard__date span { font: 600 10px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.evcard:hover .evcard__date span { color: var(--navy); }
.evcard__body { padding: 4px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.evcard__body h3 { margin: 0; font-size: 23px; }
.evcard__body p { margin: 0; font-size: 15px; }
.evcard__body .link-arrow { margin-top: auto; padding-top: 10px; }
.evcard--past .evcard__img img { filter: saturate(.85); }
@media (max-width: 1000px) { .evgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .evgrid { grid-template-columns: 1fr; } }
.pillnav { display: flex; flex-wrap: wrap; gap: 8px; }
.pillnav button, .pillnav a { appearance: none; border: 1px solid var(--line); background: #fff; color: var(--navy); font: 500 14px var(--sans); padding: 10px 18px; border-radius: var(--pill); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.pillnav button:hover, .pillnav a:hover { border-color: var(--navy); }
.pillnav button[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- photo gallery (masonry, sharp) + lightbox */
.masonry { columns: 4 300px; column-gap: 4px; }
.masonry figure { margin: 0 0 4px; break-inside: avoid; position: relative; overflow: hidden; cursor: zoom-in; background: var(--sand); }
.masonry figure[hidden] { display: none; }
.masonry img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease), filter .5s; }
.masonry figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.7)); opacity: 0; transition: opacity .4s; }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figure:hover::after { opacity: 1; }
.masonry figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 16px; font: 600 15px var(--serif); color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.masonry figure:hover figcaption { opacity: 1; transform: none; }
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.94); display: grid; place-items: center; padding: 4vh 4vw; opacity: 0; transition: opacity .3s; }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 84vh; width: auto; height: auto; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 3vh; text-align: center; color: rgba(255,255,255,.85); font: 500 16px var(--serif); }
.lightbox button { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox button:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.lightbox__close { top: 3vh; right: 3vw; }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%) rotate(180deg); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* v4.1 refinements after review */
.hero__copy::after, .page-hero::after, .img-hero::before, .sunmark::after { opacity: .5; }
.panel__num { position: static; margin-bottom: 14px; color: rgba(255,255,255,.9); }
#who.sec { padding-top: clamp(56px, 5vw, 96px); }
.quote { position: relative; overflow: hidden; }
.quote::before { content: '\201C'; position: absolute; right: 18px; top: -18px; font: 600 150px/1 var(--serif); color: var(--sand); pointer-events: none; transition: color .4s; }
.quote:hover::before { color: var(--yellow); }
.quote > * { position: relative; }
.step { border-top: 3px solid transparent; }
.step:hover { border-top-color: var(--yellow); }
#upcoming.sec { padding-bottom: 0; }
/* v4.2 */
.hero__copy::after { width: clamp(300px, 27vw, 520px); left: clamp(-300px, -15vw, -160px); bottom: clamp(-320px, -17vw, -190px); opacity: .42; }
.img-hero--flip > img { transform: scaleX(-1); -webkit-mask-image: linear-gradient(to left, transparent 0, #000 22%), linear-gradient(to bottom, #000 82%, transparent 100%); mask-image: linear-gradient(to left, transparent 0, #000 22%), linear-gradient(to bottom, #000 82%, transparent 100%); }
@media (max-width: 900px) { .img-hero--flip > img { -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); } }
.panel__body { padding-bottom: clamp(56px, 5vw, 96px); }
/* v4.3 */
.img-hero--flip > img { -webkit-mask-image: linear-gradient(to left, transparent 3%, #000 26%), linear-gradient(to bottom, #000 82%, transparent 100%); mask-image: linear-gradient(to left, transparent 3%, #000 26%), linear-gradient(to bottom, #000 82%, transparent 100%); }
@media (max-width: 980px) {
	.roll::after { display: none; }
	.roll__quotes { display: none; }
	.roll__foot { padding: 0 var(--gutter) 26%; grid-template-columns: 1fr; }
	.roll__ctrl { justify-content: flex-start; filter: drop-shadow(0 2px 6px rgba(0,0,0,.45)); }
}
@media (max-width: 900px) { .img-hero--flip > img { -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); } }
@media (max-width: 980px) { .roll__foot { padding-bottom: 15%; } }

/* free trial link band */
.trial-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 20px 28px; border: 1px solid var(--line); border-radius: var(--pill); background: var(--cream); color: var(--text); font-size: 16px; transition: border-color .3s, background .3s, transform .3s var(--ease); }
.trial-link strong { color: var(--navy); }
.trial-link:hover { border-color: var(--gold); background: var(--cream-2); transform: translateY(-2px); color: var(--text); }
@media (max-width: 700px) { .trial-link { border-radius: 20px; } }
.contact-grid > div > .quote { height: auto; }
#request.sec .contact-grid { align-items: start; }

/* =========================================================================
   v5 · black instead of navy, fades only on the side that meets the text,
   flag dropdown language picker (also in the phone header)
   ========================================================================= */
.roll { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 26%); mask-image: linear-gradient(to right, transparent 0, #000 26%); }
.frow__media, .split__media { -webkit-mask-image: linear-gradient(to right, #000 58%, transparent 100%); mask-image: linear-gradient(to right, #000 58%, transparent 100%); -webkit-mask-composite: source-over; mask-composite: add; }
.frow--flip .frow__media, .split--flip .split__media { -webkit-mask-image: linear-gradient(to left, #000 58%, transparent 100%); mask-image: linear-gradient(to left, #000 58%, transparent 100%); }
.img-hero > img { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 36%); mask-image: linear-gradient(to right, transparent 0, #000 36%); -webkit-mask-composite: source-over; mask-composite: add; }
.img-hero--flip > img { -webkit-mask-image: linear-gradient(to left, transparent 3%, #000 30%); mask-image: linear-gradient(to left, transparent 3%, #000 30%); }
.tiles, .panels, .cell--media .cell__img, .evcard__img { -webkit-mask-image: none; mask-image: none; }
.evcard__body { padding-top: 20px; }
.cell--media .cell__body { padding-top: 22px; }
@media (max-width: 980px) { .roll { -webkit-mask-image: none; mask-image: none; } .roll__foot { padding-bottom: 5%; } }
@media (max-width: 900px) {
	.split__media, .split--flip .split__media, .img-hero > img, .img-hero--flip > img { -webkit-mask-image: none; mask-image: none; }
	.img-hero__inner { margin-top: 0; padding-top: 28px; }
}
@media (max-width: 800px) { .frow__media, .frow--flip .frow__media { -webkit-mask-image: none; mask-image: none; } }

.langdd { position: relative; font: 600 13px var(--sans); }
.langdd summary { list-style: none; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--pill); background: rgba(255,255,255,.7); color: var(--navy); cursor: pointer; letter-spacing: .04em; transition: border-color .2s, background .2s; user-select: none; }
.langdd summary::-webkit-details-marker { display: none; }
.langdd summary:hover, .langdd[open] summary { border-color: var(--navy); background: #fff; }
.langdd__caret { transition: transform .25s var(--ease); }
.langdd[open] .langdd__caret { transform: rotate(180deg); }
.flag { display: block; width: 24px; height: 16px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.12); flex: 0 0 auto; }
.langdd ul { position: absolute; right: 0; top: calc(100% + 8px); z-index: 120; min-width: 190px; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.16); animation: langdd-in .2s var(--ease); }
@keyframes langdd-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.langdd li a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 10px; color: var(--navy); font: 500 15px var(--sans); }
.langdd li a:hover { background: var(--cream); }
.langdd li a.is-active { background: var(--sand); font-weight: 600; }
@media (max-width: 1024px) { .site-header__actions { gap: 10px; } .langdd summary { padding: 7px 10px; } }
@media (max-width: 360px) { .langdd summary > span { display: none; } }

/* v6: SureCart payment step */
.wrap--pay{max-width:720px}
.pay-card{background:#fff;border:1px solid var(--line,#e6dcc0);padding:clamp(22px,4vw,44px);--sc-color-primary-500:#0a0a0a;--sc-color-primary-text:#fff;--sc-button-primary-color:#fff;--sc-focus-ring-color-primary:#ffbb00;--sc-input-border-radius-medium:10px;--sc-btn-border-radius:999px;--sc-font-sans:inherit}
.pay-note{margin:18px 4px 0;font-size:.92rem;opacity:.72;text-align:center}

/* v6.3: free guides band on the home page */
.guides { cursor: default; }
.guides:hover { transform: none; }
.guides__links { display: flex; gap: 22px; flex-wrap: wrap; }

/* v6.3: social links on the contact page */
.contact-social__links { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 6px; }
.contact-social__links a { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--navy); }
.contact-social__links a:hover { color: var(--gold-2); }

/* v6.3: social row */
.socrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.socrow__label { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-right: 6px; }
.socrow__links { display: flex; flex-wrap: wrap; gap: 8px; }
.socrow__links a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 14px; font-weight: 500; transition: border-color .25s, background .25s, transform .25s var(--ease); }
.socrow__links a:hover { border-color: var(--navy); transform: translateY(-2px); color: var(--navy); }
.socrow--plain { margin-top: 6px; }
.socrow--plain .socrow__links a { padding: 0; border: 0; background: transparent; margin-right: 8px; font-weight: 400; font-size: 15px; }
.socrow--plain .socrow__links a:hover { color: var(--gold-2); transform: none; }
.sct__social { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }

/* v6.3: audience slides in the hero roll */
.roll__quote--cta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; pointer-events: none; }
.roll__quote--cta.is-active { pointer-events: auto; }
.roll__cta-kicker { display: block; font: 600 11px/1.5 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); text-shadow: 0 1px 8px rgba(0,0,0,.5); white-space: nowrap; }
.roll__cta-title { display: block; font: 500 clamp(22px, 2vw, 36px)/1.1 var(--serif); color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.roll__quotes:has(.roll__quote--cta.is-active) { max-width: 100%; }
.roll__quote--cta .btn { margin-top: 6px; }
@media (max-width: 980px) {
	.roll__quotes { display: block; min-height: 0; }
	.roll__quote:not(.roll__quote--cta) { display: none; }
	.roll__quote--cta { position: static; gap: 6px; padding: 30px 0 6px; background: linear-gradient(to top, rgba(0,0,0,.45), transparent); margin: 0 calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter); }
	.roll__quote--cta:not(.is-active) { display: none; }
	.roll__cta-kicker { white-space: normal; font-size: 10px; }
	.roll__cta-title { font-size: 22px; }
	.roll__foot { padding-bottom: 5%; gap: 10px; }
}
/* v6.3b: eight dots need less room; the audience caption must not run under them */
.roll__dot { width: 22px; }
.roll__ctrl { gap: 6px; }
.roll__cta-kicker { white-space: normal; max-width: 34ch; }
.roll__quote--cta .btn { white-space: nowrap; }
@media (max-width: 980px) {
	.roll__quote--cta { padding-top: 44px; background: linear-gradient(to top, rgba(0,0,0,.62) 55%, transparent); }
	.roll__cta-kicker { max-width: none; }
}
/* v6.3c: hidden review slides must not sit on top of the audience button */
.roll__quote { pointer-events: none; }
.roll__quote.is-active { pointer-events: auto; }

/* v6.4: Diana's review */
@media (max-width: 860px) { .panel::after { background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.9) 100%); } }
.level-gate { max-width: 720px; margin: 0 auto 40px; }
.level-gate.is-done { display: none; }
.levels[hidden] { display: none; }
/* v6.4: price list */
.prices__group { margin-bottom: 56px; }
.prices__group h2 { font-size: clamp(26px, 2.4vw, 36px); margin-bottom: 18px; }
.prices__group h2 small { font: 500 13px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); margin-left: 12px; }
.prices__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prices__table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.prices__table th, .prices__table td { padding: 14px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); font-size: 14px; }
.prices__table thead th { background: var(--cream); font: 600 11px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.prices__table thead th small { display: block; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 11px; }
.prices__table tbody th { font-weight: 500; min-width: 170px; }
.prices__table tbody th b { display: block; font: 600 16px/1.3 var(--serif); color: var(--navy); }
.prices__table tbody th small, .prices__table td small { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; }
.prices__table td a { color: inherit; display: block; border-radius: 10px; margin: -6px; padding: 6px; transition: background .2s; }
.prices__table td a:hover { background: var(--cream); }
.prices__table td b { font: 600 16px/1.3 var(--sans); color: var(--navy); }
.prices__table tbody tr:last-child th, .prices__table tbody tr:last-child td { border-bottom: 0; }
.prices__table--narrow { max-width: 620px; }
.prices__note { color: var(--text); margin: 12px 0 0; font-size: 15px; max-width: 70ch; }
.prices__legend { border-top: 1px solid var(--line); padding-top: 28px; color: var(--muted); font-size: 15px; max-width: 78ch; }
.prices__legend p { margin: 0 0 12px; }
/* print / PDF version */
.print-head { padding: 40px 0 8px; }
.print-head h1 { font-size: 34px; margin: 18px 0 6px; }
.print-head p { color: var(--muted); margin: 0; }
body.is-print .site-header, body.is-print .site-footer, body.is-print .mobile-menu, body.is-print .band { display: none !important; }
body.is-print { background: #fff; }
body.is-print .prices__table td a:hover { background: none; }
@media print {
	.site-header, .site-footer, .mobile-menu, .band, .page-hero { display: none !important; }
	.prices__group { break-inside: avoid; margin-bottom: 28px; }
	.prices__table { border-radius: 0; font-size: 12px; }
	body { background: #fff; }
}
.prices__table td b, .prices__table tbody th b { white-space: nowrap; }

/* v6.4: SureCart customer area, no downloads at a language institute */
.sc-dashboard a[href*="downloads"], .sc-dashboard sc-menu-item[href*="downloads"], body.has-columns a[href*="tab=downloads"], body.has-columns sc-menu-item[href*="tab=downloads"] { display: none !important; }

/* v6.4: on phones the contact form comes before the address details */
@media (max-width: 900px) { .contact-grid--form-first .contact-info { order: 2; } .contact-grid--form-first .form-card { order: 1; } }
/* v6.4: the header follows the screen edges like the hero does, instead of stopping at the 1720px content width */
.site-header .site-header__inner { width: auto; max-width: none; margin-inline: 0; padding-inline: var(--gutter); }

/* v6.5: partners grouped, with a monogram and a category */
.partner-groups { display: grid; gap: 28px; }
.partner-group { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 16px 28px; align-items: start; padding-top: 22px; border-top: 1px solid var(--line); }
.partner-group__label { margin: 8px 0 0; font: 600 11px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.partner-group__label span { display: inline-block; margin-left: 8px; min-width: 20px; padding: 2px 6px; border-radius: var(--pill); background: var(--cream); color: var(--navy); text-align: center; letter-spacing: 0; }
.partner-groups .partners { gap: 10px; }
.partner { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px 8px 8px; border: 1px solid var(--line); border-radius: var(--pill); background: #fff; color: var(--navy); font-weight: 500; transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.partner__mark { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--cream); color: var(--gold-2); display: inline-flex; align-items: center; justify-content: center; font: 600 15px var(--serif); }
.partner__text { display: flex; flex-direction: column; line-height: 1.2; }
.partner__text b { font-weight: 600; font-size: 15px; }
.partner__text small { font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.partner svg { color: var(--gold-2); flex: none; }
a.partner:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.08); color: var(--navy); }
a.partner:hover .partner__mark { background: var(--yellow); color: var(--navy); }
span.partner { background: var(--cream); border-color: transparent; }
@media (max-width: 760px) { .partner-group { grid-template-columns: 1fr; gap: 10px; } .partner-group__label { margin-top: 0; } }
