/**
 * YesTourBD — design system and theme styles.
 *
 * Structure
 *   01 Font + tokens
 *   02 Reset + base
 *   03 Typography
 *   04 Layout
 *   05 Buttons
 *   06 Badges, pills, meta
 *   07 Forms
 *   08 Cards
 *   09 Header + navigation
 *   10 Hero
 *   11 Home sections
 *   12 Archive + filters
 *   13 Single service
 *   14 Sticky CTA + WhatsApp float
 *   15 Blog + pages
 *   16 Footer
 *   17 Booking form
 *   18 Utilities + responsive + print
 *
 * The one deliberate flourish is the ticket motif (.ticket): a perforated notch
 * and tear line borrowed from the ferry and bus tickets YesTourBD actually
 * sells. It appears on the booking card and on offers, nowhere else.
 */

/* ------------------------------------------------------------------ *
 * 01 Font + tokens
 * ------------------------------------------------------------------ */

@font-face {
	font-family: 'Plus Jakarta Sans';
	src: url('../fonts/PlusJakartaSans-var.woff2') format('woff2-variations');
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

/* Bengali. unicode-range keeps it off Latin-only pages entirely, so an English
   visitor never downloads 105 KB they cannot read. */
@font-face {
	font-family: 'Noto Sans Bengali';
	src: url('../fonts/NotoSansBengali-var.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0964-0965, U+0980-09FE, U+1CD0, U+1CD2, U+1CD5-1CD6, U+1CD8, U+1CE1, U+1CEA, U+1CED, U+1CF2, U+1CF5-1CF7, U+200C-200D, U+20B9, U+25CC, U+A8F1;
}

:root {
	/* Brand */
	--ytbd-navy: #0B315F;
	--ytbd-navy-dark: #08254A;
	--ytbd-navy-soft: #12305E;
	--ytbd-teal: #00A99D;
	--ytbd-teal-dark: #0C8F86;
	--ytbd-teal-light: #E8F8F6;
	--ytbd-white: #FFFFFF;
	--ytbd-bg: #F7F9FC;
	--ytbd-text: #172033;
	--ytbd-muted: #64748B;
	--ytbd-border: #E2E8F0;

	/* Accents, each with exactly one job */
	--ytbd-wa: #25D366;
	--ytbd-wa-dark: #1EBE5A;
	--ytbd-amber: #F59E0B;
	--ytbd-amber-light: #FEF3C7;
	--ytbd-danger: #DC2626;
	--ytbd-danger-light: #FEE2E2;
	--ytbd-success: #059669;
	--ytbd-success-light: #D1FAE5;

	/* Type scale */
	--fs-11: 0.6875rem;
	--fs-12: 0.75rem;
	--fs-13: 0.8125rem;
	--fs-14: 0.875rem;
	--fs-15: 0.9375rem;
	--fs-16: 1rem;
	--fs-18: 1.125rem;
	--fs-20: 1.25rem;
	--fs-24: 1.5rem;
	--fs-28: 1.75rem;
	--fs-32: 2rem;
	--fs-40: 2.5rem;
	--fs-48: 3rem;

	/* Space scale */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.25rem;
	--sp-6: 1.5rem;
	--sp-8: 2rem;
	--sp-10: 2.5rem;
	--sp-12: 3rem;
	--sp-16: 4rem;
	--sp-20: 5rem;

	/* Radius */
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 22px;
	--r-full: 999px;

	/* Elevation — three levels, no more */
	--sh-1: 0 1px 2px rgba(11, 49, 95, 0.06), 0 1px 3px rgba(11, 49, 95, 0.05);
	--sh-2: 0 4px 12px rgba(11, 49, 95, 0.08), 0 2px 4px rgba(11, 49, 95, 0.04);
	--sh-3: 0 16px 40px rgba(11, 49, 95, 0.14);

	--container: 1200px;
	--header-h: 72px;
	--ease: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ------------------------------------------------------------------ *
 * 02 Reset + base
 * ------------------------------------------------------------------ */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + var(--sp-4));
}

body {
	margin: 0;
	background: var(--ytbd-white);
	color: var(--ytbd-text);
	font-family: 'Plus Jakarta Sans', 'Noto Sans Bengali', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--fs-16);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-locked {
	overflow: hidden;
}

img,
picture,
video,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

svg.icon {
	flex: none;
}

a {
	color: var(--ytbd-teal-dark);
	text-decoration: none;
	transition: color 0.16s var(--ease);
}

a:hover {
	color: var(--ytbd-navy);
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

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

hr {
	border: 0;
	border-top: 1px solid var(--ytbd-border);
	margin: var(--sp-8) 0;
}

::selection {
	background: var(--ytbd-teal);
	color: #fff;
}

/* ------------------------------------------------------------------ *
 * 03 Typography
 * ------------------------------------------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 var(--sp-3);
	color: var(--ytbd-navy);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.022em;
}

h1 { font-size: clamp(1.875rem, 1.25rem + 2.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem); }
h4 { font-size: var(--fs-18); }
h5 { font-size: var(--fs-16); }
h6 { font-size: var(--fs-15); }

p {
	margin: 0 0 var(--sp-4);
}

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

strong {
	font-weight: 700;
	color: var(--ytbd-navy);
}

small {
	font-size: var(--fs-13);
}

blockquote {
	margin: var(--sp-6) 0;
	padding: var(--sp-4) var(--sp-6);
	border-left: 3px solid var(--ytbd-teal);
	background: var(--ytbd-teal-light);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	color: var(--ytbd-navy);
	font-size: var(--fs-18);
}

/* The utility role in the type system: labels that orient, never decorate. */
.eyebrow {
	margin: 0 0 var(--sp-2);
	color: var(--ytbd-teal-dark);
	font-size: var(--fs-12);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lead {
	color: var(--ytbd-muted);
	font-size: var(--fs-18);
	line-height: 1.6;
}

.muted {
	color: var(--ytbd-muted);
}

/* ------------------------------------------------------------------ *
 * 04 Layout
 * ------------------------------------------------------------------ */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--sp-4);
}

.section {
	padding-block: var(--sp-12);
}

.section--tight {
	padding-block: var(--sp-10);
}

.section--alt {
	background: var(--ytbd-bg);
}

.section--navy {
	background: var(--ytbd-navy);
	color: rgba(255, 255, 255, 0.86);
}

.section--navy h2,
.section--navy h3,
.section--navy .section-head__title {
	color: #fff;
}

.section--navy .section-head__desc,
.section--navy .lead {
	color: rgba(255, 255, 255, 0.76);
}

.section--navy .eyebrow {
	color: #6FE3D8;
}

.section-head {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	margin-bottom: var(--sp-8);
}

.section-head__title {
	margin: 0;
}

.section-head__desc {
	max-width: 62ch;
	margin: var(--sp-2) 0 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-16);
}

.section-head--center {
	align-items: center;
	text-align: center;
}

