/**
 * Scott's River Eco Village — design system
 * Fraunces (display) + Figtree (body). Calm, cinematic, river-led.
 */

/* ---------------------------------------------------------------------------
 * Tokens
 * ------------------------------------------------------------------------- */
:root {
	--forest:       #16382C;
	--forest-deep:  #0E241C;
	--river:        #2F6F66;
	--leaf:         #86A98E;
	--sand:         #EFE9DC;
	--cream:        #FAF7F0;
	--earth:        #6E5540;
	--stone:        #7C7F77;
	--charcoal:     #26271F;
	--white:        #FFFFFF;

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body:    "Figtree", -apple-system, "Segoe UI", Roboto, sans-serif;

	--fs-hero:  clamp(2.6rem, 6.5vw, 4.6rem);
	--fs-h1:    clamp(2.2rem, 5vw, 3.4rem);
	--fs-h2:    clamp(1.8rem, 3.6vw, 2.6rem);
	--fs-h3:    clamp(1.25rem, 2.2vw, 1.5rem);
	--fs-lede:  clamp(1.06rem, 1.6vw, 1.2rem);

	--radius:     18px;
	--radius-lg:  28px;
	--shadow:     0 10px 30px rgba(14, 36, 28, 0.10);
	--shadow-soft:0 4px 18px rgba(14, 36, 28, 0.07);

	--wrap:        1200px;
	--wrap-narrow: 760px;
	--gutter:      clamp(1.1rem, 4vw, 2rem);

	--section-y:   clamp(3.5rem, 9vw, 6.5rem);
	--header-h:    82px;

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------------------
 * Base
 * ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.03rem;
	line-height: 1.65;
	color: var(--charcoal);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.15;
	color: var(--forest);
	margin: 0 0 0.6em;
	letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--river); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--forest); }

ul, ol { padding-left: 1.2em; }

:focus-visible {
	outline: 2px solid var(--river);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--leaf); color: var(--forest-deep); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute;
	left: 1rem; top: -4rem;
	z-index: 200;
	background: var(--forest);
	color: var(--white);
	padding: .7rem 1.2rem;
	border-radius: 999px;
	transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ---------------------------------------------------------------------------
 * Layout helpers
 * ------------------------------------------------------------------------- */
.wrap {
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.2rem, 6vw, 4rem); }

.section--sand { background: var(--sand); }

.section--forest {
	background:
		radial-gradient(1200px 600px at 85% -10%, rgba(47, 111, 102, .35), transparent 60%),
		var(--forest-deep);
	color: #E9EFE7;
}
.section--forest h1,
.section--forest h2,
.section--forest h3 { color: var(--cream); }
.section--forest a:not(.sre-btn) { color: var(--leaf); }
.section--forest a:not(.sre-btn):hover { color: var(--cream); }

.section-head {
	max-width: 640px;
	margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.section-head.center {
	margin-inline: auto;
	text-align: center;
}

.lede {
	font-size: var(--fs-lede);
	color: var(--stone);
	max-width: 58ch;
}
.section-head.center .lede { margin-inline: auto; }
.lede--light { color: rgba(233, 239, 231, .82); }
.section--forest .lede { color: rgba(233, 239, 231, .82); }

/* ---------------------------------------------------------------------------
 * Eyebrow + headings
 * ------------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--river);
	margin-bottom: .9rem;
}
.section--forest .eyebrow { color: var(--leaf); }
.eyebrow svg { flex: none; }

.sre-heading .accent {
	font-style: italic;
	font-weight: 400;
	color: var(--river);
}
.section--forest .sre-heading .accent { color: var(--leaf); }

/* ---------------------------------------------------------------------------
 * Curved river dividers
 * ------------------------------------------------------------------------- */
.sre-divider {
	line-height: 0;
	position: relative;
	z-index: 2;
	margin-top: calc(-1 * clamp(34px, 5vw, 70px));
	pointer-events: none;
}
.sre-divider svg {
	display: block;
	width: 100%;
	height: clamp(34px, 5vw, 70px);
}
.sre-divider.tone-cream svg path  { fill: var(--cream); }
.sre-divider.tone-sand svg path   { fill: var(--sand); }
.sre-divider.tone-forest svg path { fill: var(--forest-deep); }
.sre-divider.tone-white svg path  { fill: var(--white); }
.sre-divider.is-flipped svg { transform: scaleY(-1); }

/* ---------------------------------------------------------------------------
 * Buttons
 * ------------------------------------------------------------------------- */
.sre-btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .02em;
	padding: .85rem 1.7rem;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .25s var(--ease), background .25s var(--ease),
	            color .25s var(--ease), border-color .25s var(--ease),
	            box-shadow .25s var(--ease);
}
.sre-btn:hover,
.wp-block-button__link:hover { transform: translateY(-2px); }
.sre-btn:active { transform: translateY(0); }

