/*
Theme Name: Valley of Flowers — Modern
Theme URI: https://www.thevalleyofflowers.com/
Author: Ashlar
Author URI: https://www.thevalleyofflowers.com/
Description: A calm, editorial theme for Himalayan trekking and tour operators. Paytone One display headings with Manrope and Inter, an evergreen and brass palette, a compact vertical rhythm and read-more collapsing for long copy. Standalone parent theme; preserves the custom post types, ACF field names, widget areas and page-template filenames of the previous valleyofflowers-child theme.
Version: 4.7.0
Requires at least: 5.6
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vofm
Tags: travel, tour-operator, custom-menu, custom-logo, featured-images, translation-ready, block-styles, wide-blocks
*/

/*--------------------------------------------------------------
TABLE OF CONTENTS
----------------------------------------------------------------
 1.0  Design tokens
 2.0  Reset & base
 3.0  Typography
 4.0  Layout & rhythm
 5.0  Buttons & controls
 6.0  Forms
 7.0  Header & navigation
 8.0  Hero & page banner
 9.0  Cards
10.0  Sections
11.0  Rail & widgets
12.0  Prose
13.0  Comments
14.0  Pagination
15.0  Footer
16.0  Overlays (modal, slider)
17.0  Utilities
18.0  Responsive
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 Design tokens
--------------------------------------------------------------*/
:root {
	/* ---- Neutrals: warm, green-cast greys ---- */
	--ink:      #141a17;   /* headings */
	--ink-soft: #2a332e;   /* display headings — softer than pure ink */
	--body:     #4a5450;   /* body copy */
	--muted:    #7d8a85;   /* meta, captions */
	--faint:    #a3ada9;   /* placeholders */
	--rule:     #e3e7e5;   /* hairlines */
	--rule-2:   #eef1ef;   /* softest fills */
	--canvas:   #ffffff;
	--paper:    #f8f9f8;   /* alternating band */

	/* ---- Brand: evergreen ---- */
	--forest:   #1a3a2e;   /* primary */
	--forest-d: #0e241c;   /* footer, deepest */
	--forest-m: #2d5744;   /* mid */
	--moss:     #4a7a63;   /* light accent on dark */

	/* ---- Accent: brass (replaces the neon lime) ---- */
	--brass:    #b08542;
	--brass-d:  #946d33;
	--brass-l:  #d9c08a;
	--brass-bg: #f7f1e5;

	/* ---- Warm neutrals ---- */
	--cream:    #f7f4ee;
	--sand:     #e8e0d2;
	--bark:     #5c4a30;

	--rose:     #b4453f;

	/* ---- Type ----
	   Three tiers: Paytone One for display headings (the reference site's
	   display face), Manrope for sub-headings and card titles, Inter for body. */
	--f-display: 'Paytone One', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	--f-head: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Fluid scale — display sizes cut ~15% so Paytone One sits lighter */
	--t-display: clamp(1.8rem, 1.15rem + 2.1vw, 2.75rem);  /* 29 → 44 */
	--t-h1:      clamp(1.55rem, 1.12rem + 1.45vw, 2.15rem);/* 25 → 34 */
	--t-h2:      clamp(1.3rem, 1.05rem + 1vw, 1.7rem);     /* 21 → 27 */
	--t-h3:      clamp(1.05rem, 1rem + .28vw, 1.18rem);    /* 17 → 19 */
	--t-h4:      1.0625rem;                                 /* 17 */
	--t-body:    1.0625rem;                                 /* 17 */
	--t-sm:      0.9375rem;                                 /* 15 */
	--t-xs:      0.8125rem;                                 /* 13 — labels only */
	--t-label:   0.75rem;                                   /* 12 — tracked caps */

	--lh-tight: 1.14;
	--lh-head:  1.25;
	--lh-body:  1.75;

	--track-caps: .14em;

	/* ---- Rhythm ---- */
	--section:   clamp(44px, 2.2rem + 2.6vw, 76px);
	--section-s: clamp(32px, 1.6rem + 1.8vw, 52px);
	--gap:       clamp(16px, .9rem + 1vw, 26px);
	--gutter:    clamp(18px, 1rem + 2.2vw, 40px);
	--shell:     1240px;
	--stack:     clamp(20px, 1rem + 1vw, 30px);

	/* Read-more fade colour, overridden per section band */
	--rm-fade:   var(--canvas);

	/* ---- Shape: restrained ---- */
	--r-sm:   4px;
	--r-card: 8px;
	--r-lg:   14px;
	--r-pill: 999px;

	/* ---- Depth: hairlines, not shadows ---- */
	--shadow-sm: 0 1px 3px rgba(20, 26, 23, .05);
	--shadow-md: 0 12px 40px -12px rgba(20, 26, 23, .16);
	--shadow-lg: 0 28px 70px -24px rgba(20, 26, 23, .24);

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


/*--------------------------------------------------------------
2.0 Reset & base
--------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	/* `clip` rather than `hidden`: it prevents sideways scrolling without
	   turning the root into a scroll container, which would break the
	   sticky header. */
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--f-body);
	font-size: var(--t-body);
	line-height: var(--lh-body);
	color: var(--body);
	background: var(--canvas);
	font-feature-settings: 'kern' 1, 'liga' 1, 'cv11' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

img, svg, video, iframe { max-width: 100%; height: auto; vertical-align: middle; }
figure { margin: 0; }

a { color: var(--forest-m); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass-d); }

hr { border: 0; border-top: 1px solid var(--rule); margin: var(--stack) 0; }

::selection { background: var(--brass-l); color: var(--ink); }

:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 3px;
	border-radius: var(--r-sm);
}

.ico { flex: none; display: inline-block; }


/*--------------------------------------------------------------
3.0 Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-family: var(--f-head);
	color: var(--ink);
	margin: 0 0 .6em;
	line-height: var(--lh-head);
	letter-spacing: -.021em;
	font-weight: 600;
	text-wrap: balance;
}

h1 { font-size: var(--t-h1); line-height: var(--lh-tight); letter-spacing: -.028em; }
h2 { font-size: var(--t-h2); letter-spacing: -.024em; }

/* Display tier — Paytone One.
   It ships a single weight, so perceived weight is managed with size,
   open tracking, looser leading and a softened colour rather than font-weight. */
.hero__title,
.page-banner__title,
.section-head__title,
.cta-band__title,
.display {
	font-family: var(--f-display);
	font-weight: 400;
	letter-spacing: .006em;
	line-height: 1.22;
	color: var(--ink-soft);
}
/* Sentence case rather than uppercase — caps read considerably heavier. */
.section-head__title,
.cta-band__title {
	text-transform: none;
	letter-spacing: -.012em;
}
h3 { font-size: var(--t-h3); }
h4 { font-size: var(--t-h4); font-weight: 600; }
h5 { font-size: var(--t-sm); font-weight: 600; }

h6, .label {
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: var(--track-caps);
	color: var(--muted);
	margin: 0 0 .8em;
	line-height: 1.4;
}

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

strong, b { font-weight: 600; color: var(--ink); }
em { font-style: italic; }
small { font-size: var(--t-sm); }

/* Section eyebrow — brass, tracked, with a leading rule */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
	color: var(--brass-d);
	margin-bottom: 18px;
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--brass);
	flex: none;
}
.eyebrow--plain::before { display: none; }

.lede {
	font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem);
	line-height: 1.7;
	color: var(--body);
	max-width: 62ch;
}

