/*
Theme Name: Love The Oceans
Theme URI: https://lovetheoceans.org/
Author: Love The Oceans
Description: Block theme for the Love The Oceans marine conservation charity. Header, footer and home-page patterns driven by theme.json design tokens, with every editorial surface (menus, hero, stats, stories, newsletter, charity number) manageable from the WordPress Site Editor.
Version: 0.1.2
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: love-the-oceans
Tags: block-theme, full-site-editing, charity, non-profit
*/

html { scroll-behavior: smooth; }

/* overflow-x: clip stops off-canvas bleeds from creating a horizontal scrollbar,
   while preserving position: sticky (which overflow: hidden would break). */
html, body { overflow-x: clip; }

body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:where(:focus-visible) {
	outline: 2px solid var(--wp--preset--color--coral);
	outline-offset: 3px;
	border-radius: 2px;
}

.lto-eyebrow {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--base);
	letter-spacing: 0.21em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
}

.lto-eyebrow.lto-eyebrow--on-dark { color: var(--wp--preset--color--blue-500); }

.lto-stat-value {
	font-family: var(--wp--preset--font-family--alice);
	font-size: var(--wp--preset--font-size--5-xl);
	line-height: 1;
	color: var(--wp--preset--color--navy-800);
}
.lto-support-banner__card{ padding: 2rem 3rem;}
.lto-support-banner__body{margin-top:0.5rem;}
.lto-story-card__body, .lto-footer-nav{margin-top:1rem;}
p.lto-card__body {
    margin-top: 0;
}

.lto-stat-label {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
	opacity: 0.7;
	white-space: nowrap;
	margin-top: 0;
}

/* Ghost button variant for the translucent "Join Expedition" style from the hero */
.wp-block-button.is-style-lto-ghost .wp-block-button__link {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--white);
	backdrop-filter: blur(2px);
}
.wp-block-button.is-style-lto-ghost .wp-block-button__link:hover,
.wp-block-button.is-style-lto-ghost .wp-block-button__link:focus {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--navy-900);
}

/* Header overlays the hero on the home page: transparent nav on top of image */
.wp-site-blocks > .wp-block-template-part[data-part="header"] .wp-block-navigation__responsive-container-open,
.wp-site-blocks > .wp-block-template-part[data-part="header"] .wp-block-navigation__responsive-container-close {
	color: var(--wp--preset--color--white);
}

/* Three equal-width stat cards across the MPA section's left column.
   !important needed to beat the flex layout WP generates for wp:group. */
.wp-block-group.lto-stats,
.wp-block-group.lto-stats.is-layout-flex {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.lto-stat-card {
	background: var(--wp--preset--color--surface-blue-10);
	border-radius: 4px;
	padding: 24px 8px;
	text-align: center;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

/* "What we do" cards — equal height across the row, Learn more pinned to the bottom. */
.lto-what-we-do__grid .wp-block-column {
	display: flex;
	flex-direction: column;
}

.lto-what-we-do__grid .lto-card {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100%;
}

.lto-what-we-do__grid .lto-card__link {
	margin-top: auto;
	margin-bottom: 0;
}

.lto-card__link a {
	text-decoration: none;
	color: inherit;
}

.lto-card__link a:hover,
.lto-card__link a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Story card overlay (dark gradient at bottom of image cards) + content pinned to bottom */
.lto-story-card.wp-block-cover,
.lto-story-card {
	align-items: flex-end !important;
}
.lto-story-card .wp-block-cover__inner-container {
	width: 100%;
	margin-top: auto;
}
.lto-story-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.lto-story-card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 65%);
	pointer-events: none;
}
.lto-story-card > * { position: relative; z-index: 1; }

