/* Axis Travel Group — tabbed property sections
   Each panel gets its own visual language so the tabs feel like
   different kinds of information, not one template repeated. */

/* Overflow containment.

   Everything between the page and a horizontally scrolling carousel must be
   allowed to shrink below its content width, or the carousel widens the page
   instead of scrolling. min-width:0 opts these out of the default
   min-width:auto that flex and grid children get. */

.axp .axp-tabs,
.axp .axp-panels,
.axp .axp-panel,
.axp .axp-dining,
.axp .axp-restaurant,
.axp .axp-pools,
.axp .axp-pool,
.axp .axp-recreation,
.axp .axp-overview,
.axp .axp-menu-body,
.axp .axp-restaurant-gallery {
	min-width: 0;
	max-width: 100%;
}

/* Long pasted menu lines and URLs should wrap rather than push the card wide. */
.axp .axp-menu-item,
.axp .axp-restaurant-desc,
.axp .axp-pool-desc,
.axp .axp-activity-desc {
	overflow-wrap: break-word;
	word-break: break-word;
}

/* ------------------------------------------------------------- Tab strip */

.axp .axp-tabs {
	margin: 2.5rem 0;
}

@media (max-width: 700px) {
	.axp .axp-tabs {
		margin: 1.5rem 0;
	}

	.axp .axp-tablist-wrap {
		margin-bottom: 1.5rem;
	}
}

/* Outer holds the fades and arrows; the inner strip does the scrolling. */
.axp .axp-tablist-outer {
	position: relative;
	border-bottom: 2px solid var(--axp-line);
	margin-bottom: 2rem;
	min-width: 0;
}

.axp .axp-tablist-wrap {
	overflow-x: auto;
	scrollbar-width: none;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

/*
 * Fades sit above the strip so partially scrolled tabs visibly run off the
 * edge. Without this the strip looks like a complete row and nobody guesses
 * there is more to the right.
 */
.axp .axp-tablist-outer::before,
.axp .axp-tablist-outer::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 2px;
	width: 3rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 1;
}

.axp .axp-tablist-outer::before {
	left: 0;
	background: linear-gradient(to right, var(--axp-surface) 25%, rgba(255, 255, 255, 0));
}

.axp .axp-tablist-outer::after {
	right: 0;
	background: linear-gradient(to left, var(--axp-surface) 25%, rgba(255, 255, 255, 0));
}

.axp .axp-tablist-outer.can-scroll-left::before,
.axp .axp-tablist-outer.can-scroll-right::after {
	opacity: 1;
}

.axp .axp-tabscroll {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--axp-line);
	border-radius: 50%;
	background-color: var(--axp-surface);
	background-image: none;
	color: var(--axp-accent);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(42, 14, 53, 0.18);
	transition: background-color 0.18s ease, color 0.18s ease;
}

.axp .axp-tabscroll:hover,
.axp .axp-tabscroll:focus {
	background-color: var(--axp-accent);
	background-image: none;
	color: #fff;
	border-color: var(--axp-accent);
}

.axp .axp-tabscroll[hidden] {
	display: none;
}

.axp .axp-tabscroll-prev { left: 2px; }
.axp .axp-tabscroll-next { right: 2px; }

/* A gentle nudge on first paint so the strip is obviously draggable. */
@media (max-width: 700px) {
	.axp .axp-tablist-outer.can-scroll-right .axp-tablist {
		animation: axp-tabhint 1.6s ease 0.4s 1;
	}
}

@keyframes axp-tabhint {
	0%, 100% { transform: translateX(0); }
	35%      { transform: translateX(-14px); }
	70%      { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.axp .axp-tablist-wrap { scroll-behavior: auto; }
	.axp .axp-tablist-outer.can-scroll-right .axp-tablist { animation: none; }
	.axp .axp-tablist-outer::before,
	.axp .axp-tablist-outer::after { transition: none; }
}

.axp .axp-tablist-wrap::-webkit-scrollbar {
	display: none;
}

.axp .axp-tablist {
	display: flex;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: max-content;
}

.axp .axp-tab {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.8rem 1.15rem 0.95rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--axp-muted);
	text-decoration: none;
	white-space: nowrap;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.18s ease;
}

/* Rounded gradient pill rather than a square border, inset from the label so
   it reads as an underline rather than a full-width rule. */
