/* ==========================================================================
   Himalaya Heli — full stylesheet.
   Mobile first: base rules are the phone layout, min-width queries add the
   tablet and desktop layers. Loaded without blocking; critical.css already
   covers the app shell and the hero.
   ========================================================================== */

:root {
	--paper: #ffffff;
	--panel: #f2f4fb;
	--panel-2: #e7ebf7;
	--ink: #140a3a;
	--deep: #16093f;
	--ink-2: #494470;
	--ink-3: #726d94;
	--rule: #d8dcef;
	--rule-soft: #eceffa;
	--accent: #2431b0;
	--accent-ink: #190063;
	--accent-soft: #e9ebfa;
	--gold: #f4b20c;
	--gold-soft: #fdf3dc;
	--hover: #ea580c;
	--hover-soft: #fff4eb;
	--chart: #2563c9;
	--chart-soft: #e8effb;
	--terrain: #b5820a;
	--terrain-soft: #fdf3dc;
	--ok: #1f8a54;
	--ok-soft: #e3f3ea;
	--warn: #b5820a;
	--warn-soft: #fdf3dc;
	--danger: #c2352b;
	--danger-soft: #fbe9e7;
	--wa: #12874a;
	--wa-btn: #12874a;
	--shadow: 0 1px 2px rgba(20, 10, 58, .06), 0 10px 28px -18px rgba(20, 10, 58, .35);
	--sheet-shadow: 0 -4px 24px -14px rgba(20, 10, 58, .5);
	--f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--f-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--f-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
	--wrap: 1220px;
	--gutter: 16px;
	--radius: 5px;
	--appbar-h: 54px;
	--tabbar-h: 58px;
	--safe-b: env(safe-area-inset-bottom, 0px);
	--tap: 44px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--paper: #0b0720;
		--panel: #161036;
		--panel-2: #1e1746;
		--ink: #eceaf8;
		--deep: #120b30;
		--ink-2: #b3aed6;
		--ink-3: #8681ab;
		--rule: #2a2356;
		--rule-soft: #1b1442;
		--accent: #9aa5ff;
		--accent-ink: #bcc4ff;
		--accent-soft: #1c1750;
		--gold: #f6c445;
		--gold-soft: #2a2110;
		--hover: #ff8a3d;
		--hover-soft: #3a220c;
		--chart: #7fa8f0;
		--chart-soft: #141d3c;
		--terrain: #e0ad3f;
		--terrain-soft: #2a2110;
		--ok: #5fc491;
		--ok-soft: #0f2a1e;
		--warn: #e0ad3f;
		--warn-soft: #2a2110;
		--danger: #ef8279;
		--danger-soft: #2e1618;
		--wa: #3ddb7a;
		--wa-btn: #12874a;
		--shadow: 0 1px 2px rgba(0,0,0,.5), 0 12px 30px -18px rgba(0,0,0,.9);
		--sheet-shadow: 0 -4px 24px -14px rgba(0,0,0,.9);
	}
}

/* ------------------------------------------------------------- baseline */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--appbar-h) + 52px); -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--f-body);
	font-size: 16px;
	line-height: 1.55;
	font-synthesis-weight: none;
	-webkit-font-smoothing: antialiased;
	overscroll-behavior-y: none;
	padding-bottom: calc(var(--tabbar-h) + var(--safe-b));
}
body.hh-nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; -webkit-tap-highlight-color: transparent; }
button, a, select, input { touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--chart); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 700; line-height: 1.12; letter-spacing: -.018em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: 1.95rem; font-weight: 800; font-variation-settings: "wdth" 106; letter-spacing: -.028em; }
h2 { font-size: 1.35rem; font-variation-settings: "wdth" 103; }
h3 { font-size: 1.08rem; font-variation-settings: "wdth" 101; }
h4 { font-size: .98rem; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }
blockquote { margin: 1.4rem 0; padding: 0 0 0 18px; border-left: 3px solid var(--accent); color: var(--ink-2); }
code, kbd, pre { font-family: var(--f-mono); font-size: .87em; }
code { background: var(--panel); padding: 1px 5px; border-radius: var(--radius); }
pre { background: var(--panel); padding: 16px; overflow-x: auto; border: 1px solid var(--rule); }
table { border-collapse: collapse; width: 100%; }

.screen-reader-text { border: 0; clip-path: inset(50%); height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; }

/* --------------------------------------------------------------- layout */

.hh-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.hh-wrap--narrow { max-width: 780px; }

.hh-section { padding: 34px 0; }
.hh-section--tight { padding: 24px 0; }
.hh-section--panel { background: var(--panel); border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }

.hh-eyebrow { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--accent); margin: 0 0 10px; }
.hh-hero .hh-hero__eyebrow { color: rgba(255,255,255,.66); }

/* Section head. On a phone it is a label and a heading. From tablet up the
   label moves into a rail on the left, and the rail number is the reading
   order of the page rather than decoration. */
