/* ------------------------------------------------------------------
   Watermark Point — the layer the donor stylesheet does not cover.
   ------------------------------------------------------------------ */

.manRope { font-family: var(--manRope), var(--manRopeType); }

/* ------------------------------------------------------------------ marks */

.mark {
	display: inline-block;
	vertical-align: -0.22em;
	width: 1.05em;
	height: 1.05em;
}
.thumb-bar .mark { width: 20px; height: 20px; vertical-align: middle; }

/* ---------------------------------------------------------------- the reel
   Three photographs on the front page, one on every other, crossfading in
   place. The first frame stays in flow so the block keeps its height. */

.reel { position: relative; overflow: hidden; }
.reel__track { position: relative; }
.reel__frame {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.reel__frame:first-child { position: relative; }
.reel__frame.is-on { opacity: 1; z-index: 1; }
.reel__frame img { width: 100%; display: block; }

/* Without scripting nothing sets is-on, so the first frame simply shows. */
html:not(.js) .reel__frame:first-child { opacity: 1; }

/* Stop the photographs changing. The button is built by js/point.js, and only
   next to a reel that is actually running, so the markup carries no trace of
   it on a page whose banner holds one picture. */
.reel__hold {
	position: absolute;
	left: 30px;
	bottom: 20px;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(68, 68, 66, 0.45);
	color: #fff;
	font-family: var(--manRope), var(--manRopeType);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background-color 200ms ease, border-color 200ms ease;
}
.reel__hold:hover { background: rgba(68, 68, 66, 0.72); border-color: #fff; }
.reel__hold:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }
.reel__hold svg { display: block; }

/* Line the button up with the container gutter once there is one. */
@media (min-width: 1200px) {
	.reel__hold { left: calc(50% - 650px + 15px); }
}
@media (max-width: 700px) {
	.reel__hold { left: 20px; bottom: 14px; padding: 5px 11px; font-size: 10px; }
}

/* ------------------------------------------------------------ back to top */

.progress-wrap::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 19px;
	width: 9px;
	height: 9px;
	border: solid var(--primary);
	border-width: 1.6px 1.6px 0 0;
	transform: rotate(-45deg);
	transition: all 200ms linear;
}
.progress-wrap::before {
	content: "";
	position: absolute;
	left: 22.2px;
	top: 15px;
	width: 1.6px;
	height: 16px;
	background: var(--primary);
	transition: all 200ms linear;
}

/* --------------------------------------------------------- reveal on scroll
   Only guarded when scripting is on, so a failed script never hides copy. */

html.js .rise {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 900ms ease, transform 900ms ease;
}
html.js .rise.is-up { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html.js .rise { opacity: 1; transform: none; transition: none; }
	.reel__frame { transition: none; }
}

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

.scroll-x { overflow-x: auto; }

/* ------------------------------------------------------------- top strip */