.section-head--center .section-head__desc {
	margin-inline: auto;
}

.grid {
	display: grid;
	gap: var(--sp-5);
}

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

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	color: var(--ytbd-teal-dark);
	font-size: var(--fs-14);
	font-weight: 700;
	white-space: nowrap;
}

.link-arrow .icon {
	transition: transform 0.16s var(--ease);
}

.link-arrow:hover .icon {
	transform: translateX(3px);
}

/* ------------------------------------------------------------------ *
 * 05 Buttons
 * ------------------------------------------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	padding: 0.75rem 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--r-full);
	background: var(--ytbd-navy);
	color: #fff;
	font-size: var(--fs-15);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease), color 0.16s var(--ease), transform 0.16s var(--ease);
}

.btn:hover {
	background: var(--ytbd-navy-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--ytbd-teal);
	color: #fff;
}

.btn--primary:hover {
	background: var(--ytbd-teal-dark);
	color: #fff;
}

.btn--navy {
	background: var(--ytbd-navy);
}

.btn--ghost {
	background: transparent;
	border-color: var(--ytbd-border);
	color: var(--ytbd-navy);
}

.btn--ghost:hover {
	background: var(--ytbd-bg);
	border-color: var(--ytbd-navy);
	color: var(--ytbd-navy);
}

.btn--light {
	background: #fff;
	color: var(--ytbd-navy);
}

.btn--light:hover {
	background: var(--ytbd-teal-light);
	color: var(--ytbd-navy);
}

.btn--outline-light {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
	backdrop-filter: blur(4px);
}

.btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	color: #fff;
}

.btn--whatsapp {
	background: var(--ytbd-wa);
	color: #07301A;
}

.btn--whatsapp:hover {
	background: var(--ytbd-wa-dark);
	color: #07301A;
}

.btn--lg {
	padding: 0.95rem 1.75rem;
	font-size: var(--fs-16);
}

.btn--sm {
	padding: 0.5rem 0.9rem;
	font-size: var(--fs-13);
}

.btn--block {
	width: 100%;
}

.btn[disabled],
.btn.is-busy {
	opacity: 0.62;
	pointer-events: none;
}

.cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
}

.cta-group--stack {
	flex-direction: column;
}

.cta-group--stack .btn {
	width: 100%;
}

/* ------------------------------------------------------------------ *
 * 06 Badges, pills, meta
 * ------------------------------------------------------------------ */

.badge {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
	padding: 0.25rem 0.625rem;
	border-radius: var(--r-full);
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
	font-size: var(--fs-12);
	font-weight: 700;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.badge--navy {
	background: rgba(11, 49, 95, 0.08);
	color: var(--ytbd-navy);
}

.badge--offer {
	background: var(--ytbd-amber-light);
	color: #92400E;
}

.badge--featured {
	background: var(--ytbd-navy);
	color: #fff;
}

.badge--solid-light {
	background: rgba(255, 255, 255, 0.92);
	color: var(--ytbd-navy);
	box-shadow: var(--sh-1);
}

.meta-line {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
}

.meta-line .icon {
	color: var(--ytbd-teal);
}

.rating {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
	color: var(--ytbd-navy);
	font-size: var(--fs-14);
}

.rating__star {
	color: var(--ytbd-amber);
}

.rating__count {
	color: var(--ytbd-muted);
	font-weight: 500;
}

.price {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
	color: var(--ytbd-navy);
	font-size: var(--fs-20);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.price__prefix {
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
	font-weight: 600;
	letter-spacing: 0;
}

.price__label {
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
	font-weight: 600;
}

.price--contact {
	font-size: var(--fs-16);
	font-weight: 700;
	color: var(--ytbd-teal-dark);
}

.notice {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	padding: var(--sp-4);
	border-radius: var(--r-md);
	border: 1px solid var(--ytbd-border);
	background: var(--ytbd-bg);
	font-size: var(--fs-14);
}

.notice--warning {
	border-color: #FCD34D;
	background: var(--ytbd-amber-light);
	color: #7C4A03;
}

.notice--success {
	border-color: #6EE7B7;
	background: var(--ytbd-success-light);
	color: #065F46;
}

.notice--error {
	border-color: #FCA5A5;
	background: var(--ytbd-danger-light);
	color: #991B1B;
}

/* ------------------------------------------------------------------ *
 * 07 Forms
 * ------------------------------------------------------------------ */

.field {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	margin-bottom: var(--sp-4);
}

.field__label {
	color: var(--ytbd-navy);
	font-size: var(--fs-14);
	font-weight: 700;
}

.field__label .req {
	color: var(--ytbd-danger);
}

.field__hint {
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
}

.field__error {
	color: var(--ytbd-danger);
	font-size: var(--fs-13);
	font-weight: 600;
}

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%;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-sm);
	background: #fff;
	color: var(--ytbd-text);
	font-size: var(--fs-15);
	transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

select {
	appearance: none;
	padding-right: 2.25rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.7rem center;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--ytbd-teal);
	box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.16);
	outline: none;
}

input[aria-invalid='true'],
textarea[aria-invalid='true'],
select[aria-invalid='true'] {
	border-color: var(--ytbd-danger);
}

input[readonly] {
	background: var(--ytbd-bg);
	color: var(--ytbd-muted);
}

.field-row {
	display: grid;
	gap: var(--sp-4);
	grid-template-columns: 1fr;
}

/* Honeypot: off-screen but not display:none, so bots still fill it. */
.ytbd-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ------------------------------------------------------------------ *
 * 08 Cards
 * ------------------------------------------------------------------ */

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.card:hover {
	border-color: #CBD5E1;
	box-shadow: var(--sh-2);
	transform: translateY(-2px);
}

.card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, var(--ytbd-navy) 0%, var(--ytbd-teal) 100%);
	overflow: hidden;
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s var(--ease);
}

.card:hover .card__media img {
	transform: scale(1.04);
}

.card__flags {
	position: absolute;
	top: var(--sp-3);
	left: var(--sp-3);
	right: var(--sp-3);
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	pointer-events: none;
}

.card__body {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	flex: 1;
	padding: var(--sp-5);
}

.card__title {
	margin: 0;
	font-size: var(--fs-18);
	line-height: 1.3;
}

.card__title a {
	color: inherit;
}

.card__title a:hover {
	color: var(--ytbd-teal-dark);
}

.card__excerpt {
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	margin-top: auto;
	padding-top: var(--sp-4);
	border-top: 1px solid var(--ytbd-border);
}

/* The price may wrap over two lines; the CTA never should. */
.card__foot .btn {
	flex: none;
	white-space: nowrap;
}

.card__price {
	min-width: 0;
}

.card__price .price {
	flex-wrap: wrap;
	row-gap: 0;
}

/* The title link covers the whole card, so there is one link, not two. */
.card__title a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.card__foot > * {
	position: relative;
	z-index: 2;
}