.axp .axp-tab::after {
	content: "";
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	bottom: -2px;
	height: 4px;
	border-radius: 999px;
	background: var(--axp-gradient);
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.axp .axp-tab .axp-icon {
	color: currentColor;
	opacity: 0.75;
}

.axp .axp-tab:hover {
	color: var(--axp-dark);
}

.axp .axp-tab.is-active {
	color: var(--axp-accent);
}

.axp .axp-tab.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.axp .axp-tab:hover::after {
	opacity: 0.4;
	transform: scaleX(0.75);
}

.axp .axp-tab.is-active:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	.axp .axp-tab::after {
		transition: none;
	}
}

.axp .axp-tab.is-active .axp-icon {
	opacity: 1;
}

.axp .axp-tab:focus-visible {
	outline: 3px solid var(--axp-accent);
	outline-offset: -3px;
	border-radius: 4px 4px 0 0;
}

/* Panel headings duplicate the tab label, so hide them once tabs work. */
.axp .axp-panel-title {
	font-size: 1.5rem;
	margin: 0 0 1.25rem;
	letter-spacing: -0.01em;
}

.axp .axp-tabs.is-enhanced .axp-panel-title {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.axp .axp-panel:focus-visible {
	outline: none;
}

.axp .axp-panel[hidden] {
	display: none;
}

/* Without JS, panels stack with separators. */
.axp .axp-tabs:not(.is-enhanced) .axp-panel + .axp-panel {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--axp-line);
}

.axp .axp-section-intro {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--axp-muted);
	max-width: 68ch;
	margin: 0 0 1.75rem;
}

.axp .axp-subheading {
	font-size: 1.125rem;
	margin: 2rem 0 1rem;
	letter-spacing: -0.01em;
}

/* ============================================================= Overview */
/* Editorial: generous prose, the highlights callout, amenity columns.    */

.axp .axp-overview .axp-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	max-width: 68ch;
}

.axp .axp-overview .axp-content > * + * {
	margin-top: 1.15rem;
}

/* ========================================================== Room rates */
/* Data: a ruled table that collapses to stacked cards on small screens. */

.axp .axp-rooms-table {
	border: 1px solid var(--axp-line);
	border-radius: var(--axp-radius);
	overflow: hidden;
	background: var(--axp-surface);
}