.hh-sechead { margin-bottom: 22px; padding-top: 12px; border-top: 2px solid var(--ink); }
.hh-sechead__rail { font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); line-height: 1.7; margin: 0 0 8px; }
.hh-sechead__rail b { color: var(--accent); font-weight: 600; }
.hh-sechead__body { max-width: 64ch; }
.hh-sechead__title { margin: 0 0 8px; }
.hh-sechead__intro { margin: 0; color: var(--ink-2); font-size: .98rem; }

.hh-note { font-family: var(--f-mono); font-size: 11px; line-height: 1.75; color: var(--ink-3); margin: 14px 0 0; max-width: 80ch; }
.hh-empty { padding: 22px; border: 1px dashed var(--rule); color: var(--ink-2); text-align: center; margin: 0; }
.hh-num { font-family: var(--f-mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hh-lede { font-size: 1.04rem; line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.hh-split { display: grid; gap: 26px; }
.hh-actions { display: grid; gap: 9px; margin-top: 20px; }

/* --------------------------------------------------------------- pills */

.hh-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: 4px 8px; border-radius: var(--radius); border: 1px solid; white-space: nowrap; }
.hh-pill--ok, .hh-pill--clear { background: var(--ok-soft); color: var(--ok); border-color: var(--ok); }
.hh-pill--marginal { background: var(--warn-soft); color: var(--warn); border-color: var(--warn); }
.hh-pill--grounded, .hh-pill--full { background: var(--danger-soft); color: var(--danger); border-color: var(--danger); }
.hh-pill--info { background: var(--chart-soft); color: var(--chart); border-color: var(--chart); }
.hh-pill--accent { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }

.hh-rating { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; text-decoration: none; color: inherit; }
.hh-rating__score { font-weight: 600; font-size: 13px; }
.hh-rating__stars { color: var(--terrain); letter-spacing: 2px; }
.hh-rating__count { opacity: .72; }

/* ======================= ROUTE LIST (app style) ========================
   On a phone each route is a full-bleed row you tap, with the price as the
   loudest thing on it. From desktop the same markup becomes a timetable. */

.hh-timetable { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hh-timetable__head { display: none; }

.hh-trow {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 6px 14px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--rule-soft);
}
.hh-trow:last-child { border-bottom: 0; }
.hh-trow:active { background: var(--panel); }
.hh-trow__link { position: absolute; inset: 0; z-index: 1; }

.hh-trow__route { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.hh-trow__place { min-width: 0; }
.hh-trow__name { display: block; font-family: var(--f-display); font-variation-settings: "wdth" 102; font-weight: 700; font-size: .98rem; line-height: 1.2; }
.hh-trow__alt { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .06em; color: var(--ink-3); margin-top: 2px; }
.hh-trow__arrow { color: var(--accent); font-size: .95rem; flex: none; }

.hh-trow__duration { display: none; }

.hh-trow__times { grid-column: 1 / 2; display: flex; flex-wrap: wrap; gap: 4px; }
.hh-trow__times span { font-family: var(--f-mono); font-size: 10px; font-variant-numeric: tabular-nums; background: var(--chart-soft); color: var(--chart); padding: 2px 5px; border-radius: var(--radius); }

.hh-trow__price { grid-column: 2 / 3; grid-row: 1 / 2; text-align: right; line-height: 1.15; }
.hh-trow__price b { display: block; font-family: var(--f-mono); font-size: 1.12rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.hh-trow__price span { display: block; font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }
.hh-trow__price--private { display: none; }

.hh-trow__go { grid-column: 2 / 3; grid-row: 2 / 3; display: flex; gap: 6px; justify-content: flex-end; position: relative; z-index: 2; }
.hh-trow__flag { position: absolute; top: 4px; left: 0; font-family: var(--f-mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; background: var(--accent); color: #fff; padding: 2px 6px; }
.hh-trow--flagged { padding-top: 26px; }

/* ---------------------------------------------------------- flight strips */

.hh-board { display: flex; flex-direction: column; gap: 6px; }
.hh-strip {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	grid-template-areas: "date body time" "date seats action";
	gap: 8px 12px; align-items: center;
	background: var(--paper); border: 1px solid var(--rule);
	border-left: 3px solid var(--chart); padding: 11px 13px;
}
.hh-strip--full { border-left-color: var(--danger); opacity: .72; }
.hh-strip__date { grid-area: date; text-align: center; border-right: 1px solid var(--rule-soft); padding-right: 10px; }
.hh-strip__day { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.22rem; line-height: 1; font-variant-numeric: tabular-nums; }
.hh-strip__month, .hh-strip__dow { display: block; font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .12em; color: var(--ink-3); }
.hh-strip__month { margin-top: 2px; }
.hh-strip__body { grid-area: body; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hh-strip__route { font-family: var(--f-display); font-variation-settings: "wdth" 100; font-weight: 700; font-size: .93rem; color: var(--ink); text-decoration: none; }
.hh-strip__route span { color: var(--accent); }
.hh-strip__number { font-family: var(--f-mono); font-size: 10px; letter-spacing: .08em; color: var(--ink-3); }
.hh-strip__time { grid-area: time; font-family: var(--f-mono); font-size: .92rem; font-variant-numeric: tabular-nums; text-align: right; }
.hh-strip__seats { grid-area: seats; }
.hh-strip__action { grid-area: action; display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.hh-strip__wa { font-family: var(--f-mono); font-size: 10px; letter-spacing: .06em; color: var(--wa); text-decoration: none; }

/* ----------------------------------------------------------------- table */

.hh-tablewrap { overflow-x: auto; border: 1px solid var(--rule); margin: 0 0 4px; -webkit-overflow-scrolling: touch; }
.hh-table { min-width: 620px; font-family: var(--f-display); font-variation-settings: "wdth" 96; font-size: .86rem; background: var(--paper); }
.hh-table th { font-family: var(--f-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); text-align: left; padding: 10px 13px; background: var(--panel); border-bottom: 1px solid var(--rule); white-space: nowrap; }
.hh-table td { padding: 10px 13px; border-bottom: 1px solid var(--rule-soft); }
.hh-table tbody tr:last-child td { border-bottom: 0; }
.hh-tablelink { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .06em; text-decoration: none; }

/* ============================== ROUTE PAGE ============================= */

.hh-crumbs { padding: 11px 0 0; }
.hh-crumbs ol { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; font-family: var(--f-mono); font-size: 10px; letter-spacing: .05em; }
.hh-crumbs li { margin: 0; color: var(--ink-3); }
.hh-crumbs li + li::before { content: "\203A"; margin-right: 7px; color: var(--rule); }
.hh-crumbs a { color: var(--ink-3); text-decoration: none; }

/* Boarding-pass band */
.hh-pass { background: var(--deep); color: #fff; }
.hh-pass__inner { display: grid; gap: 20px; padding: 20px 0 22px; }
.hh-pass__title { color: #fff; margin: 10px 0 14px; font-size: 1.6rem; }
.hh-pass__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.hh-pass__badges .hh-pill { background: transparent; border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.8); }
.hh-pass__legs { display: flex; align-items: center; gap: 16px; }
.hh-pass__leg { display: flex; flex-direction: column; }
.hh-pass__code { font-family: var(--f-display); font-variation-settings: "wdth" 108; font-weight: 800; font-size: 1.1rem; color: #fff; line-height: 1.1; }
.hh-pass__alt { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-top: 3px; }
.hh-pass__arrow { color: var(--gold); font-size: 1.2rem; }
.hh-pass__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 10px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 16px; }
.hh-pass__spec dt { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hh-pass__spec dd { margin: 4px 0 0; font-family: var(--f-mono); font-size: .9rem; font-weight: 500; color: #fff; font-variant-numeric: tabular-nums; }

.hh-routegrid { display: grid; gap: 24px; padding: 0; }
/* On a phone the offer card comes first, above the reading matter. */
.hh-routegrid__aside { order: -1; }
/* Grid and flex items default to min-width:auto, so one wide child — the
   620px rate table — would otherwise prise the whole column open. */
.hh-routegrid > *, .hh-split > *, .hh-sechead__body { min-width: 0; }
.hh-tablewrap { max-width: 100%; }

.hh-offer { border: 1px solid var(--rule); background: var(--paper); margin-top: 20px; }
.hh-offer__head { padding: 12px 16px; border-bottom: 1px solid var(--rule); background: var(--panel); }
.hh-offer__label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin: 0; }
.hh-offer__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); }
.hh-offer__cell { background: var(--paper); padding: 14px 16px; }
.hh-offer__cell-label { display: block; font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.hh-offer__cell-value { display: block; font-family: var(--f-mono); font-size: 1.35rem; font-weight: 600; font-variant-numeric: tabular-nums; margin: 5px 0 2px; }
.hh-offer__cell-unit { display: block; font-size: .74rem; color: var(--ink-3); }
.hh-offer__times { padding: 13px 16px; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.hh-offer__actions { padding: 13px 16px; display: grid; gap: 8px; border-top: 1px solid var(--rule); }
.hh-offer__fine { padding: 0 16px 15px; margin: 0; font-family: var(--f-mono); font-size: 9.5px; line-height: 1.65; color: var(--ink-3); }

/* Scroll-spy becomes a horizontal chip strip, the app pattern. */
.hh-spy { position: sticky; top: var(--appbar-h); z-index: 40; background: var(--paper); border-bottom: 1px solid var(--rule); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hh-spy::-webkit-scrollbar { display: none; }
.hh-spy__list { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; min-width: max-content; }
.hh-spy__list li { margin: 0; }
.hh-spy a { display: block; padding: 12px 13px; font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); text-decoration: none; border-bottom: 2px solid transparent; }
.hh-spy a.is-current { color: var(--accent); border-bottom-color: var(--accent); }

.hh-block { padding: 28px 0; border-bottom: 1px solid var(--rule-soft); scroll-margin-top: calc(var(--appbar-h) + 52px); }
.hh-block:last-child { border-bottom: 0; }
.hh-block__title { margin: 0 0 6px; }
.hh-block__kicker { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 6px; }
.hh-prose { max-width: 66ch; }
.hh-prose > :last-child { margin-bottom: 0; }

.hh-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 20px 0; }
.hh-specs > div { background: var(--panel); padding: 12px 14px; }
.hh-specs dt { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.hh-specs dd { margin: 5px 0 0; font-family: var(--f-display); font-variation-settings: "wdth" 99; font-weight: 600; font-size: .95rem; }

.hh-advisory { border: 1px solid var(--rule); border-left: 3px solid var(--terrain); background: var(--terrain-soft); padding: 16px 18px; margin: 20px 0; }
.hh-advisory__label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--terrain); font-weight: 600; margin: 0 0 8px; }
.hh-advisory p:last-child { margin-bottom: 0; }

.hh-incex { display: grid; border: 1px solid var(--rule); margin: 20px 0; }
.hh-incex > div { padding: 16px 18px; }
.hh-incex > div:first-child { border-bottom: 1px solid var(--rule); background: var(--ok-soft); }
.hh-incex > div:last-child { background: var(--panel); }
.hh-incex h3 { font-size: .9rem; margin-bottom: 10px; }
.hh-incex ul { list-style: none; padding: 0; margin: 0; }
.hh-incex li { font-size: .88rem; padding-left: 20px; position: relative; margin-bottom: 6px; }
.hh-incex li::before { position: absolute; left: 0; font-family: var(--f-mono); font-weight: 600; }
.hh-incex > div:first-child li::before { content: "\2713"; color: var(--ok); }
.hh-incex > div:last-child li::before { content: "\2717"; color: var(--danger); }

.hh-oplist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 18px 0; }
.hh-opcard { background: var(--panel); padding: 12px 14px; }
.hh-opcard__name { font-family: var(--f-display); font-variation-settings: "wdth" 97; font-weight: 700; font-size: .86rem; margin: 0 0 6px; line-height: 1.25; }
.hh-opcard__meta { font-family: var(--f-mono); font-size: 9.5px; color: var(--ink-3); line-height: 1.7; }

.hh-helipad { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 18px 0; }
.hh-helipad > div { background: var(--panel); padding: 12px 14px; }
.hh-helipad dt { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.hh-helipad dd { margin: 5px 0 0; font-family: var(--f-mono); font-size: .86rem; font-weight: 500; word-break: break-word; }

/* -------------------------------------------------------------- FAQs */

.hh-faqs { border-top: 1px solid var(--rule); margin: 18px 0 0; max-width: 76ch; }
.hh-faq { border-bottom: 1px solid var(--rule); }
.hh-faq button { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; width: 100%; min-height: var(--tap); background: none; border: 0; padding: 14px 0; text-align: left; cursor: pointer; font-family: var(--f-display); font-variation-settings: "wdth" 100; font-weight: 600; font-size: .95rem; color: var(--ink); }
.hh-faq button::after { content: "+"; font-family: var(--f-mono); font-size: 1.15rem; line-height: 1; color: var(--accent); flex: none; }
.hh-faq button[aria-expanded="true"]::after { content: "\2212"; }
.hh-faq__panel { padding: 0 0 15px; max-width: 66ch; color: var(--ink-2); }
.hh-faq__panel p:last-child { margin-bottom: 0; }
.hh-faq__panel ul, .hh-faq__panel ol { margin: 0 0 1em; padding-left: 1.2em; }
.hh-advisory__body > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- forms */

.hh-form__field { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.hh-form__field label, .hh-form__label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.hh-form input[type="text"], .hh-form input[type="email"], .hh-form input[type="tel"],
.hh-form input[type="date"], .hh-form input[type="number"], .hh-form textarea, .hh-form select,
.hh-calc input, .hh-calc select, .hh-schedule input, .hh-schedule select, .hh-ratecard input {
	width: 100%; min-height: var(--tap);
	font-family: var(--f-display); font-variation-settings: "wdth" 98;
	/* 16px stops iOS zooming the viewport when a field is focused */
	font-size: 16px; color: var(--ink); background: var(--paper);
	border: 1px solid var(--rule); border-radius: var(--radius); padding: 10px 12px;
	appearance: none; -webkit-appearance: none;
}
.hh-form select, .hh-calc select, .hh-schedule select {
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
}
.hh-form textarea { min-height: 96px; line-height: 1.55; resize: vertical; }
.hh-form input:focus, .hh-form select:focus, .hh-form textarea:focus,
.hh-calc input:focus, .hh-calc select:focus { border-color: var(--chart); }
.hh-form__grid { display: grid; gap: 14px; }
.hh-form__foot { display: grid; gap: 10px; margin-top: 18px; }
.hh-form__small { margin: 0; font-family: var(--f-mono); font-size: 9.5px; color: var(--ink-3); line-height: 1.7; }
.hh-hp { position: absolute; left: -9999px; }

.hh-enquiry { border: 1px solid var(--rule); background: var(--panel); padding: 20px 16px; scroll-margin-top: calc(var(--appbar-h) + 52px); }
.hh-enquiry__head { max-width: 58ch; margin-bottom: 18px; }
.hh-enquiry__title { margin: 0 0 8px; }
.hh-enquiry__intro { margin: 0; color: var(--ink-2); font-size: .95rem; }

.hh-notice { padding: 12px 15px; border: 1px solid; margin: 0 0 16px; font-size: .92rem; }
.hh-notice--ok { background: var(--ok-soft); border-color: var(--ok); color: var(--ok); }
.hh-notice--error { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }

/* -------------------------------------------------------- calculator */

.hh-calc { display: grid; gap: 16px; }
.hh-calc__panel { border: 1px solid var(--rule); background: var(--panel); padding: 16px; display: grid; gap: 14px; }
.hh-calc__row { display: grid; gap: 14px; }
.hh-toggle { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.hh-toggle__btn { background: none; border: 0; min-height: var(--tap); padding: 10px 12px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); cursor: pointer; }
.hh-toggle__btn + .hh-toggle__btn { border-left: 1px solid var(--rule); }
.hh-toggle__btn.is-active { background: var(--accent); color: #fff; }
.hh-calc__result { border: 1px solid var(--rule); background: var(--paper); padding: 18px 16px; min-height: 150px; }
.hh-calc__placeholder { margin: 0; color: var(--ink-3); }
.hh-calc__route { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.hh-calc__figure { font-family: var(--f-display); font-variation-settings: "wdth" 108; font-weight: 800; font-size: 2.3rem; line-height: 1; margin: 0 0 8px; font-variant-numeric: tabular-nums; }
.hh-calc__basis { font-family: var(--f-mono); font-size: 11px; color: var(--ink-2); margin: 0 0 16px; }
.hh-calc__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 0 0 14px; }
.hh-calc__facts > div { background: var(--panel); padding: 10px 12px; }
.hh-calc__facts dt { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.hh-calc__facts dd { margin: 4px 0 0; font-family: var(--f-mono); font-size: .9rem; font-weight: 500; }
.hh-calc__payload { padding: 11px 14px; border: 1px solid; font-size: .88rem; margin: 0 0 14px; }
.hh-calc__payload--ok { background: var(--ok-soft); border-color: var(--ok); color: var(--ok); }
.hh-calc__payload--tight { background: var(--warn-soft); border-color: var(--warn); color: var(--warn); }
.hh-calc__payload--over { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }
.hh-calc__warn { font-size: .86rem; color: var(--danger); margin: 0 0 12px; }
.hh-calc__actions { display: grid; gap: 8px; }
.hh-ratecard__search { margin-bottom: 14px; }

.hh-schedule__filters { display: grid; gap: 12px; margin-bottom: 20px; padding: 16px; border: 1px solid var(--rule); background: var(--panel); }

/* ----------------------------------------------------------- weather */

.hh-wx { display: grid; gap: 12px; }
.hh-wx__card { border: 1px solid var(--rule); border-top: 3px solid var(--chart); background: var(--paper); padding: 16px; }
.hh-wx__card--clear { border-top-color: var(--ok); }
.hh-wx__card--marginal { border-top-color: var(--warn); }
.hh-wx__card--grounded { border-top-color: var(--danger); }
.hh-wx__card--down { border-top-color: var(--ink-3); }
.hh-wx__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.hh-wx__name { margin: 0; font-size: 1rem; }
.hh-wx__alt { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); }
.hh-wx__verdict { margin: 10px 0 8px; }
.hh-wx__reason { margin: 0 0 13px; font-size: .86rem; color: var(--ink-2); }
.hh-wx__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 0 0 11px; }
.hh-wx__stats > div { background: var(--panel); padding: 8px 10px; }
.hh-wx__stats dt { font-family: var(--f-mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.hh-wx__stats dd { margin: 3px 0 0; font-family: var(--f-mono); font-size: .84rem; font-weight: 500; }
.hh-wx__forecast { display: flex; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.hh-wx__day { flex: 1; background: var(--panel); padding: 8px; display: flex; flex-direction: column; gap: 3px; }
.hh-wx__dayname { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.hh-wx__daycond { font-size: .74rem; line-height: 1.3; }
.hh-wx__daytemp { font-family: var(--f-mono); font-size: 10px; color: var(--ink-2); }

/* ---------------------------------------------------------- helipads */

.hh-pads { display: grid; gap: 16px; }
.hh-pads__map { height: 320px; border: 1px solid var(--rule); background: var(--panel); position: relative; overflow: hidden; }
.hh-pads__frame { display: block; width: 100%; height: 100%; border: 0; }
.hh-map-popup { font-family: var(--f-display); font-size: .88rem; line-height: 1.45; }
.hh-map-popup code { font-family: var(--f-mono); font-size: 11px; }

/* --------------------------------------------------------- operators */

.hh-operators { display: grid; gap: 12px; }
.hh-operator { border: 1px solid var(--rule); background: var(--paper); padding: 18px; }
.hh-operator__name { margin: 0 0 11px; font-size: 1rem; }
.hh-operator__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin: 0 0 13px; }
.hh-operator__facts > div { background: var(--panel); padding: 8px 10px; }
.hh-operator__facts dt { font-family: var(--f-mono); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.hh-operator__facts dd { margin: 3px 0 0; font-family: var(--f-mono); font-size: .82rem; }
.hh-operator__body { font-size: .89rem; color: var(--ink-2); }
.hh-operator__body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------ destinations */

.hh-desthead { display: grid; gap: 22px; padding: 18px 0 30px; }
.hh-destfacts { border: 1px solid var(--rule); background: var(--panel); }
.hh-destfacts > div { padding: 11px 15px; border-bottom: 1px solid var(--rule); }
.hh-destfacts > div:last-child { border-bottom: 0; }
.hh-destfacts dt { font-family: var(--f-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.hh-destfacts dd { margin: 4px 0 0; font-family: var(--f-mono); font-size: .88rem; font-weight: 500; word-break: break-word; }

.hh-destgrid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.hh-destcard { position: relative; background: var(--paper); padding: 16px; }
.hh-destcard:active { background: var(--panel); }
.hh-destcard__link { position: absolute; inset: 0; }
.hh-destcard__name { font-family: var(--f-display); font-variation-settings: "wdth" 103; font-weight: 700; font-size: 1.02rem; margin: 0 0 4px; }
.hh-destcard__meta { font-family: var(--f-mono); font-size: 9px; letter-spacing: .09em; color: var(--ink-3); margin: 0 0 9px; }
.hh-destcard__text { margin: 0; font-size: .86rem; color: var(--ink-2); line-height: 1.5; }

/* ------------------------------------------------------------- posts */

.hh-postgrid { display: grid; gap: 14px; }
.hh-post { border: 1px solid var(--rule); background: var(--paper); display: flex; flex-direction: column; }
.hh-post__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--panel); }
.hh-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hh-post__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hh-post__meta { font-family: var(--f-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); display: flex; gap: 10px; flex-wrap: wrap; }
.hh-post__title { margin: 0; font-size: 1.02rem; }
.hh-post__title a { color: var(--ink); text-decoration: none; }
.hh-post__excerpt { margin: 0; font-size: .88rem; color: var(--ink-2); }
.hh-post__more { margin-top: auto; font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }

.hh-article { padding: 26px 0 44px; }
.hh-article__head { max-width: 66ch; margin-bottom: 22px; }
.hh-article__meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 12px; }
.hh-article__body { max-width: 66ch; font-size: 1.02rem; }
.hh-article__body h2 { margin-top: 1.8em; }
.hh-article__body h3 { margin-top: 1.5em; }
.hh-article__body figure { margin: 1.6rem 0; }
.hh-article__body figcaption { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); margin-top: 8px; }
.hh-article__body table { margin: 1.4rem 0; font-size: .86rem; display: block; overflow-x: auto; }
.hh-article__body th, .hh-article__body td { padding: 9px 11px; border-bottom: 1px solid var(--rule-soft); text-align: left; }
.hh-article__body th { font-family: var(--f-mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); background: var(--panel); }

.hh-pagination { display: flex; gap: 7px; flex-wrap: wrap; padding: 26px 0 0; }
.hh-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: var(--tap); height: var(--tap); padding: 0 11px; border: 1px solid var(--rule); text-decoration: none; font-family: var(--f-mono); font-size: 11px; color: var(--ink); }
.hh-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------------------------------------------------------- CTA band */

.hh-cta-band { background: var(--deep); color: #fff; padding: 30px 0; }
.hh-cta-band__inner { display: grid; gap: 18px; }
.hh-cta-band__title { margin: 0 0 6px; color: #fff; font-size: 1.3rem; }
.hh-cta-band__text { margin: 0; color: rgba(255,255,255,.74); font-size: .93rem; max-width: 56ch; }
.hh-cta-band__actions { display: grid; gap: 9px; }

/* ------------------------------------------------- sticky action sheet */

.hh-stickybar {
	position: fixed; left: 0; right: 0;
	bottom: calc(var(--tabbar-h) + var(--safe-b));
	z-index: 84;
	background: var(--paper); border-top: 1px solid var(--rule);
	box-shadow: var(--sheet-shadow);
	padding: 9px var(--gutter);
	transform: translateY(130%);
	transition: transform .22s ease;
}
.hh-stickybar.is-visible { transform: translateY(0); }
.hh-stickybar__inner { max-width: var(--wrap); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hh-stickybar__price { font-family: var(--f-mono); font-size: 1.02rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.hh-stickybar__label { display: block; font-size: 8.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.hh-stickybar__actions { display: flex; gap: 7px; }

/* -------------------------------------------------------------- footer */

.hh-footer { background: var(--deep); color: rgba(255,255,255,.76); padding: 34px 0 22px; }
.hh-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.hh-footer__top { display: grid; gap: 26px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.hh-footer__brand {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--f-display); font-variation-settings: "wdth" 110;
	font-weight: 800; font-size: 1.1rem; color: #fff; margin: 0 0 10px;
}
.hh-footer__logo { width: 40px; height: 40px; object-fit: contain; flex: none; background: #fff; border-radius: 50%; }
.hh-footer__blurb { font-size: .88rem; margin: 0 0 15px; max-width: 42ch; }
.hh-footer__contact { list-style: none; margin: 0; padding: 0; font-family: var(--f-mono); font-size: 11px; line-height: 2.1; }
.hh-footer__col h3 { font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 11px; font-weight: 600; }
.hh-footer__col ul { list-style: none; margin: 0; padding: 0; }
.hh-footer__col li { margin-bottom: 7px; font-size: .86rem; }
.hh-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hh-footer__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); margin: 0 0 16px; }
.hh-footer__stat { background: var(--deep); padding: 10px 12px; }
.hh-footer__stat b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; color: #fff; font-variant-numeric: tabular-nums; }
.hh-footer__stat span { display: block; font-family: var(--f-mono); font-size: 7.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 3px; }
.hh-footer__bottom { display: grid; gap: 10px; padding-top: 18px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .05em; color: rgba(255,255,255,.5); }

/* ----------------------------------------------------------- submenus */

.hh-submenu { display: none; list-style: none; margin: 0; padding: 0 0 10px 12px; }
.hh-nav__item.is-open > .hh-submenu,
.hh-nav__toggle[aria-expanded="true"] + .hh-submenu { display: block; }
.hh-submenu li { margin: 0; }
.hh-submenu a { display: flex; align-items: center; min-height: 40px; padding: 8px 2px; text-decoration: none; color: var(--ink-2); font-family: var(--f-display); font-size: .92rem; font-weight: 500; }
.hh-submenu small { display: none; }

.hh-page { padding: 20px 0 44px; }
.hh-page__head { max-width: 66ch; margin-bottom: 24px; }
.hh-page__body { max-width: 66ch; }
.hh-page__body--wide { max-width: none; }

/* =========================== TABLET (720px) =========================== */

@media (min-width: 720px) {
	:root { --gutter: 24px; }
	body { font-size: 16.5px; line-height: 1.6; }
	h1 { font-size: 2.5rem; }
	h2 { font-size: 1.7rem; }

	.hh-section { padding: 48px 0; }
	.hh-split { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 32px; }
	.hh-actions { display: flex; flex-wrap: wrap; }

	.hh-sechead { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 22px; align-items: start; padding-top: 13px; }
	.hh-sechead__rail { margin: 0; }
	.hh-sechead__rail b { display: block; }

	.hh-form__grid { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 15px; }
	.hh-form__field--wide { grid-column: 1 / -1; }
	.hh-form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
	.hh-form__small { flex-basis: 100%; }
	.hh-enquiry { padding: 26px; }

	.hh-calc__row { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }
	.hh-toggle { display: inline-flex; }
	.hh-calc__actions { display: flex; flex-wrap: wrap; }
	.hh-calc__figure { font-size: 2.8rem; }
	.hh-calc__panel { padding: 22px; }
	.hh-schedule__filters { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); align-items: end; padding: 18px; }
	.hh-ratecard__search { max-width: 380px; }

	.hh-wx { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
	.hh-operators { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
	.hh-destgrid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
	.hh-postgrid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
	.hh-pads__map { height: 420px; }

	.hh-specs { grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); }
	.hh-oplist { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
	.hh-helipad { grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); }
	.hh-incex { grid-template-columns: 1fr 1fr; }
	.hh-incex > div:first-child { border-bottom: 0; border-right: 1px solid var(--rule); }

	.hh-pass__inner { padding: 26px 0 24px; }
	.hh-pass__title { font-size: 2.1rem; }
	.hh-pass__specs { grid-template-columns: repeat(4, 1fr); }

	.hh-desthead { grid-template-columns: minmax(0, 1fr) 290px; gap: 34px; align-items: start; padding: 22px 0 34px; }
	.hh-cta-band { padding: 38px 0; }
	.hh-cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; }
	.hh-cta-band__title { font-size: 1.7rem; }
	.hh-cta-band__actions { display: flex; }

	.hh-footer { padding: 46px 0 24px; }
	.hh-footer__cols { grid-template-columns: repeat(4, 1fr); }
	.hh-footer__stats { grid-template-columns: repeat(4, 1fr); }
	.hh-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; }
	.hh-article__body table { display: table; }
}

/* ========================== DESKTOP (1040px) ========================== */

@media (min-width: 1040px) {
	:root { --appbar-h: 108px; --tabbar-h: 0px; }
	body { padding-bottom: 0; }

	h1 { font-size: clamp(2.4rem, 4.2vw, 3.1rem); font-variation-settings: "wdth" 108; }
	h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-variation-settings: "wdth" 104; }

	.hh-section { padding: 58px 0; }
	.hh-block { padding: 36px 0; }

	a:hover { color: var(--hover); }
	.hh-brand:hover, .hh-brand:hover .hh-brand__name { color: var(--hover); }
	.hh-nav__link:hover, .hh-nav__toggle:hover { color: var(--hover); background: var(--hover-soft); }
	.hh-trow:hover { background: var(--hover-soft); }
	.hh-destcard:hover { background: var(--hover-soft); }
	.hh-table tbody tr:hover { background: var(--hover-soft); }
	.hh-strip__route:hover, .hh-post__title a:hover { color: var(--hover); }
	.hh-strip__wa:hover, .hh-tablelink:hover { color: var(--hover); text-decoration: underline; }
	.hh-spy a:hover { color: var(--hover); }
	.hh-footer a:hover { color: var(--gold); }
	.hh-tab:hover { color: var(--hover); }
	.hh-btn--primary:hover { color: #fff; }
	.hh-btn--wa:hover { color: #fff; }
	.hh-pagination .page-numbers:hover { color: var(--hover); border-color: var(--hover); }

	/* timetable proper */
	.hh-timetable { border: 1px solid var(--rule); background: var(--paper); }
	.hh-timetable__head {
		display: grid;
		grid-template-columns: minmax(0, 2.1fr) 92px minmax(0, 1.25fr) 104px 104px 124px;
		gap: 16px; align-items: center;
		padding: 10px 18px; background: var(--panel); border-bottom: 1px solid var(--rule);
		font-family: var(--f-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3);
	}
	.hh-trow {
		grid-template-columns: minmax(0, 2.1fr) 92px minmax(0, 1.25fr) 104px 104px 124px;
		gap: 16px; padding: 15px 18px;
	}
	.hh-trow--flagged { padding-top: 15px; }
	.hh-trow__flag { top: 0; left: 18px; }
	.hh-trow__duration { display: block; font-family: var(--f-mono); font-size: .83rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }
	.hh-trow__times { grid-column: auto; }
	.hh-trow__price { grid-column: auto; grid-row: auto; text-align: left; }
	.hh-trow__price--private { display: block; }
	.hh-trow__price--private b { color: var(--ink-2); font-size: .98rem; }
	.hh-trow__go { grid-column: auto; grid-row: auto; }

	.hh-strip { grid-template-columns: 56px minmax(0, 1fr) 88px 84px auto; grid-template-areas: none; gap: 16px; padding: 11px 16px; }
	.hh-strip__date, .hh-strip__body, .hh-strip__time, .hh-strip__seats, .hh-strip__action { grid-area: auto; }
	.hh-strip__time { text-align: left; }

	/* route page: sticky offer sidebar */
	.hh-routegrid { grid-template-columns: minmax(0, 1fr) 330px; gap: 52px; align-items: stretch; padding: 32px 0 0; }
	.hh-routegrid__main { grid-column: 1; grid-row: 1; }
	.hh-routegrid__aside { order: 0; grid-column: 2; grid-row: 1; align-self: stretch; }
	.hh-offer {
		position: sticky;
		top: calc(var(--appbar-h) + 52px);
		margin-top: 0;
		box-shadow: var(--shadow);
		z-index: 5;
		max-height: calc(100vh - var(--appbar-h) - 64px);
		overflow: auto;
	}
	.hh-stickybar { display: none; }
	.hh-pass__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; padding: 30px 0 26px; }
	.hh-pass__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
	.hh-pass__specs { display: flex; border-top: 0; border-left: 1px solid rgba(255,255,255,.18); padding-top: 0; }
	.hh-pass__spec { padding: 0 20px; border-right: 1px solid rgba(255,255,255,.18); }
	.hh-pass__spec:last-child { border-right: 0; }

	.hh-submenu {
		display: none;
		position: absolute; top: 100%; left: 0;
		min-width: 260px; max-width: min(360px, 90vw);
		max-height: min(70vh, 420px); overflow-y: auto;
		background: var(--paper); border: 1px solid var(--rule);
		box-shadow: var(--shadow); padding: 8px 0 0; z-index: 70;
	}
	.hh-nav__item--has-children:hover > .hh-submenu,
	.hh-nav__item--has-children:focus-within > .hh-submenu,
	.hh-nav__item--has-children.is-open > .hh-submenu {
		display: block;
	}
	.hh-submenu a { display: block; min-height: 0; padding: 8px 12px; color: var(--ink); font-size: .86rem; font-weight: 600; border-radius: var(--radius); }
	.hh-submenu a:hover { background: var(--hover-soft); color: var(--hover); }
	.hh-submenu small { display: block; font-weight: 400; font-size: .78rem; color: var(--ink-3); margin-top: 2px; }

	.hh-submenu.hh-submenu--mega {
		min-width: min(560px, calc(100vw - 48px));
		width: min(640px, calc(100vw - 48px));
		max-width: min(720px, calc(100vw - 48px));
		max-height: min(70vh, 640px);
		padding: 10px 8px 12px;
		display: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2px 6px;
	}
	.hh-nav__item--has-children.hh-nav__item--mega:hover > .hh-submenu.hh-submenu--mega,
	.hh-nav__item--has-children.hh-nav__item--mega:focus-within > .hh-submenu.hh-submenu--mega,
	.hh-nav__item--has-children.hh-nav__item--mega.is-open > .hh-submenu.hh-submenu--mega {
		display: grid;
	}
	.hh-submenu--mega > li { min-width: 0; }
	.hh-submenu--mega a { padding: 8px 10px; line-height: 1.3; }
	.hh-submenu--mega > li:last-child:has(strong) {
		grid-column: 1 / -1;
		border-top: 1px solid var(--rule-soft);
		margin-top: 4px;
		padding-top: 4px;
	}

	.hh-pads__map { height: 460px; }
	.hh-page { padding: 26px 0 58px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