.sre-btn--primary,
.wp-block-button__link {
	background: var(--forest);
	color: var(--cream);
	box-shadow: var(--shadow-soft);
}
.sre-btn--primary:hover,
.wp-block-button__link:hover {
	background: var(--forest-deep);
	color: var(--white);
}

.sre-btn--river { background: var(--river); color: var(--white); }
.sre-btn--river:hover { background: #26594F; color: var(--white); }

.sre-btn--ghost,
.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--forest);
	border-color: currentColor;
	box-shadow: none;
}
.sre-btn--ghost:hover { background: rgba(22, 56, 44, .07); color: var(--forest); }

.sre-btn--ghost-light {
	background: rgba(255, 255, 255, .08);
	color: var(--cream);
	border-color: rgba(250, 247, 240, .55);
	backdrop-filter: blur(4px);
}
.sre-btn--ghost-light:hover {
	background: rgba(255, 255, 255, .18);
	color: var(--white);
	border-color: var(--cream);
}

/* ---------------------------------------------------------------------------
 * Header
 * ------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header__inner {
	max-width: var(--wrap);
	margin-inline: auto;
	padding: .8rem var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	min-height: var(--header-h);
}

/* Solid state (default on non-hero pages, applied on scroll elsewhere) */
.site-header,
.site-header.is-solid {
	background: rgba(14, 36, 28, .96);
	box-shadow: 0 2px 20px rgba(14, 36, 28, .25);
}
/* Transparent over heroes until scrolled */
.has-hero .site-header:not(.is-solid) {
	background: linear-gradient(rgba(14, 36, 28, .55), transparent);
	box-shadow: none;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	color: var(--cream);
}
.site-brand:hover { color: var(--white); }
.site-brand__logo { width: 52px; height: 52px; object-fit: contain; }
.site-brand img { width: 52px; height: 52px; object-fit: contain; }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: .01em;
}
.site-brand__sub {
	font-size: .62rem;
	font-weight: 700;
	letter-spacing: .34em;
	text-transform: uppercase;
	color: var(--leaf);
	margin-top: .2rem;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(.9rem, 1.6vw, 1.5rem);
	list-style: none;
	margin: 0; padding: 0;
}
.site-nav__list a {
	color: rgba(250, 247, 240, .88);
	font-size: .92rem;
	font-weight: 500;
	padding: .35rem 0;
	position: relative;
}
.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%;
	bottom: 0;
	height: 2px;
	background: var(--leaf);
	border-radius: 2px;
	transition: right .3s var(--ease);
}
.site-nav__list a:hover { color: var(--white); }
.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after { right: 0; }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: .8rem;
}
.header-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	color: var(--cream);
	background: rgba(255, 255, 255, .1);
	transition: background .25s var(--ease), color .25s var(--ease);
}
.header-whatsapp:hover { background: var(--river); color: var(--white); }
.header-book { padding: .65rem 1.35rem; font-size: .88rem; }

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px; height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--cream);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------- */
.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 62vh;
	color: var(--cream);
	overflow: hidden;
	isolation: isolate;
}
.hero--home  { min-height: min(94vh, 900px); }
.hero--page  { min-height: 54vh; }
.hero--short { min-height: 40vh; }

