/**
 * IV Tours USA Ads — components.
 *
 * Cards, the pinned destination track, overlapping compositions, the enquiry
 * modal, testimonials, FAQ, footer and floating WhatsApp.
 */

/* -------------------------------------------------------------------------
 * Where to Next — pinned horizontal storytelling
 * ---------------------------------------------------------------------- */

/*
 * The section itself is transparent: the dark colour belongs to the sticky
 * panel, so the extra scroll runway underneath can never read as a large empty
 * block on a tall display or a zoomed-out window.
 */
.ads-where {
	position: relative;
	background: transparent;
	scroll-margin-top: var(--ads-header-h);

	/* One premium gap token, shared by the card track and the 2.5 card sizing. */
	--ads-where-gap: clamp(1.5rem, 2.2vw, 2.5rem);
}

.ads-where__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--ads-lg);
}

.ads-where__head .ads-head__title {
	font-size: var(--ads-size-h2);
	color: var(--ads-white);
}

.ads-where__text {
	max-width: 40ch;
	color: var(--ads-text-invert-soft);
	font-size: var(--ads-size-small);
}

.ads-where__viewport {
	position: relative;
	width: 100%;
}

/*
 * Base layout: a native horizontal scroller. This is what a visitor gets with
 * no JavaScript at all, on phones and tablets, and the fallback whenever the
 * pinned journey is switched off.
 */
.ads-where__track {
	display: flex;
	align-items: stretch;
	gap: var(--ads-where-gap);
	overflow-x: auto;
	overscroll-behavior-x: contain;
	padding: 0.5rem var(--ads-gutter) 1.5rem;
	scrollbar-width: none;
	scroll-snap-type: x proximity;
}

.ads-where__track::-webkit-scrollbar {
	display: none;
}

.ads-where__track > * {
	/* Leaves roughly 15% of the next card visible to invite the swipe. */
	flex: 0 0 min(86vw, 28rem);
	scroll-snap-align: start;
}

/*
 * Desktop: the track becomes the surface that vertical scroll drives. The
 * viewport clips it, the track itself stops being a scroller so the two
 * mechanisms can never fight, and the 2.5 card sizing makes the journey
 * meaningful. The + gutter compensates for the left padding the track carries,
 * so 2.5 cards plus 2 gaps plus that padding is exactly the visible width.
 */
@keyframes ads-hint {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(5px);
	}
}

/* -------------------------------------------------------------------------
 * Destination card
 * ---------------------------------------------------------------------- */

.ads-dest {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	transition: transform var(--ads-transition-slow), border-color var(--ads-transition);
}

.ads-dest:hover,
.ads-dest:focus-within {
	transform: translateY(-6px);
	border-color: rgba(201, 162, 39, 0.55);
}

.ads-dest__media {
	position: relative;
	/* aspect-ratio: 4 / 5; */
	overflow: hidden;
	background: linear-gradient(140deg, var(--ads-secondary) 0%, var(--ads-ink) 100%);
}

.ads-dest__img {
	width: 100%;
	height: calc(100vh - 516px);
	object-fit: cover;
	transition: transform var(--ads-transition-slow);
}

.ads-dest:hover .ads-dest__img {
	transform: scale(1.06);
}

.ads-dest__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.ads-dest__meta {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.9rem 1rem;
	/* Deep enough for 13px uppercase white text over any photograph. */
	background: linear-gradient(180deg, rgba(7, 21, 34, 0) 0%, rgba(7, 21, 34, 0.86) 100%);
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.ads-dest__count {
	padding: 0.18rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--ads-radius-pill);
}

.ads-dest__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.2rem 1.2rem 1.4rem;
	flex: 1;
}

.ads-dest__title {
	font-size: var(--ads-size-h3);
	color: var(--ads-white);
}

.ads-dest__tagline {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--ads-accent-soft);
}

.ads-dest__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-invert-soft);
}

.ads-dest__price {
	margin-top: auto;
	padding-top: 0.5rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-white);
}

.ads-dest__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-top: 0.6rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-white);
	transition: color var(--ads-transition), gap var(--ads-transition);
}

.ads-dest__cta .ads-icon {
	width: 17px;
	height: 17px;
	transition: transform var(--ads-transition);
}

.ads-dest:hover .ads-dest__cta,
.ads-dest:focus-within .ads-dest__cta {
	color: var(--ads-accent-soft);
}

.ads-dest:hover .ads-dest__cta .ads-icon,
.ads-dest:focus-within .ads-dest__cta .ads-icon {
	transform: translateX(3px);
}

/* The whole card is one button, so it is fully keyboard reachable. */
.ads-dest__trigger,
.ads-style__trigger,
.ads-pkg__trigger,
.ads-service__trigger,
.ads-vehicle__trigger,
.ads-fleet__trigger {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 0;
	background: transparent;
	border-radius: inherit;
}

.ads-dest__trigger:focus-visible,
.ads-style__trigger:focus-visible,
.ads-pkg__trigger:focus-visible,
.ads-service__trigger:focus-visible,
.ads-vehicle__trigger:focus-visible,
.ads-fleet__trigger:focus-visible {
	outline: 3px solid var(--ads-accent);
	outline-offset: -3px;
}

/* -------------------------------------------------------------------------
 * Prices
 * ---------------------------------------------------------------------- */

.ads-price {
	/* A long unit such as "/ hour (4-hour minimum)" must be able to
	   break, or it pushes past the card edge on a narrow column. */
	max-width: 100%;
	white-space: normal;
}

.ads-price__value {
	font-variant-numeric: tabular-nums;
}
.ads-price .ads-price__value{
	font-size: 26px;
    font-weight: 900;
}

/* -------------------------------------------------------------------------
 * Travel styles — three-column grid
 * ---------------------------------------------------------------------- */

.ads-styles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.ads-style {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.4rem 1.3rem 1.5rem;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	transition: transform var(--ads-transition), box-shadow var(--ads-transition), border-color var(--ads-transition);
	overflow: hidden;
}

.ads-style:hover,
.ads-style:focus-within {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: var(--ads-shadow-md);
}

.ads-style__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ads-sm);
	margin-bottom: 0.35rem;
}

.ads-style__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(201, 162, 39, 0.14);
	color: var(--color-accent, #c9a227);
	color: var(--ads-accent);
}

.ads-style__media {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	flex: none;
	position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.3s;
}

.ads-style:hover .ads-style__media {
    width: 100%;
    height: 100%;
    border-radius: 0;
    top: 0;
    right: 0;
    z-index: 0;
}

.ads-style:hover .ads-style__media:before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.8) 100%);
	width:100%;
	height:100%;
	z-index: 1;
}

.ads-style__top, .ads_content{
	position: relative;
	z-index:2;
}

.ads-style:hover .ads_content *{
	color: white !important;
}

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

.ads-style__title {
	font-size: var(--ads-size-h4);
}

.ads-style__tagline {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: 0.98rem;
	color: var(--ads-secondary);
}

.ads-style__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-style__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	margin-top: auto;
	padding-top: 0.7rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-primary);
	transition: color var(--ads-transition);
}

.ads-style:hover .ads-style__cta,
.ads-style:focus-within .ads-style__cta {
	color: var(--ads-accent);
}

.ads-style__cta .ads-icon {
	width: 16px;
	height: 16px;
}

/* -------------------------------------------------------------------------
 * Why IV Tours — three-column grid
 * ---------------------------------------------------------------------- */

.ads-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 2.8vw, 2.5rem);
}

.ads-why__item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: var(--ads-md);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ads-why__icon {
	color: var(--ads-accent-soft);
}

.ads-why__title {
	font-size: var(--ads-size-h4);
	color: var(--ads-white);
}

.ads-why__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-invert-soft);
}

/* -------------------------------------------------------------------------
 * Packages
 * ---------------------------------------------------------------------- */

.ads-packages__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: clamp(1.25rem, 2.2vw, 1.75rem);
}

.ads-pkg {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	transition: transform var(--ads-transition), box-shadow var(--ads-transition), border-color var(--ads-transition);
}

.ads-pkg:hover,
.ads-pkg:focus-within {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: var(--ads-shadow-lg);
}

.ads-pkg__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(140deg, var(--ads-surface-2) 0%, var(--ads-surface-3) 100%);
}

.ads-pkg__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ads-transition-slow);
}