/* Destination card — image with a navy scrim, no body. */
/* Six destination cards fill the grid as two clean rows. Every destination is
   in the markup so the script can choose a different six each visit; the ones
   past the sixth are hidden rather than left out, which is also what somebody
   with JavaScript off sees. */
.dest-grid > *:nth-child(n + 7) {
	display: none;
}

.dest-card {
	position: relative;
	display: block;
	/* 3:2 matches the 960x640 crop the template asks for. A portrait box here
	   meant object-fit had to throw away half the width of an already-cropped
	   photograph, which pushed the subject out of frame. */
	aspect-ratio: 3 / 2;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--ytbd-navy);
	color: #fff;
}

.dest-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.dest-card:hover img {
	transform: scale(1.06);
}

.dest-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 37, 74, 0.88) 0%, rgba(8, 37, 74, 0.25) 45%, rgba(8, 37, 74, 0) 70%);
}

.dest-card__body {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 1;
	padding: var(--sp-5);
}

.dest-card__title {
	margin: 0;
	color: #fff;
	font-size: var(--fs-20);
}

.dest-card__count {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--fs-13);
	font-weight: 600;
}

/* The signature: a ticket edge, taken from the ferry and bus tickets sold. */
.ticket {
	position: relative;
	background: #fff;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
}

.ticket::before,
.ticket::after {
	content: '';
	position: absolute;
	top: var(--ticket-notch, 58%);
	width: 20px;
	height: 20px;
	border: 1px solid var(--ytbd-border);
	border-radius: 50%;
	background: var(--ytbd-bg);
}

.ticket::before {
	left: -11px;
	clip-path: inset(0 0 0 50%);
}

.ticket::after {
	right: -11px;
	clip-path: inset(0 50% 0 0);
}

.ticket__perf {
	border-top: 2px dashed var(--ytbd-border);
	margin-block: var(--sp-4);
}

.offer-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	padding: var(--sp-5);
	--ticket-notch: 50%;
}

.offer-card__title {
	margin: 0;
	font-size: var(--fs-18);
}

.offer-card__price {
	display: flex;
	align-items: baseline;
	gap: var(--sp-2);
}

.offer-card__old {
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
	text-decoration: line-through;
}

/* Guide (blog) card */
.guide-card .card__media {
	aspect-ratio: 16 / 9;
}

/* ------------------------------------------------------------------ *
 * 09 Header + navigation
 * ------------------------------------------------------------------ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.site-header.is-stuck {
	border-bottom-color: var(--ytbd-border);
	box-shadow: var(--sh-1);
}

.header-bar {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	min-height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	margin-right: auto;
	flex: none;
}

.brand img,
.brand .custom-logo {
	height: 40px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
}

.brand__text {
	display: none;
}

.nav-desktop {
	display: none;
}

.nav-desktop ul {
	display: flex;
	align-items: center;
	gap: var(--sp-1);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-desktop li {
	position: relative;
}

.nav-desktop a {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
	padding: 0.5rem 0.75rem;
	border-radius: var(--r-sm);
	color: var(--ytbd-navy);
	font-size: var(--fs-15);
	font-weight: 600;
	white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop .current-menu-item > a,
.nav-desktop .current-menu-parent > a {
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
}

.nav-desktop .menu-item-has-children > a::after {
	content: '';
	width: 14px;
	height: 14px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9.5 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-desktop .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 20;
	display: block;
	min-width: 220px;
	flex-direction: column;
	gap: 0;
	padding: var(--sp-2);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-md);
	background: #fff;
	box-shadow: var(--sh-3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.16s var(--ease), transform 0.16s var(--ease), visibility 0.16s;
}

.nav-desktop li:hover > .sub-menu,
.nav-desktop li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-desktop .sub-menu a {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	font-weight: 600;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	flex: none;
}

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-full);
	background: #fff;
	color: var(--ytbd-navy);
	cursor: pointer;
	transition: background-color 0.16s var(--ease), border-color 0.16s var(--ease), color 0.16s var(--ease);
}

.icon-btn:hover {
	background: var(--ytbd-teal-light);
	border-color: var(--ytbd-teal);
	color: var(--ytbd-teal-dark);
}

.header-actions .btn {
	display: none;
}

.header-actions .header-link {
	display: none;
}

/* Mobile drawer */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	visibility: hidden;
	pointer-events: none;
}

.drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.drawer__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 37, 74, 0.5);
	opacity: 0;
	transition: opacity 0.24s var(--ease);
}

.drawer.is-open .drawer__scrim {
	opacity: 1;
}

.drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(86vw, 360px);
	height: 100%;
	background: #fff;
	box-shadow: var(--sh-3);
	transform: translateX(100%);
	transition: transform 0.28s var(--ease);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.drawer.is-open .drawer__panel {
	transform: translateX(0);
}

.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	padding: var(--sp-4);
	border-bottom: 1px solid var(--ytbd-border);
}

.drawer__body {
	padding: var(--sp-4);
}

.drawer__foot {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	margin-top: auto;
	padding: var(--sp-4);
	border-top: 1px solid var(--ytbd-border);
	background: var(--ytbd-bg);
}

.nav-mobile ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-mobile li {
	position: relative;
}

.nav-mobile .sub-menu {
	margin-left: var(--sp-4);
	border-left: 2px solid var(--ytbd-border);
	padding-left: var(--sp-3);
}

/* Injected by main.js so drawer submenus expand instead of navigating. */
.nav-mobile__expand {
	position: absolute;
	top: 4px;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-full);
	background: #fff;
	color: var(--ytbd-navy);
	cursor: pointer;
}

.nav-mobile__expand[aria-expanded='true'] {
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
}

.nav-mobile a {
	display: block;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--ytbd-border);
	color: var(--ytbd-navy);
	font-size: var(--fs-16);
	font-weight: 600;
}

.nav-mobile .sub-menu a {
	font-size: var(--fs-15);
	font-weight: 500;
}

/* Search overlay */
.search-modal {
	position: fixed;
	inset: 0;
	z-index: 130;
	display: none;
	padding-top: 12vh;
	background: rgba(8, 37, 74, 0.55);
}

.search-modal.is-open {
	display: block;
}

.search-modal__inner {
	width: min(680px, calc(100% - 2rem));
	margin-inline: auto;
	padding: var(--sp-6);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-3);
}

.search-form {
	display: flex;
	gap: var(--sp-2);
}

.search-form input[type='search'] {
	flex: 1;
}

/* ------------------------------------------------------------------ *
 * 10 Hero
 * ------------------------------------------------------------------ */

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(460px, 68vh, 660px);
	background: var(--ytbd-navy);
	color: #fff;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 37, 74, 0.55) 0%, rgba(8, 37, 74, 0.35) 35%, rgba(8, 37, 74, 0.9) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: var(--sp-16) var(--sp-12);
}

