/* ==========================================================================
   Hello Cap-Vert Child — variables & base styles
   ========================================================================== */

:root {
	--cv-primary: #0077B6;
	--cv-deep:    #023E8A;
	--cv-sand:    #F4E4C1;
	--cv-sun:     #FFB703;
	--cv-volcano: #1B1B1B;
	--cv-bg:      #FDFCF8;
	--cv-white:   #FFFFFF;

	--cv-radius-sm: 4px;
	--cv-radius-md: 8px;
	--cv-radius-lg: 16px;

	--cv-shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
	--cv-shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
	--cv-shadow-lg: 0 12px 32px rgba(0, 0, 0, .12);

	--cv-font-heading: 'Poppins', sans-serif;
	--cv-font-body:    'Inter', sans-serif;
}

body {
	font-family: var(--cv-font-body);
	color: var(--cv-volcano);
	background-color: var(--cv-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--cv-font-heading);
	color: var(--cv-deep);
}

a { color: var(--cv-primary); }
a:hover, a:focus { color: var(--cv-deep); }

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: .5rem 1rem;
	background: var(--cv-volcano);
	color: var(--cv-white);
	text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Language switcher
   ========================================================================== */
.cv-lang-switcher__list {
	display: flex;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.cv-lang-switcher__link {
	display: inline-block;
	padding: .35rem .65rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--cv-volcano);
	text-decoration: none;
	border-radius: var(--cv-radius-sm);
	transition: background-color .2s, color .2s;
}
.cv-lang-switcher__link:hover,
.cv-lang-switcher__link:focus {
	background-color: var(--cv-primary);
	color: var(--cv-white);
}
.cv-lang-switcher__item.is-active .cv-lang-switcher__link {
	background-color: var(--cv-sun);
	color: var(--cv-volcano);
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.cv-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.cv-badge {
	display: inline-block;
	padding: .25rem .75rem;
	border-radius: 999px;
	font-size: .8rem;
	font-weight: 600;
	color: var(--cv-white);
	background-color: var(--cv-deep);
}
.cv-badge--cat { background-color: var(--cv-primary); }

/* ==========================================================================
   Single Activité
   ========================================================================== */
.cv-single-activite__hero {
	position: relative;
	margin-bottom: 3rem;
}
.cv-single-activite__hero-image img {
	display: block;
	width: 100%;
	height: clamp(280px, 50vh, 540px);
	object-fit: cover;
}
.cv-single-activite__hero-content {
	max-width: 1200px;
	margin: -3rem auto 0;
	padding: 2rem;
	background: var(--cv-bg);
	border-radius: var(--cv-radius-lg);
	box-shadow: var(--cv-shadow-lg);
	position: relative;
	z-index: 2;
}
.cv-single-activite__breadcrumbs {
	display: flex;
	gap: .5rem;
	margin-bottom: 1rem;
}
.cv-single-activite__title {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	color: var(--cv-deep);
}

.cv-single-activite__body {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 1.5rem 4rem;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
}
@media (max-width: 900px) {
	.cv-single-activite__body { grid-template-columns: 1fr; }
}

.cv-single-activite__sidebar {
	order: 2;
}
@media (min-width: 901px) {
	.cv-single-activite__sidebar { order: unset; }
	.cv-info-card { position: sticky; top: 2rem; }
}

.cv-single-activite__content { order: 1; }

.cv-info-card {
	background: var(--cv-white);
	border-radius: var(--cv-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--cv-shadow-md);
	border-top: 4px solid var(--cv-sun);
}
.cv-info-card__price {
	display: flex;
	align-items: baseline;
	gap: .35rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px dashed #e5e0d4;
}
.cv-info-card__price-value {
	font-family: var(--cv-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--cv-deep);
	line-height: 1;
}
.cv-info-card__price-cur { font-size: 1.25rem; color: var(--cv-deep); font-weight: 600; }
.cv-info-card__price small { display: block; width: 100%; font-size: .85rem; color: #888; margin-top: .25rem; }

.cv-info-card__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	font-size: .92rem;
}
.cv-info-card__list li {
	padding: .5rem 0;
	border-bottom: 1px solid #f0ebde;
}
.cv-info-card__list li:last-child { border-bottom: 0; }
.cv-info-card__list strong { display: block; font-size: .8rem; color: #666; font-weight: 600; }

.cv-info-card__cta a { width: 100%; justify-content: center; }

.cv-prose {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--cv-volcano);
}
.cv-prose p { margin: 0 0 1rem; }

.cv-includes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 3rem 0;
}
@media (max-width: 768px) { .cv-includes { grid-template-columns: 1fr; } }
.cv-includes__col {
	background: var(--cv-sand);
	padding: 1.5rem;
	border-radius: var(--cv-radius-md);
}
.cv-includes__col--in    { background: #d8f3dc; }
.cv-includes__col--out   { background: #ffe5e5; }
.cv-includes__col--bring { background: var(--cv-sand); }
.cv-includes__col h3 { margin: 0 0 .75rem; font-size: 1.1rem; color: var(--cv-deep); }
.cv-includes__col p { margin: 0 0 .5rem; font-size: .92rem; }

.cv-gallery { margin: 3rem 0; }
.cv-gallery h2 { color: var(--cv-deep); margin-bottom: 1rem; }
.cv-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: .75rem;
}
.cv-gallery__item {
	margin: 0;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: var(--cv-radius-md);
}
.cv-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cv-gallery__item:hover img { transform: scale(1.05); }

.cv-booking {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--cv-sand);
	border-radius: var(--cv-radius-lg);
}
.cv-booking h2 { margin-top: 0; color: var(--cv-deep); }

/* ==========================================================================
   Archive Activité
   ========================================================================== */
.cv-archive-activite__header {
	padding: 4rem 1.5rem 2rem;
	text-align: center;
}
.cv-archive-activite__title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--cv-deep);
	margin: 0 0 .75rem;
}
.cv-archive-activite__subtitle {
	font-size: 1.1rem;
	color: #666;
	max-width: 640px;
	margin: 0 auto;
}

.cv-filters {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}
.cv-filters__field {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	font-size: .85rem;
	font-weight: 600;
	color: var(--cv-deep);
}
.cv-filters__field select {
	padding: .5rem .75rem;
	border-radius: var(--cv-radius-sm);
	border: 1px solid #d8d2c0;
	background: var(--cv-white);
	font-family: inherit;
	font-size: .95rem;
	min-width: 200px;
}