.ads-pkg:hover .ads-pkg__img,
.ads-pkg:focus-within .ads-pkg__img {
	transform: scale(1.05);
}

.ads-pkg__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.ads-pkg__duration {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	padding: 0.3rem 0.7rem;
	background: rgba(7, 21, 34, 0.72);
	backdrop-filter: blur(6px);
	border-radius: var(--ads-radius-pill);
	color: var(--ads-white);
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ads-pkg__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.25rem 1.25rem 1.4rem;
	flex: 1;
}

.ads-pkg__title {
	font-size: var(--ads-size-h4);
}

.ads-pkg__subtitle {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: 0.98rem;
	color: var(--ads-secondary);
}

.ads-pkg__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-pkg__regions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin-top: 0.2rem;
}

.ads-pkg__regions li {
	padding: 0.15rem 0.5rem;
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-pill);
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ads-muted);
}

.ads-pkg__price {
	margin-top: auto;
	padding-top: 0.7rem;
	font-family: var(--ads-font-display);
	font-size: var(--ads-size-h4);
	font-weight: 600;
}

.ads-pkg__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-top: 0.5rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-primary);
	transition: color var(--ads-transition);
}

.ads-pkg:hover .ads-pkg__cta,
.ads-pkg:focus-within .ads-pkg__cta {
	color: var(--ads-accent);
}

.ads-pkg__cta .ads-icon {
	width: 17px;
	height: 17px;
}

/* -------------------------------------------------------------------------
 * Services
 * ---------------------------------------------------------------------- */

.ads-services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.ads-service {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1.4rem 1.3rem 1.5rem;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	transition: transform var(--ads-transition), box-shadow var(--ads-transition), border-color var(--ads-transition);
}

.ads-service:hover,
.ads-service:focus-within {
	transform: translateY(-5px);
	border-color: transparent;
	box-shadow: var(--ads-shadow-md);
}

.ads-service__head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ads-service__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: var(--ads-radius-pill);
	background: rgba(23, 64, 95, 0.08);
	color: var(--ads-secondary);
}

.ads-service:hover .ads-service__icon {
	background: rgba(201, 162, 39, 0.16);
	color: var(--ads-accent);
}

.ads-service__title {
	font-size: var(--ads-size-h4);
}

.ads-service__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-service__features {
	display: grid;
	gap: 0.3rem;
	font-size: var(--ads-size-tiny);
	color: var(--ads-text-soft);
}

.ads-service__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
}

.ads-service__features .ads-icon {
	width: 15px;
	height: 15px;
	margin-top: 3px;
	color: var(--ads-accent);
}

.ads-service__price {
	margin-top: auto;
	padding-top: 0.6rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
}

.ads-service__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-top: 0.35rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-primary);
	transition: color var(--ads-transition);
}

.ads-service:hover .ads-service__cta,
.ads-service:focus-within .ads-service__cta {
	color: var(--ads-accent);
}

.ads-service__cta .ads-icon {
	width: 17px;
	height: 17px;
}

/* -------------------------------------------------------------------------
 * Vehicles and fleet
 * ---------------------------------------------------------------------- */

.ads-vehicles__categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: clamp(1.25rem, 2.2vw, 1.75rem);
}

.ads-vehicle {
	position: relative;
	display: flex;
	flex-direction: column;
	/* background: rgba(255, 255, 255, 0.04); */
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	transition: transform var(--ads-transition), border-color var(--ads-transition);
}

.ads-vehicle:hover,
.ads-vehicle:focus-within {
	transform: translateY(-5px);
	border-color: rgba(201, 162, 39, 0.5);
}

.ads-vehicle__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
}

.ads-vehicle__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ads-transition-slow);
}

.ads-vehicle:hover .ads-vehicle__img {
	transform: scale(1.05);
}

.ads-vehicle__mark {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--ads-accent-soft);
	background: radial-gradient(120% 120% at 30% 20%, rgba(201, 162, 39, 0.16) 0%, rgba(7, 21, 34, 0) 60%);
}

.ads-vehicle__mark .ads-icon {
	width: 44px;
	height: 44px;
	stroke-width: 1;
}

.ads-vehicle__body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	padding: 1.2rem 1.2rem 1.4rem;
	flex: 1;
}

.ads-vehicle__title {
	font-size: var(--ads-size-h4);
	color: var(--ads-white);
}

.ads-vehicle__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-invert-soft);
}

.ads-vehicle__capacity {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: var(--ads-size-small);
	color: var(--ads-accent-soft);
}

.ads-vehicle__features {
	display: grid;
	gap: 0.25rem;
	font-size: var(--ads-size-tiny);
	color: var(--ads-text-invert-soft);
}

.ads-vehicle__features li {
	position: relative;
	padding-left: 0.9rem;
}

.ads-vehicle__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ads-accent);
}

.ads-vehicle__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	margin-top: auto;
	padding-top: 0.7rem;
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-white);
}

.ads-fleet {
	margin-top: var(--space-xl, 3.5rem);
	padding-top: var(--ads-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-fleet__title {
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: var(--ads-sm);
}

.ads-fleet__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0.25rem var(--ads-lg);
}

.ads-fleet__item {
	position: relative;
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--ads-sm);
	padding: 0.7rem 0.6rem;
	border-radius: var(--ads-radius);
	transition: background var(--ads-transition);
}

.ads-fleet__item:hover,
.ads-fleet__item:focus-within {
	background: rgba(255, 255, 255, 0.05);
}

.ads-fleet__media {
	display: block;
	width: 68px;
	height: 52px;
	border-radius: var(--radius, 3px);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}

.ads-fleet__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ads-fleet__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ads-fleet__name {
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-white);
}

.ads-fleet__capacity {
	font-size: var(--ads-size-tiny);
	color: rgba(255, 255, 255, 0.6);
}

.ads-fleet__price {
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-white);
	white-space: nowrap;
}

/* -------------------------------------------------------------------------
 * Overlapping image composition
 * ---------------------------------------------------------------------- */

.ads-comp {
	position: relative;
	width: 100%;
	min-height: 340px;
}

.ads-comp__item {
	position: absolute;
	margin: 0;
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	box-shadow: var(--ads-shadow-lg);
	background: var(--ads-warm);
}

.ads-comp__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ads-comp__caption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.4rem 0.9rem 0.7rem;
	background: linear-gradient(180deg, rgba(7, 21, 34, 0) 0%, rgba(7, 21, 34, 0.8) 100%);
	color: var(--ads-white);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ads-comp__item--1 {
	top: 0;
	left: 0;
	width: 54%;
	aspect-ratio: 4 / 5;
	transform: rotate(-2.4deg);
	z-index: 1;
}

.ads-comp__item--2 {
	top: 12%;
	right: 0;
	width: 46%;
	aspect-ratio: 4 / 5;
	transform: rotate(2deg);
	z-index: 2;
}

.ads-comp__item--3 {
	bottom: -4%;
	left: 26%;
	width: 40%;
	aspect-ratio: 1 / 1;
	transform: rotate(-1deg);
	z-index: 3;
}

.ads-comp-band {
	padding-block: var(--ads-2xl);
	background: var(--color-warm, #f4efe7);
	background: var(--ads-warm);
	overflow: hidden;
	scroll-margin-top: var(--ads-header-h);
}

.ads-comp-band__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.ads-comp-band__title {
	font-size: var(--ads-size-h2);
	margin-bottom: var(--ads-sm);
}

.ads-comp-band__text {
	color: var(--ads-text-soft);
	max-width: 48ch;
}

.ads-comp-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ads-xs);
	margin-top: var(--ads-lg);
}

/* -------------------------------------------------------------------------
 * Testimonials
 * ---------------------------------------------------------------------- */

.ads-quotes__stats {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ads-md);
	margin-bottom: var(--ads-lg);
	font-family: var(--ads-font-display);
	font-size: var(--ads-size-h3);
	color: var(--ads-primary);
}

.ads-quotes__stats li {
	padding-right: var(--ads-md);
	border-right: 1px solid var(--ads-border);
}

.ads-quotes__stats li:last-child {
	border-right: 0;
}

.ads-quotes__grid {
	columns: 3 20rem;
	column-gap: clamp(1rem, 2vw, 1.5rem);
}

.ads-quote {
	break-inside: avoid;
	margin: 0 0 clamp(1rem, 2vw, 1.5rem);
	padding: 1.35rem;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
}