.hero__content {
	max-width: 44rem;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	margin-bottom: var(--sp-4);
	padding: 0.3rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--r-full);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: var(--fs-12);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero__title {
	margin: 0 0 var(--sp-4);
	color: #fff;
	text-wrap: balance;
}

.hero__text {
	margin: 0 0 var(--sp-6);
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--fs-18);
	max-width: 31rem;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin-top: var(--sp-8);
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--fs-13);
	font-weight: 600;
}

.hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
}

.hero__trust .icon {
	color: #6FE3D8;
}

/* Page hero for archives and static pages */
.page-hero {
	padding-block: var(--sp-10);
	background: var(--ytbd-navy);
	color: #fff;
}

/* With a photograph behind it the band still has to read as navy furniture, not
   as a picture with words on top: the overlay is heavy and carries the same navy
   so the header above it continues into the banner rather than sitting on a
   different image. Text stays white either way, so nothing else has to change. */
.page-hero--photo {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(11, 49, 95, 0.88),
		rgba(8, 37, 74, 0.94)
	);
}

.page-hero--photo > .container {
	position: relative;
}

.page-hero__title {
	margin: 0 0 var(--sp-2);
	color: #fff;
}

.page-hero__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	max-width: 60ch;
}

/* ------------------------------------------------------------------ *
 * 11 Home sections
 * ------------------------------------------------------------------ */

/* Quick services deliberately overlap the hero: it is the primary navigation
   into the catalogue, so it sits on the seam rather than below the fold. */
.quick-services {
	position: relative;
	z-index: 2;
	margin-top: -46px;
}

.quick-services__rail {
	display: grid;
	grid-template-columns: repeat(5, minmax(78px, 1fr));
	gap: var(--sp-2);
	padding: var(--sp-4);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-2);
	overflow-x: auto;
}

.quick-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
	padding: var(--sp-3) var(--sp-1);
	border-radius: var(--r-md);
	color: var(--ytbd-navy);
	font-size: var(--fs-12);
	font-weight: 700;
	text-align: center;
	transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}

.quick-service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: var(--r-full);
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
	transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}

.quick-service:hover {
	background: var(--ytbd-bg);
	color: var(--ytbd-navy);
}

.quick-service:hover .quick-service__icon {
	background: var(--ytbd-navy);
	color: #fff;
}

/* Why choose us */
.feature {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	padding: var(--sp-5);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	background: #fff;
}

.feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
}

.feature__title {
	margin: 0;
	font-size: var(--fs-18);
}

.feature__text {
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
}

.section--navy .feature {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .feature__icon {
	background: rgba(255, 255, 255, 0.12);
	color: #6FE3D8;
}

.section--navy .feature__text {
	color: rgba(255, 255, 255, 0.74);
}

/* How it works — a real sequence, so the numbers carry meaning. */
.steps {
	display: grid;
	gap: var(--sp-5);
	counter-reset: step;
}

.step {
	position: relative;
	padding-left: 3.5rem;
	counter-increment: step;
}

.step::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--r-full);
	background: var(--ytbd-navy);
	color: #fff;
	font-size: var(--fs-14);
	font-weight: 800;
	letter-spacing: 0;
}

.step__title {
	margin: 0 0 var(--sp-1);
	font-size: var(--fs-18);
}

.step__text {
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
}

/* Testimonials */
.testimonial {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	height: 100%;
	padding: var(--sp-5);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	background: #fff;
}

.testimonial__quote {
	margin: 0;
	color: var(--ytbd-text);
	font-size: var(--fs-15);
}

.testimonial__mark {
	color: var(--ytbd-teal);
}

.testimonial__author {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-top: auto;
	padding-top: var(--sp-3);
	border-top: 1px solid var(--ytbd-border);
}

.testimonial__avatar {
	width: 42px;
	height: 42px;
	border-radius: var(--r-full);
	object-fit: cover;
	background: var(--ytbd-teal-light);
}

.testimonial__name {
	color: var(--ytbd-navy);
	font-size: var(--fs-14);
	font-weight: 700;
}

.testimonial__meta {
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
}

/* Final CTA */
.cta-panel {
	position: relative;
	padding: var(--sp-10) var(--sp-5);
	border-radius: var(--r-xl);
	background: linear-gradient(135deg, var(--ytbd-navy) 0%, var(--ytbd-navy-soft) 55%, var(--ytbd-teal-dark) 100%);
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.cta-panel h2 {
	color: #fff;
}

.cta-panel p {
	max-width: 52ch;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.84);
}

.cta-panel .cta-group {
	justify-content: center;
	margin-top: var(--sp-6);
}

/* ------------------------------------------------------------------ *
 * 12 Archive + filters
 * ------------------------------------------------------------------ */

.filter-bar {
	position: relative;
	z-index: 3;
	margin-bottom: var(--sp-8);
	padding: var(--sp-4);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-1);
}

.filter-bar__grid {
	display: grid;
	gap: var(--sp-3);
	grid-template-columns: 1fr;
}

.filter-bar .field {
	margin-bottom: 0;
}

.filter-bar__actions {
	display: flex;
	gap: var(--sp-2);
	align-items: flex-end;
}

.filter-bar__actions .btn {
	flex: 1;
}

.result-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--sp-3);
	margin-bottom: var(--sp-5);
}

.result-count {
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
}

.active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin-top: var(--sp-3);
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
	padding: 0.25rem 0.5rem 0.25rem 0.7rem;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-full);
	background: var(--ytbd-bg);
	color: var(--ytbd-navy);
	font-size: var(--fs-13);
	font-weight: 600;
}

.chip:hover {
	border-color: var(--ytbd-danger);
	color: var(--ytbd-danger);
}

.empty-state {
	padding: var(--sp-12) var(--sp-5);
	border: 1px dashed var(--ytbd-border);
	border-radius: var(--r-lg);
	background: var(--ytbd-bg);
	text-align: center;
}

.empty-state__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: var(--sp-4);
	border-radius: var(--r-full);
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--sp-2);
	margin-top: var(--sp-10);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: var(--sp-3);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-sm);
	background: #fff;
	color: var(--ytbd-navy);
	font-size: var(--fs-14);
	font-weight: 700;
}

.pagination .page-numbers:hover {
	border-color: var(--ytbd-teal);
	color: var(--ytbd-teal-dark);
}

.pagination .page-numbers.current {
	background: var(--ytbd-navy);
	border-color: var(--ytbd-navy);
	color: #fff;
}

/* Breadcrumbs */
.breadcrumb {
	padding-block: var(--sp-4);
	font-size: var(--fs-13);
	color: var(--ytbd-muted);
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
}

.breadcrumb li:not(:last-child)::after {
	content: '/';
	color: var(--ytbd-border);
}

.breadcrumb a {
	color: var(--ytbd-muted);
}

.breadcrumb a:hover {
	color: var(--ytbd-teal-dark);
}