/* Read more link: no underline until the card is hovered/focused. */
.lto-story-card .lto-story-card__link a {
	text-decoration: none;
	color: inherit;
}
.lto-story-card:hover .lto-story-card__link a,
.lto-story-card .lto-story-card__link a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Scroll-reveal: card inner content fades up into place, staggered within and across cards. */
@media (prefers-reduced-motion: no-preference) {
	.lto-stories__grid .wp-block-column:nth-child(1) { --lto-stagger: 0s; }
	.lto-stories__grid .wp-block-column:nth-child(2) { --lto-stagger: 0.12s; }
	.lto-stories__grid .wp-block-column:nth-child(3) { --lto-stagger: 0.24s; }

	.lto-story-card .wp-block-cover__inner-container > * {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity 0.7s ease, transform 0.7s ease;
		will-change: opacity, transform;
	}
	.lto-story-card.is-revealed .wp-block-cover__inner-container > *:nth-child(1) { transition-delay: calc(var(--lto-stagger, 0s) + 0.05s); }
	.lto-story-card.is-revealed .wp-block-cover__inner-container > *:nth-child(2) { transition-delay: calc(var(--lto-stagger, 0s) + 0.15s); }
	.lto-story-card.is-revealed .wp-block-cover__inner-container > *:nth-child(3) { transition-delay: calc(var(--lto-stagger, 0s) + 0.25s); }
	.lto-story-card.is-revealed .wp-block-cover__inner-container > *:nth-child(4) { transition-delay: calc(var(--lto-stagger, 0s) + 0.35s); }
	.lto-story-card.is-revealed .wp-block-cover__inner-container > * {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Partners & Accreditations — agency-style logo strip. Logos all share a height
   (set inline via --lto-partners-h, defaulting to 64px) and sit in a centered
   wrapping flex row. The block ships with a media-library picker, so logos are
   uploaded by the editor — no static asset baked into the theme. */
.lto-partners__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 50px;
	row-gap: 24px;
}
.lto-partners__logo {
	height: 80px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	flex: 0 0 auto;
	display: block;
}

/* Editor canvas for the block — keep the placeholder usable inside the wrapper
   and give removable logo thumbs a hover affordance for the close button. */
.wp-block-lto-partners .lto-partners__logo-wrap {
	position: relative;
	display: inline-flex;
}
.wp-block-lto-partners .lto-partners__logo-remove {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.15s ease;
}
.wp-block-lto-partners .lto-partners__logo-wrap:hover .lto-partners__logo-remove,
.wp-block-lto-partners .lto-partners__logo-remove:focus {
	opacity: 1;
}
.wp-block-lto-partners .lto-partners__edit-actions {
	margin-top: 16px;
	text-align: center;
}

@media (max-width: 781px) {
	.lto-partners__logos {
		column-gap: 24px;
		row-gap: 20px;
	}
	.lto-partners__logo {
		height: calc(var(--lto-partners-h, 64px) * 0.8);
	}
}

/* Newsletter email field — cosmetic only, form action set by pattern */
.lto-newsletter {
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(38, 48, 66, 0.82) 0%, rgba(10, 19, 36, 0.78) 100%),
		url('assets/images/support-banner-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.lto-newsletter h2,
.lto-newsletter .lto-newsletter__title,
.lto-newsletter .lto-newsletter__body { color: #fff !important; }

.lto-newsletter__form { display: flex; gap: 8px; align-items: center; max-width: 480px; margin-inline: auto; padding: 0 8px; background: #fff; border-radius: 999px; }
.lto-newsletter__form input[type="email"] { flex: 1; border: 0; background: transparent; padding: 12px 16px; font: inherit; color: var(--wp--preset--color--navy-900); }
.lto-newsletter__form input[type="email"]:focus-visible { outline: none; }
.lto-newsletter__form button {
	border: 0; cursor: pointer;
	background: var(--wp--preset--color--coral); color: var(--wp--preset--color--white);
	font-family: var(--wp--preset--font-family--montserrat); font-weight: 500; font-size: var(--wp--preset--font-size--xs);
	letter-spacing: 0.1em; text-transform: uppercase;
	padding: 10px 22px; border-radius: 999px;
}
.lto-newsletter__form button:hover { background: var(--wp--preset--color--navy-900); }

/* Newsletter mobile: pill input gets squeezed when the placeholder + button
   share one row. Stack the field and button vertically. */
@media (max-width: 781px) {
	.lto-newsletter {
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.lto-newsletter__form {
		flex-direction: column;
		gap: 12px;
		background: transparent;
		border-radius: 0;
		padding: 0;
		max-width: 360px;
	}
	.lto-newsletter__form input[type="email"] {
		width: 100%;
		background: #fff;
		border-radius: 999px;
		padding: 14px 20px;
	}
	.lto-newsletter__form button {
		width: 100%;
		padding: 14px 22px;
	}
}

/* MPA + stats section: hold copy column at ≥ 750px before wrapping,
   and clamp the image column to the height of the copy column (no overflow). */
.lto-mpa-stats__row,
.lto-mpa-stats__row.are-vertically-aligned-top {
	align-items: stretch !important;
}

.lto-mpa-stats__copy { min-width: 750px; flex-grow: 1; }

.lto-mpa-stats__media,
.lto-mpa-stats__media.is-vertically-aligned-top {
	align-self: stretch !important;
	position: relative;
	min-height: 0;
	margin-right: -150px;
}

/* Image bleeds 30px above and below the text column. */
.lto-mpa-stats__media .wp-block-image,
.lto-mpa-stats__media .wp-block-image.lto-mpa-stats__image {
	position: absolute;
	inset: -30px 0;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}

.lto-mpa-stats__media .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: inherit;
}

/* MPA section mobile: drop the 750px copy floor and image-bleed positioning,
   stack columns, shrink padding, and stack stats vertically. */
@media (max-width: 781px) {
	.lto-mpa-stats {
		padding-top: 56px !important;
		padding-bottom: 56px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
	.lto-mpa-stats__row,
	.lto-mpa-stats__row.are-vertically-aligned-top {
		flex-direction: column;
		align-items: stretch !important;
		gap: 32px !important;
	}
	.lto-mpa-stats__copy {
		min-width: 0 !important;
		width: 100% !important;
		flex-basis: auto !important;
	}
	.lto-mpa-stats__title {
		font-size: 30px !important;
	}
	.lto-mpa-stats__media,
	.lto-mpa-stats__media.is-vertically-aligned-top {
		margin-right: 0 !important;
		min-height: 220px;
		flex-basis: auto !important;
		width: 100% !important;
	}
	.lto-mpa-stats__media .wp-block-image,
	.lto-mpa-stats__media .wp-block-image.lto-mpa-stats__image {
		position: relative;
		inset: auto;
	}
	.lto-mpa-stats__media .wp-block-image img {
		height: auto;
		max-height: 320px;
	}
	.wp-block-group.lto-stats,
	.wp-block-group.lto-stats.is-layout-flex {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 8px;
	}
	.lto-stat-card {
		padding: 16px 6px;
		gap: 6px;
	}
}
@media (max-width: 480px) {
	.wp-block-group.lto-stats,
	.wp-block-group.lto-stats.is-layout-flex {
		grid-template-columns: 1fr;
	}
}

/* Top-level template parts + main sit flush — no inherited block-gap margins. */
.wp-site-blocks > main,
.wp-site-blocks > aside,
.wp-site-blocks > header,
.wp-site-blocks > footer,
main.wp-block-group,
header.wp-block-template-part,
footer.wp-block-template-part,
aside.wp-block-template-part,
.lto-hello-bar,
.lto-header,
.lto-footer {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Sections own their own top/bottom padding — strip any inherited margins. */
.lto-section,
.lto-wave-divider,
main > .wp-block-group,
main > .wp-block-cover,
main > section {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Full-width wave divider used around the testimonial section */
.lto-wave-divider { margin-block: 0; }
.lto-wave-divider__image { margin: 0; }
.lto-wave-divider__image img { width: 100%; height: auto; display: block; }

/* Mobile: shrink the root horizontal padding so constrained content doesn't
   sit in a narrow column. Theme.json sets 48px which eats ~25% of a 375px
   viewport. The wave-wrap negative margins read these vars too, so they stay
   in sync. */
@media (max-width: 781px) {
	body {
		--wp--style--root--padding-left: 0px;
		--wp--style--root--padding-right: 0px;
	}
	/* Donate button is too cramped next to the hamburger on mobile —
	   hide from the header bar (move it into the slide-out menu via WP admin). */
	.lto-header .wp-block-buttons {
		display: none;
	}
	.wp-block-lto-home-stories{
		padding:0 16px!important;
	}
	.lto-header{padding:28px!important;}
	/* Compact the shallow archive heroes — desktop padding leaves a huge dead
	   zone above the title on a phone-sized viewport. Add horizontal padding
	   too so the title/subtitle don't kiss the screen edge (root padding is
	   zeroed for full-bleed bars). */
	.lto-stories-archive__hero,
	.lto-team-archive__hero,
	.lto-team-single__hero,
	.lto-page-hero {
		padding-top: calc(96px + var(--wp--preset--spacing--16)) !important;
		padding-bottom: 96px !important;
		padding-left: 24px !important;
		padding-right: 24px !important;
	}
}

/* Support banner — stack copy/buttons on mobile so CTAs don't squash. */
@media (max-width: 781px) {
	.lto-support-banner__row {
		flex-direction: column;
		align-items: stretch;
		gap: var(--wp--preset--spacing--16);
	}
	.lto-support-banner__buttons {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: stretch;
		gap: 12px;
		width: 100%;
	}
	.lto-support-banner__buttons .wp-block-button {
		width: 100%;
	}
	.lto-support-banner__buttons .wp-block-button .wp-block-button__link {
		display: block;
		width: 100%;
		text-align: center;
	}
}

/* Shallow archive heroes — ocean photo with a dark overlay for legibility.
   --lto-hero-image can be set inline via style="" on the hero div to override
   the default photo (e.g. from the archive hero settings admin page). */
.lto-stories-archive__hero,
.lto-team-archive__hero,
.lto-team-single__hero,
.lto-page-hero {
	padding-top: calc(132px + var(--wp--preset--spacing--16)) !important; /* clear hello bar + overlay header */
	padding-bottom: 160px !important;
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(10, 19, 36, 0.72) 0%, rgba(10, 19, 36, 0.55) 100%),
		var(--lto-hero-image, url('assets/images/support-banner-bg.jpg')) !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}
.lto-stories-archive__hero .lto-stories-archive__title,
.lto-stories-archive__hero h1,
.lto-team-archive__hero .lto-team-archive__title,
.lto-team-archive__hero h1,
.lto-team-single__hero .lto-team-single__name,
.lto-team-single__hero h1,
.lto-page-hero h1,
.lto-page-hero h2 {
	color: #fff !important;
}
/* Reusable wave divider that bleeds edge-to-edge under any dark hero. */
.lto-stories-archive__wave-wrap,
.lto-hero-wave-wrap {
	padding: 0 !important;
	margin-left: calc(var(--wp--style--root--padding-left, 0px) * -1) !important;
	margin-right: calc(var(--wp--style--root--padding-right, 0px) * -1) !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	max-width: none !important;
	width: auto !important;
}
/* The wave is pulled UP into the hero with a negative margin so its transparent
   top half reveals the hero image behind, and only the white wave fill paints.
   Native 1440×120 size centered so peaks don't squash on narrower viewports;
   tiles seamlessly on wider viewports because the path starts and ends at y=60.
   !important beats WP's auto-injected :where(.is-layout-flow) > :first-child rule. */
.lto-stories-archive__wave-wrap > .lto-stories-archive__wave,
.lto-hero-wave-wrap > .lto-hero-wave {
	display: block;
	width: 100%;
	height: 120px;
	background: transparent url('assets/images/wave-footer-white.svg') center bottom / 1440px 120px repeat-x;
	margin-block-start: -120px !important;
	margin-top: -120px !important;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

/* Team archive — responsive 4-up portrait grid, partial rows centered. */
.lto-team-grid {
	--lto-team-gap: var(--wp--preset--spacing--32);
	--lto-team-cols: 4;
	display: flex;
	flex-wrap: wrap;
	gap: var(--lto-team-gap);
	justify-content: center;
}
.lto-team-grid .lto-team-card {
	flex: 0 0 calc((100% - (var(--lto-team-cols) - 1) * var(--lto-team-gap)) / var(--lto-team-cols));
	max-width: calc((100% - (var(--lto-team-cols) - 1) * var(--lto-team-gap)) / var(--lto-team-cols));
}
@media (max-width: 1100px) { .lto-team-grid { --lto-team-cols: 3; } }
@media (max-width: 800px)  { .lto-team-grid { --lto-team-cols: 2; } }
@media (max-width: 480px)  { .lto-team-grid { --lto-team-cols: 1; } }

.lto-team-card {
	display: flex;
	flex-direction: column;
	color: inherit;
}
.lto-team-card__image-wrap {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 10px;
	background: var(--wp--preset--color--blue-100, #daf5f2);
	margin-bottom: 16px;
}
.lto-team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lto-team-card__name {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 4px;
	color: var(--wp--preset--color--navy-900);
}
.lto-team-card__role {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin: 0;
	color: var(--wp--preset--color--blue-700);
}
.lto-team-card__location {
	font-size: 12px;
	margin: 4px 0 0;
	color: #677588;
}

.lto-team-archive__section-title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 36px;
	text-align: center;
	letter-spacing: 0.02em;
	margin: 0 0 var(--wp--preset--spacing--48);
	color: var(--wp--preset--color--navy-900);
}

/* Team single page — portrait + role column layout then free bio content below. */
.lto-team-single__layout {
	display: grid;
	grid-template-columns: minmax(260px, 360px) 1fr;
	gap: var(--wp--preset--spacing--48);
	align-items: start;
	margin-bottom: var(--wp--preset--spacing--48);
}
@media (max-width: 700px) {
	.lto-team-single__layout { grid-template-columns: 1fr; }
}
.lto-team-single__portrait {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-team-single__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lto-team-single__role {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	letter-spacing: 0.04em;
	font-size: 18px;
	color: var(--wp--preset--color--blue-700);
	margin: 0;
}
.lto-team-single__location {
	font-size: 14px;
	color: #677588;
	margin: 8px 0 0;
}
.lto-team-single__back {
	margin-top: var(--wp--preset--spacing--48);
	font-size: 14px;
}
.lto-team-single__back a {
	color: var(--wp--preset--color--blue-700);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.04em;
}
.lto-team-single__back a:hover { text-decoration: underline; }

/* Stories archive — square cards in a responsive 3-up grid + pagination styling. */
.lto-stories-archive__grid.is-layout-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: var(--wp--preset--spacing--24) !important;
}
@media (max-width: 960px) {
	.lto-stories-archive__grid.is-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
@media (max-width: 600px) {
	.lto-stories-archive__grid.is-layout-grid {
		grid-template-columns: 1fr !important;
	}
}

.lto-story-archive-card.wp-block-cover {
	aspect-ratio: 1 / 1;
	min-height: 0 !important;
	align-items: flex-end !important;
}
.lto-story-archive-card .wp-block-post-title {
	font-family: var(--wp--preset--font-family--alice);
	margin: 0.25em 0 0.4em;
}
.lto-story-archive-card .wp-block-post-title a {
	color: #fff;
	text-decoration: none;
}
.lto-story-archive-card:hover .wp-block-post-title a {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.lto-story-archive-card .wp-block-post-date {
	color: var(--wp--preset--color--coral);
}
.lto-story-archive-card .wp-block-post-excerpt__excerpt {
	margin: 0;
}
.lto-story-archive-card .wp-block-post-excerpt__more-link {
	display: none;
}

/* Pagination */
.lto-stories-archive__pagination {
	margin-top: var(--wp--preset--spacing--96);
}
.lto-stories-archive__pagination .page-numbers,
.lto-stories-archive__pagination a,
.lto-stories-archive__pagination .wp-block-query-pagination-numbers span {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	color: var(--wp--preset--color--navy-800);
}
.lto-stories-archive__pagination .current,
.lto-stories-archive__pagination .page-numbers.current {
	background: var(--wp--preset--color--coral);
	color: var(--wp--preset--color--navy-900);
}
.lto-stories-archive__pagination a:hover {
	background: var(--wp--preset--color--border-pale);
}

/* Footer wave background — served relative to style.css.
   Wave keeps its native 1964×478 dimensions so the peaks don't squash on
   narrower viewports; clipped at the sides below 1964px, gradient fills
   the gap above it. */
.wp-block-group.lto-footer {
	background-image: url('assets/images/wave-footer.svg');
	background-size: 1964px 478px, auto;
	background-position: top center, center;
	background-repeat: no-repeat, no-repeat;
	position: relative;
}
.wp-block-group.lto-footer:after{
	    content: "";
    background: #263043;
    height: 100%;
    position: absolute;
    top: 0;
    display: table;
    width: 100%;
	left:0;right:0;
	z-index:-1;

}
.wp-block-group.alignfull.lto-page-hero.lto-mission__hero.has-white-color.has-navy-900-background-color.has-text-color.has-background.has-global-padding.is-layout-constrained.wp-container-core-group-is-layout-34451d0a.wp-block-group-is-layout-constrained.wp-block-group.alignfull.lto-page-hero.lto-mission__hero.has-white-color.has-navy-900-background-color.has-text-color.has-background.has-global-padding.is-layout-constrained.wp-container-core-group-is-layout-34451d0a.wp-block-group-is-layout-constrained{
	margin-bottom:1px; /* Fixes a weird 1px gap between the hero and wave on the mission page, likely from rounding issues in WP's layout calculations. */
}

.lto-footer {
    background-color: initial !important;
}
/* Logo already white-on-transparent, so no filter needed. */

.lto-footer img[src*="brandies"] {
	box-sizing: border-box;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	margin-top: -3px;
}

.lto-footer .lto-footer-nav .wp-block-navigation__container { gap: 8px !important; }
.lto-footer .lto-footer-nav a { color: #fff; opacity: 0.9; }
.lto-footer .lto-footer-nav a:hover { color: var(--wp--preset--color--coral); opacity: 1; }

/* Hello bar — global site-wide strip, rendered via wp_body_open. Not a template part. */
:root { --lto-hello-bar-h: 32px; }
.lto-hello-bar {
	height: var(--lto-hello-bar-h);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--wp--preset--color--navy-800);
	color: #fff;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 14px;
	padding: 0 var(--wp--preset--spacing--24);
	margin: 0;
	position: relative;
	z-index: 20;
}
.lto-hello-bar p { margin: 0; line-height: 1; }
.lto-hello-bar a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.lto-hello-bar a:hover { color: var(--wp--preset--color--coral); }

/* wp-site-blocks becomes the positioning context for the overlay header
   on any page where the header should sit over a dark hero. */
.home .wp-site-blocks,
.page-template-front-page .wp-site-blocks,
.post-type-archive-lto_story .wp-site-blocks,
.single-lto_story .wp-site-blocks,
.post-type-archive-lto_team_member .wp-site-blocks,
.single-lto_team_member .wp-site-blocks,
.page-template-page-contact .wp-site-blocks,
.post-type-archive-lto_expedition .wp-site-blocks,
.single-lto_expedition .wp-site-blocks,
.page-template-page-apply .wp-site-blocks,
.page-template-page-our-mission .wp-site-blocks,
.page-template-page-our-impact .wp-site-blocks {
	position: relative;
}

/* Header overlay: transparent over the hero by default, white on hover with dark logo/text. */
.home .lto-header,
.page-template-front-page .lto-header,
.post-type-archive-lto_story .lto-header,
.single-lto_story .lto-header,
.post-type-archive-lto_team_member .lto-header,
.single-lto_team_member .lto-header,
.page-template-page-contact .lto-header,
.post-type-archive-lto_expedition .lto-header,
.single-lto_expedition .lto-header,
.page-template-page-apply .lto-header,
.page-template-page-our-mission .lto-header,
.page-template-page-our-impact .lto-header {
	background: transparent !important;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.home .lto-hello-bar,
.page-template-front-page .lto-hello-bar,
.post-type-archive-lto_story .lto-hello-bar,
.single-lto_story .lto-hello-bar,
.post-type-archive-lto_team_member .lto-hello-bar,
.single-lto_team_member .lto-hello-bar,
.page-template-page-contact .lto-hello-bar,
.post-type-archive-lto_expedition .lto-hello-bar,
.single-lto_expedition .lto-hello-bar,
.page-template-page-apply .lto-hello-bar,
.page-template-page-our-mission .lto-hello-bar,
.page-template-page-our-impact .lto-hello-bar {
	position: relative;
	z-index: 11;
}

/* Dual logo: light + dark stacked in the same space, fade-swap on hover
   so the layout doesn't jump when switching. */
.lto-header__logo { position: relative; line-height: 0; }
.lto-header__logo .lto-header__logo-light,
.lto-header__logo .lto-header__logo-dark {
	display: block;
	transition: opacity 0.25s ease;
	line-height: 0;
	margin: 0;
}
.lto-header__logo .lto-header__logo-light img,
.lto-header__logo .lto-header__logo-dark img {
	display: block;
	width: 260px;
	height: auto;
}
.lto-header__logo .lto-header__logo-light { position: relative; opacity: 1; }
.lto-header__logo .lto-header__logo-dark {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.home .lto-header .wp-block-navigation a,
.page-template-front-page .lto-header .wp-block-navigation a,
.post-type-archive-lto_story .lto-header .wp-block-navigation a,
.single-lto_story .lto-header .wp-block-navigation a,
.post-type-archive-lto_team_member .lto-header .wp-block-navigation a,
.single-lto_team_member .lto-header .wp-block-navigation a,
.page-template-page-contact .lto-header .wp-block-navigation a,
.post-type-archive-lto_expedition .lto-header .wp-block-navigation a,
.single-lto_expedition .lto-header .wp-block-navigation a,
.page-template-page-apply .lto-header .wp-block-navigation a,
.page-template-page-our-mission .lto-header .wp-block-navigation a,
.page-template-page-our-impact .lto-header .wp-block-navigation a {
	color: #fff;
	transition: color 0.25s ease;
}

/* Hover state: white background, dark text/links, dark logo mark. */
.home .lto-header:hover,
.page-template-front-page .lto-header:hover,
.post-type-archive-lto_story .lto-header:hover,
.single-lto_story .lto-header:hover,
.post-type-archive-lto_team_member .lto-header:hover,
.single-lto_team_member .lto-header:hover,
.page-template-page-contact .lto-header:hover,
.post-type-archive-lto_expedition .lto-header:hover,
.single-lto_expedition .lto-header:hover,
.page-template-page-apply .lto-header:hover,
.page-template-page-our-mission .lto-header:hover,
.page-template-page-our-impact .lto-header:hover {
	background: #fff !important;
}
.home .lto-header:hover .wp-block-navigation a,
.page-template-front-page .lto-header:hover .wp-block-navigation a,
.post-type-archive-lto_story .lto-header:hover .wp-block-navigation a,
.single-lto_story .lto-header:hover .wp-block-navigation a,
.post-type-archive-lto_team_member .lto-header:hover .wp-block-navigation a,
.single-lto_team_member .lto-header:hover .wp-block-navigation a,
.page-template-page-contact .lto-header:hover .wp-block-navigation a,
.post-type-archive-lto_expedition .lto-header:hover .wp-block-navigation a,
.single-lto_expedition .lto-header:hover .wp-block-navigation a,
.page-template-page-apply .lto-header:hover .wp-block-navigation a,
.page-template-page-our-mission .lto-header:hover .wp-block-navigation a,
.page-template-page-our-impact .lto-header:hover .wp-block-navigation a {
	color: var(--wp--preset--color--navy-900);
}
.lto-header:hover .lto-header__logo-light { opacity: 0; }
.lto-header:hover .lto-header__logo-dark { opacity: 1; pointer-events: auto; }

/* Touch devices get sticky :hover after a tap, which made the header flash to
   white-with-dark-logo when opening the slide-out menu. Keep the transparent
   overlay state on anything without true hover. */
@media (hover: none) {
	.lto-header:hover,
	.home .lto-header:hover,
	.page-template-front-page .lto-header:hover,
	.post-type-archive-lto_story .lto-header:hover,
	.single-lto_story .lto-header:hover,
	.post-type-archive-lto_team_member .lto-header:hover,
	.single-lto_team_member .lto-header:hover,
	.page-template-page-contact .lto-header:hover,
	.post-type-archive-lto_expedition .lto-header:hover,
	.single-lto_expedition .lto-header:hover,
	.page-template-page-apply .lto-header:hover,
	.page-template-page-our-mission .lto-header:hover,
	.page-template-page-our-impact .lto-header:hover {
		background: transparent !important;
	}
	.lto-header:hover .wp-block-navigation a,
	.home .lto-header:hover .wp-block-navigation a,
	.page-template-front-page .lto-header:hover .wp-block-navigation a,
	.post-type-archive-lto_story .lto-header:hover .wp-block-navigation a,
	.single-lto_story .lto-header:hover .wp-block-navigation a,
	.post-type-archive-lto_team_member .lto-header:hover .wp-block-navigation a,
	.single-lto_team_member .lto-header:hover .wp-block-navigation a,
	.page-template-page-contact .lto-header:hover .wp-block-navigation a,
	.post-type-archive-lto_expedition .lto-header:hover .wp-block-navigation a,
	.single-lto_expedition .lto-header:hover .wp-block-navigation a,
	.page-template-page-apply .lto-header:hover .wp-block-navigation a,
	.page-template-page-our-mission .lto-header:hover .wp-block-navigation a,
	.page-template-page-our-impact .lto-header:hover .wp-block-navigation a {
		color: #fff;
	}
	.lto-header:hover .lto-header__logo-light { opacity: 1; }
	.lto-header:hover .lto-header__logo-dark { opacity: 0; pointer-events: none; }
}

/* Submenu: always a light panel with dark text so it's legible over the hero
   AND in the hover state, regardless of the header's transparent/white mode. */
.lto-header .wp-block-navigation__submenu-container {
	background: #fff !important;
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6) !important;
	border-radius: 8px;
	padding: 8px 0;
	min-width: 220px;
	box-shadow: 0 12px 32px rgba(10, 19, 36, 0.12);
}
.lto-header .wp-block-navigation__submenu-container a,
.lto-header:hover .wp-block-navigation__submenu-container a,
.home .lto-header .wp-block-navigation__submenu-container a,
.page-template-front-page .lto-header .wp-block-navigation__submenu-container a,
.post-type-archive-lto_story .lto-header .wp-block-navigation__submenu-container a,
.single-lto_story .lto-header .wp-block-navigation__submenu-container a,
.post-type-archive-lto_team_member .lto-header .wp-block-navigation__submenu-container a,
.single-lto_team_member .lto-header .wp-block-navigation__submenu-container a,
.page-template-page-contact .lto-header .wp-block-navigation__submenu-container a,
.post-type-archive-lto_expedition .lto-header .wp-block-navigation__submenu-container a,
.single-lto_expedition .lto-header .wp-block-navigation__submenu-container a,
.page-template-page-apply .lto-header .wp-block-navigation__submenu-container a,
.page-template-page-our-mission .lto-header .wp-block-navigation__submenu-container a,
.page-template-page-our-impact .lto-header .wp-block-navigation__submenu-container a {
	color: var(--wp--preset--color--navy-900) !important;
	padding: 10px 20px;
}
.lto-header .wp-block-navigation__submenu-container a:hover,
.lto-header .wp-block-navigation__submenu-container a:focus-visible {
	background: var(--wp--preset--color--blue-100, #daf5f2);
}

/* Contact page — cards, form, status banners. */
.lto-contact-body .lto-contact-card__title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--wp--preset--color--blue-700);
	margin: 0 0 var(--wp--preset--spacing--24);
}
.lto-contact-body .lto-contact-card__label {
	margin: 0 0 var(--wp--preset--spacing--16);
	line-height: 1.6;
}
.lto-contact-body .lto-contact-card__label a,
.lto-contact-body .lto-email {
	color: var(--wp--preset--color--blue-700);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lto-contact-body .lto-contact-card__label a:hover,
.lto-contact-body .lto-email:hover {
	color: var(--wp--preset--color--coral);
}

.lto-contact-form-wrap { width: 100%; }
.lto-contact-form,
.lto-contact-form *,
.lto-contact-form *::before,
.lto-contact-form *::after { box-sizing: border-box; }
.lto-contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--16);
}
.lto-contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.lto-contact-form__label {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--navy-800);
}
.lto-contact-form input[type="text"],
.lto-contact-form input[type="email"],
.lto-contact-form input[type="tel"],
.lto-contact-form select,
.lto-contact-form textarea {
	width: 100%;
	font: inherit;
	padding: 12px 14px;
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	border-radius: 8px;
	background: #fff;
	color: var(--wp--preset--color--navy-900);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lto-contact-form textarea { resize: vertical; min-height: 140px; }
.lto-contact-form select { cursor: pointer; }
.lto-contact-form input:focus,
.lto-contact-form select:focus,
.lto-contact-form textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--blue-700);
	box-shadow: 0 0 0 3px rgba(33, 89, 136, 0.15);
}
.lto-contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lto-contact-form__submit {
	align-self: flex-start;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 14px 30px;
	border-radius: 100px;
	border: 0;
	background: var(--wp--preset--color--coral);
	color: var(--wp--preset--color--navy-900);
	cursor: pointer;
	transition: transform 0.15s ease, filter 0.15s ease;
}
.lto-contact-form__submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.lto-contact-form__note {
	font-size: 12px;
	color: #677588;
	margin: var(--wp--preset--spacing--8) 0 0;
}
.lto-contact-form__notice {
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: var(--wp--preset--spacing--24);
	font-size: 15px;
	line-height: 1.5;
}
.lto-contact-form__notice--ok {
	background: var(--wp--preset--color--blue-100, #daf5f2);
	color: var(--wp--preset--color--navy-900);
	border: 1px solid var(--wp--preset--color--blue-500, #88c3f3);
}
.lto-contact-form__notice--err {
	background: #fdecea;
	color: #7a1f1f;
	border: 1px solid #f5a9a4;
}

/* Contact "Before you go" CTA — full-bleed ocean-backed dark band. */
.lto-contact-cta {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(10, 19, 36, 0.78) 0%, rgba(10, 19, 36, 0.68) 100%),
		url('assets/images/support-banner-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.lto-contact-cta h2,
.lto-contact-cta h3 { color: #fff !important; }

/* =====================================================================
 * Expeditions — archive landing, single programme, enquiry form.
 * ===================================================================== */

/* Pillars — 3-up under the hero. */
.lto-exp-pillars .wp-block-columns { gap: var(--wp--preset--spacing--32); }
.lto-exp-pillar {
	background: var(--wp--preset--color--cream, #f6efd8);
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--32);
}
.lto-exp-pillar__title {
	font-family: var(--wp--preset--font-family--alice);
	color: var(--wp--preset--color--navy-900);
	margin: 0 0 var(--wp--preset--spacing--16);
}
.lto-exp-pillar__body {
	margin: 0;
	color: var(--wp--preset--color--navy-800);
}

/* Landing list — alternating image/body rows. */
.lto-exp-list .lto-exp-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--wp--preset--spacing--48);
	align-items: center;
	padding: var(--wp--preset--spacing--48) 0;
	border-bottom: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
}
.lto-exp-list .lto-exp-card:last-child { border-bottom: 0; }
.lto-exp-list .lto-exp-card--reverse .lto-exp-card__media { order: 2; }
.lto-exp-list .lto-exp-card--reverse .lto-exp-card__body  { order: 1; }
.lto-exp-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-exp-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lto-exp-card__eyebrow { margin: 0 0 var(--wp--preset--spacing--8); }
.lto-exp-card__title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.2;
	margin: 0 0 var(--wp--preset--spacing--16);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-meta {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0 0 var(--wp--preset--spacing--16);
}
.lto-exp-meta-pill {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--wp--preset--color--surface-blue-10, rgba(81,129,168,0.16));
	color: var(--wp--preset--color--navy-800);
}
.lto-exp-card__excerpt {
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 var(--wp--preset--spacing--16);
	color: var(--wp--preset--color--navy-800);
}
.lto-exp-card__cta { margin: 0; }
.lto-exp-card__link {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
	text-decoration: none;
}
.lto-exp-card__link:hover { color: var(--wp--preset--color--coral); }

@media (max-width: 800px) {
	.lto-exp-list .lto-exp-card { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--24); }
	.lto-exp-list .lto-exp-card--reverse .lto-exp-card__media { order: 0; }
	.lto-exp-list .lto-exp-card--reverse .lto-exp-card__body  { order: 0; }
}

/* Comparison table. */
.lto-exp-compare__title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.2;
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--48);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-compare-scroll { overflow-x: auto; }
.lto-exp-compare {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(10, 19, 36, 0.04);
	font-size: 14px;
}
.lto-exp-compare th,
.lto-exp-compare td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	vertical-align: top;
}
.lto-exp-compare thead th {
	background: var(--wp--preset--color--navy-900);
	color: #fff;
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 12px;
	border-bottom: 0;
}
.lto-exp-compare tbody th {
	font-family: var(--wp--preset--font-family--alice);
	font-weight: 400;
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-compare tbody th a { color: inherit; text-decoration: none; }
.lto-exp-compare tbody th a:hover { color: var(--wp--preset--color--blue-700); text-decoration: underline; }
.lto-exp-compare tbody tr:last-child th,
.lto-exp-compare tbody tr:last-child td { border-bottom: 0; }

/* Testimonial — shared cream style, big serif quote. */
.lto-exp-testimonial__quote {
	font-family: var(--wp--preset--font-family--alice);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-testimonial__name {
	color: var(--wp--preset--color--blue-700);
}

/* Included lists — tick bullets. */
.lto-exp-included__title {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	color: var(--wp--preset--color--blue-700);
	margin: 0 0 var(--wp--preset--spacing--16);
}
.lto-exp-included__list { list-style: none !important; padding: 0 !important; margin: 0; }
.lto-exp-included__list li {
	position: relative;
	padding: 0 0 0 28px;
	margin: 0 0 12px;
	line-height: 1.55;
	font-size: 15px;
}
.lto-exp-included__list li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	width: 20px;
	text-align: center;
}
.lto-exp-included__list--yes li::before { content: "✓"; color: var(--wp--preset--color--coral); }
.lto-exp-included__list--no  li::before { content: "→"; color: var(--wp--preset--color--blue-700); }

/* CTA band — full-bleed ocean. Reuses the .lto-contact-cta breakout trick. */
.lto-exp-cta {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	position: relative;
	background-image:
		linear-gradient(180deg, rgba(10, 19, 36, 0.78) 0%, rgba(10, 19, 36, 0.68) 100%),
		url('assets/images/support-banner-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.lto-exp-cta h2 { color: #fff !important; }

/* Single programme body — meta sidebar + post content. */
.lto-exp-single__layout {
	display: grid;
	grid-template-columns: minmax(260px, 320px) 1fr;
	gap: var(--wp--preset--spacing--64);
	align-items: start;
}
@media (max-width: 900px) {
	.lto-exp-single__layout { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--32); }
}
.lto-exp-single__meta {
	position: sticky;
	top: 140px;
	background: var(--wp--preset--color--cream, #f6efd8);
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--32);
}
.lto-exp-single__tagline {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 18px;
	line-height: 1.4;
	color: var(--wp--preset--color--navy-900);
	margin: 0 0 var(--wp--preset--spacing--16);
}
.lto-exp-single__dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 12px;
	margin: 0 0 var(--wp--preset--spacing--24);
	font-size: 14px;
}
.lto-exp-single__dl dt {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 11px;
	color: var(--wp--preset--color--blue-700);
}
.lto-exp-single__dl dd {
	margin: 0;
	color: var(--wp--preset--color--navy-900);
	font-size: 14px;
	line-height: 1.4;
}
.lto-exp-single__apply {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 100px;
	background: var(--wp--preset--color--coral);
	color: var(--wp--preset--color--navy-900);
	text-decoration: none;
}
.lto-exp-single__apply:hover { filter: brightness(1.05); }
.lto-exp-single__content { font-size: 17px; line-height: 1.7; }
.lto-exp-single__back {
	margin: var(--wp--preset--spacing--48) 0 0;
	font-size: 14px;
}
.lto-exp-single__back a { color: var(--wp--preset--color--blue-700); text-decoration: none; }
.lto-exp-single__back a:hover { color: var(--wp--preset--color--coral); text-decoration: underline; }

/* Dates & pricing panel on the single page. */
.lto-exp-pricing {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--wp--preset--spacing--48);
	align-items: center;
}
@media (max-width: 700px) {
	.lto-exp-pricing { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--24); }
}
.lto-exp-pricing__big {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(36px, 5vw, 56px);
	color: var(--wp--preset--color--navy-900);
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--8);
	line-height: 1;
}
.lto-exp-pricing__note {
	font-size: 14px;
	color: var(--wp--preset--color--navy-800);
	margin: 0;
	line-height: 1.5;
}
.lto-exp-pricing__dates {
	font-size: 16px;
	line-height: 1.6;
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--24);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-pricing__cta {
	display: inline-block;
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 12px 24px;
	border-radius: 100px;
	background: var(--wp--preset--color--coral);
	color: var(--wp--preset--color--navy-900);
	text-decoration: none;
}
.lto-exp-pricing__cta:hover { filter: brightness(1.05); }

/* Related expeditions at the foot of a single page. */
.lto-exp-related__title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(26px, 3vw, 36px);
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--48);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--32);
}
@media (max-width: 900px) { .lto-exp-related__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lto-exp-related__grid { grid-template-columns: 1fr; } }
.lto-exp-related__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	transition: transform 0.25s ease;
}
.lto-exp-related__card:hover { transform: translateY(-3px); }
.lto-exp-related__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 0 var(--wp--preset--spacing--16);
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-exp-related__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lto-exp-related__duration {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
}
.lto-exp-related__name {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 22px;
	line-height: 1.25;
	margin: 4px 0 4px;
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-related__tagline {
	font-size: 14px;
	line-height: 1.5;
	color: var(--wp--preset--color--navy-800);
	margin: 0;
}

/* Enquiry form (uses the same classes as the contact form). */
.lto-exp-enquiry__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--wp--preset--spacing--16);
}
.lto-exp-enquiry__row > .lto-contact-form__field { min-width: 0; }
@media (max-width: 600px) { .lto-exp-enquiry__row { grid-template-columns: minmax(0, 1fr); } }
.lto-exp-enquiry-wrap { max-width: 760px; margin: 0 auto; }