.ads-quote__text {
	margin: 0.8rem 0 1.1rem;
	font-family: var(--ads-font-body);
	font-size: 1.02rem;
	line-height: 1.6;
}

.ads-quote__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--ads-border);
}

.ads-quote__avatar {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 50%;
	background: var(--ads-primary);
	color: var(--ads-white);
	font-size: var(--ads-size-small);
	font-weight: 600;
}

.ads-quote__person {
	display: flex;
	flex-direction: column;
	min-width: 0;
	font-size: var(--ads-size-small);
}

.ads-quote__country,
.ads-quote__trip {
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
}

/* -------------------------------------------------------------------------
 * FAQ
 * ---------------------------------------------------------------------- */

.ads-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.ads-faq__aside {
	position: sticky;
	top: calc(var(--ads-header-h) + 1.5rem);
}

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

.ads-faq__item:first-child {
	border-top: 1px solid var(--ads-border);
}

.ads-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ads-md);
	padding: 1.05rem 0;
	font-family: var(--ads-font-display);
	font-size: var(--ads-size-h4);
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	transition: color var(--ads-transition);
}

.ads-faq__question::-webkit-details-marker {
	display: none;
}

.ads-faq__question:hover {
	color: var(--ads-accent);
}

.ads-faq__marker {
	position: relative;
	flex: none;
	width: 14px;
	height: 14px;
}

.ads-faq__marker::before,
.ads-faq__marker::after {
	content: "";
	position: absolute;
	background: currentColor;
	transition: transform var(--ads-transition);
}

.ads-faq__marker::before {
	left: 0;
	top: 6px;
	width: 14px;
	height: 1.5px;
}

.ads-faq__marker::after {
	left: 6px;
	top: 0;
	width: 1.5px;
	height: 14px;
}

.ads-faq__item[open] .ads-faq__marker::after {
	transform: rotate(90deg);
}

.ads-faq__answer {
	padding-bottom: 1.25rem;
	color: var(--ads-text-soft);
	font-size: var(--ads-size-small);
	max-width: 64ch;
}

.ads-faq__answer p {
	margin-bottom: 0.7rem;
}

.ads-faq__answer p:last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
 * Final CTA
 * ---------------------------------------------------------------------- */

.ads-final {
	text-align: center;
	background: var(--ads-dark);
	color: var(--ads-text-invert);
	padding-block: clamp(4.5rem, 9vw, 8rem);
	scroll-margin-top: var(--ads-header-h);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

/*
 * The travel photograph behind the closing call to action. The dark brand
 * colour stays as the fallback background, and the scrim is heavy enough that
 * the copy keeps full contrast whatever photograph is chosen.
 */
.ads-final__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.ads-final__media picture,
.ads-final__img {
	width: 100%;
	height: 100%;
}

.ads-final__img {
	object-fit: cover;
	object-position: center 45%;
}

.ads-final__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(7, 21, 34, 0.9) 0%, rgba(7, 21, 34, 0.78) 50%, rgba(7, 21, 34, 0.92) 100%);
}

.ads-final__inner {
	max-width: 44rem;
	margin-inline: auto;
	position: relative;
}

.ads-final__title {
	font-size: var(--ads-size-h1, clamp(2.1rem, 1.35rem + 3vw, 3.6rem));
	color: var(--ads-white);
}

.ads-final__subtitle {
	margin-top: var(--ads-sm);
	font-size: var(--ads-size-h4);
	color: rgba(255, 255, 255, 0.82);
}

.ads-final__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--ads-xs);
	margin-top: var(--ads-lg);
}

.ads-final__trust {
	margin-top: var(--ads-lg);
	font-size: var(--ads-size-tiny);
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
 * Enquiry modal
 * ---------------------------------------------------------------------- */

.ads-modal {
	border: 0;
	padding: 0;
	margin: auto;
	width: min(620px, calc(100vw - 2rem));
	max-height: min(88vh, 900px);
	background: transparent;
	overflow: visible;
	color: var(--ads-text);
}

.ads-modal::backdrop {
	background: rgba(7, 21, 34, 0.72);
	backdrop-filter: blur(4px);
}

.ads-modal__panel {
	position: relative;
	max-height: min(88vh, 900px);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background: var(--ads-white);
	border-radius: var(--ads-radius-lg);
	box-shadow: var(--ads-shadow-lg);
}

.ads-modal__close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--ads-border);
	border-radius: 50%;
	background: var(--ads-white);
	color: var(--ads-text);
	transition: background var(--ads-transition), border-color var(--ads-transition);
}

.ads-modal__close:hover {
	background: var(--ads-warm);
	border-color: var(--ads-accent);
}

.ads-modal__close .ads-icon {
	width: 18px;
	height: 18px;
}

.ads-modal__eyebrow {
	color: var(--ads-accent-ink);
	font-size: var(--ads-size-eyebrow);
	letter-spacing: var(--ads-eyebrow-track);
	text-transform: uppercase;
	font-weight: 600;
}


.ads-modal__title {
	font-size: var(--ads-size-h3);
	padding-right: 3rem;
}

.ads-modal__text {
	margin-top: 0.4rem;
	margin-bottom: var(--ads-md);
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-modal__alert {
	padding: 0.85rem 1rem;
	margin-bottom: var(--ads-sm);
	background: var(--ads-danger-bg);
	color: var(--ads-danger-ink);
	border: 1px solid rgba(179, 38, 30, 0.25);
	border-radius: var(--ads-radius);
	font-size: var(--ads-size-small);
}

/*
 * One enquiry form, two placements. The modal and the hero both render
 * template-parts/enquiry-form.php, so the layout and the action block live here
 * and neither placement has to own its own copy.
 */
.ads-modal__form,
.ads-hero__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--ads-sm);
}

/*
 * The hidden inputs and the bot trap are direct children of the form, so in a
 * grid they each became a row and each one consumed a row gap. Five empty rows
 * of gap is a few hundred pixels of nothing. Taking them out of flow leaves them
 * in the DOM and still submitted, which is what the handler needs.
 */
.ads-modal__form > input[type="hidden"],
.ads-hero__form > input[type="hidden"],
.ads-modal__form > .ads-field--honeypot,
.ads-hero__form > .ads-field--honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/*
 * The submit and WhatsApp actions are pinned to the foot of the scrolling
 * panel. The panel scrolls, and the form is taller than the panel on a laptop
 * and on every phone, so an action block that simply followed the fields ended
 * up below the visible area: the WhatsApp button was rendered, focusable and
 * simply off screen, which is why it read as missing.
 */
.ads-enquiry__actions {
	grid-column: 1 / -1;
	display: grid;
	gap: var(--ads-xs);
	margin-top: var(--ads-xs);
}

/*
 * Inside the modal the actions are pinned to the foot of the scrolling panel.
 * The panel scrolls and the form is taller than the panel on a laptop and on
 * every phone, so an action block that simply followed the fields ended up
 * below the visible area: the WhatsApp button was rendered, focusable and
 * simply off screen, which is why it read as missing. The hero card is not a
 * scroll container, so it keeps the plain block above.
 */
.ads-modal__panel .ads-enquiry__actions {
	/* position: sticky; */
	bottom: 0;
	padding-top: var(--ads-xs);
	padding-bottom: 0.35rem;
	background: var(--ads-white);
	box-shadow: 0 -10px 12px -10px rgba(7, 21, 34, 0.22);
}

.ads-enquiry__note {
	grid-column: 1 / -1;
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
	text-align: center;
}

/*
 * The hero card has to sit inside the hero band, not stretch it, so its form
 * runs on a tighter rhythm than the modal's. Same fields, same validation, same
 * endpoint, just a denser grid.
 */
.ads-hero__form {
	row-gap: var(--ads-xs);
	column-gap: var(--ads-sm);
}

.ads-hero__form .ads-field__label {
	font-size: var(--ads-size-tiny);
	margin-bottom: 0.15rem;
}

.ads-hero__form .ads-field__control input,
.ads-hero__form .ads-field__control select,
.ads-hero__form .ads-field__control textarea {
	padding: 0.45em 0.65em;
}

.ads-hero__form .ads-field__control textarea {
	height: 62px;
	min-height: 62px;
}

/* The interest line is a readout, not a question the visitor answers, so it
   becomes one compact row instead of a labelled block. */