.breadcrumb [aria-current='page'] {
	color: var(--ytbd-navy);
	font-weight: 600;
}

/* ------------------------------------------------------------------ *
 * 13 Single service
 * ------------------------------------------------------------------ */

.service-layout {
	display: grid;
	gap: var(--sp-8);
	grid-template-columns: 1fr;
	padding-bottom: var(--sp-12);
}

.gallery {
	display: grid;
	gap: var(--sp-2);
	grid-template-columns: 1fr;
	border-radius: var(--r-lg);
	overflow: hidden;
}

.gallery__main {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--ytbd-bg);
}

.gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.gallery__thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	border: 0;
	padding: 0;
	border-radius: var(--r-sm);
	overflow: hidden;
	cursor: pointer;
	background: var(--ytbd-bg);
}

.gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__more {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 37, 74, 0.66);
	color: #fff;
	font-size: var(--fs-14);
	font-weight: 700;
}

.service-title {
	margin-bottom: var(--sp-2);
}

.service-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-4);
	margin-bottom: var(--sp-5);
}

.service-block {
	margin-bottom: var(--sp-8);
}

.service-block__title {
	display: flex;
	align-items: center;
	gap: var(--sp-2);
	margin-bottom: var(--sp-4);
	font-size: var(--fs-20);
}

.service-block__title .icon {
	color: var(--ytbd-teal);
}

.tick-list {
	display: grid;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: 1fr;
}

.tick-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-2);
	font-size: var(--fs-15);
}

.tick-list .icon {
	margin-top: 3px;
	color: var(--ytbd-teal);
}

.prose > *:first-child {
	margin-top: 0;
}

.prose h2,
.prose h3 {
	margin-top: var(--sp-8);
}

.prose ul,
.prose ol {
	margin: 0 0 var(--sp-4);
	padding-left: 1.25rem;
}

.prose li {
	margin-bottom: var(--sp-2);
}

.prose img {
	border-radius: var(--r-md);
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: var(--sp-4);
	font-size: var(--fs-14);
}

.prose th,
.prose td {
	padding: var(--sp-3);
	border: 1px solid var(--ytbd-border);
	text-align: left;
}

.prose th {
	background: var(--ytbd-bg);
	color: var(--ytbd-navy);
}

/* Booking rail — the ticket motif's home. */
.booking-card {
	padding: var(--sp-5);
	box-shadow: var(--sh-2);
	--ticket-notch: 46%;
}

.booking-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--sp-2);
	margin-bottom: var(--sp-2);
}

.booking-card__note {
	margin: 0 0 var(--sp-4);
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
}

.booking-card__list {
	display: grid;
	gap: var(--sp-2);
	margin: 0 0 var(--sp-4);
	padding: 0;
	list-style: none;
	font-size: var(--fs-14);
}

.booking-card__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
}

.booking-card__list dt,
.booking-card__list .label {
	color: var(--ytbd-muted);
}

.booking-card__list .value {
	color: var(--ytbd-navy);
	font-weight: 700;
	text-align: right;
}

.booking-card__reassure {
	margin: var(--sp-4) 0 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-12);
	text-align: center;
}

.faq__item {
	border-bottom: 1px solid var(--ytbd-border);
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	width: 100%;
	padding: var(--sp-4) 0;
	border: 0;
	background: none;
	color: var(--ytbd-navy);
	font-size: var(--fs-16);
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.faq__q .icon {
	flex: none;
	transition: transform 0.2s var(--ease);
}

.faq__q[aria-expanded='true'] .icon {
	transform: rotate(180deg);
}

.faq__a {
	padding-bottom: var(--sp-4);
	color: var(--ytbd-muted);
	font-size: var(--fs-15);
}

.faq__a[hidden] {
	display: none;
}

.map-embed {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--ytbd-bg);
}

.map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: none;
	align-items: center;
	justify-content: center;
	padding: var(--sp-4);
	background: rgba(8, 37, 74, 0.92);
}

.lightbox.is-open {
	display: flex;
}

.lightbox img {
	max-width: 100%;
	max-height: 84vh;
	border-radius: var(--r-md);
}

.lightbox__close,
.lightbox__nav {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--r-full);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
}

.lightbox__close {
	top: var(--sp-4);
	right: var(--sp-4);
}

.lightbox__nav--prev { left: var(--sp-4); }
.lightbox__nav--next { right: var(--sp-4); }

.lightbox__count {
	position: absolute;
	bottom: var(--sp-4);
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--fs-13);
}

/* ------------------------------------------------------------------ *
 * 14 Sticky CTA + WhatsApp float
 * ------------------------------------------------------------------ */

.sticky-cta {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 95;
	display: flex;
	gap: var(--sp-2);
	padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
	border-top: 1px solid var(--ytbd-border);
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(8px);
	box-shadow: 0 -4px 16px rgba(11, 49, 95, 0.08);
}

.sticky-cta .cta-group {
	flex: 1;
	flex-wrap: nowrap;
	min-width: 0;
}

.sticky-cta .btn {
	flex: 1;
	min-width: 0;
	padding-inline: var(--sp-3);
}

.sticky-cta__price {
	display: none;
}

/* Reserve room so the bar never sits on top of content. */
body.has-sticky-cta .site-footer {
	padding-bottom: 88px;
}

.wa-float {
	position: fixed;
	right: var(--sp-4);
	bottom: var(--sp-4);
	z-index: 92;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: var(--r-full);
	background: var(--ytbd-wa);
	color: #07301A;
	box-shadow: var(--sh-3);
	transition: transform 0.18s var(--ease), background-color 0.18s var(--ease);
}

.wa-float:hover {
	background: var(--ytbd-wa-dark);
	color: #07301A;
	transform: scale(1.05);
}

body.has-sticky-cta .wa-float {
	bottom: calc(var(--sp-4) + 76px);
}

/* ------------------------------------------------------------------ *
 * 15 Blog + pages
 * ------------------------------------------------------------------ */

.content-layout {
	display: grid;
	gap: var(--sp-8);
	grid-template-columns: 1fr;
	padding-block: var(--sp-10);
}

.entry-header {
	margin-bottom: var(--sp-6);
}

.entry-title {
	margin-bottom: var(--sp-3);
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-13);
}

.post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-1);
}

.post-meta__item .icon {
	color: var(--ytbd-teal);
}

.entry-thumb {
	margin-bottom: var(--sp-6);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.widget {
	margin-bottom: var(--sp-6);
	padding: var(--sp-5);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-lg);
	background: #fff;
}

.widget__title {
	margin-bottom: var(--sp-3);
	font-size: var(--fs-16);
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding-block: var(--sp-2);
	border-bottom: 1px solid var(--ytbd-border);
	font-size: var(--fs-14);
}

.widget li:last-child {
	border-bottom: 0;
}

.comment-list {
	margin: 0 0 var(--sp-6);
	padding: 0;
	list-style: none;
}