.hero__media,
.hero__media img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
}
.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(rgba(14, 36, 28, .38), rgba(14, 36, 28, .22) 45%, rgba(14, 36, 28, .72));
}

.hero__content {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(3rem, 8vw, 5.5rem);
}
.hero__title {
	font-size: var(--fs-hero);
	color: var(--cream);
	max-width: 15ch;
	text-wrap: balance;
}
.hero__title .accent {
	font-style: italic;
	font-weight: 400;
	color: var(--leaf);
}
.hero__sub {
	font-size: var(--fs-lede);
	color: rgba(250, 247, 240, .88);
	max-width: 46ch;
	margin-top: .4rem;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .9rem;
	margin-top: 1.8rem;
}

/* Scroll hint */
.hero__hint {
	position: absolute;
	left: 50%;
	bottom: 1.4rem;
	transform: translateX(-50%);
	width: 26px; height: 42px;
	border: 1.5px solid rgba(250, 247, 240, .6);
	border-radius: 14px;
}
.hero__hint span {
	position: absolute;
	left: 50%; top: 8px;
	width: 4px; height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: var(--cream);
	animation: hint 2.2s infinite var(--ease);
}
@keyframes hint {
	0%   { transform: translateY(0);   opacity: 1; }
	70%  { transform: translateY(14px); opacity: 0; }
	100% { transform: translateY(0);   opacity: 0; }
}

/* ---------------------------------------------------------------------------
 * Quickcheck enquiry bar
 * ------------------------------------------------------------------------- */
.quickcheck {
	display: grid;
	grid-template-columns: repeat(4, 1fr) auto;
	gap: 1px;
	background: rgba(38, 39, 31, .08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	max-width: 980px;
	margin: -3.2rem auto 0;
	position: relative;
	z-index: 5;
}
.quickcheck__field {
	background: var(--white);
	padding: .95rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: .15rem;
}
.quickcheck__field label {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--stone);
}
.quickcheck__field input,
.quickcheck__field select {
	border: 0;
	padding: 0;
	font: inherit;
	font-weight: 500;
	color: var(--charcoal);
	background: transparent;
	width: 100%;
}
.quickcheck__field input:focus,
.quickcheck__field select:focus { outline: none; }
.quickcheck .sre-btn {
	border-radius: 0;
	height: 100%;
	padding-inline: 2rem;
}

/* ---------------------------------------------------------------------------
 * Grids + cards
 * ------------------------------------------------------------------------- */
.grid {
	display: grid;
	gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.sre-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sre-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.sre-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--sand);
}
.sre-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease);
}
.sre-card:hover .sre-card__media img { transform: scale(1.05); }
.sre-card__placeholder {
	width: 100%; height: 100%;
	display: grid;
	place-items: center;
	background:
		radial-gradient(closest-side, rgba(134, 169, 142, .35), transparent),
		var(--sand);
	color: var(--river);
}
.sre-card__body {
	padding: 1.3rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	flex: 1;
}
.sre-card__title {
	font-size: 1.18rem;
	margin: 0;
}
.sre-card__title a { color: inherit; }
.sre-card__title a:hover { color: var(--river); }
.sre-card__excerpt {
	color: var(--stone);
	font-size: .95rem;
	margin: 0;
}
.sre-card__more {
	margin-top: auto;
	padding-top: .6rem;
	font-weight: 600;
	font-size: .9rem;
	color: var(--river);
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}
.sre-card__more::after {
	content: "→";
	transition: transform .3s var(--ease);
}
.sre-card:hover .sre-card__more::after { transform: translateX(4px); }

/* Cards sitting on dark sections */
.grid--on-dark .sre-card {
	background: rgba(250, 247, 240, .06);
	backdrop-filter: blur(3px);
	box-shadow: none;
	border: 1px solid rgba(250, 247, 240, .12);
}
.grid--on-dark .sre-card__title,
.grid--on-dark .sre-card__title a { color: var(--cream); }
.grid--on-dark .sre-card__excerpt { color: rgba(233, 239, 231, .72); }
.grid--on-dark .sre-card__more { color: var(--leaf); }