.ads-hero__form .ads-field--interest {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ads-sm);
	padding: 0.5rem 0.75rem;
	background: var(--ads-warm);
	border-radius: var(--ads-radius);
	flex-direction: row;
}

.ads-hero__form .ads-field--interest .ads-field__label {
	margin: 0;
	color: var(--ads-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.66rem;
}

.ads-hero__form .ads-field__hint {
	display: none;
}

.ads-hero__form .ads-checkbox {
	font-size: var(--ads-size-tiny);
	line-height: 1.4;
}

/* Submit and WhatsApp share the row: two full-width stacked buttons cost an
   extra 50px, which is the difference between fitting the hero and growing it. */
.ads-hero__form .ads-enquiry__actions {
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: var(--ads-xs);
	margin-top: 0;
}

/* The card head already says a specialist replies within two hours, so the
   reassurance line under the buttons would just repeat it. */
.ads-hero__form .ads-enquiry__note {
	display: none;
}

.ads-modal__success {
	text-align: center;
	padding-block: var(--ads-md);
}

.ads-modal__success-icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto var(--ads-sm);
	border-radius: 50%;
	background: rgba(20, 83, 45, 0.1);
	color: var(--ads-success);
}

.ads-modal__success .ads-modal__title {
	padding-right: 0;
}

.ads-modal__success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--ads-xs);
	margin-top: var(--ads-lg);
}

.ads-modal.is-fallback {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	place-items: center;
	padding: 1rem;
	background: rgba(7, 21, 34, 0.72);
}

.ads-modal.is-fallback .ads-modal__panel {
	width: min(620px, 100%);
}

/* -------------------------------------------------------------------------
 * Floating WhatsApp
 * ---------------------------------------------------------------------- */

.ads-floating {
	position: fixed;
	right: clamp(0.75rem, 2vw, 1.5rem);
	bottom: clamp(0.75rem, 2vw, 1.5rem);
	z-index: 80;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity var(--ads-transition), transform var(--ads-transition), visibility var(--ads-transition);
}

.ads-floating.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.ads-floating__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.8rem 1.15rem;
	border-radius: var(--ads-radius-pill);
	background: #25d366;
	color: #05340f;
	font-size: var(--ads-size-small);
	font-weight: 600;
	box-shadow: var(--ads-shadow-md);
	transition: transform var(--ads-transition);
}

.ads-floating__btn:hover {
	transform: translateY(-2px);
}

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

.ads-footer {
	background: var(--ads-dark);
	color: var(--ads-text-invert-soft);
	padding-top: var(--ads-2xl);
	font-size: var(--ads-size-small);
}

.ads-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
	gap: clamp(2rem, 4vw, 4rem);
	padding-bottom: var(--ads-xl);
}

.ads-footer__blurb {
	margin-top: var(--ads-sm);
	max-width: 40ch;
}

.ads-footer__contact {
	display: grid;
	gap: 0.5rem;
	margin-top: var(--ads-md);
}

.ads-footer__contact a {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--ads-text-invert);
	transition: color var(--ads-transition);
}

.ads-footer__contact a:hover {
	color: var(--ads-accent-soft);
}

.ads-footer__contact .ads-icon {
	width: 17px;
	height: 17px;
	color: var(--ads-accent-soft);
}

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

.ads-footer__heading {
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ads-white);
	margin-bottom: var(--ads-sm);
}

.ads-footer__list {
	display: grid;
	gap: 0.45rem;
}

.ads-footer__list a,
.ads-footer__list button {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	color: var(--ads-text-invert-soft);
	text-align: left;
	transition: color var(--ads-transition);
	cursor: pointer;
}

.ads-footer__list a:hover,
.ads-footer__list button:hover {
	color: var(--ads-accent-soft);
}

.ads-footer__rates {
	margin-top: var(--ads-sm);
	font-size: var(--ads-size-tiny);
	color: rgba(255, 255, 255, 0.45);
}

.ads-footer__bottom {
	padding-block: var(--ads-md);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: var(--ads-size-tiny);
}

/* -------------------------------------------------------------------------
 * Page templates, prose and utility
 * ---------------------------------------------------------------------- */

.ads-page-hero {
	background: var(--ads-dark);
	color: var(--ads-text-invert);
	padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.25rem, 4.5vw, 3.75rem);
	scroll-margin-top: var(--ads-header-h);
}

.ads-page-hero--image {
	background:
		radial-gradient(120% 100% at 20% 20%, rgba(23, 64, 95, 0.65) 0%, rgba(7, 21, 34, 0.95) 70%),
		var(--ads-dark);
}

.ads-page-hero__eyebrow {
	font-size: var(--ads-size-eyebrow);
	letter-spacing: var(--ads-eyebrow-track);
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ads-accent-soft);
	margin-bottom: 0.5rem;
}

.ads-page-hero__title {
	font-size: var(--ads-size-h1, clamp(2.1rem, 1.35rem + 3vw, 3.6rem));
	color: var(--ads-white);
	max-width: 22ch;
}

.ads-page-hero__text {
	margin-top: var(--ads-sm);
	color: var(--ads-text-invert-soft);
	max-width: 60ch;
	font-size: var(--ads-size-h4);
}

.ads-page-hero .ads-btn {
	margin-top: var(--ads-md);
}

.ads-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.ads-detail__aside {
	position: sticky;
	top: calc(var(--ads-header-h) + 1.5rem);
}

.ads-booking {
	display: grid;
	gap: 0.75rem;
	padding: 1.35rem;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	box-shadow: var(--ads-shadow-md);
}

.ads-booking__price {
	font-family: var(--ads-font-display);
	font-size: var(--ads-size-h3);
	font-weight: 600;
}

.ads-booking__note {
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
	padding-top: 0.5rem;
	border-top: 1px solid var(--ads-border);
}

.ads-block {
	margin-top: var(--ads-xl);
}

.ads-block__title {
	font-size: var(--ads-size-h3);
	margin-bottom: var(--ads-sm);
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--ads-border);
}

.ads-list {
	display: grid;
	gap: 0.5rem;
	font-size: var(--ads-size-small);
}

.ads-list--checks li {
	position: relative;
	padding-left: 1.6rem;
}

.ads-list--checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1.5px solid var(--ads-accent);
}

.ads-list--steps {
	counter-reset: adsstep;
	gap: 0.75rem;
}

.ads-list--steps li {
	counter-increment: adsstep;
	position: relative;
	padding-left: 2.4rem;
}

.ads-list--steps li::before {
	content: counter(adsstep, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--ads-font-display);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ads-secondary);
}

.ads-note {
	margin-top: var(--ads-lg);
	padding: 0.9rem 1.1rem;
	background: var(--ads-warm);
	border-radius: var(--ads-radius);
	font-size: var(--ads-size-small);
}

.ads-vehicle-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}

.ads-vehicle-detail__media {
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	background: var(--ads-warm);
}

.ads-vehicle-detail__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16 / 10;
}

.ads-vehicle-detail__title {
	font-size: var(--ads-size-h1, clamp(2.1rem, 1.35rem + 3vw, 3.6rem));
	margin-bottom: var(--ads-sm);
}

.ads-vehicle-detail__text {
	color: var(--ads-text-soft);
}

.ads-vehicle-detail__specs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ads-md);
	margin: var(--ads-md) 0;
	font-size: var(--ads-size-small);
	color: var(--ads-secondary);
}

.ads-vehicle-detail__price {
	margin: var(--ads-md) 0;
	font-family: var(--ads-font-display);
	font-size: var(--ads-size-h3);
	font-weight: 600;
}

.ads-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1.25rem, 2.2vw, 1.75rem);
}

.ads-post {
	display: flex;
	flex-direction: column;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	transition: transform var(--ads-transition), box-shadow var(--ads-transition);
}

.ads-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--ads-shadow-md);
}

.ads-post__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.ads-post__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.25rem;
}