blockquote {
	margin: var(--stack) 0;
	padding: 4px 0 4px 30px;
	border-left: 2px solid var(--brass);
	font-family: var(--f-head);
	font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
	font-weight: 500;
	line-height: 1.55;
	color: var(--ink);
	letter-spacing: -.015em;
}

code, kbd, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .9em; }
code { background: var(--rule-2); padding: 3px 7px; border-radius: var(--r-sm); color: var(--bark); }
pre {
	background: var(--forest-d);
	color: #cfdcd6;
	padding: 24px 26px;
	border-radius: var(--r-card);
	overflow-x: auto;
	line-height: 1.6;
}
pre code { background: none; color: inherit; padding: 0; }


/*--------------------------------------------------------------
4.0 Layout & rhythm
--------------------------------------------------------------*/
.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.shell--narrow { max-width: 760px; }
.shell--mid    { max-width: 980px; }
.shell--wide   { max-width: 1440px; }

.section { padding-block: var(--section); }
.section--s { padding-block: var(--section-s); }
.section--flush-top { padding-top: 0; }

.section--paper  { background: var(--paper); --rm-fade: var(--paper); }
.section--cream  { background: var(--cream); --rm-fade: var(--cream); }
.section--forest { background: var(--forest); color: #c2d2cb; --rm-fade: var(--forest); }

.section--forest h1, .section--forest h2,
.section--forest h3, .section--forest h4 { color: #fff; }
.section--forest .eyebrow { color: var(--brass-l); }
.section--forest .eyebrow::before { background: var(--brass-l); }
.section--forest .lede { color: #b6c8c0; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Content + rail */
.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 352px;
	gap: clamp(40px, 4vw, 72px);
	align-items: start;
}
.layout--full { grid-template-columns: minmax(0, 1fr); }

/* Pin the two columns explicitly. Malformed editor content can make a
   browser re-parent nodes, which previously pushed extra children into the
   grid and stole the rail's column. Explicit placement contains the damage:
   the rail always holds column two, and anything unexpected stacks in
   column one instead of displacing it. */
.layout > .rail { grid-column: 2; grid-row: 1; }
.layout > :not(.rail) { grid-column: 1; min-width: 0; }

/* Section heading block */
.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--gap);
	margin-bottom: var(--stack);
	max-width: 100%;
}
.section-head__body { max-width: 62ch; }
.section-head__title { font-size: var(--t-h2); margin: 0; }
.section-head__sub { color: var(--muted); font-size: var(--t-sm); margin: 14px 0 0; max-width: 58ch; }
.section-head__link {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--t-xs);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--forest);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--rule);
	white-space: nowrap;
	transition: border-color .2s var(--ease), color .2s var(--ease);
}
.section-head__link:hover { color: var(--brass-d); border-color: var(--brass); }
.section-head__link .ico { transition: transform .2s var(--ease); }
.section-head__link:hover .ico { transform: translateX(3px); }

.section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-head--center .section-head__sub { margin-inline: auto; }

/* "View all" plus the slider arrows, grouped at the end of a section head */
.section-head__actions {
	flex: none;
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 28px);
}

.slider-nav { display: flex; gap: 10px; }
.slider-nav[hidden] { display: none; }
.slider-nav__btn {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	flex: none;
	color: var(--ink);
	background: var(--canvas);
	border: 1px solid var(--rule);
	border-radius: 50%;
	cursor: pointer;
	transition: border-color .2s var(--ease), color .2s var(--ease),
	            background .2s var(--ease), opacity .2s var(--ease);
}
.slider-nav__btn:hover:not(:disabled) {
	border-color: var(--ink);
	background: var(--ink);
	color: #fff;
}
.slider-nav__btn:disabled { opacity: .35; cursor: default; }
.slider-nav__btn[data-slide="prev"] { transform: none; }


/*--------------------------------------------------------------
5.0 Buttons & controls
--------------------------------------------------------------*/
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--f-body);
	font-size: var(--t-sm);
	font-weight: 600;
	letter-spacing: .005em;
	line-height: 1;
	padding: 16px 30px;
	border-radius: var(--r-pill);
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
	transition: background .22s var(--ease), color .22s var(--ease),
	            border-color .22s var(--ease), transform .22s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-d); color: #fff; }

.btn--brass { background: var(--brass); color: #fff; }
.btn--brass:hover { background: var(--brass-d); color: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: transparent; }

.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--cream); color: var(--forest); }

.btn--ondark { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ondark:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }

.btn--sm { padding: 12px 22px; font-size: var(--t-xs); }
.btn--lg { padding: 19px 38px; font-size: var(--t-body); }
.btn--block { display: flex; width: 100%; }

/* Text link with arrow */
.tlink {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--t-sm);
	font-weight: 600;
	color: var(--forest);
}
.tlink .ico { transition: transform .2s var(--ease); }
.tlink:hover { color: var(--brass-d); }
.tlink:hover .ico { transform: translateX(3px); }

/* Chips */
.chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: .045em;
	text-transform: uppercase;
	line-height: 1;
	padding: 8px 15px;
	border-radius: var(--r-pill);
	background: var(--rule-2);
	color: var(--muted);
	white-space: nowrap;
}
.chip--brass  { background: var(--brass-bg); color: var(--brass-d); }
.chip--forest { background: rgba(26, 58, 46, .07); color: var(--forest); }
.chip--outline{ background: transparent; border: 1px solid var(--rule); color: var(--body); }
.chip--solid  { background: var(--forest); color: #fff; }
.chip--glass  { background: rgba(255,255,255,.92); color: var(--ink); }

/* Chip rendered as a real button (opens the enquiry modal) */
.chip--action {
	font-family: var(--f-body);
	border: 1px solid var(--rule);
	cursor: pointer;
	appearance: none;
	transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.chip--action:hover {
	border-color: var(--brass);
	background: var(--brass-bg);
	color: var(--brass-d);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Price */
.price { font-family: var(--f-head); line-height: 1.2; }
.price__label {
	display: block;
	font-family: var(--f-body);
	font-size: var(--t-label);
	color: var(--muted);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.price__value { font-size: var(--t-h3); font-weight: 600; color: var(--ink); letter-spacing: -.02em; }

/* Stars */
.stars { display: inline-flex; gap: 3px; color: var(--brass); }
.stars .ico { fill: currentColor; stroke: none; }


/*--------------------------------------------------------------
6.0 Forms
--------------------------------------------------------------*/
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], input[type="date"], input[type="search"], input[type="password"],
select, textarea {
	width: 100%;
	font-family: var(--f-body);
	font-size: var(--t-sm);
	color: var(--ink);
	background: var(--canvas);
	border: 1px solid var(--rule);
	border-radius: var(--r-card);
	padding: 12px 15px;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
	appearance: none;
}
select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237d8a85' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 42px;
}
/* An explicit height is required: Contact Form 7 emits rows="10", which
   otherwise renders a ~270px box that alone overflows the hero. */
textarea { height: 96px; min-height: 96px; resize: vertical; line-height: 1.6; }

input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--forest-m);
	box-shadow: 0 0 0 3px rgba(45, 87, 68, .1);
}
::placeholder { color: var(--faint); opacity: 1; }

label {
	display: block;
	font-size: var(--t-xs);
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: .01em;
}