/* =====================================================================
 * Mission + Impact — story rows, stat grid, timeline, highlight box.
 * Components are generic so both pages (and future pages) can reuse them.
 * ===================================================================== */

/* Alternating image / body rows. */
.lto-story-rows .lto-story-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--wp--preset--spacing--64);
	align-items: center;
	padding: var(--wp--preset--spacing--48) 0;
}
.lto-story-rows .lto-story-row + .lto-story-row {
	border-top: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
}
.lto-story-row--reverse .lto-story-row__media { order: 2; }
.lto-story-row--reverse .lto-story-row__body  { order: 1; }
.lto-story-row__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-story-row__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lto-story-row__body h3 {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.2;
	color: var(--wp--preset--color--navy-900);
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--16);
}
.lto-story-row__body p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--wp--preset--color--navy-800);
	margin: 0 0 var(--wp--preset--spacing--16);
}
.lto-story-row__body p:last-child { margin-bottom: 0; }
.lto-story-row__body .lto-eyebrow { margin: 0; }

@media (max-width: 900px) {
	.lto-story-rows .lto-story-row {
		grid-template-columns: 1fr;
		gap: var(--wp--preset--spacing--24);
	}
	.lto-story-row--reverse .lto-story-row__media,
	.lto-story-row--reverse .lto-story-row__body { order: 0; }
}

