/*
 * Golf Tours page — a deliberately distinct, one-off treatment layered on
 * top of the site's shared tokens/base/components. Scoped entirely under
 * .golf-page so nothing here leaks onto any other template. Only enqueued
 * on page-templates/template-service-golf-tours.php (see includes/setup.php).
 */

.golf-page {
	--golf-green-950: #061d16;
	--golf-green-900: #0a2b20;
	--golf-green-800: #11422f;
	--golf-green-700: #196044;
	--golf-cream: #f5f1e8;
	--golf-gold: var(--color-accent);
	--golf-gold-light: #e7cf94;
	--golf-muted: #647169;
	--golf-line: rgba(202, 167, 91, 0.28);
	--golf-shadow: 0 28px 80px rgba(5, 29, 22, 0.18);
	--golf-font-display: Georgia, "Times New Roman", serif;

	background: var(--golf-cream);
}

.golf-page .container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.golf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--space-sm);
	color: var(--golf-gold-light);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.golf-eyebrow::before {
	content: "";
	width: 42px;
	height: 1px;
	background: currentColor;
}

.golf-eyebrow--dark {
	color: var(--golf-green-700);
}

.golf-section-title {
	margin: 0;
	max-width: 720px;
	font-family: var(--golf-font-display);
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--golf-green-950);
}

.golf-section-copy {
	max-width: 620px;
	margin: var(--space-md) 0 0;
	color: var(--golf-muted);
	font-size: 1.03rem;
}

/* .golf-section-title/.golf-section-copy each cap their own max-width,
   narrower than most containers they sit in — text-align: center on a
   .text-center ancestor only centers the text inside that (left-anchored)
   box, not the box itself, so the heading/copy read off-centre. Centre the
   box too whenever it's inside a .text-center section. */
.text-center .golf-section-title,
.text-center .golf-section-copy {
	margin-inline: auto;
}

.golf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
	cursor: pointer;
}

.golf-btn:hover,
.golf-btn:focus-visible {
	transform: translateY(-2px);
}

.golf-btn--primary {
	color: var(--golf-green-950);
	background: linear-gradient(135deg, var(--golf-gold-light), var(--golf-gold));
	box-shadow: 0 14px 34px rgba(202, 167, 91, 0.28);
}

.golf-btn--secondary {
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
}

/* Hero */
.golf-hero {
	position: relative;
	overflow: hidden;
	color: var(--color-white);
	background:
		radial-gradient(circle at 78% 22%, rgba(202, 167, 91, 0.18), transparent 26%),
		linear-gradient(120deg, rgba(6, 29, 22, 0.98) 0%, rgba(6, 29, 22, 0.9) 48%, rgba(17, 66, 47, 0.74) 100%),
		var(--golf-green-950);
}

.golf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.14;
	background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to right, black, transparent 75%);
}

/* Optional background photo layer, revealed left-to-right underneath the
   hero's usual green gradient. Set --golf-hero-photo (a `url(...)`) inline
   on the .golf-hero element to activate; the photo sits behind everything
   else in this section including ::before's grid texture. */
.golf-hero--bg-fade {
	background-image:
		radial-gradient(circle at 78% 22%, rgba(202, 167, 91, 0.18), transparent 26%),
		linear-gradient(90deg, var(--golf-green-950) 0%, var(--golf-green-950) 28%, rgba(6, 29, 22, 0.82) 46%, rgba(6, 29, 22, 0.35) 72%, rgba(6, 29, 22, 0.05) 100%),
		var(--golf-hero-photo, none);
	background-position: center, center, center;
	background-size: auto, auto, cover;
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-color: var(--golf-green-950);
}

.golf-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: var(--space-2xl);
	padding-block: var(--space-2xl) var(--space-xl);
}

/* No golf-hero__art column (photo now lives full-bleed via
   .golf-hero--bg-fade) — collapse to a single column and give the
   copy room to breathe against the taller background photo. */
.golf-hero--no-art .golf-hero__inner {
	grid-template-columns: 1fr;
	padding-block: var(--space-3xl) var(--space-2xl);
}

.golf-hero--no-art .golf-hero__inner > div {
	max-width: 640px;
}