.ads-post__meta {
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ads-post__title {
	font-size: var(--ads-size-h4);
}

.ads-post__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-prose {
	max-width: 46rem;
}

.ads-prose > * + * {
	margin-top: 1.1em;
}

.ads-prose h2 {
	font-size: var(--ads-size-h3);
	margin-top: 1.8em;
}

.ads-prose h3 {
	font-size: var(--ads-size-h4);
	margin-top: 1.5em;
}

.ads-prose ul {
	list-style: disc;
	padding-left: 1.2em;
}

.ads-prose ol {
	list-style: decimal;
	padding-left: 1.2em;
}

.ads-prose a {
	color: var(--ads-secondary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ads-search {
	display: flex;
	gap: 0.5rem;
	margin-top: var(--ads-lg);
	max-width: 30rem;
}

.ads-search__input {
	flex: 1;
	padding: 0.85rem 1rem;
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius);
	background: var(--ads-white);
}

.ads-search__input:focus {
	outline: none;
	border-color: var(--ads-accent);
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}

/* -------------------------------------------------------------------------
 * Trip planner � the planning element below the hero
 * ---------------------------------------------------------------------- */

.ads-planner {
	position: relative;
	margin-top: clamp(-4.5rem, -6vw, -2.5rem);
	padding-bottom: var(--ads-2xl);
	z-index: 5;
	scroll-margin-top: var(--ads-header-h);
}

.ads-planner__card {
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	box-shadow: var(--ads-shadow-lg);
	padding: clamp(1.25rem, 2.4vw, 2rem);
}

.ads-planner__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--ads-md);
	flex-wrap: wrap;
	padding-bottom: var(--ads-sm);
	margin-bottom: var(--ads-md);
	border-bottom: 1px solid var(--ads-border);
}

.ads-planner__title {
	font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.8rem);
}

.ads-planner__note {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

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

.ads-planner__actions {
	display: flex;
	align-items: center;
	gap: var(--ads-md);
	flex-wrap: wrap;
	margin-top: var(--ads-md);
}

.ads-planner__hint {
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
}

/* -------------------------------------------------------------------------
 * One Country � editorial introduction
 * ---------------------------------------------------------------------- */

.ads-intro {
	background: var(--ads-warm);
}

.ads-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.ads-intro__title {
	font-size: var(--ads-size-h1);
	margin-bottom: var(--ads-md);
}

.ads-intro__text {
	font-size: var(--ads-size-h4);
	color: var(--ads-text-soft);
	max-width: 46ch;
}

.ads-intro__facts {
	display: grid;
	gap: var(--ads-sm);
	margin: var(--ads-lg) 0;
	padding-top: var(--ads-md);
	border-top: 1px solid var(--ads-border);
}

.ads-intro__fact dt {
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ads-muted);
	margin-bottom: 0.15rem;
}

.ads-intro__fact dd {
	margin: 0;
	font-size: var(--ads-size-small);
}

/* -------------------------------------------------------------------------
 * Your USA Journey � airport transfers
 * ---------------------------------------------------------------------- */

.ads-transfer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.ads-transfer__title {
	font-size: var(--ads-size-h1);
}

.ads-transfer__subtitle {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: var(--ads-size-h3);
	color: var(--ads-secondary);
	margin-top: var(--ads-2xs);
}

.ads-transfer__text {
	margin-top: var(--ads-sm);
	color: var(--ads-text-soft);
	max-width: 48ch;
}

.ads-transfer__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 0.5rem 1.25rem;
	margin-top: var(--ads-lg);
}

.ads-transfer__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: var(--ads-size-small);
}

.ads-transfer__features .ads-icon {
	width: 17px;
	height: 17px;
	margin-top: 4px;
	color: var(--ads-accent);
	flex: none;
}

.ads-transfer__airports {
	display: flex;
	align-items: center;
	gap: var(--ads-sm);
	margin-top: var(--ads-lg);
}

.ads-transfer__airports-label {
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ads-muted);
}

.ads-transfer__airports ul {
	display: flex;
	gap: 0.4rem;
}

.ads-transfer__airports li {
	padding: 0.28rem 0.7rem;
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-sm);
	font-size: var(--ads-size-tiny);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.ads-transfer__actions {
	display: flex;
	align-items: center;
	gap: var(--ads-md);
	flex-wrap: wrap;
	margin-top: var(--ads-lg);
}

.ads-transfer__price {
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-text-soft);
}

/* -------------------------------------------------------------------------
 * Can't Find Your Perfect Itinerary
 * ---------------------------------------------------------------------- */

.ads-section--image {
	position: relative;
	isolation: isolate;
	background-color: var(--ads-dark);
	background-image: var(--section-image, none);
	background-size: cover;
	background-position: center;
	color: var(--ads-text-invert);
	overflow: hidden;
}

.ads-section--image h2,
.ads-section--image h3 {
	color: var(--ads-text-invert);
}

.ads-section--image .ads-head__eyebrow {
	color: var(--ads-accent-soft);
}

.ads-custom__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(120% 90% at 15% 30%, rgba(7, 21, 34, 0.35) 0%, rgba(7, 21, 34, 0.86) 62%),
		linear-gradient(180deg, rgba(7, 21, 34, 0.72) 0%, rgba(7, 21, 34, 0.55) 45%, rgba(7, 21, 34, 0.88) 100%);
}

.ads-custom__grid {

	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.ads-custom__title {
	font-size: var(--ads-size-h1);
	margin-bottom: var(--ads-xs);
}

.ads-custom__subtitle {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: var(--ads-size-h3);
	color: var(--ads-accent-soft);
	margin-bottom: var(--ads-md);
}

.ads-custom__text {
	color: rgba(255, 255, 255, 0.82);
}

.ads-custom__bullets {
	display: grid;
	gap: 0.6rem;
	margin-top: var(--ads-lg);
}

.ads-custom__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: var(--ads-size-small);
	color: rgba(255, 255, 255, 0.88);
}

.ads-custom__bullets .ads-icon {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	color: var(--ads-accent-soft);
	flex: none;
}

.ads-custom__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ads-xs);
	margin-top: var(--ads-xl);
}

/* -------------------------------------------------------------------------
 * Chauffeur categories + service quick list
 * ---------------------------------------------------------------------- */

.ads-chauffeur__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: clamp(1.25rem, 2.2vw, 1.75rem);
}

.ads-chauffeur__services {
	margin-top: var(--ads-xl);
	padding-top: var(--ads-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-chauffeur__services-title {
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: var(--ads-md);
}

.ads-chauffeur__services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: var(--ads-md);
}

.ads-service-mini {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.1rem 1.1rem 1.25rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--ads-radius-lg);
	transition: transform var(--ads-transition), border-color var(--ads-transition);
}

.ads-service-mini:hover,
.ads-service-mini:focus-within {
	transform: translateY(-4px);
	border-color: rgba(201, 162, 39, 0.5);
}

.ads-service-mini__icon {
	color: var(--ads-accent-soft);
}

.ads-service-mini__title {
	font-size: var(--ads-size-h4);
	color: var(--ads-white);
}

.ads-service-mini__price {
	font-size: var(--ads-size-small);
	color: rgba(255, 255, 255, 0.75);
}

.ads-service-mini__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	margin-top: auto;
	padding-top: 0.6rem;
	font-size: var(--ads-size-tiny);
	font-weight: 600;
	color: var(--ads-white);
}

.ads-service-mini__trigger {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 0;
	background: transparent;
	border-radius: inherit;
}

.ads-service-mini__trigger:focus-visible {
	outline: 3px solid var(--ads-accent);
	outline-offset: -3px;
}

/* -------------------------------------------------------------------------
 * Premium vehicles � fleet section
 * ---------------------------------------------------------------------- */

.ads-fleet-section {
	background: var(--ads-light);
}

.ads-fleet {
	/* display: grid; */
	/* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
	/* gap: 0.25rem var(--ads-xl); */
	border-top: 1px solid var(--ads-border);
}

.ads-fleet__item {
	position: relative;
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--ads-sm);
	padding: 0.85rem 0.6rem;
	border-bottom: 1px solid var(--ads-border);
	transition: background var(--ads-transition);
}

.ads-fleet__item:hover,
.ads-fleet__item:focus-within {
	background: rgba(13, 33, 55, 0.02);
}

.ads-fleet__media {
	display: block;
	width: 84px;
	height: 62px;
	border-radius: var(--ads-radius);
	overflow: hidden;
	background: var(--ads-warm);
}