/* Price line inside cards / singles */
.price-line {
	font-size: .92rem;
	color: var(--earth);
	font-weight: 600;
}
.price-line small {
	font-weight: 400;
	color: var(--stone);
}

/* ---------------------------------------------------------------------------
 * Pillars (Why visit)
 * ------------------------------------------------------------------------- */
.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.4rem, 3vw, 2.4rem);
}
.pillar {
	text-align: left;
	padding: 1.6rem 1.5rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}
.pillar svg {
	color: var(--river);
	margin-bottom: .8rem;
}
.pillar h3 { margin-bottom: .35rem; font-size: 1.15rem; }
.pillar p {
	color: var(--stone);
	font-size: .95rem;
	margin: 0;
}

/* ---------------------------------------------------------------------------
 * Split sections (image + story)
 * ------------------------------------------------------------------------- */
.split {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	aspect-ratio: 5 / 4;
}
.split__media img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.split__media--tone {
	background:
		radial-gradient(closest-side, rgba(47, 111, 102, .45), transparent 75%),
		linear-gradient(160deg, var(--leaf), var(--river));
}
.split__body .sre-btn { margin-top: .8rem; }

.duo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.4rem, 3vw, 2.2rem);
}
.duo__item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	color: var(--cream);
	background: linear-gradient(160deg, var(--river), var(--forest-deep));
	isolation: isolate;
}
.duo__item img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
	transition: transform .8s var(--ease);
}
.duo__item::after {
	content: "";
	position: absolute; inset: 0;
	z-index: -1;
	background: linear-gradient(transparent 30%, rgba(14, 36, 28, .82));
}
.duo__item:hover img { transform: scale(1.04); }
.duo__item h3 { color: var(--cream); }
.duo__item p { color: rgba(250, 247, 240, .85); font-size: .95rem; }

/* ---------------------------------------------------------------------------
 * Facts / ticks / itinerary — single templates
 * ------------------------------------------------------------------------- */
.facts {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem;
	margin: 1.2rem 0 1.6rem;
	padding: 0;
	list-style: none;
}
.fact {
	background: var(--white);
	border: 1px solid rgba(38, 39, 31, .08);
	border-radius: 14px;
	padding: .65rem 1rem;
	min-width: 130px;
}
.fact__label {
	display: block;
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--stone);
}
.fact__value {
	font-weight: 600;
	color: var(--forest);
	font-size: .95rem;
}

.ticks {
	list-style: none;
	padding: 0;
	margin: .8rem 0 1.4rem;
	display: grid;
	gap: .45rem .2rem;
}
.ticks--cols { grid-template-columns: repeat(2, 1fr); }
.ticks li {
	position: relative;
	padding-left: 1.7rem;
}
.ticks li::before {
	content: "";
	position: absolute;
	left: 0; top: .42em;
	width: 16px; height: 16px;
	border-radius: 50%;
	background:
		url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M4 8.5l2.6 2.6L12 5.5" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / 12px no-repeat,
		var(--river);
}

.itinerary {
	counter-reset: step;
	list-style: none;
	padding: 0;
	margin: 1rem 0 1.6rem;
	display: grid;
	gap: .9rem;
}
.itinerary li {
	position: relative;
	padding: 1rem 1.2rem 1rem 3.4rem;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}
.itinerary li::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	left: 1rem; top: 50%;
	transform: translateY(-50%);
	width: 34px; height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--sand);
	color: var(--forest);
	font-family: var(--font-display);
	font-weight: 600;
}

/* ---------------------------------------------------------------------------
 * Sidebar layout (single stay / experience)
 * ------------------------------------------------------------------------- */
.layout-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}
.layout-sidebar__aside { position: sticky; top: calc(var(--header-h) + 1.2rem); }

.booking-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 1.6rem 1.6rem 1.8rem;
}
.booking-card > h3 { margin-bottom: .2rem; }
.booking-card .price-line { margin-bottom: 1rem; display: block; }

.mini-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .7rem;
	margin: 1.4rem 0;
}
.mini-gallery img {
	border-radius: 12px;
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
}