.axp .axp-rooms-head {
	display: grid;
	grid-template-columns: 2.4fr 0.8fr 0.9fr 1.2fr;
	gap: 1rem;
	padding: 0.85rem 1.25rem;
	background: var(--axp-dark);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.axp .axp-room-row {
	display: grid;
	grid-template-columns: 2.4fr 0.8fr 0.9fr 1.2fr;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	align-items: center;
	border-top: 1px solid var(--axp-line);
	transition: background 0.15s ease;
}

.axp .axp-room-row:nth-child(even) {
	background: rgba(42, 14, 53, 0.018);
}

.axp .axp-room-row:hover {
	background: rgba(247, 37, 133, 0.04);
}

.axp .axp-room-main {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.axp .axp-room-name {
	font-weight: 700;
	font-size: 1.0625rem;
	line-height: 1.3;
}

.axp .axp-room-sub {
	font-size: 0.8125rem;
	color: var(--axp-muted);
}

.axp .axp-room-cell {
	font-size: 0.9375rem;
	color: var(--axp-muted);
}

.axp .axp-room-rate {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	text-align: right;
}

.axp .axp-room-rate strong {
	font-size: 1.0625rem;
	font-variant-numeric: tabular-nums;
	color: var(--axp-dark);
}

.axp .axp-room-season {
	font-size: 0.75rem;
	color: var(--axp-muted);
}

.axp .axp-room-noprice {
	font-size: 0.9375rem;
	color: var(--axp-muted);
	font-style: italic;
}

.axp .axp-room-note {
	grid-column: 1 / -1;
	margin: 0.5rem 0 0;
	padding-top: 0.65rem;
	border-top: 1px dashed var(--axp-line);
	font-size: 0.875rem;
	color: var(--axp-muted);
}

.axp .axp-rates-disclaimer {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	color: var(--axp-muted);
	font-style: italic;
}

@media (max-width: 720px) {
	.axp .axp-rooms-head {
		display: none;
	}
	.axp .axp-room-row {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 1.1rem;
	}
	.axp .axp-room-cell::before {
		content: attr(data-label) ": ";
		font-weight: 600;
		color: var(--axp-dark);
	}
	.axp .axp-room-rate {
		text-align: left;
		padding-top: 0.5rem;
		border-top: 1px dashed var(--axp-line);
	}
}

/* ============================================================== Dining */
/* Menu-card feel: warm paper tone, serif-ish spacing, leader dots.      */

.axp .axp-dining {
	display: grid;
	gap: 1.25rem;
}

.axp .axp-restaurant {
	border: 1px solid var(--axp-line);
	border-left: 4px solid var(--axp-accent);
	border-radius: calc(var(--axp-radius) * 0.6);
	padding: 1.35rem 1.5rem;
	background: linear-gradient(180deg, rgba(252, 204, 0, 0.05), var(--axp-surface));
}

.axp .axp-service-signature { border-left-color: var(--axp-gold); }
.axp .axp-service-character { border-left-color: var(--axp-accent-alt); }
.axp .axp-service-quick     { border-left-color: var(--axp-teal); }
.axp .axp-service-lounge    { border-left-color: var(--axp-orange); }
.axp .axp-service-snack     { border-left-color: var(--axp-cyan); }
.axp .axp-service-room      { border-left-color: var(--axp-muted); }

.axp .axp-restaurant-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.axp .axp-restaurant-name {
	margin: 0 0 0.25rem;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.axp .axp-restaurant-meta {
	margin: 0;
	font-size: 0.8125rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--axp-muted);
	font-weight: 600;
}

.axp .axp-restaurant-price {
	flex: 0 0 auto;
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--axp-accent);
	letter-spacing: 0.05em;
}

.axp .axp-restaurant-body {
	margin-top: 0.9rem;
	min-width: 0;
}

/* Hero beside the copy on wide cards, stacked underneath on narrow ones. */
.axp .axp-restaurant-body.has-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	gap: 1.25rem;
	align-items: start;
}

@media (max-width: 700px) {
	.axp .axp-restaurant-body.has-hero {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	/* Picture first on a phone: it sells the restaurant faster than the copy. */
	.axp .axp-restaurant-body.has-hero .axp-restaurant-hero {
		order: -1;
	}
}

.axp .axp-restaurant-text {
	min-width: 0;
}

.axp .axp-restaurant-hero {
	min-width: 0;
	line-height: 0;
}

.axp .axp-restaurant-hero .axp-gallery-link {
	aspect-ratio: 4 / 3;
	width: 100%;
}

@media (max-width: 700px) {
	.axp .axp-restaurant-hero .axp-gallery-link {
		aspect-ratio: 16 / 9;
	}
}

.axp .axp-restaurant-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	max-width: 62ch;
}

.axp .axp-restaurant-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 0.85rem;
}

.axp .axp-fact {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8125rem;
	color: var(--axp-muted);
}

.axp .axp-fact .axp-icon {
	color: var(--axp-accent-alt);
}

/* Collapsible menu */
.axp .axp-menu {
	margin-top: 1.1rem;
	border-top: 1px dashed var(--axp-line);
	padding-top: 0.9rem;
}

.axp .axp-menu > summary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	list-style: none;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #fff;
	background-image: var(--axp-gradient-deep);
	background-size: 220% 100%;
	background-position: 0% 50%;
	background-color: var(--axp-accent);
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(209, 40, 127, 0.28);
	transition: background-position 0.4s ease, box-shadow 0.18s ease, transform 0.18s ease;
	user-select: none;
}

.axp .axp-menu > summary::-webkit-details-marker,
.axp .axp-menu > summary::marker {
	display: none;
	content: "";
}

.axp .axp-menu > summary:hover,
.axp .axp-menu > summary:focus {
	color: #fff;
	background-position: 100% 50%;
	box-shadow: 0 5px 16px rgba(209, 40, 127, 0.4);
	transform: translateY(-1px);
}

.axp .axp-menu > summary:focus-visible {
	outline: 3px solid var(--axp-accent-alt);
	outline-offset: 3px;
}

/* Chevron that flips when the panel opens. */
.axp .axp-menu > summary::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 0.25s ease;
}