.golf-hero h1 {
	max-width: 620px;
	margin: 0;
	font-family: var(--golf-font-display);
	font-size: clamp(2.8rem, 6vw, 4.6rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: var(--color-white);
}

.golf-hero h1 em {
	color: var(--golf-gold-light);
	font-style: italic;
	font-weight: 400;
}

.golf-hero__copy {
	max-width: 540px;
	margin: var(--space-md) 0 var(--space-lg);
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.05rem;
}

.golf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.golf-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-top: var(--space-xl);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
	font-weight: 700;
}

.golf-hero__proof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.golf-hero__proof span::before {
	content: "";
	width: 7px;
	height: 7px;
	background: var(--golf-gold);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(202, 167, 91, 0.12);
}

.golf-hero__art {
	position: relative;
	min-height: 380px;
}

.golf-hero__glow {
	position: absolute;
	inset: 6% 4% auto auto;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(231, 207, 148, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 0 45px rgba(231, 207, 148, 0.045), 0 0 0 90px rgba(231, 207, 148, 0.025);
}

.golf-hero__frame {
	position: absolute;
	inset: 4% 0 4% 6%;
	overflow: hidden;
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: -20px 24px 70px rgba(0, 0, 0, 0.3);
}

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

.golf-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 29, 22, 0) 40%, rgba(6, 29, 22, 0.55) 100%);
}

.golf-hero__badge {
	position: absolute;
	z-index: 4;
	left: 0;
	bottom: 6%;
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 230px;
	padding: 16px 18px;
	color: var(--golf-green-950);
	background: rgba(255, 255, 255, 0.94);
	border-radius: 18px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(16px);
}

.golf-hero__badge .icon-badge {
	background: linear-gradient(135deg, var(--golf-gold-light), var(--golf-gold));
	color: var(--golf-green-950);
	flex-shrink: 0;
}

.golf-hero__badge strong {
	display: block;
	font-size: 0.95rem;
}

.golf-hero__badge small {
	color: #5c6a64;
}

/* Benefits strip — overlaps the hero's bottom edge */
.golf-benefits {
	position: relative;
	z-index: 5;
	margin-top: -48px;
}

.golf-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
	border-radius: 26px;
	background: var(--color-white);
	box-shadow: var(--golf-shadow);
}

/* Border logic below assumes the item count is always a multiple of the
   column count at each breakpoint (true for every current usage: the
   4-item hero-overlap stats/benefits strips, and Corporate Travel's
   12-item coverage grid) — nth-child(4n)/nth-last-child(-n+4) zero the
   right/bottom border on the last column and last row respectively. */
.golf-benefit {
	padding: var(--space-lg);
	border-right: 1px solid #e7e9e5;
	border-bottom: 1px solid #e7e9e5;
}

.golf-benefit:nth-child(4n) {
	border-right: 0;
}

.golf-benefit:nth-last-child(-n + 4) {
	border-bottom: 0;
}

.golf-benefit .icon-badge {
	background-color: rgba(25, 96, 68, 0.08);
	color: var(--golf-green-700);
}

.golf-benefit h3 {
	margin: var(--space-md) 0 var(--space-3xs);
	font-size: 1.03rem;
	color: var(--golf-green-950);
}

.golf-benefit p {
	margin: 0;
	color: var(--golf-muted);
	font-size: 0.9rem;
}

/* Generic section rhythm for this page */
.golf-section {
	padding-block: var(--space-3xl);
}

/* "What's Included" grid — a divided white card (visually matching
   .golf-benefits__grid above) holding exactly the 6 items
   et_included_benefits() returns, laid out 3x2 (2x3 on tablet, 1 column
   on mobile) instead of the old auto-fit .checklist, which left an
   unbalanced 4-then-2 wrapped row. */
.golf-included {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: var(--space-2xl);
	overflow: hidden;
	border-radius: 26px;
	background: var(--color-white);
	box-shadow: var(--golf-shadow);
}

.golf-included__item {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-lg);
	border-right: 1px solid #e7e9e5;
	border-bottom: 1px solid #e7e9e5;
	font-weight: 600;
	color: var(--golf-green-950);
}