.field-note {
	background: var(--sand);
	border-left: 4px solid var(--leaf);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 1.2rem 1.4rem;
	margin: 1.6rem 0;
	font-size: .97rem;
}
.field-note strong { color: var(--forest); }

/* ---------------------------------------------------------------------------
 * Species database
 * ------------------------------------------------------------------------- */
.species-search {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-bottom: 2rem;
}
.species-search__q {
	flex: 1 1 260px;
	padding: .85rem 1.2rem;
	border: 1.5px solid rgba(38, 39, 31, .14);
	border-radius: 999px;
	font: inherit;
	background: var(--white);
}
.species-search select {
	padding: .85rem 1.2rem;
	border: 1.5px solid rgba(38, 39, 31, .14);
	border-radius: 999px;
	font: inherit;
	background: var(--white);
	color: var(--charcoal);
}
.species-search__q:focus,
.species-search select:focus {
	outline: none;
	border-color: var(--river);
}

.species-chip .sre-card__media { aspect-ratio: 1; }
.species-chip__name { font-size: 1.08rem; margin: 0; }
.species-chip__sci {
	font-style: italic;
	color: var(--stone);
	font-size: .86rem;
	margin: 0;
}

/* ---------------------------------------------------------------------------
 * Filter chips (experience archive)
 * ------------------------------------------------------------------------- */
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-bottom: 2rem;
}
.filter-chip {
	padding: .5rem 1.1rem;
	border-radius: 999px;
	border: 1.5px solid rgba(38, 39, 31, .16);
	background: var(--white);
	color: var(--charcoal);
	font-size: .88rem;
	font-weight: 500;
	transition: all .25s var(--ease);
}
.filter-chip:hover {
	border-color: var(--river);
	color: var(--river);
}
.filter-chip.is-active {
	background: var(--forest);
	border-color: var(--forest);
	color: var(--cream);
}

/* ---------------------------------------------------------------------------
 * FAQ
 * ------------------------------------------------------------------------- */
.faq-list { display: grid; gap: .8rem; }
.faq {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 0;
	overflow: hidden;
}
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 1.1rem 3.2rem 1.1rem 1.4rem;
	font-weight: 600;
	color: var(--forest);
	position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	position: absolute;
	right: 1.3rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--river);
	transition: transform .3s var(--ease);
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
	padding: 0 1.4rem 1.2rem;
	color: var(--stone);
}

/* ---------------------------------------------------------------------------
 * Quotes / testimonials
 * ------------------------------------------------------------------------- */
.quote {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 1.8rem 1.7rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.quote blockquote {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.12rem;
	line-height: 1.5;
	color: var(--forest);
}
.quote blockquote::before { content: "\201C"; color: var(--leaf); }
.quote blockquote::after  { content: "\201D"; color: var(--leaf); }
.quote cite {
	font-style: normal;
	font-size: .88rem;
	color: var(--stone);
	margin-top: auto;
}
.quote cite strong {
	display: block;
	color: var(--charcoal);
}

/* ---------------------------------------------------------------------------
 * Enquiry forms (plugin shortcode)
 * ------------------------------------------------------------------------- */
.sre-enquiry { max-width: 640px; }
.sre-enquiry__title { margin-bottom: 1rem; }
.sre-enquiry__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.sre-enquiry__full { grid-column: 1 / -1; }
.sre-enquiry label {
	display: block;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--forest);
	margin-bottom: .3rem;
}
.sre-enquiry input,
.sre-enquiry select,
.sre-enquiry textarea {
	width: 100%;
	padding: .8rem 1rem;
	border: 1.5px solid rgba(38, 39, 31, .14);
	border-radius: 12px;
	font: inherit;
	background: var(--white);
	color: var(--charcoal);
	transition: border-color .25s var(--ease);
}
.sre-enquiry input:focus,
.sre-enquiry select:focus,
.sre-enquiry textarea:focus {
	outline: none;
	border-color: var(--river);
}
.sre-enquiry textarea { min-height: 130px; resize: vertical; }
.sre-enquiry .sre-btn { margin-top: 1.2rem; }
.sre-enquiry__privacy {
	font-size: .82rem;
	color: var(--stone);
	margin-top: .8rem;
}
.sre-hp {
	position: absolute !important;
	left: -9999px;
}
.sre-enquiry__notice {
	padding: 1rem 1.3rem;
	border-radius: 12px;
	margin-bottom: 1.4rem;
	font-weight: 500;
}
.sre-enquiry__notice--ok {
	background: rgba(134, 169, 142, .22);
	color: var(--forest);
	border: 1px solid var(--leaf);
}
.sre-enquiry__notice--err {
	background: rgba(110, 85, 64, .12);
	color: var(--earth);
	border: 1px solid rgba(110, 85, 64, .4);
}