input[type="submit"], button[type="submit"], .wpcf7-submit {
	width: 100%;
	font-family: var(--f-body);
	font-size: var(--t-sm);
	font-weight: 600;
	color: #fff;
	background: var(--forest);
	border: 0;
	border-radius: var(--r-pill);
	padding: 14px 28px;
	cursor: pointer;
	transition: background .22s var(--ease);
}
input[type="submit"]:hover, button[type="submit"]:hover, .wpcf7-submit:hover { background: var(--forest-d); }

/* Contact Form 7 */
.wpcf7 { margin: 0; }
.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	border-width: 1px;
	border-radius: var(--r-card);
	font-size: var(--t-xs);
	line-height: 1.5;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--moss); background: rgba(74,122,99,.07); color: var(--forest); }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: var(--rose); background: rgba(180,69,63,.06); color: var(--rose); }
.wpcf7-not-valid-tip { font-size: var(--t-label); color: var(--rose); margin-top: 6px; }
.wpcf7 p { margin-bottom: 12px; }
.wpcf7 p:last-of-type { margin-bottom: 0; }
.wpcf7-spinner { margin: 0 auto; display: block; }

/* Search form */
.search-form { display: flex; gap: 10px; }
.search-form .search-field { border-radius: var(--r-pill); padding-inline: 22px; }
.search-form .search-submit { width: auto; flex: none; padding-inline: 26px; }


/*--------------------------------------------------------------
7.0 Header & navigation
--------------------------------------------------------------*/
.topbar {
	background: var(--forest-d);
	color: #9fb3ab;
	font-size: var(--t-xs);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 44px;
	flex-wrap: wrap;
}
.topbar a { color: #d3e0da; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--brass-l); }
.topbar__contact { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.topbar__note { letter-spacing: .03em; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255,255,255,.92);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--rule); box-shadow: var(--shadow-sm); }

/* The header may run wider than the content shell — a ten-item menu needs
   the room, and on large screens that means nothing has to be hidden. */
.masthead {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 34px);
	min-height: 72px;
	max-width: 1400px;
}

.brand { flex: none; display: inline-flex; align-items: center; }
.brand img { max-height: 56px; width: auto; }
.brand__text {
	font-family: var(--f-head);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--forest);
	line-height: 1.2;
	letter-spacing: -.026em;
}
.brand__text small {
	display: block;
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 500;
	color: var(--muted);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-top: 3px;
}

/* min-width:0 lets the nav shrink inside the flex masthead instead of
   pushing past the shell; the overflow menu below absorbs what doesn't fit. */
.primary-nav {
	flex: 1 1 auto;
	min-width: 0;
	margin-inline: auto;
}
.primary-nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Wraps by default so the menu degrades safely without JavaScript;
	   the overflow script switches this to a single nowrap row. */
	flex-wrap: wrap;
	gap: 2px;
}
.primary-nav.is-managed > ul { flex-wrap: nowrap; }
.primary-nav li { position: relative; }
.primary-nav a {
	display: block;
	font-size: .875rem;
	font-weight: 500;
	color: var(--ink);
	padding: 10px 11px;
	border-radius: var(--r-sm);
	white-space: nowrap;
	transition: color .2s var(--ease);
}
.primary-nav > ul > li > a { position: relative; }
.primary-nav > ul > li > a::after {
	content: "";
	position: absolute;
	left: 11px; right: 11px; bottom: 2px;
	height: 1px;
	background: var(--brass);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .28s var(--ease);
}
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li.current-menu-item > a::after,
.primary-nav > ul > li.current_page_item > a::after,
.primary-nav > ul > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.primary-nav a:hover { color: var(--forest); }

/* Dropdowns */
.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 250px;
	list-style: none;
	margin: 0;
	background: var(--canvas);
	border: 1px solid var(--rule);
	border-radius: var(--r-card);
	padding: 10px;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu,
.primary-nav .nav-more.is-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu a { padding: 11px 14px; font-weight: 400; white-space: normal; color: var(--body); }
.primary-nav .sub-menu a:hover { background: var(--paper); color: var(--forest); }
.primary-nav .sub-menu .sub-menu { top: -11px; left: calc(100% + 8px); }
.primary-nav .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 1px; top: 50%;
	width: 5px; height: 5px;
	margin-top: -4px;
	border-right: 1.4px solid var(--faint);
	border-bottom: 1.4px solid var(--faint);
	transform: rotate(45deg);
}
.primary-nav > ul > li.menu-item-has-children > a { padding-right: 20px; }

/* Overflow ("More") item — JS moves menu items that don't fit into this. */
.nav-more { position: relative; flex: none; }
.nav-more[hidden] { display: none; }
.nav-more__btn {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--f-body);
	font-size: .875rem;
	font-weight: 500;
	color: var(--ink);
	background: none;
	border: 0;
	padding: 10px 11px;
	border-radius: var(--r-sm);
	white-space: nowrap;
	cursor: pointer;
	transition: color .2s var(--ease);
}
.nav-more__btn:hover { color: var(--forest); }
.nav-more__btn .ico { transition: transform .22s var(--ease); }
.nav-more:hover .nav-more__btn .ico,
.nav-more:focus-within .nav-more__btn .ico { transform: rotate(180deg); }

.nav-more > .sub-menu { left: auto; right: 0; min-width: 230px; }

/* Items moved into the overflow panel show their own children inline
   rather than flying out sideways off the screen edge. */
.nav-more .sub-menu .sub-menu {
	position: static;
	display: block;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: 0;
	border-left: 1px solid var(--rule);
	border-radius: 0;
	margin: 2px 0 6px 14px;
	padding: 0 0 0 8px;
	min-width: 0;
}
.nav-more .sub-menu .sub-menu a { font-size: var(--t-xs); color: var(--muted); }

/* Drawer chrome — mobile only, hidden on desktop */
.drawer-head, .drawer-foot { display: none; }