.axp .axp-menu[open] > summary::after {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.axp .axp-menu[open] > summary {
	margin-bottom: 0.25rem;
}

.axp .axp-menu-body {
	margin-top: 1rem;
	padding: 1.25rem 1.4rem;
	background: rgba(42, 14, 53, 0.025);
	border-radius: calc(var(--axp-radius) * 0.5);
}

.axp .axp-menu-course {
	margin: 1.5rem 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--axp-accent);
	text-align: center;
	position: relative;
}

.axp .axp-menu-course:first-child {
	margin-top: 0;
}

.axp .axp-menu-course::before,
.axp .axp-menu-course::after {
	content: "";
	position: absolute;
	top: 50%;
	width: calc(50% - 5.5em);
	height: 1px;
	background: var(--axp-line);
}

.axp .axp-menu-course::before { left: 0; }
.axp .axp-menu-course::after  { right: 0; }

.axp .axp-menu-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

.axp .axp-menu-items li {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.axp .axp-menu-dots {
	flex: 1;
	border-bottom: 1px dotted rgba(42, 14, 53, 0.28);
	min-width: 1.5rem;
	transform: translateY(-0.2em);
}

.axp .axp-menu-price {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: var(--axp-dark);
	white-space: nowrap;
}

/* Meal service strip: every meal listed, served or not, so a visitor can
   tell at a glance that a signature restaurant is dinner-only. */

.axp .axp-meal-service {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

@media (max-width: 560px) {
	.axp .axp-meal-service {
		grid-template-columns: 1fr;
	}
}

.axp .axp-meal {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.75rem;
	border-radius: calc(var(--axp-radius) * 0.45);
	border: 1px solid var(--axp-line);
	background: var(--axp-surface);
}

.axp .axp-meal.is-open {
	border-color: rgba(0, 180, 192, 0.4);
	background: rgba(0, 180, 192, 0.07);
}

.axp .axp-meal.is-closed {
	opacity: 0.55;
}

.axp .axp-meal-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(42, 14, 53, 0.06);
	color: var(--axp-muted);
}

.axp .axp-meal.is-open .axp-meal-icon {
	background: rgba(0, 180, 192, 0.18);
	color: #00838f;
}

.axp .axp-meal-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.axp .axp-meal-name {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--axp-dark);
}

.axp .axp-meal-hours {
	font-size: 0.75rem;
	color: var(--axp-muted);
}

.axp .axp-meal.is-closed .axp-meal-hours {
	font-style: italic;
}

/* Photo strip inside a restaurant card */

.axp .axp-restaurant-gallery {
	margin-top: 1.1rem;
}

.axp .axp-restaurant-gallery .axp-gallery {
	margin: 0;
}

.axp .axp-restaurant-gallery .axp-gallery-strip .axp-gallery-link {
	flex: 0 0 170px;
	aspect-ratio: 3 / 2;
}

@media (max-width: 600px) {
	.axp .axp-restaurant-gallery .axp-gallery-strip .axp-gallery-link {
		flex-basis: min(66vw, 260px);
	}
}

/* Menu switcher */

.axp .axp-meal-switch {
	display: flex;
	gap: 0.3rem;
	margin-bottom: 1.25rem;
	padding: 0.25rem;
	background: rgba(42, 14, 53, 0.05);
	border-radius: 999px;
	width: fit-content;
	max-width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
}

.axp .axp-meal-switch::-webkit-scrollbar {
	display: none;
}

/* Every state is declared explicitly. A bare `background: none` leaves the
   theme's own button:hover rule free to apply a dark fill, which is what made
   these unreadable on hover. */
.axp .axp-meal-btn,
.axp button.axp-meal-btn {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	background-color: transparent;
	background-image: none;
	cursor: pointer;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--axp-muted);
	padding: 0.45rem 1.05rem;
	border-radius: 999px;
	white-space: nowrap;
	text-shadow: none;
	box-shadow: none;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.axp .axp-meal-btn:hover,
.axp button.axp-meal-btn:hover,
.axp .axp-meal-btn:focus,
.axp button.axp-meal-btn:focus {
	background-color: rgba(122, 29, 136, 0.1);
	background-image: none;
	color: var(--axp-accent-alt);
}