.comment-list .comment-body {
	padding: var(--sp-4) 0;
	border-bottom: 1px solid var(--ytbd-border);
}

.comment-list .children {
	margin-left: var(--sp-6);
	list-style: none;
	padding: 0;
}

.error-404 {
	padding-block: var(--sp-20);
	text-align: center;
}

/* ------------------------------------------------------------------ *
 * 16 Footer
 * ------------------------------------------------------------------ */

.site-footer {
	margin-top: var(--sp-12);
	background: var(--ytbd-navy);
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--fs-14);
}

.footer-top {
	display: grid;
	gap: var(--sp-8);
	grid-template-columns: 1fr;
	padding-block: var(--sp-12);
}

/* Knocked back to white: the navy half of the mark would otherwise disappear
   into the navy footer. Shape is untouched, only the colour is inverted. */
.footer-brand img {
	height: 52px;
	width: auto;
	margin-bottom: var(--sp-4);
	filter: brightness(0) invert(1);
}

.footer-about {
	max-width: 38ch;
	margin-bottom: var(--sp-5);
	color: rgba(255, 255, 255, 0.7);
}

.footer-col__title {
	margin-bottom: var(--sp-4);
	color: #fff;
	font-size: var(--fs-14);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-col ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--sp-2);
}

.footer-col a:not(.btn) {
	color: rgba(255, 255, 255, 0.72);
}

.footer-col a:not(.btn):hover {
	color: #fff;
}

/* Buttons keep their own palette wherever they sit. */
.footer-col .btn--light {
	color: var(--ytbd-navy);
}

.footer-col .btn--light:hover {
	background: var(--ytbd-teal-light);
	color: var(--ytbd-navy);
}

.footer-contact {
	display: grid;
	gap: var(--sp-3);
}

.footer-col--contact .footer-contact {
	margin-bottom: var(--sp-5);
}

.footer-address {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-2);
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
}

.footer-address .icon {
	flex: none;
	margin-top: 2px;
	color: #6FE3D8;
}

.footer-col__cta {
	margin-top: var(--sp-2);
}

.footer-contact a:not(.btn) {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	color: #fff;
	font-weight: 700;
}

.footer-contact .icon {
	color: #6FE3D8;
}

.social-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin-top: 0;
}

.social-row a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--r-full);
	color: rgba(255, 255, 255, 0.8);
	transition: background-color 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease);
}

.social-row a:hover {
	background: var(--ytbd-teal);
	border-color: var(--ytbd-teal);
	color: #fff;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	padding-block: var(--sp-5);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--fs-13);
}

.footer-bottom ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
	color: #fff;
}

.footer-credit {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 600;
}

.footer-credit a:hover {
	color: #6FE3D8;
}

/* ------------------------------------------------------------------ *
 * 17 Booking form (shared with the plugin markup)
 * ------------------------------------------------------------------ */

.ytbd-form-wrap {
	max-width: 720px;
}

.ytbd-form fieldset {
	margin: 0 0 var(--sp-6);
	padding: 0;
	border: 0;
}

.ytbd-form legend {
	display: block;
	width: 100%;
	margin-bottom: var(--sp-4);
	padding-bottom: var(--sp-2);
	border-bottom: 1px solid var(--ytbd-border);
	color: var(--ytbd-navy);
	font-size: var(--fs-16);
	font-weight: 800;
}

.ytbd-form__service {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	padding: var(--sp-4);
	margin-bottom: var(--sp-6);
	border: 1px solid var(--ytbd-teal);
	border-radius: var(--r-md);
	background: var(--ytbd-teal-light);
}

.ytbd-form__service-thumb {
	width: 56px;
	height: 56px;
	border-radius: var(--r-sm);
	object-fit: cover;
	flex: none;
}

.ytbd-form__service-name {
	margin: 0;
	color: var(--ytbd-navy);
	font-size: var(--fs-16);
	font-weight: 800;
}

.ytbd-success {
	padding: var(--sp-8) var(--sp-5);
	border-radius: var(--r-lg);
	background: #fff;
	box-shadow: var(--sh-2);
	text-align: center;
	--ticket-notch: 40%;
}

.ytbd-success__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: var(--sp-4);
	border-radius: var(--r-full);
	background: var(--ytbd-success-light);
	color: var(--ytbd-success);
}

.ytbd-success__ref {
	display: inline-block;
	margin-block: var(--sp-3);
	padding: 0.5rem 1rem;
	border: 1px dashed var(--ytbd-teal);
	border-radius: var(--r-sm);
	background: var(--ytbd-teal-light);
	color: var(--ytbd-navy);
	font-size: var(--fs-20);
	font-weight: 800;
	letter-spacing: 0.06em;
}

.ytbd-success__summary {
	display: grid;
	gap: var(--sp-2);
	max-width: 420px;
	margin: var(--sp-5) auto;
	padding: var(--sp-4);
	border-radius: var(--r-md);
	background: var(--ytbd-bg);
	font-size: var(--fs-14);
	text-align: left;
}

.ytbd-success__summary div {
	display: flex;
	justify-content: space-between;
	gap: var(--sp-3);
}

.ytbd-success__summary dt,
.ytbd-success__summary .label {
	color: var(--ytbd-muted);
}

.ytbd-success__summary .value {
	color: var(--ytbd-navy);
	font-weight: 700;
	text-align: right;
}

/* ------------------------------------------------------------------ *
 * 18 Utilities + responsive + print
 * ------------------------------------------------------------------ */

.screen-reader-text,
.sr-only {
	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;
	top: -100px;
	left: var(--sp-4);
	z-index: 200;
	padding: var(--sp-3) var(--sp-4);
	border-radius: var(--r-sm);
	background: var(--ytbd-navy);
	color: #fff;
	font-weight: 700;
	transition: top 0.16s var(--ease);
}

.skip-link:focus {
	top: var(--sp-3);
	color: #fff;
}