.golf-included__item:nth-child(3n) {
	border-right: 0;
}

.golf-included__item:nth-last-child(-n + 3) {
	border-bottom: 0;
}

.golf-included__item .icon-badge {
	background-color: rgba(25, 96, 68, 0.08);
	color: var(--golf-green-700);
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.golf-included {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Reset the desktop nth-child(3n)/nth-last-child(-n+3) border rules
	   above — same specificity, so without this override they'd still win
	   over a plain .golf-included__item rule here regardless of source
	   order — then reapply for a 2-column grid. */
	.golf-included__item:nth-child(3n) {
		border-right: 1px solid #e7e9e5;
	}

	.golf-included__item:nth-last-child(-n + 3) {
		border-bottom: 1px solid #e7e9e5;
	}

	.golf-included__item:nth-child(2n) {
		border-right: 0;
	}

	.golf-included__item:nth-last-child(-n + 2) {
		border-bottom: 0;
	}
}

@media (max-width: 600px) {
	.golf-included {
		grid-template-columns: 1fr;
	}

	.golf-included__item,
	.golf-included__item:nth-child(2n),
	.golf-included__item:nth-child(3n) {
		border-right: 0;
	}

	.golf-included__item:nth-last-child(-n + 2),
	.golf-included__item:nth-last-child(-n + 3) {
		border-bottom: 1px solid #e7e9e5;
	}

	.golf-included__item:last-child {
		border-bottom: 0;
	}
}

/* Services grid */
.golf-services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-md);
	margin-top: var(--space-2xl);
}

/* Homepage Services/Fleet/Vehicle-page "What It Suits" grids — 3 columns,
   scoped separately from the base 2-column .golf-services__grid so the
   Values/Golf-tours grids elsewhere keep their own column counts.
   Compound selector (both classes) so this outranks the plain
   .golf-services__grid breakpoint rules further down the file regardless
   of source order. */
.golf-services__grid.golf-services__grid--3col {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
	.golf-services__grid.golf-services__grid--3col {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.golf-services__grid.golf-services__grid--3col {
		grid-template-columns: 1fr;
	}
}

/* Homepage "How It Works" grid — 4 columns, same scoping approach. */
.golf-services__grid.golf-services__grid--4col {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
	.golf-services__grid.golf-services__grid--4col {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.golf-services__grid.golf-services__grid--4col {
		grid-template-columns: 1fr;
	}
}

/* Fleet grid (homepage + Fleet page) — a 3-column, image-led card, distinct
   from the text-only .golf-service-card used for Services/Values/Golf-tours
   grids elsewhere. */
.fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-top: var(--space-2xl);
}

@media (max-width: 960px) {
	.fleet-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.fleet-grid {
		grid-template-columns: 1fr;
	}
}

.fleet-card {
	display: block;
	overflow: hidden;
	border-radius: 26px;
	background: var(--color-white);
	box-shadow: var(--golf-shadow);
	text-decoration: none;
	color: inherit;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.fleet-card:hover,
.fleet-card:focus-visible {
	transform: translateY(-5px);
	box-shadow: 0 28px 70px rgba(5, 29, 22, 0.14);
}

.fleet-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--golf-green-950);
}

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

.fleet-card__media-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.fleet-card__number {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(6, 29, 22, 0.55);
	backdrop-filter: blur(6px);
	color: var(--golf-gold-light);
	font-family: var(--golf-font-display);
	font-weight: 700;
	font-size: 0.85rem;
}

.fleet-card__body {
	padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.fleet-card__body h3 {
	max-width: 340px;
	margin: 0 0 var(--space-sm);
	font-family: var(--golf-font-display);
	font-size: clamp(1.4rem, 2.2vw, 1.75rem);
	font-weight: 500;
	line-height: 1.1;
	color: var(--golf-green-950);
}

.fleet-card__body p {
	margin: 0;
	color: var(--golf-muted);
}

.golf-service-card {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	padding: var(--space-xl);
	border-radius: 26px;
	background: var(--color-white);
	box-shadow: 0 20px 54px rgba(5, 29, 22, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.golf-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 70px rgba(5, 29, 22, 0.14);
}

.golf-service-card::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -70px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 40px solid rgba(25, 96, 68, 0.06);
}

.golf-service-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: var(--golf-green-900);
	border: 1px solid var(--golf-line);
	border-radius: 50%;
	font-weight: 900;
}