.cv-archive-activite__grid { padding-bottom: 4rem; }

/* ==========================================================================
   PRINCE TOURS — Header (sticky)
   ========================================================================== */
.pt-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(253, 252, 248, .96);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: box-shadow .2s, background .2s;
}
.pt-header.is-scrolled {
	background: rgba(253, 252, 248, .98);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}
.pt-header__inner {
	max-width: 1280px;
	margin-inline: auto;
	padding: .75rem 1.5rem;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: 1.5rem;
	align-items: center;
}

/* Brand */
.pt-header__brand {
	display: flex;
	align-items: center;
	gap: .75rem;
	text-decoration: none;
	color: var(--cv-deep);
}
.pt-header__logo {
	height: 56px;
	width: auto;
	display: block;
}
.pt-header__brand-text {
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--cv-deep);
	letter-spacing: .02em;
}
.pt-header__brand-tagline {
	display: none;
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cv-primary);
	font-weight: 600;
	margin-left: .5rem;
	border-left: 2px solid var(--cv-sun);
	padding-left: .75rem;
}
@media (min-width: 1024px) {
	.pt-header__brand-tagline { display: inline-block; }
}

/* Nav */
.pt-header__nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: center;
}
.pt-header__menu {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pt-header__menu a {
	font-family: var(--cv-font-heading);
	font-weight: 600;
	font-size: .95rem;
	color: var(--cv-volcano);
	text-decoration: none;
	padding: .25rem 0;
	border-bottom: 2px solid transparent;
	transition: color .15s, border-color .15s;
}
.pt-header__menu a:hover,
.pt-header__menu a:focus,
.pt-header__menu .current-menu-item > a {
	color: var(--cv-deep);
	border-bottom-color: var(--cv-sun);
}

/* Burger */
.pt-header__burger {
	display: none;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.pt-header__burger span {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--cv-deep);
	border-radius: 3px;
	transition: transform .25s, opacity .25s;
}
.pt-header[data-open] .pt-header__burger span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.pt-header[data-open] .pt-header__burger span:nth-child(2) { opacity: 0; }
.pt-header[data-open] .pt-header__burger span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* CTA WhatsApp */
.pt-header__cta {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .6rem 1.1rem;
	background: #25D366;
	color: var(--cv-white);
	border-radius: 999px;
	text-decoration: none;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: .9rem;
	transition: transform .15s, box-shadow .15s, background-color .15s;
	box-shadow: 0 2px 8px rgba(37, 211, 102, .35);
	white-space: nowrap;
}
.pt-header__cta:hover {
	background: #1da851;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(37, 211, 102, .45);
	color: var(--cv-white);
}
.pt-header__cta svg { flex-shrink: 0; }

/* Lang switcher inside nav */
.pt-header__lang { display: flex; align-items: center; }

/* MOBILE */
@media (max-width: 900px) {
	.pt-header__inner { grid-template-columns: auto 1fr auto; gap: .75rem; padding: .65rem 1rem; }
	.pt-header__burger { display: flex; }
	.pt-header__nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--cv-bg);
		padding: 1rem;
		box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
		border-top: 1px solid #efe9d8;
	}
	.pt-header[data-open] .pt-header__nav { display: flex; }
	.pt-header__menu { flex-direction: column; gap: 0; }
	.pt-header__menu li { border-bottom: 1px solid #efe9d8; }
	.pt-header__menu a { display: block; padding: .85rem 0; }
	.pt-header__lang { padding: 1rem 0 0; justify-content: center; }
	.pt-header__cta span { display: none; }
	.pt-header__cta { padding: .55rem .7rem; }
	.pt-header__logo { height: 44px; }
}

/* ==========================================================================
   PRINCE TOURS — Footer
   ========================================================================== */
.pt-footer {
	margin-top: 4rem;
	background: var(--cv-volcano);
	color: #d8d8d8;
}
.pt-footer a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color .15s;
}
.pt-footer a:hover { color: var(--cv-sun); }

.pt-footer__cta {
	background: linear-gradient(135deg, var(--cv-deep) 0%, var(--cv-primary) 100%);
	padding: 3rem 1.5rem;
	text-align: center;
}
.pt-footer__cta-inner { max-width: 700px; margin-inline: auto; }
.pt-footer__cta-title {
	color: var(--cv-white);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	margin: 0 0 .75rem;
}
.pt-footer__cta-sub {
	color: rgba(255, 255, 255, .9);
	font-size: 1.05rem;
	margin: 0 0 1.75rem;
}
.pt-footer__cta-btn {
	display: inline-block;
	background: #25D366;
	color: var(--cv-white) !important;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
	transition: transform .2s, box-shadow .2s;
}
.pt-footer__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
	color: var(--cv-white) !important;
}

.pt-footer__cols {
	max-width: 1280px;
	margin-inline: auto;
	padding: 3rem 1.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.pt-footer__col-title {
	color: var(--cv-sun);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 1rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.pt-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pt-footer__list li {
	padding: .35rem 0;
	font-size: .92rem;
}
.pt-footer__icon { display: inline-block; margin-right: .35rem; }
.pt-footer__brand-tagline {
	font-size: .85rem;
	color: #999;
	margin-top: 1rem;
	letter-spacing: .04em;
}
.pt-footer__social {
	display: flex;
	gap: .75rem;
	margin-top: 1rem;
}
.pt-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, .08);
	border-radius: 50%;
	transition: background-color .15s, transform .15s;
}
.pt-footer__social a:hover {
	background: var(--cv-sun);
	color: var(--cv-volcano);
	transform: translateY(-2px);
}

.pt-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding: 1.5rem;
	text-align: center;
	font-size: .85rem;
	color: #888;
}
.pt-footer__bottom p { margin: 0; }
.pt-footer__bottom span { display: inline-block; margin: 0 .15rem; }

/* Body offset for sticky header */
body.admin-bar .pt-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .pt-header { top: 46px; } }

/* ==========================================================================
   PRINCE TOURS — Single activité (GetYourGuide style)
   ========================================================================== */
.pt-single { padding: 1.5rem 0 0; }