/* Impact stat grid — up to 4 columns, responsive. */
.lto-impact-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--24);
}
@media (max-width: 1000px) { .lto-impact-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lto-impact-stat-grid { grid-template-columns: 1fr; } }

.lto-impact-stat {
	background: #fff;
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--32) var(--wp--preset--spacing--24);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--wp--preset--spacing--8);
}
.lto-impact-stat__num {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(40px, 4vw, 56px);
	line-height: 1;
	color: var(--wp--preset--color--navy-900);
	margin: 0;
}
.lto-impact-stat__num span {
	font-size: 0.6em;
	color: var(--wp--preset--color--coral);
	margin-left: 2px;
}
.lto-impact-stat__label {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--navy-800);
	margin: 0;
}

/* Timeline — vertical list with year markers. */
.lto-timeline {
	list-style: none !important;
	counter-reset: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.lto-timeline::before {
	content: "";
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 90px;
	width: 2px;
	background: var(--wp--preset--color--blue-500, #88c3f3);
	opacity: 0.5;
}
.lto-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: var(--wp--preset--spacing--24);
	padding: var(--wp--preset--spacing--16) 0;
}
.lto-timeline__item::before {
	content: "";
	position: absolute;
	left: 86px;
	top: 22px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--wp--preset--color--coral);
	box-shadow: 0 0 0 4px var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-timeline__year {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 22px;
	color: var(--wp--preset--color--navy-900);
	line-height: 1.3;
	padding-right: var(--wp--preset--spacing--16);
	text-align: right;
}
.lto-timeline__body strong {
	display: block;
	font-family: var(--wp--preset--font-family--alice);
	font-weight: 400;
	font-size: 20px;
	color: var(--wp--preset--color--navy-900);
	margin: 0 0 4px;
}
.lto-timeline__body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--wp--preset--color--navy-800);
}
.lto-timeline__item--next .lto-timeline__year { color: var(--wp--preset--color--coral); }
.lto-timeline__item--next::before { background: #fff; border: 2px solid var(--wp--preset--color--coral); }

@media (max-width: 600px) {
	.lto-timeline::before { left: 10px; }
	.lto-timeline__item { grid-template-columns: 1fr; padding-left: 32px; }
	.lto-timeline__item::before { left: 6px; top: 24px; }
	.lto-timeline__year { text-align: left; padding-right: 0; font-size: 18px; }
}

/* Hope Spot highlight box (mission page). */
.lto-highlight__grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: var(--wp--preset--spacing--48);
	align-items: center;
}
@media (max-width: 700px) {
	.lto-highlight__grid { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--24); text-align: center; }
}
.lto-highlight__figure-num {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(48px, 6vw, 72px);
	line-height: 1;
	color: var(--wp--preset--color--navy-900);
	margin: 0;
}
.lto-highlight__figure-label {
	font-family: var(--wp--preset--font-family--montserrat);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
	margin: 8px 0 0;
}
.lto-highlight__body h3 {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.25;
	color: var(--wp--preset--color--navy-900);
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--16);
}
.lto-highlight__body p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--wp--preset--color--navy-800);
	margin: 0;
}