.axp .axp-meal-btn.is-active,
.axp button.axp-meal-btn.is-active,
.axp .axp-meal-btn.is-active:hover,
.axp button.axp-meal-btn.is-active:hover,
.axp .axp-meal-btn.is-active:focus,
.axp button.axp-meal-btn.is-active:focus {
	background-color: var(--axp-surface);
	background-image: none;
	color: var(--axp-accent);
	box-shadow: 0 1px 3px rgba(42, 14, 53, 0.14);
}

.axp .axp-meal-btn:focus-visible {
	outline: 3px solid var(--axp-accent);
	outline-offset: 2px;
}

.axp .axp-meal-panel[hidden] {
	display: none;
}

/* Panel headings only matter when the switcher is absent (no JS). */
.axp .axp-meal-panel-title {
	margin: 0 0 0.9rem;
	font-size: 0.9375rem;
	letter-spacing: 0.04em;
	color: var(--axp-dark);
	padding-bottom: 0.4rem;
	border-bottom: 2px solid var(--axp-line);
}

.axp [data-axp-meals].is-enhanced .axp-meal-panel-title {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.axp [data-axp-meals]:not(.is-enhanced) .axp-meal-panel + .axp-meal-panel {
	margin-top: 2rem;
}

.axp .axp-menu-updated {
	margin: 1.25rem 0 0;
	padding-top: 0.75rem;
	border-top: 1px solid var(--axp-line);
	font-size: 0.75rem;
	color: var(--axp-muted);
	font-style: italic;
}

/* ========================================================== Recreation */
/* Icon-led rows with a tinted circular badge.                           */

.axp .axp-recreation {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 1rem;
}

.axp .axp-activity {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.15rem;
	border-radius: calc(var(--axp-radius) * 0.6);
	background: var(--axp-surface);
	border: 1px solid var(--axp-line);
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.axp .axp-activity:hover {
	border-color: var(--axp-accent-alt);
	transform: translateY(-2px);
}

/* A gradient ring rather than a gradient fill: a purple icon sitting directly
   on the compass gradient disappears wherever the gradient turns purple. */
.axp .axp-activity-icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(var(--axp-surface), var(--axp-surface)) padding-box,
		var(--axp-gradient) border-box;
	border: 2px solid transparent;
	color: var(--axp-accent-alt);
}

.axp .axp-activity-body {
	flex: 1;
	min-width: 0;
}

.axp .axp-activity-name {
	margin: 0 0 0.3rem;
	font-size: 1.0625rem;
	line-height: 1.3;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.axp .axp-tag {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
}

.axp .axp-tag-free {
	background: rgba(0, 180, 192, 0.16);
	color: #00727d;
}

.axp .axp-tag-paid {
	background: rgba(252, 204, 0, 0.24);
	color: #7a5600;
}

.axp .axp-activity-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--axp-muted);
}

.axp .axp-activity-meta {
	margin: 0.5rem 0 0;
	font-size: 0.8125rem;
	color: var(--axp-muted);
	font-weight: 600;
}

/* =============================================================== Pools */
/* Aquatic: cool gradient panels topped with a wave line.                */

.axp .axp-pools {
	display: grid;
	gap: 1.25rem;
}

.axp .axp-pool {
	position: relative;
	overflow: hidden;
	padding: 1.5rem;
	border-radius: var(--axp-radius);
	background: linear-gradient(160deg, rgba(0, 168, 216, 0.1), rgba(122, 29, 136, 0.07));
	border: 1px solid rgba(0, 168, 216, 0.26);
}

.axp .axp-pool-leisure {
	background: linear-gradient(160deg, rgba(0, 180, 192, 0.1), rgba(0, 168, 216, 0.06));
	border-color: rgba(0, 180, 192, 0.26);
}

.axp .axp-pool-kids {
	background: linear-gradient(160deg, rgba(252, 204, 0, 0.14), rgba(209, 40, 127, 0.07));
	border-color: rgba(252, 204, 0, 0.36);
}

.axp .axp-pool-indoor {
	background: linear-gradient(160deg, rgba(42, 14, 53, 0.06), rgba(122, 29, 136, 0.08));
	border-color: rgba(42, 14, 53, 0.14);
}

/* No type chosen: neutral, so nothing is implied that was not selected. */
.axp .axp-pool-unset {
	background: linear-gradient(160deg, rgba(42, 14, 53, 0.04), rgba(122, 29, 136, 0.05));
	border-color: var(--axp-line);
}