.golf-service-card h3 {
	max-width: 340px;
	margin: var(--space-lg) 0 var(--space-sm);
	font-family: var(--golf-font-display);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 500;
	line-height: 1.08;
	color: var(--golf-green-950);
}

.golf-service-card p {
	max-width: 420px;
	margin: 0;
	color: var(--golf-muted);
}

.golf-service-card--featured {
	color: var(--color-white);
	background: linear-gradient(145deg, var(--golf-green-900), var(--golf-green-700));
}

.golf-service-card--featured h3 {
	color: var(--color-white);
}

.golf-service-card--featured p {
	color: rgba(255, 255, 255, 0.72);
}

.golf-service-card--featured .golf-service-card__number {
	color: var(--golf-gold-light);
	border-color: rgba(231, 207, 148, 0.34);
}

.golf-service-card--featured::after {
	border-color: rgba(231, 207, 148, 0.08);
}

/* --media modifier: a photo strip on top (with the number badge overlaid
   on it) above the padded text content, instead of padding running edge to
   edge. Used by the homepage Services grid; the featured/non-featured
   green-white alternation above still applies since it targets the same
   .golf-service-card / .golf-service-card--featured classes. */
.golf-service-card--media {
	padding: 0;
	min-height: 0;
}

.golf-service-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.golf-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.golf-service-card--media .golf-service-card__number {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	background: rgba(6, 29, 22, 0.55);
	backdrop-filter: blur(6px);
	border-color: rgba(231, 207, 148, 0.4);
	color: var(--golf-gold-light);
}

.golf-service-card__content {
	position: relative;
	padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.golf-service-card--media h3 {
	margin-top: 0;
}

/* Trust/experience section */
.golf-experience {
	color: var(--color-white);
	background: var(--golf-green-950);
}

.golf-experience .golf-section-title,
.golf-experience .golf-section-copy {
	color: var(--color-white);
}

.golf-experience .golf-section-copy {
	color: rgba(255, 255, 255, 0.66);
}

.golf-experience__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: var(--space-2xl);
	align-items: center;
}

.golf-about__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--space-2xl);
	align-items: center;
}

.golf-about__media {
	overflow: hidden;
	border-radius: 28px;
	box-shadow: var(--golf-shadow);
	aspect-ratio: 4 / 3;
}

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

@media (max-width: 900px) {
	.golf-about__grid {
		grid-template-columns: 1fr;
	}

	.golf-about__media {
		order: -1;
	}
}

.golf-stat {
	padding: var(--space-xl);
	border-radius: 26px;
	background: linear-gradient(145deg, var(--golf-green-900), var(--golf-green-800));
	border: 1px solid rgba(231, 207, 148, 0.2);
	text-align: center;
}

.golf-stat strong {
	display: block;
	font-family: var(--golf-font-display);
	font-size: clamp(2.6rem, 5vw, 3.6rem);
	font-weight: 500;
	color: var(--golf-gold-light);
	line-height: 1;
}

.golf-stat span {
	display: block;
	margin-top: var(--space-2xs);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.golf-experience__list {
	display: grid;
	gap: var(--space-lg);
	margin-top: var(--space-xl);
}

.golf-experience__item {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: var(--space-sm);
}

.golf-experience__item .icon-badge {
	width: 50px;
	height: 50px;
	background: none;
	border: 1px solid rgba(231, 207, 148, 0.28);
	color: var(--golf-gold-light);
}

.golf-experience__item h3 {
	margin: 2px 0 6px;
	font-size: 1rem;
	color: var(--color-white);
}

.golf-experience__item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.93rem;
}

/* Homepage "Why Choose Us" — a centred heading over a 3-column grid of
   pillars, rather than the stat-card + single-column list layout used on
   Service pages (.golf-experience__grid/.golf-stat above), which reads too
   tall for six items. */
.golf-why__heading {
	max-width: 640px;
	margin: 0 auto var(--space-2xl);
}