.strip { display: flex; gap: 18px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.strip li { margin: 0; }

.r20 {
	margin: 0;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	padding: 3px 15px;
	white-space: nowrap;
}
.r20-foot { margin: 0; color: #fff; font-size: 13px; opacity: 0.85; }

@media (max-width: 1000px) {
	.strip { display: none; }
	.r20 { font-size: 10px; padding: 2px 10px; letter-spacing: 0.08em; }
}
/* Ниже 400 px строка целиком в одну линию уже не помещается — пусть переносится,
   иначе она выталкивает документ вбок на 19 px. */
@media (max-width: 400px) {
	.r20 { white-space: normal; letter-spacing: 0.04em; line-height: 1.35; }
}

/* ------------------------------------------------------- split navigation */

.nav-menu.split { display: flex; align-items: center; }
.nav-menu.split > li.crest { display: flex; align-items: center; padding: 0 22px; }
.nav-menu.split > li.crest > a { padding: 0; }
/* The arbitrary widths the markup used to ask for were never compiled into the
   utility sheet, so the mark rendered at its intrinsic 35 px. Sized here. */
.nav-menu.split > li.crest img { display: block; width: 132px; height: auto; }
@media (max-width: 1400px) {
	.nav-menu.split > li.crest img { width: 96px; }
}

@media (max-width: 1200px) {
	.nav-menu.split > li.crest { display: none; }
}

/* In the drawer the row layout has to give way to a stack, and each item needs
   its own line for the chevron to sit against. */
.navigation-portrait .nav-menus-wrapper-close-button {
	float: none;
	margin: 10px 12px 6px auto;
	text-align: right;
}
.navigation-portrait .nav-menu.split { display: block; }
.navigation-portrait .nav-menu.split > li { float: none; display: block; }
.navigation-portrait .nav-menu.split > li.crest { display: none; }
.navigation-portrait .nav-menu.split > li > a { display: block; }
/* The submenu items float, which would leave the open dropdown zero pixels
   tall and let the next item sit on top of it. */
.navigation-portrait .nav-dropdown > li { float: none; }
.navigation-portrait .nav-dropdown { border-top: 0; }
.navigation-portrait .nav-dropdown > li > a { font-weight: 400; float: none; }

/* -------------------------------------------------------- sub-page banner */

.banner--inner,
.banner--inner img { min-height: 400px !important; }
@media (min-width: 1000px) {
	.banner--inner,
	.banner--inner img { min-height: 520px !important; }
}
.banner--inner .header-content { background: none; }
.banner--inner .header-content h1 { font-size: 40px; }
@media (max-width: 700px) {
	.banner--inner .header-content h1 { font-size: 27px; }
}

/* ------------------------------------------------------ age confirmation */

body.is-held { overflow: hidden; }

.gate {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(68, 68, 66, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow-y: auto;
}
.gate[hidden] { display: none; }
.gate__panel {
	background: var(--secondaryLight);
	border-radius: var(--borderRadius);
	max-width: 620px;
	width: 100%;
	padding: 40px 32px;
	text-align: center;
}
.gate__panel img {
	display: block;
	margin: 0 auto 20px;
	width: 150px;
	height: auto;
}
.gate__panel h2 { font-size: 29px; margin-bottom: 14px; }
.gate__panel p { font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.gate__choices { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.gate__choices .btn { align-self: center; float: none; }

/* -------------------------------------------------------- cookie consent */

.consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	background: #fff;
	box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.18);
	max-height: 85vh;
	overflow-y: auto;
}
.consent[hidden] { display: none; }
.consent__bar {
	max-width: 1300px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.consent__copy { flex: 1 1 420px; }
.consent__copy p { font-size: 14px; line-height: 1.6; margin: 0; }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent__actions .btn { align-self: center; float: none; font-size: 14px; }
.consent__detail {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 24px 24px;
	border-top: 1px solid #e4e9e7;
}
.consent__detail[hidden] { display: none; }
.consent__detail h3 { margin: 20px 0 12px; font-size: 20px; }
.consent__detail .btn { margin-top: 12px; float: none; align-self: flex-start; }

/* ------------------------------------------------------------ enquiry form */

.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.enq { max-width: 920px; }
.enq__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
@media (max-width: 700px) { .enq__grid { grid-template-columns: 1fr; } }
.enq__field { display: flex; flex-direction: column; gap: 6px; }
.enq__field--wide { grid-column: 1 / -1; }
.enq__field label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.enq__hint {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	opacity: 0.6;
	font-size: 12px;
}
.enq__field input,
.enq__field select,
.enq__field textarea {
	width: 100%;
	border: 1px solid #cfd8d5;
	border-radius: var(--borderRadius);
	padding: 10px 14px;
	font-size: 15px;
	font-family: var(--bodyFont), var(--bodyFontType);
	background: #fff;
	color: var(--text);
}
.enq__field textarea { resize: vertical; min-height: 120px; }
.enq__field input:focus,
.enq__field select:focus,
.enq__field textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.is-wrong input,
.is-wrong select,
.is-wrong textarea { border-color: #b3123f; }
.is-wrong > span { color: #b3123f; }

.enq__ticks { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 14px; }
.tick {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.55;
	cursor: pointer;
}
.tick input { margin-top: 5px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--primary); }
.enq .btn { float: none; align-self: flex-start; }
.enq__note { font-size: 13px; margin-top: 16px; opacity: 0.75; clear: both; }

/* ----------------------------------------------------------------- text */

.lede { font-size: 21px; line-height: 1.55; }
@media (max-width: 700px) { .lede { font-size: 18px; } }

.kicker {
	display: block;
	font-family: var(--manRope), var(--manRopeType);
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 10px;
}
.bg-primary .kicker { color: var(--secondary); }

.jump { scroll-margin-top: 120px; }

/* ------------------------------------------------------------- statistics */

.tally {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	text-align: center;
}
@media (max-width: 900px) { .tally { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tally__num {
	display: block;
	font-family: var(--headingFont), var(--headingFontType);
	font-size: 44px;
	line-height: 1;
	font-weight: bold;
	color: var(--secondary);
	overflow-wrap: anywhere;
}
.tally__num.is-glyph { font-size: 23px; letter-spacing: 2px; }
@media (max-width: 900px) {
	.tally__num { font-size: 34px; }
	.tally__num.is-glyph { font-size: 19px; }
}
.tally__cap { display: block; font-size: 14px; margin-top: 10px; color: #fff; opacity: 0.9; }

/* ----------------------------------------------------------------- panels */

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}
@media (max-width: 1000px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .grid-3 { grid-template-columns: 1fr; } }

.panel {
	background: #fff;
	border-radius: var(--borderRadius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.panel__pic { aspect-ratio: 3 / 2; overflow: hidden; }
.panel__pic img { width: 100%; height: 100%; object-fit: cover; }
.panel__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.panel__body h3 { font-size: 23px; margin: 0; }
.panel__body p { font-size: 16px; line-height: 1.6; margin: 0; }
.panel__meta {
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0;
}
.panel__price {
	font-family: var(--headingFont), var(--headingFontType);
	font-size: 22px;
	font-weight: bold;
	margin: 0;
}
.panel ul { margin: 0; padding: 0; list-style: none; font-size: 15px; }
.panel ul li { padding: 5px 0 5px 22px; position: relative; line-height: 1.45; }
.panel ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 13px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary);
	border: 1px solid var(--primary);
}
.panel .btn { margin-top: auto; float: none; align-self: flex-start; }

/* ----------------------------------------------- long entries: room, space */

.entry {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 48px;
	align-items: center;
	margin-bottom: 72px;
	scroll-margin-top: 120px;
}
.entry:nth-child(even) .entry__pic { order: 2; }
@media (max-width: 900px) {
	.entry { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
	.entry:nth-child(even) .entry__pic { order: 0; }
}
.entry__pic img { width: 100%; border-radius: var(--borderRadius); display: block; }
.entry__body h2 { margin-bottom: 8px; }
.entry__body p { font-size: 17px; line-height: 1.65; }

/* ------------------------------------------------------------ fact blocks */

.spec {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	margin: 20px 0;
	border-top: 1px solid #dbe3e0;
}
.spec > div { padding: 12px 16px 12px 0; border-bottom: 1px solid #dbe3e0; }
.spec dt {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 4px;
}
.spec dd { margin: 0; font-size: 16px; }

.ledger { width: 100%; border-collapse: collapse; font-size: 16px; }
.ledger th,
.ledger td {
	text-align: left;
	padding: 12px 16px 12px 0;
	border-bottom: 1px solid #dbe3e0;
	vertical-align: top;
}
.ledger th {
	font-family: var(--headingFont), var(--headingFontType);
	font-weight: bold;
	white-space: nowrap;
}
.ledger td:nth-child(2) { white-space: nowrap; color: var(--primary); font-weight: 500; }
.ledger .muted { opacity: 0.72; display: block; }
@media (max-width: 700px) {
	.ledger, .ledger tbody, .ledger tr, .ledger th, .ledger td { display: block; width: 100%; }
	.ledger tr { padding: 12px 0; border-bottom: 1px solid #dbe3e0; }
	.ledger th, .ledger td { border: 0; padding: 2px 0; }
	/* В строку заголовок держится только в табличной раскладке. Здесь он занимает
	   всю ширину и должен переноситься, иначе подпись выталкивает страницу вбок. */
	.ledger th, .ledger td:nth-child(2) { white-space: normal; }
}

.hours { font-size: 16px; margin: 0; }
.hours dt { font-weight: 600; margin-top: 10px; }
.hours dd { margin: 0 0 4px; }

/* -------------------------------------------------------- questions block */

.qa { border-top: 1px solid #dbe3e0; margin: 24px 0 0; }
.qa__row { border-bottom: 1px solid #dbe3e0; padding: 18px 0; }
.qa__q { font-family: var(--headingFont), var(--headingFontType); font-size: 19px; font-weight: bold; margin: 0 0 6px; }
.qa__a { font-size: 16px; line-height: 1.65; margin: 0; }

/* ------------------------------------------------------------ prose pages */

.longread { max-width: 860px; }
.longread h2 { font-size: 29px; margin: 44px 0 12px; }
.longread h3 { font-size: 21px; margin: 28px 0 8px; }
.longread p,
.longread li { font-size: 17px; line-height: 1.7; }
.longread p { margin-bottom: 16px; }
.longread ul, .longread ol { margin: 0 0 18px 22px; }
.longread li { margin-bottom: 8px; }
.longread > *:first-child { margin-top: 0; }

/* ----------------------------------------- support lines and small print */

.helpline {
	background: var(--secondaryLight);
	border-left: 4px solid var(--primary);
	border-radius: var(--borderRadius);
	padding: 24px 28px;
	margin: 32px 0;
}
.helpline h3 { margin: 0 0 10px; font-size: 21px; }
.helpline ul { list-style: none; margin: 0; padding: 0; }
.helpline li { padding: 4px 0; font-size: 16px; }
.helpline strong { font-weight: 600; }

.smallprint {
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid #dbe3e0;
	font-size: 13px;
	line-height: 1.7;
	opacity: 0.8;
}
.smallprint p { margin-bottom: 10px; }

/* --------------------------------------------------------------- helpers */

.twocol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	align-items: start;
}
@media (max-width: 900px) { .twocol { grid-template-columns: 1fr; gap: 28px; } }

.thumb-bar { display: none; }
@media (max-width: 800px) {
	.thumb-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 80;
		background: var(--primary);
	}
	.thumb-bar ul { display: flex; margin: 0; padding: 0; list-style: none; }
	.thumb-bar li { flex: 1; text-align: center; padding: 12px 0; }
	.thumb-bar a, .thumb-bar span { color: #fff; font-size: 18px; }
}

/* The donor marks list bullets with --primary, which vanishes on a --primary
   section. */
.bg-primary ul li::marker { color: var(--secondary); }
.bg-primary a { color: var(--secondary); }