.masthead__actions { flex: none; display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none;
	flex: none;
	width: 46px; height: 46px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--rule);
	border-radius: var(--r-pill);
	cursor: pointer;
}
.nav-toggle span { display: block; position: relative; width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: background .2s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after {
	content: ""; position: absolute; left: 0;
	width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px;
	transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.nav-scrim {
	position: fixed; inset: 0;
	background: rgba(20, 26, 23, .45);
	opacity: 0; visibility: hidden;
	transition: opacity .3s var(--ease), visibility .3s;
	z-index: 940;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* The drawer carries its own call-to-action, so the sticky bar and the
   floating button would only compete with it while it is open. */
body.nav-open .actionbar,
body.nav-open .wa-float {
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s var(--ease), visibility .2s;
}


/*--------------------------------------------------------------
8.0 Hero & page banner
--------------------------------------------------------------*/
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(64vh, 560px);
	background: var(--forest-d);
	overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(97deg, rgba(14,36,28,.90) 0%, rgba(14,36,28,.66) 42%, rgba(14,36,28,.30) 78%, rgba(14,36,28,.42) 100%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(30px, 3vw, 46px); }
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	gap: clamp(40px, 6vw, 88px);
	align-items: center;
}

.hero__title {
	font-size: var(--t-display);
	line-height: 1.16;
	letter-spacing: .004em;
	color: #fff;
	margin: 0 0 18px;
	max-width: 16ch;
	font-weight: 500;
}
.hero__title em { font-style: normal; color: var(--brass-l); }
.hero__text {
	font-size: clamp(1.0625rem, 1rem + .35vw, 1.2rem);
	line-height: 1.7;
	color: #bccdc5;
	max-width: 50ch;
	margin-bottom: 26px;
}
.hero .eyebrow { color: var(--brass-l); }
.hero .eyebrow::before { background: var(--brass-l); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: clamp(24px, 2.6vw, 34px); }

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(22px, 3vw, 40px);
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stat strong {
	display: block;
	font-family: var(--f-head);
	font-size: 1.35rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -.02em;
	margin-bottom: 5px;
}
.hero__stat span {
	font-size: var(--t-label);
	color: #93a9a1;
	font-weight: 500;
	letter-spacing: .07em;
	text-transform: uppercase;
}

/* Enquiry card floating in the hero */
.hero-form {
	background: var(--canvas);
	border-radius: var(--r-lg);
	padding: clamp(20px, 1.8vw, 28px);
	box-shadow: var(--shadow-lg);
}
.hero-form__title { font-size: var(--t-h3); margin: 0 0 8px; }
.hero-form__sub { font-size: var(--t-sm); color: var(--muted); margin: 0 0 18px; }

/* Compact field sizing so the whole hero fits one screen.
   Scoped to the hero only — the contact page keeps roomier fields. */
.hero-form .hero-form__title { margin-bottom: 5px; }
.hero-form .hero-form__sub { font-size: var(--t-xs); margin-bottom: 14px; }
.hero-form .wpcf7 p { margin-bottom: 8px; }
.hero-form label { font-size: var(--t-label); margin-bottom: 4px; }
.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form input[type="url"],
.hero-form input[type="number"],
.hero-form input[type="date"],
.hero-form select { padding: 10px 14px; }
.hero-form textarea { height: 72px; min-height: 72px; }
.hero-form input[type="submit"],
.hero-form button[type="submit"],
.hero-form .wpcf7-submit { padding: 12px 26px; margin-top: 2px; }
.hero-form .wpcf7 form .wpcf7-response-output { margin-top: 10px; padding: 8px 12px; }

/* Inner page banner */
.page-banner {
	position: relative;
	background: var(--forest);
	padding-block: clamp(30px, 3.2vw, 50px);
	overflow: hidden;
}
.page-banner::after {
	content: "";
	position: absolute;
	right: -6%; top: -60%;
	width: 46%; aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(176,133,66,.16) 0%, transparent 66%);
	pointer-events: none;
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner__title { color: #fff; font-size: var(--t-h1); margin: 12px 0 0; max-width: 24ch; line-height: 1.2; }
.page-banner__sub { color: #b0c3bb; margin: 12px 0 0; max-width: 58ch; font-size: var(--t-body); }

.breadcrumbs { font-size: var(--t-label); color: #8ba299; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { color: #b8cac2; }
.breadcrumbs a:hover { color: var(--brass-l); }
.breadcrumbs span[aria-hidden] { margin-inline: 10px; opacity: .5; }


/*--------------------------------------------------------------
9.0 Cards
--------------------------------------------------------------*/
.card {
	display: flex;
	flex-direction: column;
	background: var(--canvas);
	border: 1px solid var(--rule);
	border-radius: var(--r-card);
	overflow: hidden;
	transition: border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}
.card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }

.card__media { position: relative; display: block; overflow: hidden; background: var(--rule-2); }
.card__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform .7s var(--ease);
}
.card:hover .card__media img { transform: scale(1.045); }
.card__badge { position: absolute; top: 16px; left: 16px; z-index: 2; }

.card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: clamp(16px, 1.4vw, 22px);
	gap: 10px;
}
/* Tour, hotel and post card titles use the display face, matching headings. */
.card__title {
	font-family: var(--f-display);
	font-size: var(--t-h3);
	font-weight: 400;
	margin: 0;
	line-height: 1.38;
	letter-spacing: .004em;
}
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--forest-m); }
.card__meta {
	font-size: var(--t-label);
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	letter-spacing: .05em;
	text-transform: uppercase;
	font-weight: 500;
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__excerpt { font-size: var(--t-sm); color: var(--body); margin: 0; line-height: 1.68; }
.card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid var(--rule);
}

/* Portrait tile with overlaid text */
.tile {
	position: relative;
	display: block;
	border-radius: var(--r-card);
	overflow: hidden;
	background: var(--forest-d);
	aspect-ratio: 3 / 4;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(14,36,28,.86) 0%, rgba(14,36,28,.18) 52%, transparent 78%);
}
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(20px, 2vw, 28px); }
/* Flower tiles use the display face too. */
/* These are spans, so they need an explicit block display — otherwise the
   title and the meta label run together on one line and wrap awkwardly. */