.pt-single__breadcrumbs {
	font-size: .85rem;
	color: #888;
	margin-bottom: 1.5rem;
}
.pt-single__breadcrumbs a {
	color: var(--cv-primary);
	text-decoration: none;
}
.pt-single__breadcrumbs span[aria-current] {
	color: var(--cv-volcano);
	font-weight: 600;
}
.pt-single__breadcrumbs span[aria-hidden] { margin: 0 .35rem; color: #ccc; }

/* ----- Mosaic gallery ----- */
.pt-mosaic {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: .5rem;
	height: clamp(360px, 50vw, 540px);
	border-radius: var(--cv-radius-lg);
	overflow: hidden;
	margin-bottom: 1rem;
}
.pt-mosaic__main {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	position: relative;
	overflow: hidden;
}
.pt-mosaic__thumb {
	position: relative;
	overflow: hidden;
}
.pt-mosaic__thumb--1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.pt-mosaic__thumb--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.pt-mosaic__thumb--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.pt-mosaic__thumb--4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.pt-mosaic a {
	display: block;
	background: #ddd;
}
.pt-mosaic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s;
}
.pt-mosaic a:hover img { transform: scale(1.04); }
.pt-mosaic__more {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.1rem;
}
.pt-mosaic__cta {
	display: inline-block;
	background: var(--cv-white);
	border: 1px solid var(--cv-primary);
	color: var(--cv-primary);
	padding: .55rem 1.1rem;
	border-radius: var(--cv-radius-sm);
	font-family: var(--cv-font-heading);
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
	transition: background-color .15s;
}
.pt-mosaic__cta:hover { background: var(--cv-primary); color: var(--cv-white); }

@media (max-width: 768px) {
	.pt-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; height: auto; }
	.pt-mosaic__main { grid-column: 1 / 3; grid-row: 1 / 2; aspect-ratio: 16/10; }
	.pt-mosaic__thumb { aspect-ratio: 1; }
	.pt-mosaic__thumb--3, .pt-mosaic__thumb--4 { display: none; }
}

/* ----- Intro section ----- */
.pt-single__intro { padding: 2rem 1.5rem 1rem; }
.pt-single__intro-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.25rem;
	align-items: center;
	font-size: .9rem;
	color: #555;
	margin-bottom: 1rem;
}
.pt-rating { color: var(--cv-volcano); }
.pt-rating strong { color: var(--cv-deep); }
.pt-rating span { color: #888; font-size: .85rem; }
.pt-loc { color: #555; }

.pt-badge {
	display: inline-block;
	padding: .2rem .65rem;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
	color: var(--cv-white);
	background-color: var(--cv-primary);
}
.pt-badge--cat { background-color: var(--cv-primary); }
.pt-badge--diff { background-color: var(--cv-deep); }

.pt-single__title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	color: var(--cv-deep);
	margin: 0 0 1rem;
	line-height: 1.2;
}
.pt-single__excerpt {
	font-size: 1.15rem;
	color: #444;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.pt-quickfacts {
	list-style: none;
	margin: 0;
	padding: 1.25rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	background: var(--cv-sand);
	border-radius: var(--cv-radius-md);
}
.pt-quickfacts li {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-size: .9rem;
}
.pt-quickfacts__icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}
.pt-quickfacts strong { color: var(--cv-deep); font-size: .8rem; font-weight: 600; }

/* ----- Body (content + sidebar) ----- */
.pt-single__body {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
	padding-top: 2rem;
	padding-bottom: 4rem;
}
@media (max-width: 1024px) {
	.pt-single__body { grid-template-columns: 1fr; }
}

.pt-single__content { min-width: 0; }