/* Inline single-expedition enquiry form — offset from overlay header for #enquire jumps. */
#enquire.lto-exp-single-enquiry { scroll-margin-top: 140px; }

/* =====================================================================
 * Single expedition — gallery + alumni trust signals.
 * ===================================================================== */

.lto-exp-gallery__title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1.25;
	color: var(--wp--preset--color--navy-900);
	margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--48);
}
.lto-exp-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
@media (max-width: 900px) { .lto-exp-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .lto-exp-gallery { grid-template-columns: repeat(2, 1fr); } }
.lto-exp-gallery__item {
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-exp-gallery__item:nth-child(5n+1) { aspect-ratio: 4 / 3; grid-column: span 2; }
.lto-exp-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.lto-exp-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .lto-exp-gallery__item:nth-child(5n+1) { aspect-ratio: 1 / 1; grid-column: auto; } }

/* Alumni quote block. */
.lto-exp-alumni__grid {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: var(--wp--preset--spacing--48);
	align-items: center;
}
@media (max-width: 700px) {
	.lto-exp-alumni__grid { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--24); text-align: center; }
}
.lto-exp-alumni__portrait {
	margin: 0;
	width: 160px;
	height: 160px;
}
.lto-exp-alumni__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}
@media (max-width: 700px) {
	.lto-exp-alumni__portrait { margin: 0 auto; }
}
.lto-exp-alumni__quote {
	font-family: var(--wp--preset--font-family--alice);
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.35;
	color: var(--wp--preset--color--navy-900);
	margin: var(--wp--preset--spacing--16) 0 var(--wp--preset--spacing--24);
	padding: 0;
	border: 0;
}
.lto-exp-alumni__attrib {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--blue-700);
	margin: 0;
}
.lto-exp-alumni__sep { opacity: 0.5; }