.alignwide { max-width: var(--container); }
.alignfull { width: 100%; }
.aligncenter { margin-inline: auto; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide { display: none !important; }

/* ------------------------------------------------------------------ *
 * Bengali typography
 *
 * Bengali sits on a headline (matra) and carries tall ascenders and deep
 * descenders, so it needs more leading than Latin at the same size and looks
 * wrong with Latin's tight display tracking.
 * ------------------------------------------------------------------ */

.lang-bn {
	line-height: 1.85;
}

.lang-bn h1,
.lang-bn h2,
.lang-bn h3,
.lang-bn h4,
.lang-bn h5,
.lang-bn h6,
.lang-bn .hero__title,
.lang-bn .section-head__title {
	line-height: 1.4;
	letter-spacing: 0;
}

.lang-bn .eyebrow,
.lang-bn .hero__eyebrow,
.lang-bn .footer-col__title {
	letter-spacing: 0.04em;
	text-transform: none;
}

.lang-bn .btn,
.lang-bn .badge,
.lang-bn .chip,
.lang-bn .quick-service {
	line-height: 1.5;
}

.lang-bn .btn {
	padding-block: 0.65rem;
}

.lang-bn .card__excerpt {
	-webkit-line-clamp: 3;
}

.lang-bn .field__label,
.lang-bn .step__title,
.lang-bn .feature__title {
	line-height: 1.5;
}

/* Prices, references and dates stay in Latin digits, as the business writes
   them. Keeping them out of the Bengali face avoids mismatched figures. */
.lang-bn .price,
.lang-bn .ytbd-success__ref,
.lang-bn time {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 560px) {
	.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sticky-cta__price {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding-right: var(--sp-3);
	}
}

@media (min-width: 768px) {
	.container { padding-inline: var(--sp-6); }
	.section { padding-block: var(--sp-16); }
	.section--tight { padding-block: var(--sp-12); }
	.section-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
	.section-head--center {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	/* auto-fit so the rail fills the width whatever the category count is. */
	.quick-services__rail { grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
	.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tick-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.filter-bar__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	/* Two columns can't hold four blocks of such different heights: the short
	   brand block sat beside the eight-item services list and left a hole under
	   itself. Give the brand and the contact details a full row each, and pair
	   only the two link lists, which are the same shape. */
	.footer-brand,
	.footer-col--contact { grid-column: 1 / -1; }
	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.gallery {
		grid-template-columns: 2fr 1fr;
		gap: var(--sp-2);
	}
	.gallery__main { aspect-ratio: 4 / 3; }
	.gallery__thumbs {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, 1fr);
	}
	.gallery__thumb { aspect-ratio: auto; }
	.hero__inner { padding-block: var(--sp-20) var(--sp-16); }
}

@media (min-width: 1024px) {
	:root { --header-h: 80px; }
	.brand img,
	.brand .custom-logo { height: 44px; }
	.nav-desktop { display: block; }
	.header-actions .btn { display: inline-flex; }
	.header-actions .header-link {
		display: inline-flex;
		align-items: center;
		gap: var(--sp-1);
		padding-inline: var(--sp-2);
		color: var(--ytbd-navy);
		font-size: var(--fs-14);
		font-weight: 700;
	}
	.nav-toggle { display: none; }
	.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.filter-bar__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.footer-top { grid-template-columns: 1.4fr 0.9fr 0.9fr 1.35fr; }
	/* Four real columns fit here, so undo the full-width rows the two-column
	   layout needed. Without this the min-width rule below still applies and
	   the brand and contact blocks stretch across the whole footer. */
	.footer-brand,
	.footer-col--contact { grid-column: auto; }
	.content-layout { grid-template-columns: minmax(0, 1fr) 320px; }
	.service-layout {
		grid-template-columns: minmax(0, 1fr) 360px;
		align-items: start;
	}
	.booking-rail {
		position: sticky;
		top: calc(var(--header-h) + var(--sp-4));
	}
	.sticky-cta { display: none; }
	body.has-sticky-cta .site-footer { padding-bottom: 0; }
	body.has-sticky-cta .wa-float { bottom: var(--sp-4); }
	.cta-panel { padding: var(--sp-16) var(--sp-12); }
}

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

@media print {
	.site-header,
	.site-footer,
	.sticky-cta,
	.wa-float,
	.filter-bar,
	.drawer,
	.search-modal {
		display: none !important;
	}
	body { background: #fff; }
	.service-layout { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- *
 * Blog: share row, sidebar widgets, archive meta
 * --------------------------------------------------------------- */

.page-hero__meta {
	margin-top: var(--sp-2);
	color: rgba(255, 255, 255, 0.75);
	font-size: var(--fs-14);
}

.share-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-3);
	margin-top: var(--sp-6);
	padding-top: var(--sp-5);
	border-top: 1px solid var(--ytbd-border);
}

.share-row__label {
	font-weight: 700;
	font-size: var(--fs-14);
	color: var(--ytbd-muted);
}

.share-row__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-full);
	background: #fff;
	color: var(--ytbd-navy);
	font: inherit;
	font-size: var(--fs-14);
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.share-row__link:hover {
	border-color: var(--ytbd-teal);
	color: var(--ytbd-teal);
}

.badge--soft {
	background: var(--ytbd-teal-light);
	color: var(--ytbd-teal-dark);
}

/*
 * .card__body is a flex column, so a badge placed directly in it stretches the
 * full width of the card and stops reading as a pill. It only ever needs to be
 * as wide as its label.
 */
.card__body > .badge {
	align-self: flex-start;
	max-width: 100%;
}

.widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-list li + li {
	border-top: 1px solid var(--ytbd-border);
}

.widget-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-3);
	padding: 10px 0;
	color: var(--ytbd-text);
}

.widget-list a:hover {
	color: var(--ytbd-teal);
}

.widget-list__count {
	flex: 0 0 auto;
	min-width: 26px;
	padding: 1px 8px;
	border-radius: var(--r-full);
	background: var(--ytbd-bg);
	color: var(--ytbd-muted);
	font-size: var(--fs-12);
	text-align: center;
}

.widget-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-posts li + li {
	margin-top: var(--sp-4);
}

.widget-posts a {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: var(--sp-3);
	align-items: center;
	color: var(--ytbd-text);
	font-size: var(--fs-14);
	line-height: 1.4;
}

.widget-posts a:hover {
	color: var(--ytbd-teal);
}

.widget-posts img {
	width: 64px;
	height: 48px;
	object-fit: cover;
	border-radius: var(--r-sm);
}

/* A post with no thumbnail still lines its title up with the others. */
.widget-posts a > span:only-child {
	grid-column: 1 / -1;
}

/* =============================================================== *
 * The blog
 *
 * The catalogue is for choosing; the blog is for reading. Amber is the
 * editorial accent here — navy already carries structure and teal carries
 * booking, so amber marks "this is writing" without stealing teal's meaning.
 * The booking button in the rail stays teal, because it still books.
 * =============================================================== */

.blog-listing,
.article-layout,
.entry-hero,
.entry-feature {
	--ytbd-paper: #FDFBF7;
}

.single-post,
.blog,
.archive {
	background: #FDFBF7;
}

/* --- listing ---------------------------------------------------- */

.cat-pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	padding-block: var(--sp-6) var(--sp-2);
}

.cat-pill {
	padding: 7px 16px;
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-full);
	background: #fff;
	color: var(--ytbd-navy);
	font-size: var(--fs-14);
	font-weight: 600;
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.cat-pill:hover {
	border-color: var(--ytbd-amber);
	color: var(--ytbd-navy);
}

.cat-pill.is-current {
	background: var(--ytbd-navy);
	border-color: var(--ytbd-navy);
	color: #fff;
}

.blog-listing {
	padding-block: var(--sp-6) var(--sp-12);
}