/* ----- Highlights bar (always visible above tabs) ----- */
.pt-highlights-bar {
	background: linear-gradient(135deg, rgba(255, 183, 3, .12), rgba(255, 183, 3, .04));
	border: 1px solid rgba(255, 183, 3, .25);
	border-radius: var(--cv-radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.pt-highlights-bar__title {
	font-size: 1.15rem;
	color: var(--cv-deep);
	margin: 0 0 .85rem;
	font-weight: 700;
}

/* ----- Tabs ----- */
.pt-tabs {
	background: var(--cv-white);
	border: 1px solid #eee;
	border-radius: var(--cv-radius-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.pt-tabs__nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid #eee;
	background: #fafafa;
	overflow-x: auto;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.pt-tabs__nav::-webkit-scrollbar { height: 6px; }
.pt-tabs__nav::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.pt-tabs__btn {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	padding: 1rem 1.25rem;
	font-family: var(--cv-font-heading);
	font-weight: 600;
	font-size: .92rem;
	color: #666;
	cursor: pointer;
	transition: color .15s, border-color .15s, background-color .15s;
	white-space: nowrap;
	scroll-snap-align: start;
}
.pt-tabs__btn:hover { color: var(--cv-deep); background: rgba(0, 119, 182, .04); }
.pt-tabs__btn.is-active,
.pt-tabs__btn[aria-selected="true"] {
	color: var(--cv-deep);
	border-bottom-color: var(--cv-sun);
	background: var(--cv-white);
}
.pt-tabs__btn:focus-visible {
	outline: 2px solid var(--cv-primary);
	outline-offset: -2px;
}
.pt-tabs__icon { font-size: 1.1em; }
.pt-tabs__panels { padding: 1.75rem; }
.pt-tabs__panel { animation: pt-fade .25s ease-out; }
.pt-tabs__panel[hidden] { display: none; }

@keyframes pt-fade {
	from { opacity: 0; transform: translateY(4px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* No-JS fallback : show all panels stacked with their tab label */
.no-js .pt-tabs__nav { display: none; }
.no-js .pt-tabs__panel[hidden] { display: block; }
.no-js .pt-tabs__panel { padding-top: 1rem; border-top: 1px solid #eee; }
.no-js .pt-tabs__panel:first-child { border-top: 0; }

@media (max-width: 600px) {
	.pt-tabs__btn { padding: .85rem .9rem; font-size: .85rem; }
	.pt-tabs__panels { padding: 1.25rem; }
}

/* Old block style kept for backward compat */
.pt-block {
	background: var(--cv-white);
	border: 1px solid #eee;
	border-radius: var(--cv-radius-lg);
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}
.pt-block__title {
	font-size: 1.4rem;
	color: var(--cv-deep);
	margin: 0 0 1rem;
}

.pt-highlights__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: .65rem;
}
.pt-highlights__list li {
	font-size: .98rem;
	padding: .55rem .9rem;
	background: rgba(255, 255, 255, .55);
	border-left: 3px solid var(--cv-sun);
	border-radius: var(--cv-radius-sm);
	color: var(--cv-volcano);
}

.pt-pricing__hint {
	margin: 1rem 0 0;
	padding: .85rem 1rem;
	background: rgba(0, 119, 182, .06);
	border-radius: var(--cv-radius-sm);
	color: #444;
	font-size: .9rem;
}
.pt-map__addr { margin: 0 0 1rem; font-size: 1.05rem; }

.pt-prose {
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--cv-volcano);
}
.pt-prose p { margin: 0 0 1rem; }
.pt-prose strong { color: var(--cv-deep); }

/* ----- Timeline (auto-generated from MATIN/MIDI/APRÈS-MIDI markers) ----- */
.pt-step {
	position: relative;
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 1.25rem;
	padding: 1rem 0;
	margin-bottom: .5rem;
}
.pt-step + .pt-step { margin-top: .25rem; }

/* Vertical connecting line between markers */
.pt-step::before {
	content: '';
	position: absolute;
	left: 38px;
	top: 4rem;
	bottom: -1.5rem;
	width: 2px;
	background: linear-gradient(to bottom, var(--cv-sand) 0%, transparent 100%);
}
.pt-step:last-of-type::before { display: none; }

.pt-step__marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35rem;
}
.pt-step__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 1.6rem;
	background: var(--cv-bg);
	border: 3px solid var(--cv-sand);
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
	flex-shrink: 0;
	z-index: 1;
}
.pt-step__label {
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: .75rem;
	letter-spacing: .08em;
	color: var(--cv-deep);
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
}
.pt-step__body {
	background: var(--cv-white);
	border-left: 4px solid var(--cv-sun);
	border-radius: var(--cv-radius-md);
	padding: 1rem 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--cv-volcano);
}
.pt-step__body strong { color: var(--cv-deep); }

/* Color variants per period */
.pt-step--matin .pt-step__icon  { background: linear-gradient(135deg, #fff5d4, #ffe48a); border-color: #ffd75e; }
.pt-step--matin .pt-step__body  { border-left-color: #ffb703; }

.pt-step--midi .pt-step__icon   { background: linear-gradient(135deg, #fff2b3, #ffcc33); border-color: #ffb703; }
.pt-step--midi .pt-step__body   { border-left-color: #ff8c00; }

.pt-step--aprem .pt-step__icon  { background: linear-gradient(135deg, #ffd9b3, #ff9f5a); border-color: #ff7e2d; }
.pt-step--aprem .pt-step__body  { border-left-color: #d75d10; }

.pt-step--soir .pt-step__icon   { background: linear-gradient(135deg, #d8c4f0, #9b7ed1); border-color: #6e57b3; }
.pt-step--soir .pt-step__body   { border-left-color: #6e57b3; }

.pt-step--nuit .pt-step__icon   { background: linear-gradient(135deg, #2d3a55, #0f1933); border-color: #0f1933; color: #fff; }
.pt-step--nuit .pt-step__body   { border-left-color: #0f1933; }

.pt-step--jour .pt-step__icon   { background: linear-gradient(135deg, #b3e0ff, #4d9fdc); border-color: #0077B6; }
.pt-step--jour .pt-step__body   { border-left-color: #0077B6; }

.pt-step--etape .pt-step__icon  { background: linear-gradient(135deg, #d8f3dc, #74c69d); border-color: #2d6a4f; }
.pt-step--etape .pt-step__body  { border-left-color: #2d6a4f; }

@media (max-width: 600px) {
	.pt-step { grid-template-columns: 60px 1fr; gap: .75rem; }
	.pt-step::before { left: 22px; top: 3.5rem; }
	.pt-step__icon { width: 44px; height: 44px; font-size: 1.25rem; border-width: 2px; }
	.pt-step__label { font-size: .65rem; }
	.pt-step__body { padding: .85rem 1rem; font-size: .95rem; }
}

/* ----- Formula cards (auto from **NAME — XX€** patterns) ----- */
.pt-formula {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	align-items: center;
	gap: 1rem;
	background: linear-gradient(135deg, rgba(255, 183, 3, .08) 0%, rgba(255, 255, 255, 1) 100%);
	border: 1px solid rgba(255, 183, 3, .25);
	border-left: 4px solid var(--cv-sun);
	border-radius: var(--cv-radius-md);
	padding: .85rem 1.25rem;
	margin: .65rem 0;
	transition: transform .15s, box-shadow .15s;
}
.pt-formula:hover {
	transform: translateX(2px);
	box-shadow: 0 4px 14px rgba(255, 183, 3, .2);
}
.pt-formula__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--cv-white);
	border-radius: 50%;
	font-size: 1.4rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}
.pt-formula__name {
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: var(--cv-deep);
	letter-spacing: .02em;
	line-height: 1.3;
}
.pt-formula__price {
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--cv-deep);
	background: var(--cv-sun);
	padding: .35rem .85rem;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(255, 183, 3, .35);
}
@media (max-width: 600px) {
	.pt-formula { grid-template-columns: 40px 1fr; gap: .65rem; padding: .75rem 1rem; }
	.pt-formula__icon { width: 38px; height: 38px; font-size: 1.1rem; }
	.pt-formula__name { font-size: .92rem; }
	.pt-formula__price { grid-column: 2 / 3; justify-self: start; font-size: 1.05rem; padding: .25rem .65rem; }
}

/* ----- Mini-heading (auto from <strong>TITRE EN MAJUSCULES :</strong>) ----- */
.pt-mini-heading {
	display: inline-block;
	margin: 1.75rem 0 .75rem;
	padding: .35rem .85rem;
	font-family: var(--cv-font-heading);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--cv-deep);
	background: linear-gradient(90deg, rgba(255, 183, 3, .25) 0%, transparent 100%);
	border-left: 4px solid var(--cv-sun);
	border-radius: 0 var(--cv-radius-sm) var(--cv-radius-sm) 0;
	line-height: 1.3;
}
.pt-mini-heading + p { margin-top: 0; }
.pt-mini-heading:first-child { margin-top: 0; }

.pt-video__player {
	width: 100%;
	max-height: 540px;
	border-radius: var(--cv-radius-md);
	background: #000;
}

.pt-includes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
@media (max-width: 768px) { .pt-includes__grid { grid-template-columns: 1fr; } }
.pt-includes__col {
	padding: 1.25rem;
	border-radius: var(--cv-radius-md);
}
.pt-includes__col h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--cv-deep); }
.pt-includes__col ul { margin: 0; padding-left: 1.25rem; font-size: .92rem; }
.pt-includes__col li { margin-bottom: .25rem; }
.pt-includes__col--in    { background: #d8f3dc; }
.pt-includes__col--out   { background: #ffe5e5; }
.pt-includes__col--bring { background: var(--cv-sand); }

.pt-pricing__table {
	width: 100%;
	border-collapse: collapse;
	font-size: .95rem;
}
.pt-pricing__table tr { border-bottom: 1px solid #f0ebde; }
.pt-pricing__table tr:last-child { border-bottom: none; }
.pt-pricing__table td { padding: .85rem .75rem; }
.pt-pricing__table td:first-child { font-weight: 500; color: var(--cv-volcano); }
.pt-pricing__price {
	text-align: right;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	color: var(--cv-deep);
	white-space: nowrap;
}

.pt-map__embed { position: relative; }
.pt-map__embed iframe {
	width: 100%;
	height: 320px;
	border: 1px solid #eee;
	border-radius: var(--cv-radius-md);
	display: block;
}
.pt-map__link {
	display: inline-block;
	margin-top: .75rem;
	font-size: .9rem;
	color: var(--cv-primary);
	text-decoration: none;
	font-weight: 600;
}

.pt-faq__item {
	border-bottom: 1px solid #eee;
	padding: 1rem 0;
}
.pt-faq__item:last-child { border-bottom: none; }
.pt-faq__item summary {
	cursor: pointer;
	font-weight: 600;
	font-family: var(--cv-font-heading);
	font-size: 1.05rem;
	color: var(--cv-deep);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.pt-faq__item summary::-webkit-details-marker { display: none; }
.pt-faq__item summary::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--cv-primary);
	font-weight: 300;
	transition: transform .2s;
}
.pt-faq__item[open] summary::after { content: '−'; }
.pt-faq__item p {
	margin: .75rem 0 0;
	color: #555;
	line-height: 1.6;
}

.pt-reviews__hint { color: #777; font-size: .9rem; margin-bottom: 1.5rem; }
.pt-reviews__hint a { color: var(--cv-primary); }
.pt-reviews__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}
.pt-review {
	background: var(--cv-sand);
	padding: 1.25rem;
	border-radius: var(--cv-radius-md);
	margin: 0;
	font-size: .92rem;
}
.pt-review__stars { color: var(--cv-sun); margin-bottom: .5rem; }
.pt-review p { margin: 0 0 .75rem; color: var(--cv-volcano); font-style: italic; }
.pt-review cite { font-style: normal; color: #888; font-size: .85rem; font-weight: 600; }

/* ----- Sidebar (sticky bookcard) ----- */
.pt-single__sidebar { min-width: 0; }
@media (min-width: 1025px) {
	.pt-bookcard {
		position: sticky;
		top: calc(100px + 1rem);
	}
}
.pt-bookcard {
	background: var(--cv-white);
	border-radius: var(--cv-radius-lg);
	padding: 1.5rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	border-top: 4px solid var(--cv-sun);
}
.pt-bookcard__price {
	text-align: center;
	padding-bottom: 1rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px dashed #eee;
}
.pt-bookcard__price-from {
	display: block;
	font-size: .85rem;
	color: #888;
	margin-bottom: .25rem;
}
.pt-bookcard__price-value {
	display: block;
	font-family: var(--cv-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--cv-deep);
	line-height: 1;
}
.pt-bookcard__price-cur { font-size: 1.5rem; font-weight: 600; color: var(--cv-deep); }
.pt-bookcard__price-unit {
	display: block;
	font-size: .85rem;
	color: #888;
	margin-top: .35rem;
}

.pt-bookcard__form {
	display: grid;
	gap: .75rem;
	margin-bottom: 1.25rem;
}
.pt-bookcard__field {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	font-size: .85rem;
	font-weight: 600;
	color: var(--cv-deep);
}
.pt-bookcard__field input {
	padding: .55rem .75rem;
	font-size: 1rem;
	border: 1px solid #ddd;
	border-radius: var(--cv-radius-sm);
	font-family: inherit;
	background: var(--cv-bg);
}
.pt-bookcard__field input:focus {
	outline: none;
	border-color: var(--cv-primary);
	box-shadow: 0 0 0 3px rgba(0, 119, 182, .15);
}

.pt-bookcard__cta {
	display: block;
	text-align: center;
	background: #25D366;
	color: var(--cv-white);
	padding: 1rem 1.5rem;
	border-radius: var(--cv-radius-md);
	text-decoration: none;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
	transition: transform .15s, box-shadow .15s, background-color .15s;
}
.pt-bookcard__cta:hover {
	background: #1da851;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
	color: var(--cv-white);
}

.pt-bookcard__trust {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	font-size: .85rem;
	color: #555;
	display: grid;
	gap: .5rem;
}
.pt-bookcard__divider {
	height: 1px;
	background: #eee;
	margin: 1.25rem 0;
}
.pt-bookcard__alt {
	text-align: center;
	font-size: .9rem;
	color: #777;
	margin: 0;
}
.pt-bookcard__alt a {
	color: var(--cv-deep);
	text-decoration: none;
}

/* ----- Similar ----- */
.pt-single__similar { padding: 3rem 1.5rem 4rem; }
.pt-single__similar h2 {
	font-size: 1.6rem;
	color: var(--cv-deep);
	margin-bottom: 1.5rem;
}

/* ----- Card grid (used by render_card on archive + similar) ----- */
.cva-grid {
	display: grid;
	gap: 1.5rem;
}
.cva-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.cva-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
	.cva-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.cva-grid--cols-3, .cva-grid--cols-2 { grid-template-columns: 1fr; }
}
.cva-grid__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #888;
	padding: 3rem;
}

/* ==========================================================================
   CVA Cards
   ========================================================================== */
.cva-card {
	background: var(--cv-white);
	border-radius: var(--cv-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
	transition: transform .25s, box-shadow .25s;
	position: relative;
}
.cva-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.cva-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.cva-card__image {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #ddd;
}
.cva-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s;
}
.cva-card:hover .cva-card__image img { transform: scale(1.06); }
.cva-card__badge {
	position: absolute;
	top: .75rem;
	left: .75rem;
	background: var(--cv-deep);
	color: var(--cv-white);
	padding: .25rem .75rem;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .04em;
}
.cva-card__body { padding: 1.25rem; }
.cva-card__title {
	font-family: var(--cv-font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--cv-deep);
	margin: 0 0 .75rem;
	line-height: 1.3;
}
.cva-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .9rem;
	color: #666;
}
.cva-card__duree { font-size: .85rem; color: #666; }
.cva-card__prix {
	display: inline-flex;
	align-items: baseline;
	gap: .15rem;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	color: var(--cv-deep);
	font-size: 1.5rem;
	background: var(--cv-sun);
	padding: .35rem .75rem .35rem .65rem;
	border-radius: 999px;
	box-shadow: 0 3px 10px rgba(255, 183, 3, .35);
	line-height: 1;
}
.cva-card__prix-from {
	font-size: .7rem;
	font-weight: 600;
	color: var(--cv-volcano);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-right: .15rem;
	opacity: .85;
}
.cva-card__prix-cur {
	font-size: 1rem;
	font-weight: 700;
	color: var(--cv-deep);
	margin-left: .05rem;
}
.cva-card__prix--quote {
	background: var(--cv-deep);
	color: var(--cv-white);
	font-size: .9rem;
	box-shadow: 0 3px 10px rgba(2, 62, 138, .25);
}

/* ==========================================================================
   WhatsApp button (shortcode)
   ========================================================================== */
.cva-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .85rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1rem;
	transition: transform .15s, box-shadow .15s, background-color .15s;
}
.cva-whatsapp-btn::before {
	content: '💬';
	font-size: 1.1em;
}
.cva-whatsapp-btn--sun {
	background: var(--cv-sun);
	color: var(--cv-volcano);
	box-shadow: 0 4px 12px rgba(255, 183, 3, .3);
}
.cva-whatsapp-btn--sun:hover {
	background: #e8a800;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 183, 3, .4);
	color: var(--cv-volcano);
}
.cva-whatsapp-btn--primary {
	background: #25D366;
	color: var(--cv-white);
	box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
}
.cva-whatsapp-btn--primary:hover {
	background: #1da851;
	color: var(--cv-white);
	transform: translateY(-2px);
}
.cva-whatsapp-btn--outline {
	background: transparent;
	color: var(--cv-deep);
	border: 2px solid var(--cv-deep);
}
.cva-whatsapp-btn--outline:hover {
	background: var(--cv-deep);
	color: var(--cv-white);
}

/* ==========================================================================
   Floating WhatsApp button (plugin render_floating)
   ========================================================================== */
.cva-floating-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25D366;
	color: var(--cv-white);
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
	animation: pt-pulse 2.5s ease-in-out infinite;
	transition: transform .15s;
}
.cva-floating-whatsapp:hover {
	transform: scale(1.08);
	color: var(--cv-white);
}
.cva-floating-whatsapp svg { width: 32px; height: 32px; fill: currentColor; }

@keyframes pt-pulse {
	0%, 100% { box-shadow: 0 6px 16px rgba(0, 0, 0, .18), 0 0 0 0 rgba(37, 211, 102, .5); }
	50%      { box-shadow: 0 6px 16px rgba(0, 0, 0, .18), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   PRINCE TOURS — Front page (home)
   ========================================================================== */
.pt-home { margin: 0; }

/* ----- Reusable buttons ----- */
.pt-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: 1rem 2rem;
	border-radius: 999px;
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: transform .15s, box-shadow .15s, background-color .15s;
	border: 0;
	cursor: pointer;
}
.pt-btn--primary {
	background: var(--cv-sun);
	color: var(--cv-volcano);
	box-shadow: 0 6px 18px rgba(255, 183, 3, .4);
}
.pt-btn--primary:hover {
	background: #e8a800;
	color: var(--cv-volcano);
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(255, 183, 3, .55);
}
.pt-btn--whatsapp {
	background: #25D366;
	color: var(--cv-white);
	box-shadow: 0 6px 18px rgba(37, 211, 102, .4);
}
.pt-btn--whatsapp:hover {
	background: #1da851;
	color: var(--cv-white);
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(37, 211, 102, .55);
}
.pt-btn--outline {
	background: transparent;
	color: var(--cv-deep);
	border: 2px solid var(--cv-deep);
}
.pt-btn--outline:hover {
	background: var(--cv-deep);
	color: var(--cv-white);
}
.pt-btn--xl { padding: 1.25rem 2.5rem; font-size: 1.15rem; }

/* ----- Section header ----- */
.pt-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}
.pt-section-header__eyebrow {
	display: inline-block;
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cv-primary);
	font-weight: 700;
	margin-bottom: .75rem;
}
.pt-section-header h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	color: var(--cv-deep);
	margin: 0 0 .85rem;
	line-height: 1.2;
}
.pt-section-header p { color: #555; font-size: 1.05rem; margin: 0; }
.pt-section-header--light .pt-section-header__eyebrow { color: rgba(255, 183, 3, .9); }
.pt-section-header--light h2 { color: var(--cv-white); }
.pt-section-header--light p { color: rgba(255, 255, 255, .85); }

/* ============== HERO ============== */
.pt-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-color: var(--cv-deep);
	color: var(--cv-white);
	overflow: hidden;
	margin-top: -1px;
}
.pt-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 80%, rgba(2, 62, 138, .6), rgba(0, 0, 0, .3)),
		linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .55) 100%);
}
.pt-hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 4rem 1.5rem;
}
.pt-hero__eyebrow {
	display: inline-block;
	background: rgba(255, 255, 255, .15);
	backdrop-filter: blur(6px);
	padding: .4rem 1rem;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .04em;
	margin-bottom: 1.5rem;
}
.pt-hero__title {
	font-family: var(--cv-font-heading);
	font-size: clamp(2.5rem, 6vw, 4.75rem);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 1.25rem;
	color: var(--cv-white);
	text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.pt-hero__title em {
	font-style: italic;
	color: var(--cv-sun);
	font-weight: 700;
}
.pt-hero__sub {
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	margin: 0 auto 2rem;
	max-width: 640px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.pt-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}
.pt-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem 1rem;
	justify-content: center;
	font-size: .9rem;
	color: rgba(255, 255, 255, .85);
	font-weight: 500;
}
.pt-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 28px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, .6);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}
.pt-hero__scroll span {
	display: block;
	width: 4px;
	height: 8px;
	background: var(--cv-white);
	border-radius: 2px;
	animation: pt-scroll 1.8s ease-in-out infinite;
}
@keyframes pt-scroll {
	0% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(16px); opacity: 0; }
}
@media (max-width: 600px) {
	.pt-hero { min-height: 80vh; }
	.pt-hero__trust { font-size: .8rem; }
	.pt-hero__scroll { display: none; }
}

/* ============== FEATURES ============== */
.pt-features {
	padding: 4rem 0;
	background: var(--cv-bg);
}
.pt-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
@media (max-width: 768px) {
	.pt-features__grid { grid-template-columns: 1fr; }
}
.pt-feature {
	text-align: center;
	padding: 1.5rem;
}
.pt-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--cv-sun), #ff9d2d);
	border-radius: 50%;
	font-size: 2.25rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 8px 20px rgba(255, 183, 3, .25);
}
.pt-feature h3 {
	color: var(--cv-deep);
	font-size: 1.35rem;
	margin: 0 0 .65rem;
}
.pt-feature p {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* ============== SIGNATURE ACTIVITIES ============== */
.pt-signature {
	padding: 5rem 0;
	background: var(--cv-white);
}
.pt-signature__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1.25rem;
	margin-bottom: 3rem;
}
.pt-sig-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: var(--cv-radius-lg);
	background: var(--cv-deep);
	color: var(--cv-white);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
	transition: transform .25s, box-shadow .25s;
	min-height: 220px;
}
.pt-sig-card--big {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	min-height: 460px;
}
.pt-sig-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
	color: var(--cv-white);
}
.pt-sig-card__image { position: absolute; inset: 0; }
.pt-sig-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}
.pt-sig-card:hover .pt-sig-card__image img { transform: scale(1.06); }
.pt-sig-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .85) 100%);
}
.pt-sig-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--cv-sun);
	color: var(--cv-volcano);
	font-size: .75rem;
	font-weight: 700;
	padding: .25rem .75rem;
	border-radius: 999px;
	z-index: 2;
	letter-spacing: .04em;
}
.pt-sig-card__body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	z-index: 2;
}
.pt-sig-card--big .pt-sig-card__body { padding: 2rem; }
.pt-sig-card__title {
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.35rem;
	line-height: 1.2;
	margin: 0 0 .5rem;
	color: var(--cv-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
.pt-sig-card--big .pt-sig-card__title { font-size: 2rem; }
.pt-sig-card__excerpt {
	display: none;
	margin: 0 0 .75rem;
	font-size: .95rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, .92);
}
.pt-sig-card--big .pt-sig-card__excerpt { display: block; }
.pt-sig-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: .9rem;
	color: rgba(255, 255, 255, .9);
}
.pt-sig-card__price small { font-size: .8rem; opacity: .85; }
.pt-sig-card__price strong {
	font-family: var(--cv-font-heading);
	font-size: 1.35rem;
	color: var(--cv-sun);
}
.pt-signature__cta { text-align: center; }