/* Pillar icons (Our Mission – A holistic approach). */
.lto-pillar__icon {
	width: 48px;
	height: 48px;
	margin: 0 0 var(--wp--preset--spacing--16);
	color: var(--wp--preset--color--blue-700);
}
.lto-pillar__icon img {
	width: 100%;
	height: 100%;
	display: block;
}

/* UN Sustainable Development Goals commitment grid (Our Mission). */
.lto-sdg-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--24);
	max-width: 880px;
	margin-inline: auto;
}
@media (max-width: 900px) {
	.lto-sdg-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 560px) {
	.lto-sdg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
.lto-sdg-grid__item { margin: 0; }
.lto-sdg-tile {
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 6px;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
	box-shadow: 0 1px 2px rgba(10, 30, 60, 0.08);
}
.lto-sdg-tile img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.lto-sdg-tile:hover,
.lto-sdg-tile:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(10, 30, 60, 0.18);
	outline: none;
}

/* Two full-bleed coloured sections stacked back-to-back inside post-content
   (e.g. blue-100 highlight → navy CTA on the mission page) used to reveal
   32px of body background between them because of WP's auto-injected
   :where(.is-layout-constrained) > * { margin-block-start: var(--wp--preset--spacing--32) }.
   This rule removes that gap when one coloured section sits directly after
   another, so they touch edge-to-edge like the design expects. */