.ads-fleet__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ads-fleet__body {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ads-fleet__name {
	font-size: var(--ads-size-small);
	font-weight: 600;
	color: var(--ads-text);
}

.ads-fleet__capacity {
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
}

.ads-fleet__price {
	font-size: var(--ads-size-small);
	font-weight: 600;
	white-space: nowrap;
	color: var(--ads-text);
}

.ads-fleet__trigger {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 0;
	background: transparent;
	border-radius: var(--ads-radius);
}

.ads-fleet__trigger:focus-visible {
	outline: 3px solid var(--ads-accent);
	outline-offset: -3px;
}

.ads-fleet__note {
	margin-top: var(--ads-md);
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
}

/* -------------------------------------------------------------------------
 * Your Journey, Made Simple � process timeline
 * ---------------------------------------------------------------------- */

.ads-process__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ads-lg);
}

.ads-process__timeline::before {
	content: "";
	position: absolute;
	top: 21px;
	left: 6%;
	right: 6%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ads-border) 12%, var(--ads-border) 88%, transparent);
}

.ads-process__step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.4rem;
}

.ads-process__marker {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	position: relative;
	z-index: 1;
}

.ads-process__number {
	font-family: var(--ads-font-display);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ads-secondary);
	letter-spacing: 0.04em;
}

.ads-process__icon {
	color: var(--ads-accent);
	margin-top: 0.35rem;
}

.ads-process__title {
	font-size: var(--ads-size-h4);
	margin-top: 0.25rem;
}

.ads-process__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
	max-width: 26ch;
}

.ads-process__actions {
	display: flex;
	justify-content: center;
	margin-top: var(--ads-xl);
}

/* -------------------------------------------------------------------------
 * Travel With Confidence
 * ---------------------------------------------------------------------- */

.ads-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: clamp(1.25rem, 2.4vw, 2rem);
	text-align: center;
}

.ads-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem;
}

.ads-trust__icon {
	color: var(--ads-accent);
}

.ads-trust__text {
	font-size: var(--ads-size-small);
	font-weight: 500;
	max-width: 24ch;
}

/* -------------------------------------------------------------------------
 * LIGHT HOME PAGE
 *
 * The home page is white overall. The Why, Premium Experiences and Bespoke
 * sections were built as dark blocks; this block re-points them at the light
 * palette using the existing custom properties, so nothing is hard coded.
 * ---------------------------------------------------------------------- */

/* Why Choose IV Tours --------------------------------------------------------- */

.ads-why .ads-head__eyebrow {
	color: var(--ads-accent-ink);
}

.ads-why__item {
	border-top-color: var(--ads-border);
}

.ads-why__title {
	color: var(--ads-text);
}

.ads-why__text {
	color: var(--ads-text-soft);
}

.ads-why__icon,
.ads-why__item .ads-icon {
	color: var(--ads-accent);
}

/* Premium / Luxe Experiences -------------------------------------------------- */

.ads-chauffeur .ads-head__eyebrow {
	color: var(--ads-accent-ink);
}

.ads-chauffeur__services {
	/* background: var(--ads-warm); */
	border-color: var(--ads-border);
}

.ads-chauffeur__services-title {
	color: var(--ads-text);
}

.ads-service-mini {
	background: var(--ads-white);
	border-color: var(--ads-border);
}

.ads-service-mini__title {
	color: var(--ads-text);
}

.ads-service-mini__price {
	color: var(--ads-primary);
}

.ads-service-mini__cta {
	color: var(--ads-accent);
}

.ads-service-mini__icon,
.ads-service-mini .ads-icon {
	color: var(--ads-primary);
}

/* USA Destinations -- a conventional carousel ------------------------------- */

.ads-where {
	--where-gap: clamp(1rem, 1.6vw, 1.5rem);
	--where-per: 3;
}

.ads-where__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--ads-lg);
}

.ads-where__eyebrow {
	color: var(--ads-text);
}

.ads-where__head .ads-head__title {
	color: var(--ads-text);
}

.ads-where__title-accent {
	font-style: italic;
	font-weight: 500;
	color: var(--ads-accent);
}

.ads-where__text {
	max-width: 40ch;
	color: var(--ads-text-soft);
	font-size: var(--ads-size-small);
}

/* Controls ---------------------------------------------------------------- */

.ads-where__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ads-sm);
	margin-bottom: var(--ads-sm);
}

.ads-where__status {
	margin: 0;
	font-size: var(--ads-size-tiny);
	color: var(--ads-muted);
}

.ads-where__arrows {
	display: flex;
	gap: 0.5rem;
}

.ads-where__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--ads-border);
	border-radius: 50%;
	background: var(--ads-white);
	color: var(--ads-text);
	cursor: pointer;
	transition:
		background var(--ads-transition),
		border-color var(--ads-transition),
		color var(--ads-transition),
		opacity var(--ads-transition);
}

.ads-where__arrow .ads-icon {
	width: 18px;
	height: 18px;
}

.ads-where__arrow:hover:not(:disabled) {
	background: var(--ads-primary);
	border-color: var(--ads-primary);
	color: var(--ads-white);
}

.ads-where__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.ads-where__arrow:focus-visible {
	outline: 2px solid var(--ads-accent);
	outline-offset: 2px;
}

/* The clipped viewport is what keeps the page from scrolling sideways. The
   track only ever moves with a transform; it is never a scroller itself. */
.ads-where__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ads-where__track {
	display: flex;
	align-items: stretch;
	gap: var(--where-gap);
	overflow: visible;
	scroll-snap-type: none;
	padding: 0;
	transform: translate3d(0, 0, 0);
	/* The slide is a single eased move, so the cards travel rather than jump.
	   The duration is the theme's slow token, which is what a full row of
	   photography needs; the easing curve is the shared one. */
	transition: transform var(--ads-transition-slow);
}

/* A visitor who has asked for less motion gets the position, not the journey. */
@media (prefers-reduced-motion: reduce) {
	.ads-where__track {
		transition: none;
	}

	.ads-dest,
	.ads-dest__img {
		transition: none;
	}
}

/* Cards are an exact fraction of the container, so three, two or one fill the
   row with no sliver of a fourth card. */
.ads-where__track > * {
	flex: 0 0
		calc((100% - (var(--where-per) - 1) * var(--where-gap)) / var(--where-per));
	min-width: 0;
}

.ads-where__track:focus-visible {
	outline: 2px solid var(--ads-accent);
	outline-offset: 4px;
}

/* Card -------------------------------------------------------------------- */

.ads-dest {
	display: flex;
	flex-direction: column;
	background: var(--ads-white);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(7, 21, 34, 0.05);
	transition:
		transform var(--ads-transition),
		box-shadow var(--ads-transition);
}

.ads-dest:hover,
.ads-dest:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 18px 32px -24px rgba(7, 21, 34, 0.4);
}

.ads-dest__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--ads-warm);
	overflow: hidden;
}

.ads-dest__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform var(--ads-transition-slow);
}

.ads-dest:hover .ads-dest__img {
	transform: scale(1.04);
}

.ads-dest__meta {
	position: absolute;
	inset: 0 0 auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.75rem 0.85rem;
	background: linear-gradient(180deg, rgba(7, 21, 34, 0.62) 0%, rgba(7, 21, 34, 0) 100%);
	font-size: var(--ads-size-tiny);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.94);
}

.ads-dest__location,
.ads-dest__count {
	color: var(--ads-white);
}

.ads-dest__body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	flex: 1;
	padding: var(--ads-md);
}

.ads-dest__title {
	font-size: var(--ads-size-h4);
	line-height: 1.2;
	color: var(--ads-text);
}

.ads-dest__tagline {
	font-family: var(--ads-font-display);
	font-style: italic;
	font-size: var(--ads-size-small);
	color: var(--ads-accent-ink);
}

.ads-dest__text {
	font-size: var(--ads-size-small);
	color: var(--ads-text-soft);
}

.ads-dest__price {
	color: var(--ads-primary);
}

.ads-dest__cta {
	margin-top: auto;
	color: var(--ads-primary);
}

/* Responsive: three, two, then one card. */

@media (max-width: 1023px) {
	.ads-where {
		--where-per: 2;
	}
}

@media (max-width: 767px) {
	.ads-where {
		--where-per: 1;
	}

	.ads-where__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.ads-where__text {
		max-width: 46ch;
	}
}
/* Bespoke USA Travel ---------------------------------------------------------
 *
 * A premium image | content split on the white page, rather than a dark
 * full-bleed photograph. The image leads on the left, the story and the call
 * to action sit on the right, and the section keeps the page's white ground.
 */

.ads-custom {
	background: var(--ads-white);
	color: var(--ads-text);
}

.ads-custom .ads-head__eyebrow {
	color: var(--ads-accent-ink);
}