.axp .axp-pool-unset .axp-pool-wave {
	color: rgba(42, 14, 53, 0.16);
}

.axp .axp-pool-wave {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	color: rgba(0, 168, 216, 0.38);
	pointer-events: none;
}

.axp .axp-pool-wave svg {
	width: 100%;
	height: 100%;
	display: block;
}

.axp .axp-pool-head {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin-top: 0.75rem;
}

.axp .axp-pool-icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: var(--axp-accent-alt);
	box-shadow: 0 1px 3px rgba(42, 14, 53, 0.12);
}

.axp .axp-pool-kids .axp-pool-icon      { color: #8a6400; }
.axp .axp-pool-leisure .axp-pool-icon   { color: #00838f; }
.axp .axp-pool-feature .axp-pool-icon   { color: var(--axp-accent); }

.axp .axp-pool-name {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.axp .axp-pool-body {
	position: relative;
	margin-top: 0.75rem;
	min-width: 0;
}

.axp .axp-pool-body.has-hero {
	display: grid;
	/* Narrower than the restaurant hero: a pool panel is already a wide tinted
	   block, and the photo reads better as a supporting detail than a headline. */
	grid-template-columns: minmax(0, 1fr) 170px;
	gap: 1.9rem;
	align-items: start;
}

@media (max-width: 700px) {
	.axp .axp-pool-body.has-hero {
		grid-template-columns: 1fr;
		gap: 1.35rem;
	}
	.axp .axp-pool-body.has-hero .axp-pool-hero {
		order: -1;
	}
}

.axp .axp-pool-text {
	min-width: 0;
}

.axp .axp-pool-hero {
	min-width: 0;
	line-height: 0;
}

.axp .axp-pool-hero .axp-gallery-link {
	aspect-ratio: 4 / 3;
	width: 100%;
}

@media (max-width: 700px) {
	.axp .axp-pool-hero {
		/* Capped rather than full-bleed, so it reads as a thumbnail you can
		   open rather than a banner. */
		max-width: 300px;
	}
	.axp .axp-pool-hero .axp-gallery-link {
		aspect-ratio: 3 / 2;
	}
}

.axp .axp-pool-gallery {
	position: relative;
	margin-top: 1.1rem;
	min-width: 0;
}

.axp .axp-pool-gallery .axp-gallery {
	margin: 0;
}

.axp .axp-pool-gallery .axp-gallery-strip .axp-gallery-link {
	flex: 0 0 170px;
	aspect-ratio: 3 / 2;
}

@media (max-width: 600px) {
	.axp .axp-pool-gallery .axp-gallery-strip .axp-gallery-link {
		flex-basis: min(66vw, 260px);
	}
}

.axp .axp-pool-desc {
	position: relative;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	max-width: 62ch;
}

.axp .axp-pool-stats {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.axp .axp-stat {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	color: var(--axp-dark);
	border: 1px solid rgba(42, 14, 53, 0.07);
}

.axp .axp-stat .axp-icon {
	color: var(--axp-muted);
}

.axp .axp-stat.is-on .axp-icon {
	color: var(--axp-accent);
}

@media (prefers-reduced-motion: reduce) {
	.axp .axp-activity,
	.axp .axp-room-row,
	.axp .axp-tab {
		transition: none;
	}
	.axp .axp-activity:hover {
		transform: none;
	}
}

/* =============================================================== Map */

.axp .axp-map {
	min-width: 0;
	max-width: 100%;
}

.axp .axp-map-frame {
	background: var(--axp-gradient);
	padding: 4px;
	border-radius: var(--axp-radius);
	line-height: 0;
}

.axp .axp-map-link,
.axp .axp-map-frame .axp-gallery-link {
	position: relative;
	display: block;
	background: none;
	border-radius: calc(var(--axp-radius) - 4px);
	overflow: hidden;
	background: rgba(42, 14, 53, 0.04);
	/* A map is not a 4:3 photo; let it keep its own proportions. */
	aspect-ratio: auto;
	padding: 0;
}

.axp .axp-map-link img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: calc(var(--axp-radius) - 4px);
	transition: transform 0.4s ease;
}

.axp .axp-map-link:hover img {
	transform: scale(1.02);
}

.axp .axp-map-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.9rem;
}

.axp .axp-map-caption {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--axp-muted);
	flex: 1 1 240px;
	min-width: 0;
}

.axp .axp-map-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.axp .axp-map-hint {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8125rem;
	color: var(--axp-muted);
}

.axp .axp-map-pdf {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--axp-accent-alt);
	border: 1px solid var(--axp-line);
	border-radius: 999px;
	padding: 0.45rem 0.95rem;
	background-color: var(--axp-surface);
	transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.axp .axp-map-pdf:hover,
.axp .axp-map-pdf:focus {
	background-color: var(--axp-accent-alt);
	border-color: var(--axp-accent-alt);
	color: #fff;
}

@media (prefers-reduced-motion: reduce) {
	.axp .axp-map-link img {
		transition: none;
	}
	.axp .axp-map-link:hover img {
		transform: none;
	}
}

/* ---------------------------------------------- Restaurant features */

.axp .axp-features {
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.axp .axp-feature {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(122, 29, 136, 0.07);
	border: 1px solid rgba(122, 29, 136, 0.16);
	color: var(--axp-dark);
	line-height: 1.3;
}

.axp .axp-feature .axp-icon {
	color: var(--axp-accent-alt);
}

.axp .axp-feature-romantic {
	background: rgba(209, 40, 127, 0.08);
	border-color: rgba(209, 40, 127, 0.2);
}
.axp .axp-feature-romantic .axp-icon { color: var(--axp-accent); }

.axp .axp-feature-vegetarian {
	background: rgba(0, 180, 192, 0.09);
	border-color: rgba(0, 180, 192, 0.24);
}
.axp .axp-feature-vegetarian .axp-icon { color: #00838f; }

.axp .axp-feature-upscale {
	background: rgba(252, 204, 0, 0.16);
	border-color: rgba(252, 204, 0, 0.4);
}
.axp .axp-feature-upscale .axp-icon { color: #8a6400; }

.axp .axp-feature-buffet,
.axp .axp-feature-energetic {
	background: rgba(0, 168, 216, 0.09);
	border-color: rgba(0, 168, 216, 0.22);
}
.axp .axp-feature-buffet .axp-icon,
.axp .axp-feature-energetic .axp-icon { color: #0a6c88; }

/* ------------------------------------------------- Agency badges */

.axp .axp-restaurant {
	position: relative;
}

.axp .axp-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	color: #fff;
	margin-bottom: 0.85rem;
	box-shadow: 0 2px 8px rgba(42, 14, 53, 0.2);
}

/* Recommends carries the brand gradient. Every stop clears 4.5:1 with white. */
.axp .axp-badge-recommends {
	background-image: var(--axp-gradient-badge);
	color: #fff;
}

.axp .axp-badge-recommends .axp-icon {
	color: #fff;
}

/* Top Pick is gold, so its text must be dark: white on gold is 1.5:1,
   while the deep plum below measures 11.4:1. */
.axp .axp-badge-toppick {
	background-color: var(--axp-gold);
	background-image: linear-gradient(120deg, var(--axp-gold), #f5b800);
	color: var(--axp-dark);
	box-shadow: 0 2px 10px rgba(252, 204, 0, 0.45);
}

.axp .axp-badge-toppick .axp-icon {
	color: var(--axp-dark);
}

/* ------------------------------------------------------- Videos */

.axp .axp-videos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
	min-width: 0;
}

.axp .axp-video {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.axp .axp-video-frame {
	position: relative;
	border-radius: var(--axp-radius);
	overflow: hidden;
	background: var(--axp-gradient);
	padding: 3px;
	min-height: 0;
}

/* TikTok is portrait; letterboxing it into 16:9 wastes most of the card. */
.axp .axp-video.is-vertical .axp-video-frame {
	aspect-ratio: 9 / 16;
}

.axp .axp-video:not(.is-vertical) .axp-video-frame {
	aspect-ratio: 16 / 9;
}

.axp .axp-video-play {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: calc(var(--axp-radius) - 3px);
	overflow: hidden;
	cursor: pointer;
	background-color: var(--axp-dark);
	background-image: none;
	line-height: 0;
}

.axp .axp-video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.3s ease;
}

.axp .axp-video-play:hover .axp-video-thumb,
.axp .axp-video-play:focus-visible .axp-video-thumb {
	transform: scale(1.04);
	filter: brightness(0.85);
}

.axp .axp-video-play:focus-visible {
	outline: 3px solid var(--axp-accent);
	outline-offset: -3px;
}

.axp .axp-video-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(150deg, var(--axp-dark), var(--axp-accent-alt));
	color: rgba(255, 255, 255, 0.5);
}

.axp .axp-video-badge {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: rgba(42, 14, 53, 0.78);
	color: #fff;
	line-height: 1.5;
}

.axp .axp-video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.94);
	color: var(--axp-accent);
	box-shadow: 0 4px 16px rgba(42, 14, 53, 0.35);
	transition: transform 0.2s ease, background 0.2s ease;
	padding-left: 3px;
}

.axp .axp-video-play:hover .axp-video-btn,
.axp .axp-video-play:focus-visible .axp-video-btn {
	transform: translate(-50%, -50%) scale(1.09);
	background: #fff;
}

.axp .axp-video-frame.is-loading::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: calc(var(--axp-radius) - 3px);
	background: var(--axp-dark);
	opacity: 0.6;
}