.is-layout-constrained > .alignfull.has-background + .alignfull.has-background,
.is-layout-constrained > .alignfull.has-background + .alignfull.lto-newsletter,
.is-layout-constrained > .alignfull.has-background + .alignfull.lto-contact-cta,
.is-layout-constrained > .alignfull.has-background + .alignfull.lto-exp-cta,
.is-layout-constrained > .alignfull.lto-hero-wave-wrap + .alignfull,
.is-layout-constrained > .alignfull + .alignfull.lto-hero-wave-wrap {
	margin-block-start: 0 !important;
}

/* Expeditions landing — compact grid of clickable holiday-style tiles.
   Supersedes the larger alternating-row layout. */
.lto-exp-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--wp--preset--spacing--32);
}
@media (max-width: 1000px) { .lto-exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lto-exp-grid { grid-template-columns: 1fr; } }

.lto-exp-tile {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lto-exp-tile:hover,
.lto-exp-tile:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(10, 19, 36, 0.12);
	border-color: transparent;
}
.lto-exp-tile__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--wp--preset--color--blue-100, #daf5f2);
}
.lto-exp-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.lto-exp-tile:hover .lto-exp-tile__media img { transform: scale(1.05); }
.lto-exp-tile__duration {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(10, 19, 36, 0.88);
	color: #fff;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.lto-exp-tile__body {
	display: flex;
	flex-direction: column;
	padding: var(--wp--preset--spacing--24);
	flex: 1 1 auto;
	gap: 8px;
}
.lto-exp-tile__eyebrow {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--blue-700);
}
.lto-exp-tile__title {
	font-family: var(--wp--preset--font-family--alice);
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-tile__tagline {
	font-size: 14px;
	line-height: 1.55;
	color: var(--wp--preset--color--navy-800);
	margin: 0;
	flex: 1 1 auto;
}
.lto-exp-tile__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: var(--wp--preset--spacing--8);
}
.lto-exp-tile__fact {
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--wp--preset--color--cream, #f6efd8);
	color: var(--wp--preset--color--navy-900);
}
.lto-exp-tile__fact--muted {
	background: transparent;
	border: 1px solid var(--wp--preset--color--border-pale, #e3eff6);
	color: var(--wp--preset--color--navy-800);
	font-weight: 500;
}
.lto-exp-tile__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--montserrat);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--coral);
	margin-top: var(--wp--preset--spacing--16);
	transition: gap 0.2s ease;
}
.lto-exp-tile:hover .lto-exp-tile__cta { gap: 10px; }
.lto-hero-wave {
    margin-bottom: -1px !important;
}
/* Zero the WP auto-injected block gap between the header / main / footer
   template parts. Otherwise a 32px strip of body background sits between
   main and footer (and between the hello-bar-adjacent header and main). */