.ads-custom__title {
	color: var(--ads-text);
}

.ads-custom__subtitle {
	color: var(--ads-primary);
}

.ads-custom__text {
	color: var(--ads-text-soft);
}

.ads-custom__bullets li {
	color: var(--ads-text-soft);
}

.ads-custom__bullets .ads-icon {
	color: var(--ads-accent);
}

.ads-custom__comp {
	border-color: var(--ads-border);
}

.ads-custom__comp-caption {
	color: var(--ads-text-soft);
}

.ads-custom__grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(2rem, 4.5vw, 4rem);
}
/* -------------------------------------------------------------------------
 * PACKAGES BY DURATION
 * ---------------------------------------------------------------------- */

.ads-filter {
	margin-bottom: var(--ads-lg);
}

.ads-filter__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--ads-xs);
}

.ads-filter__tab {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.6em 1.05em;
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-pill);
	background: var(--ads-white);
	color: var(--ads-text-soft);
	font-size: var(--ads-size-small);
	font-weight: 600;
	cursor: pointer;
	transition:
		background var(--ads-transition),
		border-color var(--ads-transition),
		color var(--ads-transition);
}

.ads-filter__tab:hover {
	border-color: var(--ads-primary);
	color: var(--ads-text);
}

.ads-filter__tab.is-active {
	background: var(--ads-primary);
	border-color: var(--ads-primary);
	color: var(--ads-white);
}

.ads-filter__count {
	font-size: 0.72rem;
	font-weight: 700;
	opacity: 0.7;
}

.ads-packages__empty {
	margin-top: var(--ads-lg);
	padding: var(--ads-lg);
	background: var(--ads-warm);
	border: 1px solid var(--ads-border);
	border-radius: var(--ads-radius-lg);
	color: var(--ads-text-soft);
	text-align: center;
}

/* Two or three inclusions, never the full itinerary. */
.ads-pkg__incl {
	display: grid;
	gap: 0.3rem;
	margin-top: var(--ads-sm);
}

.ads-pkg__incl li {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	font-size: var(--ads-size-tiny);
	color: var(--ads-text-soft);
	line-height: 1.5;
}

.ads-pkg__incl .ads-icon {
	flex: none;
	width: 14px;
	height: 14px;
	margin-top: 0.2em;
	color: var(--ads-accent);
}

/* Premium experiences: photography leads, text supports. */
.ads-service-mini {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ads-service-mini__media {
	overflow: hidden;
}

.ads-service-mini__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform var(--ads-transition);
}

.ads-service-mini:hover .ads-service-mini__img {
	transform: scale(1.04);
}

.ads-service-mini__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: var(--ads-md);
	flex: 1;
}

.ads-service-mini--plain .ads-service-mini__body {
	padding: var(--ads-md);
}

.ads-service-mini__trigger {
	inset: 0;
}

/* -------------------------------------------------------------------------
 * TRAVEL YOUR WAY — journeys by theme, matching the approved reference
 *
 * Centred header with a two-tone heading, then a row of full-bleed portrait
 * cards: photograph, theme name, tagline pill and a circular action button.
 *
 * Scoped under .ads-styles and written with the extra class so it wins on
 * specificity against the earlier card rules rather than needing !important.
 * The previous styles are left in place, so deleting this block restores the
 * old three-column grid.
 * ---------------------------------------------------------------------- */

.ads-styles--cards {
	--ads-styles-accent: var(--ads-accent);
	--ads-styles-accent-soft: var(--ads-accent-soft);
	--ads-styles-gap: 20px;

	background: var(--ads-white);
}

.ads-styles__head {
	max-width: 46rem;
	margin: 0 auto clamp(2rem, 4vw, 3.25rem);
	text-align: center;
}

.ads-styles__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--ads-text);
}

.ads-styles__eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ads-styles-accent);
}

.ads-styles__title {
	font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.5rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--ads-text);
	margin-bottom: 0;
}

.ads-styles__title-accent {
	font-style: italic;
	font-weight: 500;
	color: var(--ads-styles-accent);
	letter-spacing: -0.02em;
	padding-inline-start: 0.12em;
}

.ads-styles__text {
	max-width: 46ch;
	margin: 0.9rem auto 0;
	color: var(--ads-styles-accent);
	font-size: var(--ads-size-small);
	line-height: 1.7;
}

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

.ads-styles--cards .ads-styles__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: var(--ads-styles-gap);
}

.ads-styles--cards .ads-style {
	position: relative;
	display: block;
	aspect-ratio: 5 / 8;
	overflow: hidden;
	/* The old card was a padded panel with a 56px circular thumbnail, so the
	   padding, gap and the media's own round shape all have to be reset. */
	padding: 0;
	gap: 0;
	background: var(--ads-warm);
	border: 0;
	border-radius: var(--ads-radius-lg);
	box-shadow: 0 1px 2px rgba(7, 21, 34, 0.06);
	transition:
		transform var(--ads-transition),
		box-shadow var(--ads-transition);
}

.ads-styles--cards .ads-style:hover,
.ads-styles--cards .ads-style:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px -20px rgba(7, 21, 34, 0.35);
}

.ads-styles--cards .ads-style__media {
	position: absolute;
	inset: 0;
	display: block;
	width: auto;
	height: auto;
	/* Clears the 56px circular thumbnail it used to be. */
	margin: 0;
	border-radius: 0;
	background: var(--ads-warm);
	overflow: hidden;
}

.ads-styles--cards .ads-style__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--ads-transition-slow);
}

.ads-styles--cards .ads-style:hover .ads-style__img {
	transform: scale(1.04);
}

.ads-styles--cards .ads-style__overlay {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
	padding: 1.1rem 0.95rem 1.15rem;
	background: linear-gradient(180deg, rgba(7, 21, 34, 0) 0%, rgba(7, 21, 34, 0.62) 46%, rgba(7, 21, 34, 0.86) 100%);
}

.ads-styles--cards .ads-style__title {
	margin: 0;
	font-size: 28px;
	line-height: 1.22;
	color: var(--ads-white);
}

.ads-styles--cards .ads-style__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	min-width: 0;
}

.ads-styles--cards .ads-style__count {
	/* max-width: 100%; */
	/* overflow: hidden; */
	/* text-overflow: ellipsis; */
	/* white-space: nowrap; */
	/* padding: 0.28em 0.7em; */
	/* border-radius: var(--ads-radius-pill); */
	/* background: rgba(255, 255, 255, 0.92); */
	color: var(--ads-white);
	font-size: 0.7rem;
	/* font-weight: 600; */
	letter-spacing: 0.01em;
}

.ads-styles--cards .ads-style__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ads-styles-accent);
	color: var(--ads-white);
	transition: background var(--ads-transition), transform var(--ads-transition);
}

.ads-styles--cards .ads-style__action .ads-icon {
	width: 16px;
	height: 16px;
}

.ads-styles--cards .ads-style:hover .ads-style__action,
.ads-styles--cards .ads-style:focus-within .ads-style__action {
	background: var(--ads-styles-accent-soft);
	transform: translateX(2px);
}

.ads-styles--cards .ads-style__trigger {
	position: absolute;
	inset: 0;
	z-index: 3;
	border: 0;
	border-radius: inherit;
	background: transparent;
	cursor: pointer;
}

.ads-styles--cards .ads-style__trigger:focus-visible {
	outline: 3px solid var(--ads-styles-accent);
	outline-offset: -3px;
}

/* Responsive.
 *
 * Desktop keeps the reference: five portrait cards in one row. Below that the
 * aspect is shortened, because a five-eighths card that is half the page width
 * would be over 750px tall. Tablet becomes a three-up grid and phones get one
 * swipeable row, so the section never grows taller than the viewport. */

@media (max-width: 1120px) {
	.ads-styles--cards .ads-styles__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.ads-styles--cards .ads-style {
		aspect-ratio: 4 / 5;
	}
}

@media (max-width: 760px) {
	.ads-styles--cards .ads-styles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ads-styles--cards .ads-style {
		flex: 0 0 min(72vw, 18rem);
		aspect-ratio: 4 / 5;
		scroll-snap-align: start;
	}
}

/* -------------------------------------------------------------------------
 * TABBED COLLECTION — the reference card and tab design
 *
 * Scoped under .ads-collection and written as a final layer, so it wins on
 * source order without !important and nothing else on the page is affected.
 * ---------------------------------------------------------------------- */