/* Enquiry forms on dark sections */
.section--forest .sre-enquiry label { color: var(--cream); }
.section--forest .sre-enquiry__privacy { color: rgba(233, 239, 231, .7); }

/* ---------------------------------------------------------------------------
 * CTA band + final CTA
 * ------------------------------------------------------------------------- */
.sre-cta-band {
	background:
		radial-gradient(900px 400px at 15% 120%, rgba(134, 169, 142, .3), transparent 60%),
		var(--forest);
	color: var(--cream);
	border-radius: var(--radius-lg);
	padding: clamp(2rem, 5vw, 3.4rem);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
}
.sre-cta-band h2, .sre-cta-band h3 { color: var(--cream); margin: 0 0 .3rem; }
.sre-cta-band p { color: rgba(250, 247, 240, .82); margin: 0; max-width: 46ch; }

.cta-final {
	position: relative;
	min-height: 62vh;
	display: flex;
	align-items: center;
	color: var(--cream);
	isolation: isolate;
	overflow: hidden;
}
.cta-final img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
}
.cta-final__scrim {
	position: absolute; inset: 0;
	z-index: -1;
	background: linear-gradient(rgba(14, 36, 28, .55), rgba(14, 36, 28, .78));
}
.cta-final__content { text-align: center; margin-inline: auto; max-width: 680px; }
.cta-final h2 { color: var(--cream); font-size: var(--fs-h1); }
.cta-final .hero__actions { justify-content: center; }

/* ---------------------------------------------------------------------------
 * Content (entry) styles
 * ------------------------------------------------------------------------- */
.entry-content > * { margin-block: 1.2em; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
	border-left: 4px solid var(--leaf);
	margin-left: 0;
	padding: .4rem 0 .4rem 1.4rem;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--forest);
}
.entry-content .wp-block-image figcaption {
	font-size: .84rem;
	color: var(--stone);
	text-align: center;
	margin-top: .6rem;
}

.alignwide { max-width: var(--wrap); margin-inline: auto; }
.alignfull { width: 100%; }

/* ---------------------------------------------------------------------------
 * Pagination
 * ------------------------------------------------------------------------- */
.pagination {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 3rem;
}
.pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: .8rem;
	border-radius: 999px;
	background: var(--white);
	color: var(--charcoal);
	font-weight: 600;
	box-shadow: var(--shadow-soft);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--forest);
	color: var(--cream);
}

/* ---------------------------------------------------------------------------
 * Related section
 * ------------------------------------------------------------------------- */
.related { margin-top: clamp(3rem, 7vw, 5rem); }
.related h2 { margin-bottom: 1.6rem; }

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------- */
.site-footer {
	background: var(--forest-deep);
	color: rgba(233, 239, 231, .8);
	margin-top: auto;
}
.site-footer a { color: rgba(233, 239, 231, .8); }
.site-footer a:hover { color: var(--cream); }