@media (max-width: 900px) {
	.pt-signature__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
	.pt-sig-card--big { grid-column: 1 / 3; min-height: 320px; }
}
@media (max-width: 600px) {
	.pt-signature__grid { grid-template-columns: 1fr; }
	.pt-sig-card--big { grid-column: 1 / 2; min-height: 280px; }
	.pt-sig-card { min-height: 200px; }
}

/* ============== HOW IT WORKS ============== */
.pt-how {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--cv-deep) 0%, var(--cv-primary) 100%);
	color: var(--cv-white);
	position: relative;
	overflow: hidden;
}
.pt-how::before, .pt-how::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 183, 3, .08);
}
.pt-how::before { width: 300px; height: 300px; top: -100px; left: -100px; }
.pt-how::after  { width: 200px; height: 200px; bottom: -50px; right: -50px; }
.pt-how__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	counter-reset: pt-steps;
}
@media (max-width: 768px) { .pt-how__steps { grid-template-columns: 1fr; } }
.pt-how__step {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, .06);
	backdrop-filter: blur(8px);
	border-radius: var(--cv-radius-lg);
	border: 1px solid rgba(255, 255, 255, .1);
}
.pt-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--cv-sun);
	color: var(--cv-volcano);
	font-family: var(--cv-font-heading);
	font-weight: 700;
	font-size: 1.75rem;
	border-radius: 50%;
	margin-bottom: 1.25rem;
	box-shadow: 0 6px 16px rgba(255, 183, 3, .35);
}
.pt-how__step h3 {
	color: var(--cv-white);
	font-size: 1.25rem;
	margin: 0 0 .65rem;
}
.pt-how__step p {
	color: rgba(255, 255, 255, .85);
	font-size: .95rem;
	line-height: 1.6;
	margin: 0;
}