.ads-collection {
	--cc-ink: #14212e;
	--cc-navy: var(--ads-navy-2);
	--cc-accent: var(--ads-accent-alt);
	--cc-line: var(--ads-line);
	--cc-muted: var(--ads-muted);
	--cc-accent-soft: var(--ads-accent-alt-soft);

	background: var(--ads-white);
}

.ads-collection .ads-head {
	margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

/* Tabs -------------------------------------------------------------------- */

.ads-tabs {
	margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.ads-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.ads-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.62em 1.15em;
	border: 1px solid var(--cc-line);
	border-radius: var(--ads-radius-pill);
	background: var(--ads-white);
	color: var(--cc-ink);
	font-size: var(--ads-size-small);
	font-weight: 600;
	cursor: pointer;
	transition:
		background var(--ads-transition),
		border-color var(--ads-transition),
		color var(--ads-transition),
		transform var(--ads-transition);
}

.ads-tabs__tab:hover {
	border-color: var(--cc-navy);
	transform: translateY(-1px);
}

.ads-tabs__tab.is-active {
	background: var(--cc-navy);
	border-color: var(--cc-navy);
	color: var(--ads-white);
}

.ads-tabs__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.55em;
	padding: 0.12em 0.42em;
	border-radius: var(--ads-radius-pill);
	background: rgba(255, 255, 255, 0.16);
	font-size: 0.72em;
	font-weight: 700;
	line-height: 1.5;
}

.ads-tabs__tab:not(.is-active) .ads-tabs__count {
	background: var(--ads-warm);
	color: var(--cc-muted);
}

.ads-tabs__tab:focus-visible {
	outline: 2px solid var(--cc-accent);
	outline-offset: 2px;
}

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

.ads-collection__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 1.6vw, 1.5rem);
}

.ads-ccard {
	display: flex;
	flex-direction: column;
	background: var(--ads-white);
	border: 1px solid var(--cc-line);
	border-radius: var(--ads-radius-lg);
	box-shadow: 0 1px 2px rgba(16, 31, 61, 0.04);
	overflow: hidden;
	transition:
		transform var(--ads-transition),
		box-shadow var(--ads-transition),
		border-color var(--ads-transition);
}

.ads-ccard:hover,
.ads-ccard:focus-within {
	transform: translateY(-3px);
	border-color: var(--ads-line-hover);
	box-shadow: 0 18px 34px -24px rgba(16, 31, 61, 0.4);
}

.ads-ccard__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--ads-warm);
	overflow: hidden;
}

.ads-ccard__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--ads-transition-slow);
}

.ads-ccard:hover .ads-ccard__img {
	transform: scale(1.05);
}

.ads-ccard__badges {
	position: absolute;
	inset: 0.7rem 0.7rem auto 0.7rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.ads-ccard__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	padding: 0.32em 0.6em;
	border-radius: var(--ads-radius-sm);
	background: rgba(255, 255, 255, 0.94);
	color: var(--cc-ink);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.4;
	white-space: nowrap;
}

.ads-ccard__badge--flag {
	background: var(--cc-accent);
	color: var(--ads-white);
}

.ads-ccard__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.ads-ccard__headline {
	position: absolute;
	inset: auto 0 0 0;
	padding: 2.2rem 0.95rem 0.85rem;
	background: linear-gradient(180deg, rgba(7, 21, 34, 0) 0%, rgba(7, 21, 34, 0.72) 100%);
}

.ads-ccard__kicker {
	margin: 0 0 0.15rem;
	font-size: var(--ads-size-micro);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
}

.ads-ccard__title {
	margin: 0;
	font-size: var(--ads-size-h4);
	line-height: 1.24;
	color: var(--ads-white);
}

.ads-ccard__body {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	flex: 1;
	padding: 0.9rem 0.95rem 0.2rem;
}

.ads-ccard__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ads-ccard__pills li {
	padding: 0.26em 0.6em;
	border: 1px solid var(--cc-line);
	border-radius: var(--ads-radius-pill);
	background: var(--ads-light);
	color: var(--cc-ink);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.5;
}

.ads-ccard__text {
	margin: 0;
	font-size: var(--ads-size-small);
	line-height: 1.6;
	color: var(--ads-body-ink);
}

.ads-ccard__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: auto 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid var(--cc-line);
	color: var(--cc-navy);
}

.ads-ccard__price-from {
	font-size: var(--ads-size-micro);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cc-accent);
}

.ads-ccard__foot {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.85rem 0.95rem 1rem;
}

.ads-ccard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 38px;
	height: 38px;
	border: 1px solid var(--cc-line);
	border-radius: 50%;
	background: var(--ads-white);
	color: var(--cc-ink);
	cursor: pointer;
	transition:
		background var(--ads-transition),
		border-color var(--ads-transition),
		color var(--ads-transition);
}

.ads-ccard__icon:hover {
	border-color: var(--cc-navy);
	color: var(--cc-navy);
}

.ads-ccard__icon .ads-icon {
	width: 17px;
	height: 17px;
}

.ads-ccard__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	flex: 1;
	padding: 0.7em 1.1em;
	border: 0;
	border-radius: var(--ads-radius-pill);
	background: var(--cc-navy);
	color: var(--ads-white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--ads-transition);
}

.ads-ccard__cta:hover {
	background: var(--ads-navy-2-hover);
}

.ads-ccard__cta .ads-icon {
	width: 15px;
	height: 15px;
}

.ads-ccard__cta:focus-visible,
.ads-ccard__icon:focus-visible {
	outline: 2px solid var(--cc-accent);
	outline-offset: 2px;
}

.ads-collection__empty {
	margin-top: var(--ads-lg);
	padding: var(--ads-lg);
	border: 1px solid var(--cc-line);
	border-radius: var(--ads-radius-lg);
	background: var(--ads-light);
	color: var(--cc-muted);
	text-align: center;
}

/* Responsive: four across on desktop, two on tablet, one swipeable row on
   phones, so the card never becomes a tall column. */

@media (max-width: 1100px) {
	.ads-collection__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	/* One swipeable card per row, so a card never becomes a tall column. */
	.ads-tabs__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		padding-bottom: 0.35rem;
		margin-inline: calc(var(--ads-gutter) * -1);
		padding-inline: var(--ads-gutter);
	}

	.ads-tabs__list::-webkit-scrollbar {
		display: none;
	}

	.ads-tabs__tab {
		flex: none;
	}

	.ads-collection__grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.ads-ccard {
		flex: 0 0 min(82vw, 22rem);
		scroll-snap-align: start;
	}
}
/* -------------------------------------------------------------------------
 * FILTERS AND THE `hidden` ATTRIBUTE
 *
 * Every card type below is display: flex, and an author display rule beats the
 * browser's own `[hidden] { display: none }`. So setting element.hidden from
 * JavaScript did nothing on screen: the attribute was present on the element
 * and the card stayed put, which is why clicking a tab looked like it did
 * nothing. These rules hand the attribute its effect back, which is what both
 * the packages duration filter and the collection tabs rely on.
 * ---------------------------------------------------------------------- */

.ads-ccard[hidden],
.ads-pkg[hidden],
.ads-style[hidden],
.ads-dest[hidden] {
	display: none;
}
/* A service with no photograph yet gets a quiet branded placeholder rather
   than an empty rectangle. It disappears as soon as a featured image is set,
   with no change needed here. */

.ads-ccard__media--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(140deg, var(--ads-warm) 0%, var(--ads-surface-3) 100%);
}

.ads-ccard__placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(20, 33, 46, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	color: var(--cc-accent);
}

.ads-ccard__placeholder .ads-icon {
	width: 26px;
	height: 26px;
}
/* -------------------------------------------------------------------------
 * Tap targets
 *
 * The audit measured every button and link by its painted box. The footer
 * chips were 25px tall and the topbar links 22px, because both sat on the text
 * line with no padding. They are tapped, not just read, so the hit area is
 * given room. The skip link is left alone: it is off screen until focused, which
 * is how a skip link is supposed to behave.
 * ---------------------------------------------------------------------- */

.ads-footer__list a,
.ads-footer__list button {
	display: flex;
	align-items: center;
	min-height: 32px;
	padding: 0.15rem 0;
}

.ads-topbar__item {
	display: flex;
	align-items: center;
	min-height: 28px;
}