.guide-grid {
	margin-top: var(--sp-8);
}

.badge--editorial {
	display: inline-flex;
	background: #FEF3E2;
	color: #92400E;
	font-weight: 700;
}

a.badge--editorial:hover {
	background: var(--ytbd-amber);
	color: #fff;
}

.lead-card {
	display: grid;
	gap: var(--sp-6);
	align-items: center;
	padding-top: var(--sp-6);
}

.lead-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--r-lg);
	aspect-ratio: 3 / 2;
}

.lead-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.lead-card:hover .lead-card__media img {
	transform: scale(1.03);
}

.lead-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sp-3);
}

.lead-card__title {
	font-size: var(--fs-28);
	line-height: 1.3;
	margin: 0;
}

.lead-card__title a {
	color: var(--ytbd-navy);
}

.lead-card__title a:hover {
	color: var(--ytbd-teal);
}

.lead-card__excerpt {
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-16);
}

.lead-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin: 0;
	color: var(--ytbd-muted);
	font-size: var(--fs-14);
}

/* --- article ---------------------------------------------------- */

.reading-progress {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 60;
	height: 3px;
	background: transparent;
	pointer-events: none;
}

.reading-progress__bar {
	display: block;
	height: 100%;
	width: 0;
	background: var(--ytbd-amber);
	transition: width 0.1s linear;
}

.entry-hero {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sp-3);
	/* Matches the article column so the left edges line up at every width. */
	max-width: 34rem;
	margin-inline: auto;
	padding-top: var(--sp-4);
}

.entry-title {
	margin: 0;
	font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
	line-height: 1.22;
}

/* The standfirst: a larger opening line, the one editorial device that works
   in Bangla. A drop cap does not — it collides with the matra. */
.entry-standfirst {
	margin: 0;
	font-size: var(--fs-20);
	line-height: 1.6;
	color: var(--ytbd-muted);
}

.entry-feature {
	max-width: 34rem;
	margin: var(--sp-8) auto var(--sp-2);
	border-radius: var(--r-lg);
	overflow: hidden;
}

.entry-feature img {
	width: 100%;
	height: auto;
	display: block;
}

.article-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-8);
	padding-block: var(--sp-8) var(--sp-12);
	/* Single column until the rail appears, so the measure has to be held here
	   too — without it the tablet range ran to 120 characters a line. */
	max-width: 34rem;
	margin-inline: auto;
}

/*
 * The reading measure. Body text was inheriting 16px across an 800px column,
 * which measured at about 100 characters a line — well past the 65–75 that
 * stays comfortable.
 *
 * The constraint belongs to the column, not to each paragraph. Capping the
 * paragraphs inside a full-width column left a ~300px void between the text
 * and the rail; narrowing the whole layout and centring it puts that space
 * back in the page margins where it reads as breathing room.
 *
 * The width is set from counting the characters actually rendered on a line —
 * Bangla glyphs are narrower than the 0.5em rule of thumb assumes, so the
 * usual Latin advice runs long here.
 */
.article-body .prose {
	font-size: var(--fs-18);
	line-height: 1.9;
}



.article-body .prose h2 {
	margin-top: var(--sp-10);
	margin-bottom: var(--sp-3);
	font-size: var(--fs-24);
	line-height: 1.35;
	scroll-margin-top: 96px;
}

.article-body .prose h3 {
	margin-top: var(--sp-8);
	font-size: var(--fs-20);
}

/*
 * The route spine. A guide is a sequence of stages — কীভাবে যাবেন, কোথায়
 * থাকবেন, খরচ — so a line down the edge with a marker at each stage says
 * something true about the shape of the article rather than decorating it.
 */
@media (min-width: 1024px) {
	.article-body .prose {
		position: relative;
		/* The spine lives in the gutter: padded in, then pulled back out by the
		   same amount, so the text still lines up with the title above it. */
		padding-left: var(--sp-6);
		margin-left: calc(var(--sp-6) * -1);
	}

	.article-body .prose::before {
		content: '';
		position: absolute;
		left: 0;
		top: 6px;
		bottom: 6px;
		width: 1px;
		background: var(--ytbd-border);
	}

	.article-body .prose h2 {
		position: relative;
	}

	.article-body .prose h2::before {
		content: '';
		position: absolute;
		left: calc(var(--sp-6) * -1 - 4px);
		top: 0.65em;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: var(--ytbd-amber);
		box-shadow: 0 0 0 4px #FDFBF7;
	}
}

/*
 * What follows the article body.
 *
 * .share-row carries no bottom margin and .service-block carries no top one,
 * so the share buttons and the FAQ heading sat flush against each other. Each
 * of these is a separate movement after the article, and each gets a rule
 * above it to say so.
 */
.article-body .active-filters {
	margin-top: var(--sp-8);
}

.article-body .share-row {
	margin-bottom: 0;
}

.article-body #faq {
	margin-top: var(--sp-10);
	padding-top: var(--sp-8);
	border-top: 1px solid var(--ytbd-border);
}

.article-body #faq .service-block__title {
	margin-bottom: var(--sp-5);
	font-size: var(--fs-24);
}

/* --- rail ------------------------------------------------------- */

.article-rail__inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-5);
}

.toc {
	padding: var(--sp-5);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-md);
	background: #fff;
}

.toc__title {
	margin: 0 0 var(--sp-3);
	font-size: var(--fs-13);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ytbd-muted);
}

.toc__list {
	margin: 0;
	padding-left: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	font-size: var(--fs-14);
	line-height: 1.5;
}

.toc__list a {
	color: var(--ytbd-text);
}

.toc__list a:hover,
.toc__list a.is-current {
	color: var(--ytbd-navy);
	font-weight: 700;
}

.toc__list li::marker {
	color: var(--ytbd-amber);
}

.rail-cta {
	padding: var(--sp-5);
	border: 1px solid var(--ytbd-border);
	border-radius: var(--r-md);
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
}

.rail-cta__title {
	margin: 0;
	font-weight: 700;
	color: var(--ytbd-navy);
}

.rail-cta__text {
	margin: 0;
	font-size: var(--fs-14);
	color: var(--ytbd-muted);
}

.comments-wrap {
	padding-bottom: var(--sp-12);
}

@media (min-width: 768px) {
	.lead-card {
		grid-template-columns: 1.15fr 1fr;
		gap: var(--sp-8);
	}
}

@media (min-width: 1024px) {
	.article-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		align-items: start;
		gap: var(--sp-10);
		max-width: 56rem;
		margin-inline: auto;
	}

	.article-rail__inner {
		position: sticky;
		top: 96px;
	}

	/* Same width as the article layout so their left edges line up. */
	.entry-hero,
	.entry-feature {
		max-width: 56rem;
		margin-inline: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reading-progress__bar {
		transition: none;
	}

	.lead-card:hover .lead-card__media img {
		transform: none;
	}
}