.axp .axp-video-embed-holder {
	width: 100%;
	height: 100%;
	overflow: auto;
	border-radius: calc(var(--axp-radius) - 3px);
	background: #000;
	scrollbar-width: none;
}

.axp .axp-video-embed-holder::-webkit-scrollbar {
	display: none;
}

.axp .axp-video-embed-holder iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* TikTok's own embed sets a min-width; let it size itself inside the card. */
.axp .axp-video-embed-holder .tiktok-embed {
	margin: 0 !important;
	min-width: 0 !important;
	max-width: 100% !important;
}

.axp .axp-video-meta {
	min-width: 0;
}

.axp .axp-video-title {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	line-height: 1.35;
	overflow-wrap: break-word;
}

.axp .axp-video-caption {
	margin: 0 0 0.4rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--axp-muted);
	overflow-wrap: break-word;
}

.axp .axp-video-source {
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--axp-accent-alt);
	text-decoration: none;
}

.axp .axp-video-source:hover {
	text-decoration: underline;
}

.axp .axp-video-note {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.8125rem;
	color: var(--axp-muted);
	font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
	.axp .axp-video-thumb,
	.axp .axp-video-btn {
		transition: none;
	}
	.axp .axp-video-play:hover .axp-video-thumb {
		transform: none;
	}
}