.tile__title {
	display: block;
	font-family: var(--f-display);
	color: #fff;
	font-size: var(--t-h4);
	font-weight: 400;
	margin: 0 0 5px;
	line-height: 1.34;
	letter-spacing: .004em;
}
.tile__meta { display: block; color: #a9bfb6; font-size: var(--t-label); letter-spacing: .07em; text-transform: uppercase; font-weight: 500; }
.tile--wide { aspect-ratio: 4 / 3; }

/* Feature — no box, just an icon and a hairline */
.feature { padding-top: 22px; border-top: 1px solid var(--rule); }
.feature__icon { color: var(--brass); margin-bottom: 13px; }
.feature__title { font-size: var(--t-h4); font-weight: 600; margin: 0 0 10px; color: var(--ink); }
.feature__text { font-size: var(--t-sm); color: var(--body); margin: 0; line-height: 1.68; }

/* Boxed feature, used where a link target is needed */
.feature--boxed {
	padding: clamp(20px, 1.8vw, 26px);
	border: 1px solid var(--rule);
	border-radius: var(--r-card);
	display: block;
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.feature--boxed:hover { border-color: var(--brass-l); background: var(--brass-bg); }

/* Testimonial */
.quote {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 22px;
	border-top: 1px solid var(--rule);
	height: 100%;
}
.quote__text {
	font-family: var(--f-head);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--ink);
	margin: 0;
	flex: 1;
	font-weight: 500;
	letter-spacing: -.012em;
}
.quote__by { display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; background: var(--sand); }
.quote__name { font-weight: 600; font-size: var(--t-sm); color: var(--ink); }
.quote__role { font-size: var(--t-label); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

/* Compact rail row */
.mini { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.mini:first-child { padding-top: 0; }
.mini:last-child { border-bottom: 0; padding-bottom: 0; }
.mini__thumb { flex: none; width: 74px; height: 64px; border-radius: var(--r-sm); object-fit: cover; background: var(--rule-2); }
.mini__title { font-size: var(--t-sm); font-weight: 600; line-height: 1.45; margin: 0 0 5px; font-family: var(--f-body); }
.mini__title a { color: var(--ink); }
.mini__title a:hover { color: var(--forest-m); }
.mini__meta { font-size: var(--t-label); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }

/* Mosaic — an uneven editorial grid.
   A repeating 8-cell rhythm gives varied sizes without any JavaScript;
   `dense` packing backfills the gaps those spans leave behind. */
.mosaic {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: clamp(150px, 14vw, 200px);
	grid-auto-flow: dense;
	gap: var(--gap);
}

.mosaic > * { grid-column: span 1; grid-row: span 1; }

/* Every 8th tile leads as a large square, with a tall one mid-run. */
.mosaic > *:nth-child(8n + 1) { grid-column: span 2; grid-row: span 2; }
.mosaic > *:nth-child(8n + 6) { grid-row: span 2; }

/* Tiles fill their cell rather than holding a fixed ratio. */
.mosaic .tile { aspect-ratio: auto; height: 100%; }
.mosaic .tile img { height: 100%; }

/* Smaller cells need smaller type. The repeated "valley bloom" label is
   noise at this size, so it is kept only on the feature tiles. */
.mosaic .tile__title { font-size: var(--t-sm); }
.mosaic .tile:not(.tile--feature) .tile__meta { display: none; }
.mosaic .tile--feature .tile__title { font-size: var(--t-h3); }
.mosaic .tile--feature .tile__meta { font-size: var(--t-label); }
.mosaic .tile__body { padding: clamp(14px, 1.4vw, 22px); }

/* Horizontal scroller */
.scroller {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(248px, 1fr);
	gap: var(--gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	margin-inline: calc(var(--gutter) * -1);
	padding-inline: var(--gutter);
	scrollbar-width: thin;
}
.scroller > * { scroll-snap-align: start; }
.scroller::-webkit-scrollbar { height: 4px; }
.scroller::-webkit-scrollbar-track { background: var(--rule-2); border-radius: var(--r-pill); }
.scroller::-webkit-scrollbar-thumb { background: var(--sand); border-radius: var(--r-pill); }

/* Card slider — fixed-width cards so the next one peeks in, signalling
   that the row scrolls. The arrows drive it; the scrollbar is hidden. */
.scroller--cards {
	grid-auto-columns: clamp(230px, 23vw, 310px);
	scroll-behavior: smooth;
	scrollbar-width: none;
	/* No edge bleed here: the inherited padding-inline made scrollLeft rest
	   at 40 rather than 0, so the "at the start" check never matched and the
	   previous arrow could never disable. */
	margin-inline: 0;
	padding-inline: 0;
	padding-bottom: 4px;
}
.scroller--cards::-webkit-scrollbar { display: none; }

/* A slider placed inside an existing .shell column (listing templates)
   rather than as its own full-width band. */
.slider-block { display: block; }
.slider-block .section-head { margin-bottom: var(--stack); }

.tile--pkg { aspect-ratio: 4 / 3; }
.tile--pkg::after {
	background: linear-gradient(to top, rgba(14,36,28,.92) 0%, rgba(14,36,28,.42) 46%, rgba(14,36,28,.06) 100%);
}
.tile--pkg .tile__title { font-size: var(--t-h4); line-height: 1.3; }
.tile--pkg .tile__meta { color: var(--brass-l); }


/*--------------------------------------------------------------
10.0 Sections
--------------------------------------------------------------*/
/* Quick-link row */
.typerow { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--gap); }
.typerow__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 15px 20px;
	background: var(--canvas);
	border: 1px solid var(--rule);
	border-radius: var(--r-card);
	font-size: var(--t-sm);
	font-weight: 600;
	color: var(--ink);
	transition: border-color .25s var(--ease), background .25s var(--ease);
}
.typerow__item:hover { border-color: var(--brass-l); background: var(--brass-bg); color: var(--ink); }
.typerow__ico {
	width: 44px; height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
	background: var(--cream);
	display: grid; place-items: center;
	color: var(--brass-d);
}

/* CTA band */
.cta-band {
	background: var(--forest);
	border-radius: var(--r-lg);
	padding: clamp(26px, 3vw, 44px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(28px, 4vw, 56px);
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.cta-band::after {
	content: "";
	position: absolute;
	left: -8%; bottom: -120%;
	width: 44%; aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(176,133,66,.18) 0%, transparent 68%);
	pointer-events: none;
}
.cta-band__text { position: relative; z-index: 2; max-width: 46ch; }
.cta-band__title { color: #fff; font-size: var(--t-h2); margin: 0 0 10px; }
.cta-band__sub { color: #b0c3bb; margin: 0; font-size: var(--t-body); }
.cta-band__actions { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.gallery-grid a { display: block; border-radius: var(--r-card); overflow: hidden; }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.06); }

/* Accordion */
.acc { border-bottom: 1px solid var(--rule); }
.acc:first-of-type { border-top: 1px solid var(--rule); }
.acc__head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
	font-family: var(--f-head);
	font-size: var(--t-h4);
	font-weight: 600;
	color: var(--ink);
	background: none;
	border: 0;
	padding: 17px 0;
	cursor: pointer;
	transition: color .2s var(--ease);
}
.acc__head:hover { color: var(--forest-m); }
.acc__head::after {
	content: "";
	flex: none;
	width: 11px; height: 11px;
	border-right: 1.5px solid var(--muted);
	border-bottom: 1.5px solid var(--muted);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .28s var(--ease);
}
.acc.is-open .acc__head::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc__panel { display: none; padding: 0 0 22px; max-width: 72ch; }
.acc.is-open .acc__panel { display: block; }

/* Itinerary — day-by-day accordion on a timeline rail */
.itin-wrap { margin-top: 4px; }

.itin-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--rule);
}
.itin-bar__toggle {
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--forest);
	background: none;
	border: 0;
	padding: 4px 0;
	cursor: pointer;
	border-bottom: 1px solid var(--rule);
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.itin-bar__toggle:hover { color: var(--brass-d); border-color: var(--brass); }

.itin { list-style: none; margin: 0; padding: 0; position: relative; }

/* Vertical rail joining the day markers */
.itin::before {
	content: "";
	position: absolute;
	left: 17px; top: 26px; bottom: 26px;
	width: 1px;
	background: var(--rule);
}

.itin__item { border: 0; position: relative; }
.itin__item:first-of-type { border-top: 0; }

.itin .acc__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	padding: 14px 0;
	text-align: left;
	background: none;
	border: 0;
	cursor: pointer;
}
.itin .acc__head::after { display: none; }

.itin__badge {
	position: relative;
	z-index: 2;
	flex: none;
	width: 35px; height: 35px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--canvas);
	border: 1px solid var(--rule);
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--muted);
	transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.itin__item.is-open .itin__badge,
.itin .acc__head:hover .itin__badge {
	background: var(--forest);
	border-color: var(--forest);
	color: #fff;
}

.itin__heading { flex: 1; min-width: 0; padding-top: 2px; }
.itin__label {
	display: block;
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
	color: var(--brass-d);
	margin-bottom: 3px;
}
.itin__route {
	display: block;
	font-family: var(--f-head);
	font-size: var(--t-h4);
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink);
	letter-spacing: -.01em;
}
.itin .acc__head:hover .itin__route { color: var(--forest-m); }

.itin__chevron {
	flex: none;
	margin-top: 6px;
	color: var(--faint);
	transition: transform .28s var(--ease), color .22s var(--ease);
}
.itin__item.is-open .itin__chevron { transform: rotate(180deg); color: var(--forest); }

.itin .acc__panel { padding: 0 0 22px 51px; }

.itin__meta {
	display: inline-block;
	font-size: var(--t-xs);
	font-weight: 500;
	color: var(--bark);
	background: var(--brass-bg);
	border-radius: var(--r-sm);
	padding: 8px 14px;
	margin: 0 0 14px;
	line-height: 1.55;
}

.itin .prose { font-size: var(--t-sm); }
.itin .prose p { margin-bottom: .9em; }

@media (max-width: 620px) {
	.itin::before { left: 14px; }
	.itin__badge { width: 29px; height: 29px; }
	.itin .acc__head { gap: 12px; }
	.itin .acc__panel { padding-left: 0; }
	.itin__route { font-size: var(--t-sm); }
}