.site-footer__inner {
	max-width: var(--wrap);
	margin-inline: auto;
	padding: clamp(3rem, 6vw, 4.5rem) var(--gutter) 2.5rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: clamp(1.8rem, 4vw, 3rem);
}
.site-footer__brand img { width: 150px; margin-bottom: 1rem; }
.site-footer__brand p { font-size: .93rem; max-width: 30ch; }
.site-footer__heading {
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--cream);
	margin-bottom: .9rem;
}
.site-footer__nav ul,
.site-footer__links ul {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: .45rem;
	font-size: .93rem;
}
.site-footer__contact p {
	font-size: .93rem;
	margin-bottom: .5rem;
}
.site-footer__social {
	display: flex;
	gap: .7rem;
	margin-top: 1rem;
}
.site-footer__social a {
	display: inline-grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(250, 247, 240, .08);
	transition: background .25s var(--ease), color .25s var(--ease);
}
.site-footer__social a:hover { background: var(--river); color: var(--white); }
.site-footer__cta .sre-btn { margin-top: .4rem; }

.site-footer__legal {
	border-top: 1px solid rgba(250, 247, 240, .1);
	padding: 1.3rem var(--gutter);
	max-width: var(--wrap);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: .8rem;
	font-size: .82rem;
	color: rgba(233, 239, 231, .55);
}
.site-footer__legal a { color: inherit; }
.site-footer__legal nav { display: flex; gap: 1.2rem; }

/* ---------------------------------------------------------------------------
 * WhatsApp float
 * ------------------------------------------------------------------------- */
.whatsapp-float {
	position: fixed;
	right: 1.3rem;
	bottom: 1.3rem;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: var(--white);
	box-shadow: 0 8px 24px rgba(14, 36, 28, .3);
	transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); color: var(--white); }

/* ---------------------------------------------------------------------------
 * Reveal-on-scroll
 * ------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}
/* Stagger direct siblings inside grids */
.grid > .reveal:nth-child(2), .pillars > .reveal:nth-child(2) { transition-delay: .08s; }
.grid > .reveal:nth-child(3), .pillars > .reveal:nth-child(3) { transition-delay: .16s; }
.grid > .reveal:nth-child(4), .pillars > .reveal:nth-child(4) { transition-delay: .24s; }
.grid > .reveal:nth-child(5), .pillars > .reveal:nth-child(5) { transition-delay: .32s; }
.grid > .reveal:nth-child(6), .pillars > .reveal:nth-child(6) { transition-delay: .40s; }

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

/* ---------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.pillars { grid-template-columns: repeat(2, 1fr); }
	.layout-sidebar { grid-template-columns: 1fr; }
	.layout-sidebar__aside { position: static; }
	.quickcheck {
		grid-template-columns: repeat(2, 1fr);
		border-radius: var(--radius);
	}
	.quickcheck .sre-btn {
		grid-column: 1 / -1;
		border-radius: 0;
		padding-block: 1rem;
	}
}

@media (max-width: 900px) {
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.split, .split--reverse { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
	.duo { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }

	/* Mobile nav drawer */
	.nav-toggle { display: flex; }
	.header-book { display: none; }
	.site-nav {
		position: fixed;
		inset: 0;
		z-index: -1;
		display: grid;
		place-items: center;
		background: var(--forest-deep);
		opacity: 0;
		visibility: hidden;
		transition: opacity .35s var(--ease), visibility .35s var(--ease);
	}
	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		z-index: 99;
	}
	.site-nav__list {
		flex-direction: column;
		gap: 1.4rem;
		text-align: center;
	}
	.site-nav__list a {
		font-family: var(--font-display);
		font-size: 1.5rem;
		color: var(--cream);
	}
	.nav-toggle { position: relative; z-index: 101; }
	body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
	.grid--3, .grid--4 { grid-template-columns: 1fr; }
	.pillars { grid-template-columns: 1fr; }
	.ticks--cols { grid-template-columns: 1fr; }
	.sre-enquiry__grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.hero--home { min-height: 88vh; }
	.hero__actions .sre-btn { width: 100%; }
	.quickcheck { margin-top: -2rem; }
	.mini-gallery { grid-template-columns: repeat(2, 1fr); }
	.sre-cta-band { text-align: center; justify-content: center; }
	.hero__hint { display: none; }
}

/* ---------------------------------------------------------------------------
 * Print
 * ------------------------------------------------------------------------- */
@media print {
	.site-header, .site-footer, .whatsapp-float, .hero__hint { display: none; }
	.hero { min-height: auto; }
	body { background: #fff; }
}