/* Type label, printed only when it is not already in the pool's name. */
.axp .axp-pool-kind {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--axp-muted);
	background: rgba(255, 255, 255, 0.78);
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	white-space: nowrap;
}

.axp .axp-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* The icon now carries the type on its own, so make it read clearly. */
.axp .axp-pool-icon {
	position: relative;
	border: 1px solid rgba(42, 14, 53, 0.08);
}

/* -------------------------------------------- Dining Plan indicator */

.axp .axp-restaurant-tags {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.45rem;
}

@media (max-width: 560px) {
	/* Stacked on a phone the column would push the name badly narrow. */
	.axp .axp-restaurant-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.6rem;
	}
	.axp .axp-restaurant-tags {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
	}
}

.axp .axp-plan {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.8rem;
	border-radius: calc(var(--axp-radius) * 0.55);
	line-height: 1.25;
	border: 1px solid transparent;
	text-align: left;
	max-width: 100%;
}

.axp .axp-plan-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.axp .axp-plan-status {
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.axp .axp-plan-detail {
	font-size: 0.8125rem;
	font-weight: 600;
	opacity: 0.9;
}

/* Accepted: brand teal, dark text on a light fill. */
.axp .axp-plan-accepted {
	background: #c9eef1;
	color: #00575e;
	border-color: rgba(0, 131, 143, 0.28);
}

/* Two Table-Service credits is the one guests misjudge, so it gets weight. */
.axp .axp-plan-heavy {
	background: #fbe7a3;
	color: #6b4a00;
	border-color: rgba(252, 204, 0, 0.55);
}

/* Not accepted: quiet rather than alarming — it is information, not a warning. */
.axp .axp-plan-none {
	background: #ece8ef;
	color: #5c5566;
	border-color: rgba(42, 14, 53, 0.12);
}

.axp .axp-plan .axp-icon {
	color: currentColor;
	opacity: 0.85;
	flex: 0 0 auto;
}