/* Tabs */
.tabs {
	display: flex;
	gap: clamp(20px, 3vw, 40px);
	flex-wrap: wrap;
	margin-bottom: var(--stack);
	border-bottom: 1px solid var(--rule);
}
.tabs__btn {
	position: relative;
	font-family: var(--f-body);
	font-size: var(--t-sm);
	font-weight: 600;
	color: var(--muted);
	background: none;
	border: 0;
	padding: 0 0 13px;
	cursor: pointer;
	transition: color .2s var(--ease);
}
.tabs__btn::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	height: 2px;
	background: var(--brass);
	transform: scaleX(0);
	transition: transform .28s var(--ease);
}
.tabs__btn:hover { color: var(--ink); }
.tabs__btn.is-active { color: var(--ink); }
.tabs__btn.is-active::after { transform: scaleX(1); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; }


/*--------------------------------------------------------------
11.0 Rail & widgets
--------------------------------------------------------------*/
.rail { display: flex; flex-direction: column; gap: var(--stack); position: sticky; top: 96px; }

.rail__block { padding-top: 22px; border-top: 1px solid var(--rule); }
.rail__block:first-child { padding-top: 0; border-top: 0; }

.rail__block--card {
	padding: clamp(19px, 1.7vw, 25px);
	border: 1px solid var(--rule);
	border-radius: var(--r-lg);
	background: var(--canvas);
}
.rail__block--cream { background: var(--cream); border-color: transparent; }
.rail__block--forest { background: var(--forest); border-color: transparent; color: #b6c8c0; }
.rail__block--forest .rail__title { color: #fff; }
.rail__block--forest .rail__title::after { background: rgba(255,255,255,.16); }

.rail__title {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: var(--t-label);
	font-family: var(--f-body);
	font-weight: 600;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 16px;
}
.rail__title::after { content: ""; flex: 1; height: 1px; background: var(--rule); }

.rail__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: var(--t-xs); font-weight: 600; }

/* Fixed-departure board — a scannable announcement rather than a list of
   near-identical sentences. */
.deps__season {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 12px;
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--brass-d);
}
.deps__count { color: var(--muted); font-weight: 500; letter-spacing: .04em; }

.deps__list { list-style: none; margin: 0; padding: 0; }
.deps__item { border-bottom: 1px solid var(--rule); }
.deps__item:last-child { border-bottom: 0; }

.deps__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	color: inherit;
	transition: background .18s var(--ease);
}
a.deps__row:hover { background: var(--brass-bg); }
a.deps__row:hover .deps__weekday { color: var(--brass-d); }

.deps__date {
	flex: none;
	width: 42px;
	padding: 5px 0 6px;
	text-align: center;
	border-radius: var(--r-sm);
	background: var(--cream);
	line-height: 1;
}
.deps__mon {
	display: block;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--brass-d);
	margin-bottom: 3px;
}
.deps__day {
	display: block;
	font-family: var(--f-head);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
}

.deps__info { flex: 1; min-width: 0; line-height: 1.35; }
.deps__weekday {
	display: block;
	font-size: var(--t-sm);
	font-weight: 600;
	color: var(--ink);
	transition: color .18s var(--ease);
}
.deps__full { display: block; font-size: var(--t-label); color: var(--muted); }

.deps__status {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}
.deps__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex: none;
}
.deps__status--open    { background: rgba(74, 122, 99, .14); color: #2f6b52; }
.deps__status--closed  { background: rgba(180, 69, 63, .1);  color: var(--rose); }
.deps__status--neutral { background: var(--rule-2);          color: var(--muted); }

.deps__cta { margin-top: 16px; }

/* On a dark rail block the board inverts */
.rail__block--forest .deps__date { background: rgba(255, 255, 255, .1); }
.rail__block--forest .deps__day,
.rail__block--forest .deps__weekday { color: #fff; }
.rail__block--forest .deps__full { color: #93a9a1; }

@media (max-width: 400px) {
	.deps__full { display: none; }
	.deps__row { gap: 10px; }
}

/* Widget defaults */
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 11px 0; border-bottom: 1px solid var(--rule); font-size: var(--t-sm); }
.widget li:last-child { border-bottom: 0; }
.widget-title {
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 18px;
}
.widget table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.widget table td, .widget table th { padding: 11px 12px; border-bottom: 1px solid var(--rule); text-align: left; }
.widget table th { font-weight: 600; color: var(--ink); background: var(--paper); font-size: var(--t-xs); letter-spacing: .04em; text-transform: uppercase; }


/*--------------------------------------------------------------
12.0 Prose
--------------------------------------------------------------*/
.prose { font-size: var(--t-body); line-height: var(--lh-body); color: var(--body); max-width: 72ch; }
.prose--wide { max-width: none; }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }

.prose h2 { font-size: var(--t-h2); margin: 1.5em 0 .5em; }
.prose h3 { font-size: var(--t-h3); margin: 1.35em 0 .45em; }
.prose h4 { font-size: var(--t-h4); margin: 1.25em 0 .4em; }
.prose p { margin: 0 0 1.3em; }

.prose a { color: var(--forest-m); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; text-decoration-color: var(--brass-l); }
.prose a:hover { color: var(--brass-d); text-decoration-color: var(--brass); }

.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 24px; }
.prose li { margin-bottom: 11px; padding-left: 4px; }
.prose ul li::marker { color: var(--brass); }
.prose ol li::marker { color: var(--muted); font-weight: 600; }

.prose img { border-radius: var(--r-card); margin-block: 1.6em; }
.prose figure { margin: 2em 0; }
.prose figcaption { font-size: var(--t-xs); color: var(--muted); text-align: center; margin-top: 12px; }

.prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 2em 0;
	font-size: var(--t-sm);
}
.prose th, .prose td { padding: 15px 18px; border-bottom: 1px solid var(--rule); text-align: left; }
.prose th { font-weight: 600; color: var(--ink); border-bottom-width: 2px; border-bottom-color: var(--ink); font-size: var(--t-xs); letter-spacing: .05em; text-transform: uppercase; }
.prose tbody tr:last-child td { border-bottom: 0; }

.table-scroll { overflow-x: auto; margin: 2em 0; }
.table-scroll table { margin: 0; }

/* WP alignment */
.alignleft  { float: left;  margin: .4em 2em 1.4em 0; }
.alignright { float: right; margin: .4em 0 1.4em 2em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide, .alignfull { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--t-xs); color: var(--muted); }

/* Post meta */
.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
	font-size: var(--t-label);
	color: var(--muted);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding-bottom: 17px;
	margin-bottom: var(--stack);
	border-bottom: 1px solid var(--rule);
}
.post-meta span { display: inline-flex; align-items: center; gap: 8px; }

.post-hero { margin-bottom: var(--stack); }
.post-hero img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 16 / 9; object-fit: cover; }