/* ============== ALL ACTIVITIES ============== */
.pt-all-activities {
	padding: 5rem 0;
	background: var(--cv-sand);
}

/* ============== TESTIMONIALS ============== */
.pt-testimonials {
	padding: 5rem 0;
	background: var(--cv-bg);
}
.pt-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
@media (max-width: 768px) { .pt-testimonials__grid { grid-template-columns: 1fr; } }
.pt-testimonial {
	background: var(--cv-white);
	padding: 1.75rem;
	border-radius: var(--cv-radius-lg);
	margin: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
	border-left: 4px solid var(--cv-sun);
}
.pt-testimonial__stars { color: var(--cv-sun); margin-bottom: .75rem; font-size: 1.1rem; }
.pt-testimonial p {
	margin: 0 0 1rem;
	font-style: italic;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--cv-volcano);
}
.pt-testimonial footer {
	font-size: .85rem;
	color: #888;
	border-top: 1px dashed #eee;
	padding-top: .75rem;
}
.pt-testimonial footer strong { color: var(--cv-deep); }

/* ============== FINAL CTA ============== */
.pt-final-cta {
	padding: 5rem 1.5rem;
	background:
		linear-gradient(135deg, rgba(255, 183, 3, .92), rgba(215, 93, 16, .92)),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M0 60 Q30 40 60 60 T120 60" stroke="white" stroke-width="1" fill="none" opacity="0.1"/></svg>');
	color: var(--cv-volcano);
	text-align: center;
}
.pt-final-cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--cv-volcano);
	margin: 0 0 .75rem;
}
.pt-final-cta p {
	font-size: 1.15rem;
	margin: 0 0 2rem;
	color: rgba(0, 0, 0, .75);
}
.pt-final-cta__alt {
	margin-top: 1.5rem !important;
	font-size: 1rem !important;
}
.pt-final-cta__alt a { color: var(--cv-deep); text-decoration: none; }