.golf-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-xl) var(--space-2xl);
}

@media (max-width: 900px) {
	.golf-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.golf-why__grid {
		grid-template-columns: 1fr;
	}
}

/* Course directory */
.golf-courses {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 92% 8%, rgba(202, 167, 91, 0.14), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f6f4ed 100%);
}

.golf-courses__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: end;
	gap: var(--space-xl);
}

.golf-courses__note {
	margin: 0 0 4px;
	padding: var(--space-md);
	color: var(--golf-muted);
	border: 1px solid rgba(25, 96, 68, 0.12);
	border-left: 3px solid var(--golf-gold);
	border-radius: 0 16px 16px 0;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 14px 34px rgba(5, 29, 22, 0.05);
	font-size: 0.9rem;
}

.golf-course-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: var(--space-lg);
}

.golf-course-stat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	color: var(--golf-green-800);
	border: 1px solid rgba(25, 96, 68, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
	font-weight: 800;
}

.golf-course-stat::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--golf-gold);
	box-shadow: 0 0 0 4px rgba(202, 167, 91, 0.14);
}

.golf-course-accordions {
	display: grid;
	gap: var(--space-sm);
	margin-top: var(--space-2xl);
}

.golf-course-region {
	overflow: hidden;
	border: 1px solid rgba(15, 63, 45, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 14px 40px rgba(5, 29, 22, 0.055);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.golf-course-region[open] {
	border-color: rgba(25, 96, 68, 0.34);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 24px 60px rgba(5, 29, 22, 0.1);
}

.golf-course-region summary {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) auto 42px;
	align-items: center;
	gap: var(--space-md);
	min-height: 88px;
	padding: var(--space-md) var(--space-lg);
	list-style: none;
	cursor: pointer;
}

.golf-course-region summary::-webkit-details-marker {
	display: none;
}

.golf-region-code {
	display: grid;
	place-items: center;
	width: 58px;
	height: 54px;
	color: var(--golf-gold-light);
	border: 1px solid rgba(231, 207, 148, 0.24);
	border-radius: 16px;
	background: var(--golf-green-900);
	font-family: var(--golf-font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.golf-region-label strong {
	display: block;
	font-family: var(--golf-font-display);
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	font-weight: 500;
	color: var(--golf-green-950);
}

.golf-region-label small {
	display: block;
	margin-top: 2px;
	color: var(--golf-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.golf-region-count {
	padding: 6px 12px;
	color: var(--golf-green-700);
	border: 1px solid rgba(25, 96, 68, 0.14);
	border-radius: 999px;
	background: rgba(25, 96, 68, 0.05);
	font-size: 0.72rem;
	font-weight: 800;
	white-space: nowrap;
}

.golf-course-region[open] .golf-region-count {
	color: var(--color-white);
	background: var(--golf-green-700);
	border-color: var(--golf-green-700);
}

.golf-course-region summary::after {
	content: "+";
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--golf-green-800);
	border: 1px solid rgba(15, 63, 45, 0.14);
	border-radius: 50%;
	background: var(--color-white);
	font-size: 1.35rem;
	line-height: 1;
	transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.golf-course-region[open] summary::after {
	content: "\2212";
	color: var(--color-white);
	background: var(--golf-green-800);
	border-color: var(--golf-green-800);
}

.golf-course-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 4px var(--space-lg) var(--space-lg);
	list-style: none;
	border-top: 1px solid rgba(15, 63, 45, 0.08);
}

.golf-course-list li {
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid rgba(15, 63, 45, 0.08);
	border-radius: 12px;
	background: #fbfcf8;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--golf-green-950);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.golf-courses__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-md);
	margin-top: var(--space-xl);
	padding: var(--space-lg);
	color: var(--golf-green-950);
	border: 1px solid rgba(202, 167, 91, 0.34);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 14px 36px rgba(5, 29, 22, 0.06);
}

.golf-courses__cta strong {
	display: block;
	font-family: var(--golf-font-display);
	font-size: 1.2rem;
	font-weight: 600;
}

.golf-courses__cta small {
	display: block;
	margin-top: 2px;
	color: var(--golf-muted);
	font-size: 0.84rem;
}

/* Booking / final CTA — only the Corporate Travel page's embedded
   account-enquiry form still uses this (see the "form_callback" branch
   in et_render_premium_service_page(), includes/helpers.php); every
   other page's CTA is et_render_booking_cta()'s .exec-footer-cta
   instead. Flows straight into the footer immediately below (nothing
   else is ever rendered between this and get_footer()) — the gradient
   ends on the exact .exec-footer background colour so there's no seam. */
.golf-booking {
	padding-bottom: 0;
	background: linear-gradient(180deg, var(--golf-green-700) 0%, #041f19 100%);
}

.golf-booking__shell {
	overflow: hidden;
}

.golf-booking__copy {
	position: relative;
	overflow: hidden;
	padding: var(--space-2xl) var(--space-2xl) var(--space-3xl);
	color: var(--color-white);
	text-align: center;
}

.golf-booking__copy > * {
	position: relative;
}

.golf-booking__copy::after {
	content: "";
	position: absolute;
	right: -140px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	border: 60px solid rgba(231, 207, 148, 0.08);
	border-radius: 50%;
}

.golf-booking__copy h2 {
	position: relative;
	margin: 0;
	font-family: var(--golf-font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.2rem);
	font-weight: 500;
	line-height: 1;
	color: var(--color-white);
}

.golf-booking__copy p {
	max-width: 560px;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.7);
}

.golf-booking__actions {
	display: flex;
	justify-content: center;
	margin-top: var(--space-lg);
}

.golf-booking__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-lg);
	margin-top: var(--space-xl);
}

/* The one remaining place an enquiry form is embedded directly in this
   card rather than linked out to (Corporate Travel's account enquiry
   form) — restores the original two-column, left-aligned layout. */
.golf-booking__shell--form {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
}

.golf-booking__shell--form .golf-booking__copy {
	text-align: left;
}

.golf-booking__shell--form .golf-booking__copy p {
	margin-inline: 0;
}

.golf-booking__shell--form .golf-booking__actions,
.golf-booking__shell--form .golf-booking__contact {
	justify-content: flex-start;
}

.golf-booking__form {
	padding: var(--space-2xl);
}

/* Reuse the shared .enquiry-form component, restyled for this card */
.golf-booking__form .enquiry-form {
	border: none;
	box-shadow: none;
	padding: 0;
}

@media (max-width: 960px) {
	.golf-booking__shell--form {
		grid-template-columns: 1fr;
	}
}

.golf-booking__contact a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-white);
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 960px) {
	.golf-hero__inner {
		grid-template-columns: 1fr;
		padding-block: var(--space-xl);
	}

	.golf-hero__art {
		min-height: 300px;
	}

	.golf-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.golf-benefit:nth-child(4n) {
		border-right: 1px solid #e7e9e5;
	}

	.golf-benefit:nth-child(2n) {
		border-right: 0;
	}

	.golf-benefit:nth-last-child(-n + 4) {
		border-bottom: 1px solid #e7e9e5;
	}

	.golf-benefit:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.golf-services__grid {
		grid-template-columns: 1fr;
	}

	.golf-experience__grid {
		grid-template-columns: 1fr;
	}

	.golf-courses__intro {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.golf-course-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.golf-hero h1 {
		font-size: clamp(2.4rem, 12vw, 3.2rem);
	}

	.golf-benefits__grid,
	.golf-services__grid {
		grid-template-columns: 1fr;
	}

	.golf-benefit {
		border-right: 0;
		border-bottom: 1px solid #e7e9e5;
	}

	.golf-benefit:last-child {
		border-bottom: 0;
	}

	.golf-section {
		padding-block: var(--space-2xl);
	}

	.golf-course-region summary {
		grid-template-columns: 48px minmax(0, 1fr) 38px;
		gap: var(--space-sm);
	}

	.golf-region-count {
		display: none;
	}

	.golf-course-list {
		grid-template-columns: 1fr;
	}

	.golf-courses__cta {
		flex-direction: column;
		align-items: stretch;
	}

	.golf-booking__copy {
		padding: var(--space-xl);
	}
}