/*--------------------------------------------------------------
13.0 Comments
--------------------------------------------------------------*/
.comments-area { margin-top: var(--section-s); padding-top: var(--stack); border-top: 1px solid var(--rule); }
.comments-title, .comment-reply-title { font-size: var(--t-h3); margin-bottom: var(--stack); }
.comment-list { list-style: none; margin: 0 0 var(--stack); padding: 0; }
.comment-list ol { list-style: none; padding-left: clamp(20px, 3vw, 40px); }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.comment-author { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: var(--t-sm); color: var(--ink); }
.comment-author img { border-radius: 50%; }
.comment-metadata { font-size: var(--t-label); color: var(--muted); margin: 8px 0 12px; letter-spacing: .05em; text-transform: uppercase; }
.comment-content { font-size: var(--t-sm); }
.reply a { font-size: var(--t-label); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.comment-form label { margin-top: 14px; }


/*--------------------------------------------------------------
14.0 Pagination
--------------------------------------------------------------*/
.pager { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: var(--stack); }
.pager .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px; height: 44px;
	padding-inline: 16px;
	border-radius: var(--r-pill);
	border: 1px solid var(--rule);
	font-size: var(--t-sm);
	font-weight: 600;
	color: var(--ink);
	background: var(--canvas);
	transition: all .22s var(--ease);
}
.pager .page-numbers:hover { border-color: var(--ink); }
.pager .page-numbers.current { background: var(--forest); border-color: var(--forest); color: #fff; }
.pager .dots { border-color: transparent; }


/*--------------------------------------------------------------
15.0 Footer
--------------------------------------------------------------*/
.site-footer { background: var(--forest-d); color: #93a9a1; font-size: var(--t-sm); }
.site-footer a { color: #c3d4cd; }
.site-footer a:hover { color: var(--brass-l); }

.footer-top { padding-block: clamp(36px, 3.4vw, 56px); }
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: clamp(32px, 4vw, 64px);
}

.footer-col__title {
	font-family: var(--f-body);
	font-size: var(--t-label);
	font-weight: 600;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-col p { margin-bottom: 14px; line-height: 1.7; }

.footer-brand__mark { margin-bottom: 16px; display: inline-block; }
.footer-brand__mark img { max-height: 58px; }
.footer-brand__name { font-family: var(--f-head); font-size: 1.25rem; font-weight: 600; color: #fff; letter-spacing: -.024em; }

.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 12px; }
.footer-contact .ico { color: var(--brass-l); }

.footer-rating {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.1);
}
.footer-rating__score { font-family: var(--f-head); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.03em; }
.footer-rating__meta { font-size: var(--t-label); letter-spacing: .05em; text-transform: uppercase; line-height: 1.6; }
.footer-rating .stars { margin-bottom: 4px; }

.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
	width: 42px; height: 42px;
	display: grid; place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.16);
	color: #c3d4cd;
	transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 18px; font-size: var(--t-xs); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }

/* Deferred third-party embed — reserves height so the placeholder has an
   area to observe, and so nothing shifts when the widget finally renders. */
.lazy-embed {
	min-height: 130px;
	display: block;
}

/* Sticky mobile action bar */
.actionbar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 930;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--rule);
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	gap: 12px;
}
.actionbar .btn { flex: 1; padding-block: 15px; }

/* Floating WhatsApp */
.wa-float {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 920;
	width: 54px; height: 54px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--forest);
	color: #fff;
	box-shadow: var(--shadow-md);
	transition: transform .25s var(--ease), background .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); background: var(--forest-d); color: #fff; }


/*--------------------------------------------------------------
16.0 Overlays
--------------------------------------------------------------*/
.vofm-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.vofm-modal[hidden] { display: none; }
.vofm-modal__scrim { position: absolute; inset: 0; background: rgba(14, 36, 28, .62); backdrop-filter: blur(3px); }
.vofm-modal__panel {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 464px;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--canvas);
	border-radius: var(--r-lg);
	padding: clamp(30px, 3vw, 44px);
	box-shadow: var(--shadow-lg);
	animation: vofm-pop .26s var(--ease);
}
@keyframes vofm-pop { from { opacity: 0; transform: translateY(14px); } }
.vofm-modal__close {
	position: absolute;
	top: 18px; right: 18px;
	width: 36px; height: 36px;
	display: grid; place-items: center;
	color: var(--muted);
	background: none;
	border: 1px solid var(--rule);
	border-radius: 50%;
	cursor: pointer;
	transition: border-color .2s var(--ease), color .2s var(--ease);
}
.vofm-modal__close:hover { border-color: var(--ink); color: var(--ink); }

/* Hero slider */
.slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.slider__slide.is-active { opacity: 1; }
.slider__slide:first-child { position: relative; }
.slider__dots { position: absolute; left: 50%; bottom: 28px; z-index: 5; transform: translateX(-50%); display: flex; gap: 10px; }
.slider__dot {
	width: 8px; height: 8px;
	padding: 0; border: 0;
	border-radius: var(--r-pill);
	background: rgba(255,255,255,.4);
	cursor: pointer;
	transition: width .3s var(--ease), background .3s var(--ease);
}
.slider__dot.is-active { width: 30px; background: var(--brass-l); }


/*--------------------------------------------------------------
17.0 Utilities
--------------------------------------------------------------*/
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: absolute;
	left: -9999px; top: 0;
	z-index: 999;
	background: var(--forest);
	color: #fff;
	padding: 14px 24px;
	font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-stack { margin-top: var(--stack); }
.u-stack-lg { margin-top: var(--section-s); }
.u-hide { display: none !important; }
.u-hide-sm { display: inline-flex; }
.u-flow > * + * { margin-top: 14px; }
.u-flow p:last-child { margin-bottom: 0; }
.u-maxw { max-width: 62ch; }

/* Read more / read less
   The wrapper is emitted server-side when content runs past two paragraphs;
   JS adds .is-clamped only when the block genuinely overflows. */
.rm { position: relative; }
.rm__body { position: relative; }

.rm.is-clamped .rm__body {
	max-height: 15.5em;
	overflow: hidden;
}
.rm.is-clamped .rm__body::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 6em;
	background: linear-gradient(to bottom, transparent, var(--rm-fade) 88%);
	pointer-events: none;
}
.rm.is-open .rm__body { max-height: none; }
.rm.is-open .rm__body::after { display: none; }

.rm__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 10px 20px 10px 22px;
	font-family: var(--f-body);
	font-size: var(--t-xs);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--forest);
	background: transparent;
	border: 1px solid var(--rule);
	border-radius: var(--r-pill);
	cursor: pointer;
	transition: border-color .22s var(--ease), color .22s var(--ease), background .22s var(--ease);
}
.rm__toggle:hover { border-color: var(--brass); color: var(--brass-d); background: var(--brass-bg); }
.rm__toggle[hidden] { display: none; }
.rm__chevron { transform: rotate(90deg); transition: transform .28s var(--ease); }
.rm.is-open .rm__chevron { transform: rotate(-90deg); }

.section--forest .rm__toggle { color: #fff; border-color: rgba(255,255,255,.3); }
.section--forest .rm__toggle:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }

/* Thank-you confirmation mark */
.thanks-check {
	width: 68px; height: 68px;
	display: grid; place-items: center;
	margin: 0 auto 28px;
	border-radius: 50%;
	background: var(--brass);
	color: #fff;
}

.notice {
	padding: clamp(28px, 3vw, 44px);
	border: 1px solid var(--rule);
	border-radius: var(--r-lg);
	background: var(--paper);
	color: var(--body);
}
.notice h2 { margin-top: 0; }

.embed-responsive { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--r-card); }
.embed-responsive iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}


/*--------------------------------------------------------------
18.0 Responsive
--------------------------------------------------------------*/
@media (max-width: 1180px) {
	.layout { grid-template-columns: minmax(0, 1fr) 310px; }
	.footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
	.footer-col--last { grid-column: 1 / -1; padding-top: 8px; }
	.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
}