.wp-site-blocks > header,
.wp-site-blocks > main,
.wp-site-blocks > footer {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* ==========================================================================
   Mobile menu — bespoke slide-out drawer.
   Replaces the WP native nav overlay below 781px. Native hamburger and
   overlay container are hidden so we don't ship two competing UIs.
   ========================================================================== */
.lto-mobile-menu-toggle,
.lto-mobile-menu,
.lto-mobile-menu-backdrop {
	display: none;
}

@media (max-width: 781px) {
	/* Hide the WP-generated overlay UI in the header. */
	.lto-header .wp-block-navigation__responsive-container-open,
	.lto-header .wp-block-navigation__responsive-container,
	.lto-header .wp-block-navigation {
		display: none !important;
	}

	/* Hamburger button — fixed top-right, sits above the header. */
	.lto-mobile-menu-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 7px;
		position: absolute;
		top: calc(var(--lto-hello-bar-h, 32px) + 68px);
		right: 14px;
		width: 52px;
		height: 52px;
		padding: 10px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 60;
		color: #fff;
	}
	.lto-support-banner {
    padding: 0 12px !important;
    text-align: center;
}
.lto-support-banner__row, .lto-story-view-related{padding:16px!important;}
	.lto-mobile-menu-toggle__bar {
		display: block;
		width: 30px;
		height: 3px;
		background: currentColor;
		border-radius: 2px;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}
	.lto-mobile-menu-toggle[aria-expanded="true"] .lto-mobile-menu-toggle__bar:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}
	.lto-mobile-menu-toggle[aria-expanded="true"] .lto-mobile-menu-toggle__bar:nth-child(2) {
		opacity: 0;
	}
	.lto-mobile-menu-toggle[aria-expanded="true"] .lto-mobile-menu-toggle__bar:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}

	/* Backdrop and drawer. */
	.lto-mobile-menu-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(10, 19, 36, 0.6);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease;
		z-index: 70;
	}
	.lto-mobile-menu-backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
	}
	.lto-mobile-menu {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(86vw, 360px);
		background: var(--wp--preset--color--navy-900, #0a1324);
		color: #fff;
		transform: translateX(100%);
		transition: transform 0.28s ease;
		z-index: 80;
		padding: 24px 24px 32px;
		box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
		overflow-y: auto;
	}
	.lto-mobile-menu.is-open {
		transform: translateX(0);
	}
	body.lto-mobile-menu-locked {
		overflow: hidden;
	}

	.lto-mobile-menu__close {
		align-self: flex-end;
		background: transparent;
		border: none;
		color: #fff;
		padding: 8px;
		margin: -8px -8px 8px 0;
		cursor: pointer;
		line-height: 0;
	}

	.lto-mobile-menu__nav {
		flex: 1;
		min-height: 0;
	}

	.lto-mobile-menu__list,
	.lto-mobile-menu__sublist {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.lto-mobile-menu__item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.lto-mobile-menu__row {
		display: flex;
		align-items: stretch;
	}

	.lto-mobile-menu__link {
		flex: 1;
		display: block;
		padding: 16px 8px 16px 0;
		color: #fff;
		text-decoration: none;
		font-family: var(--wp--preset--font-family--alice, serif);
		font-size: 22px;
		letter-spacing: 0.02em;
	}

	.lto-mobile-menu__expand {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		background: transparent;
		border: none;
		border-left: 1px solid rgba(255, 255, 255, 0.08);
		color: #fff;
		cursor: pointer;
		padding: 0;
	}
	.lto-mobile-menu__expand svg {
		transition: transform 0.2s ease;
	}
	.lto-mobile-menu__expand[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}

	.lto-mobile-menu__sublist {
		padding: 4px 0 12px 12px;
	}

	.lto-mobile-menu__subitem + .lto-mobile-menu__subitem {
		margin-top: 2px;
	}

	.lto-mobile-menu__sublink {
		display: block;
		padding: 10px 8px;
		color: rgba(255, 255, 255, 0.85);
		text-decoration: none;
		font-family: var(--wp--preset--font-family--montserrat, sans-serif);
		font-size: 14px;
		letter-spacing: 0.04em;
	}
	.lto-mobile-menu__sublink:hover,
	.lto-mobile-menu__sublink:focus-visible {
		color: var(--wp--preset--color--coral, #fc7957);
	}

	.lto-mobile-menu__socials {
		list-style: none;
		margin: 24px 0 0;
		padding: 0;
		display: flex;
		gap: 8px;
		justify-content: center;
	}
	.lto-mobile-menu__social {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		color: #fff;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 50%;
		transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	}
	.lto-mobile-menu__social:hover,
	.lto-mobile-menu__social:focus-visible {
		color: var(--wp--preset--color--coral, #fc7957);
		border-color: var(--wp--preset--color--coral, #fc7957);
	}

	.lto-mobile-menu__donate {
		display: block;
		margin-top: 16px;
		padding: 16px 24px;
		background: var(--wp--preset--color--coral, #fc7957);
		color: var(--wp--preset--color--navy-900, #0a1324);
		text-align: center;
		text-decoration: none;
		border-radius: 100px;
		font-family: var(--wp--preset--font-family--montserrat, sans-serif);
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}
}