/* ==========================================================================
   PRINCE TOURS — Page CGV (sunset hero + legal layout)
   ========================================================================== */
.pt-cgv { margin: 0; }

/* ----- Sunset hero ----- */
.pt-cgv-hero {
	position: relative;
	min-height: 60vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cv-white);
}
.pt-cgv-hero__sky {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		#0d1b3d 0%,
		#3a1c5e 18%,
		#7a2c6f 35%,
		#c54a4f 55%,
		#ee8244 72%,
		#f7b955 85%,
		#fbd97a 100%
	);
	z-index: 0;
}
.pt-cgv-hero__sun {
	position: absolute;
	bottom: 28%;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	height: 220px;
	background: radial-gradient(circle at center,
		#fff5d4 0%,
		#ffd97a 30%,
		#ff9c54 60%,
		rgba(255, 130, 70, 0) 75%);
	border-radius: 50%;
	z-index: 0;
	filter: blur(0.5px);
	box-shadow:
		0 0 60px 30px rgba(255, 200, 100, .35),
		0 0 120px 60px rgba(255, 150, 90, .25);
	animation: pt-sun-pulse 6s ease-in-out infinite;
}
@keyframes pt-sun-pulse {
	0%, 100% { transform: translateX(-50%) scale(1); }
	50%      { transform: translateX(-50%) scale(1.04); }
}
.pt-cgv-hero__silhouette {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: 1;
	pointer-events: none;
}
.pt-cgv-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 760px;
	padding: 5rem 1.5rem 7rem;
}
.pt-cgv-hero__eyebrow {
	display: inline-block;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(8px);
	padding: .4rem 1rem;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
	letter-spacing: .04em;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(255, 255, 255, .2);
}
.pt-cgv-hero__title {
	font-family: var(--cv-font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1rem;
	color: var(--cv-white);
	text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}
.pt-cgv-hero__sub {
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	margin: 0 auto 1rem;
	max-width: 600px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .92);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.pt-cgv-hero__update {
	font-size: .85rem;
	color: rgba(255, 255, 255, .85);
	margin: 0;
	letter-spacing: .04em;
}

/* ----- TOC ----- */
.pt-cgv-toc {
	position: sticky;
	top: 90px;
	background: var(--cv-white);
	border-radius: var(--cv-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
	padding: 1.25rem 1.5rem;
	margin-top: -3rem;
	margin-bottom: 2.5rem;
	z-index: 5;
	max-width: 1200px;
	margin-inline: auto;
}
@media (max-width: 900px) {
	.pt-cgv-toc { position: static; }
}
.pt-cgv-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem .85rem;
	counter-reset: cgv-toc;
	font-size: .9rem;
}
.pt-cgv-toc li {
	counter-increment: cgv-toc;
}
.pt-cgv-toc li::before {
	content: counter(cgv-toc) '. ';
	color: var(--cv-sun);
	font-weight: 700;
	margin-right: .15rem;
}
.pt-cgv-toc a {
	color: var(--cv-deep);
	text-decoration: none;
	font-weight: 600;
	transition: color .15s, border-color .15s;
	border-bottom: 1px solid transparent;
}
.pt-cgv-toc a:hover {
	color: var(--cv-primary);
	border-bottom-color: var(--cv-sun);
}

/* ----- Body content (legal sections) ----- */
.pt-cgv-body {
	padding: 0 1.5rem 4rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--cv-volcano);
}
.pt-cgv-body h2 {
	font-family: var(--cv-font-heading);
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	color: var(--cv-deep);
	margin: 3rem 0 .75rem;
	padding-bottom: .5rem;
	border-bottom: 2px solid var(--cv-sand);
	position: relative;
	scroll-margin-top: 100px;
}
.pt-cgv-body h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 2px;
	background: var(--cv-sun);
}
.pt-cgv-body h3 {
	font-family: var(--cv-font-heading);
	font-size: 1.15rem;
	color: var(--cv-deep);
	margin: 1.5rem 0 .5rem;
}
.pt-cgv-body p { margin: 0 0 1rem; }
.pt-cgv-body ul, .pt-cgv-body ol {
	padding-left: 1.5rem;
	margin: 0 0 1.25rem;
}
.pt-cgv-body li { margin-bottom: .35rem; }
.pt-cgv-body strong { color: var(--cv-deep); }
.pt-cgv-body a {
	color: var(--cv-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.pt-cgv-body blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	background: var(--cv-sand);
	border-left: 4px solid var(--cv-sun);
	border-radius: 0 var(--cv-radius-md) var(--cv-radius-md) 0;
	font-style: italic;
	color: var(--cv-volcano);
}
.pt-cgv-body blockquote p:last-child { margin: 0; }

/* ----- Final CTA ----- */
.pt-cgv-cta {
	padding: 4rem 1.5rem;
	background: linear-gradient(135deg, var(--cv-sand) 0%, #f8e9c1 100%);
	text-align: center;
}
.pt-cgv-cta h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--cv-deep);
	margin: 0 0 .5rem;
}
.pt-cgv-cta p {
	font-size: 1.05rem;
	margin: 0 0 1.5rem;
	color: #555;
}