@media (max-width: 1000px) {
	.nav-toggle { display: flex; }

	/* backdrop-filter makes an element a containing block for its
	   position:fixed descendants. With it on, the drawer below was being
	   positioned against the 76px header instead of the viewport, so it
	   rendered as a small box showing only its own header. The blur is a
	   desktop nicety; drop it here so the drawer can cover the screen. */
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: var(--canvas);
	}

	.primary-nav {
		position: fixed;
		top: 0; right: 0; bottom: 0;
		width: min(92vw, 360px);
		background: var(--canvas);
		z-index: 950;
		padding: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		/* Hidden while closed so the off-canvas panel contributes nothing to
		   the document's scroll width — parked off-screen it was adding
		   ~360px of horizontal overflow — and so its links stay out of the
		   tab order until the drawer is actually open. */
		visibility: hidden;
		transition: transform .34s var(--ease), visibility .34s;
		margin: 0;
		box-shadow: var(--shadow-lg);
		display: flex;
		flex-direction: column;
	}
	body.nav-open .primary-nav { transform: translateX(0); visibility: visible; }

	/* The header carries its own stacking context (sticky + z-index), so the
	   drawer's z-index is scoped inside it and would paint beneath the scrim.
	   Lift the header above the scrim while the drawer is open. */
	body.nav-open .site-header { z-index: 960; }

	.drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 18px 22px;
		border-bottom: 1px solid var(--rule);
		position: sticky;
		top: 0;
		background: var(--canvas);
		z-index: 2;
	}
	.drawer-close {
		width: 38px; height: 38px;
		display: grid; place-items: center;
		flex: none;
		color: var(--body);
		background: none;
		border: 1px solid var(--rule);
		border-radius: 50%;
		cursor: pointer;
	}
	.drawer-close:hover { border-color: var(--ink); color: var(--ink); }

	.primary-nav > ul {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 6px 22px 22px;
	}
	.primary-nav li { border-bottom: 1px solid var(--rule-2); }
	.primary-nav > ul > li:last-of-type { border-bottom: 0; }
	.primary-nav a { padding: 14px 0; font-size: var(--t-sm); font-weight: 500; }
	.primary-nav > ul > li > a { font-size: var(--t-body); }

	.drawer-foot {
		display: block;
		margin-top: auto;
		padding: 20px 22px calc(20px + env(safe-area-inset-bottom));
		border-top: 1px solid var(--rule);
		background: var(--paper);
	}
	.drawer-foot__call {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		margin-top: 14px;
		font-size: var(--t-sm);
		font-weight: 600;
		color: var(--forest);
	}
	.drawer-foot__call .ico { color: var(--brass-d); }

	/* Belt and braces: if the overflow node ever survives into the drawer,
	   hide only its button and let the trapped items render as normal rows.
	   (display:none here would hide the items too — which was the bug.) */
	.nav-more { display: block; border-bottom: 0; }
	.nav-more__btn { display: none; }
	.nav-more > .sub-menu {
		display: block;
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		padding: 0;
		margin: 0;
		min-width: 0;
	}
	.primary-nav > ul > li > a::after { display: none; }
	.primary-nav .menu-item-has-children > a::before { right: 4px; }
	.primary-nav .sub-menu {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; border-radius: 0;
		padding: 0 0 12px 18px;
		min-width: 0;
		display: none;
	}
	.primary-nav li.is-open > .sub-menu { display: block; }
	.primary-nav .sub-menu li { border-bottom: 0; }
	.primary-nav .sub-menu a { padding: 10px 0; font-size: var(--t-sm); }

	.masthead__actions .btn { display: none; }
	.masthead { min-height: 76px; }

	.layout { grid-template-columns: minmax(0, 1fr); }
	/* Single column — release the explicit desktop placement. */
	.layout > .rail,
	.layout > :not(.rail) { grid-column: 1; grid-row: auto; }
	.rail { position: static; }

	.hero { min-height: 0; }
	.hero__grid { grid-template-columns: minmax(0,1fr); }
	.hero__title { max-width: 18ch; }

	.grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.typerow { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	body { padding-bottom: 78px; }
	.actionbar { display: flex; }
	.wa-float { bottom: 92px; right: 16px; }

	.topbar__note { display: none; }
	.topbar__inner { justify-content: center; min-height: 40px; }
	.u-hide-sm { display: none !important; }

	/* Stack the hero actions rather than squeezing two buttons — a long
	   phone number was being clipped mid-digit. */
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { width: 100%; padding-inline: 20px; }
	.hero__trust { gap: 20px 28px; }
	.hero__stat { flex: 1 1 auto; min-width: 88px; }
	.hero__stat strong { font-size: 1.25rem; }

	/* Long unbroken strings (URLs, species names) must not force overflow.
	   Buttons are excluded: `anywhere` was splitting phone numbers
	   mid-digit ("+91- / 96250 / 35551"). */
	.chip, .card__title, .tile__title, .itin__route, .prose a {
		overflow-wrap: anywhere;
	}
	.btn { overflow-wrap: break-word; }
	.btn--tel { white-space: nowrap; }

	/* Keep Google's floating reCAPTCHA badge from widening the document. */
	.grecaptcha-badge { visibility: hidden; }

	.section-head { flex-direction: column; align-items: flex-start; }
	/* Swipe is the natural gesture here, so drop the arrows and let the
	   cards run a little narrower with a clear peek at the next one. */
	.section-head__actions { width: 100%; }
	.slider-nav { display: none !important; }
	.scroller--cards {
		grid-auto-columns: clamp(200px, 62vw, 250px);
		/* Arrows are hidden here, so restore the edge bleed — cards running
		   to the screen edge reads better on a phone. */
		margin-inline: calc(var(--gutter) * -1);
		padding-inline: var(--gutter);
	}

	.grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
	.typerow { grid-template-columns: minmax(0, 1fr); }
	.gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

	/* Two flowers per row on phones, all cells equal — the desktop spans
	   would otherwise leave one tile stretched across the full width. */
	.mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
		gap: 12px;
	}
	.mosaic > *,
	.mosaic > *:nth-child(8n + 1),
	.mosaic > *:nth-child(8n + 6) { grid-column: span 1; grid-row: span 1; }
	.mosaic .tile { aspect-ratio: 4 / 5; height: auto; }
	.mosaic .tile img { height: 100%; }
	.mosaic .tile--feature .tile__title { font-size: var(--t-sm); }
	.mosaic .tile--feature .tile__meta { font-size: 0.6875rem; }
	.mosaic .tile__body { padding: 12px; }
	.footer-grid { grid-template-columns: minmax(0,1fr); }
	.footer-bottom__inner { flex-direction: column; text-align: center; }

	.cta-band { flex-direction: column; align-items: flex-start; }
	/* Two buttons sharing one row left each about half the width, which was
	   too narrow for the phone number. Stack them full width instead. */
	.cta-band__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.cta-band__actions .btn { width: 100%; }

	.tabs { gap: 22px; overflow-x: auto; flex-wrap: nowrap; }
	.tabs__btn { white-space: nowrap; }

	.alignleft, .alignright { float: none; margin: 1.6em 0; }
}

@media print {
	.site-header, .site-footer, .rail, .actionbar, .wa-float, .cta-band, .topbar, .nav-scrim { display: none !important; }
	body { padding: 0; font-size: 11pt; }
	.layout { grid-template-columns: 1fr; }
	.section { padding-block: 0; }
}
