.toc {
	position: relative;
	z-index: 20;
	background: var(--surface, #fff);
	border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Height lock */
.toc__inner {
	max-width: var(--content-width, 1440px);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
	height: 64px; /* ← LOCKED */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.toc__slot.toc__slot--left {
	display: flex;
}

.toc__list {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
	white-space: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	justify-content: center;
}

.toc__list::-webkit-scrollbar {
	display: none;
}

.toc a {
	text-decoration: none;
	font-weight: 600;
	font-size: .875rem;
	color: var(--text-muted, #666);
	padding-block: .5rem;
	position: relative;
}

.toc a:hover {
	color: var(--brand-gold, #111);
	background: red;
}

.toc {
	position: sticky;
	top: 0; /* adjusted via body offset if needed */
}

body.admin-bar .toc {
	top: 32px;
}

@media (min-width: 782px) {
	body.admin-bar .toc {
		top: 32px;
	}
}
.toc a.is-active {
	color: var(--brand, #000);
}

.toc a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: currentColor;
}

.toc {
	position: sticky;
	top: 0;
	z-index: 100;
}

.toc__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 64px; /* LOCKED */
}

.toc__list {
	position: relative;
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.toc__link {
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.toc__indicator {
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 0;
	transform: translateX(0);
	transition: transform 0.3s ease, width 0.3s ease;
}

.toc__action {
	white-space: nowrap;
}

.toc__action--enquire {
	font-weight: 600;
}

.toc__logo {
	opacity: .75;
	transform: translateY(-4px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: auto;
}

a.toc__logo:hover {
	opacity: 1;
}

a.toc__logo {
	opacity: .75;
	transform: translateY(0);
	pointer-events: auto;
}

.toc__list {
	position: relative;
}

.toc__indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0;
	background: currentColor;
	transform: translateX(0);
	transition:
		transform 0.35s cubic-bezier(.4,0,.2,1),
		width 0.35s cubic-bezier(.4,0,.2,1);
	pointer-events: none;
}

.btn-enquire {
	--bg: #154633;
	--accent: #95C11F;
	--fg: #ffffff;

	display: inline-flex;
	align-items: center;
	gap: 1.25rem;

	padding: 0.9em 1.6em 0.9em 1.8em;
	border-radius: 999px;

	font-weight: 600;
	color: var(--fg);
	background: var(--bg);
	text-decoration: none;

	position: relative;
	overflow: hidden;

	transition: transform .25s ease, box-shadow .25s ease;
}

.btn-enquire::before {
	content: "";
	position: absolute;
	inset: auto 1rem 50% auto;
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 50%;
	transform: translateY(50%);
	transition: width .35s ease, height .35s ease, inset .35s ease;
	z-index: 0;
}

.btn-enquire > * {
	position: relative;
	z-index: 1;
}

.btn-enquire .btn-arrow {
	display: inline-flex;
	transition: transform .35s cubic-bezier(.4,0,.2,1);
}

/* Hover */
.btn-enquire:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn-enquire:hover::before {
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 999px;
}

.btn-enquire:hover .btn-arrow {
	transform: rotate(45deg) translateX(-4px);
}

/* ============================ *
 * VIEW GALLERY BUTTON IN TOC   *
 * ============================ */

.btn-view-gallery {
	--btn-accent: currentColor;

	display: inline-flex;
	align-items: center;
	gap: 0.5rem;

	padding: 0.6em 1.1em;
	border-radius: 999px;

	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;

	color: inherit;
	background: transparent;
	border: 1px solid color-mix(in srgb, currentColor 25%, transparent);

	transition:
		background-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===================================
   OPTION 1 — Gradient Sweep Hover
   =================================== */

.btn-view-gallery {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.btn-view-gallery::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.25) 40%,
		transparent 80%
	);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.btn-view-gallery:hover::before,
.btn-view-gallery:focus-visible::before {
	transform: translateX(100%);
}

.btn-view-gallery:hover,
.btn-view-gallery:focus-visible {
	background: transparent; /* force override */
	color: inherit;
}


/* Icon micro-jingle */
.btn-view-gallery .btn-icon {
	display: inline-block;
	transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}

.btn-view-gallery:hover .btn-icon {
	transform: translateX(4px);
}

/* =================================== *
 * =================================== *
 * HOVER OPTIONS FOR GALLERY BUTTON    *
 * =================================== *
 * =================================== */
/* ===================================
   OPTION 1 — Gradient Sweep Hover
   =================================== */
.btn-view-gallery {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.btn-view-gallery::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.25) 40%,
		transparent 80%
	);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
	z-index: -1;
}

.btn-view-gallery:hover::before,
.btn-view-gallery:focus-visible::before {
	transform: translateX(100%);
}

.btn-view-gallery:hover,
.btn-view-gallery:focus-visible {
	background: transparent; /* force override */
	color: inherit;
}

/* ===================================
   OPTION 2 — Border Swipe Hover
   =================================== */

.btn-view-gallery {
	position: relative;
}

.btn-view-gallery::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #b88a44; /* adjust later */
	transform: translateX(-50%);
	transition: width 0.35s ease;
}

.btn-view-gallery:hover::after,
.btn-view-gallery:focus-visible::after {
	width: 80%;
}

.btn-view-gallery:hover,
.btn-view-gallery:focus-visible {
	background: transparent;
	color: inherit;
}

/* ===================================
   OPTION 3 — Soft Glow Ring
   =================================== */

.btn-view-gallery:hover,
.btn-view-gallery:focus-visible {
	background: transparent !important;
	color: inherit !important;
	box-shadow:
		0 0 0 3px rgba(184,138,68,0.25),
		0 8px 18px rgba(0,0,0,0.08);
	transform: translateY(-1px);
}


.toc-enquire a {
	--enquire-bg: transparent;
	--enquire-fg: var(--brand, #1f2937);
	--enquire-border: color-mix(in srgb, var(--enquire-fg) 30%, transparent);
	--enquire-bg-hover: var(--enquire-fg);

	display: inline-flex;
	align-items: center;
	gap: 0.5rem;

	height: 36px; /* fits nicely inside 64px TOC */
	padding: 0 1.1rem;

	border-radius: 999px;
	border: 1px solid var(--enquire-border);

	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;

	color: var(--enquire-fg);
	background: var(--enquire-bg);

	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.2s ease;
}

.toc-enquire a:hover {
	background: var(--enquire-bg-hover);
	color: #fff !important;
	border-color: var(--enquire-bg-hover);
	transform: translateY(-1px);
}

.toc-enquire a:active {
	transform: translateY(0);
}

/* Icon micro-motion */
.toc-enquire__icon {
	display: inline-block;
	transform: translateX(0);
	transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}

.toc-enquire a:hover .toc-enquire__icon {
	transform: translateX(2px);
}



/* ****************** *
 * MENU PEEK TOGGLE   *
 * ***************** */

.toc__peek-toggle {
	background: none;
	border: none;
	font-size: 1rem;
	cursor: pointer;
	opacity: .7;
	transition: opacity .2s ease, transform .2s ease;
}

.toc__peek-toggle:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* When peeking */
body.toc-peek-active {
	transform: translateY(60px); /* height of header */
	transition: transform .3s ease;
}

img.toc__peek-icon {
	width: 2rem;
	height: 2rem;
/* 	fill: red; */
/* 	background-color: green; */
}



/* ****************** *
 * BACK TO TOP BUTTON *
 * ***************** */


.tta-back-to-top {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 999;
	padding: .6rem .75rem;
	border-radius: 999px;
	font-size: 1.1rem;
	cursor: pointer;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease;
}

.tta-back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tta-back-to-top[hidden] {
	display: none;
}


.toc__peek-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: .25rem;
}

.toc__peek-icon {
	width: 18px;
	height: 18px;
	display: none;
	opacity: .75;
	transition: opacity .2s ease, transform .2s ease;
}

.toc__peek-toggle:hover .toc__peek-icon {
	opacity: 1;
	transform: translateY(-1px);
}

/* Default = header hidden → show DOWN chevron */
.toc__peek-icon--down {
	display: inline-block;
}

/* Peek active = header visible → show UP chevron */
body.toc-peek-active .toc__peek-icon--down {
	display: none;
}

body.toc-peek-active .toc__peek-icon--up {
	display: inline-block;
}

.tta-back-to-top img {
width: 2rem;
  height: 2rem;
	display: block;
}


/* Default behavior (current) */
.site-header {
	position: relative;
	z-index: 100;
}

/* When TOC is sticky, header scrolls away */
body.toc-sticky .site-header {
	position: relative;
}

/* When user peeks header back */
body.toc-peek-active .site-header {
	position: sticky;
	top: 0;
	z-index: 1100;
	background: var(--header-bg, #fff);
}

.tta-back-to-top {
	background: transparent;
	border: none;
	padding: .5rem;
}

.tta-back-to-top:hover,
.tta-back-to-top:focus {
	background: transparent;
}

[data-tooltip] {
/* 	position: relative; */
}

[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background: rgba(0,0,0,.85);
	color: #fff;
	font-size: .75rem;
	padding: .3rem .5rem;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s ease, transform .15s ease;
}

[data-tooltip]:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(-2px);
}

/* ***************** *
 * SHORT TITLE       *
 * ***************** */
/* As a STAMP */
.toc__short-title {
	display: inline-block;
	margin-left: .5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .75rem;
}

.toc__short-title--stamp {
	padding: .25rem .5rem;
	border: 2px solid currentColor;
	border-radius: 4px;
	opacity: .85;
}

/* As a Signboard */
.toc__short-title--signboard {
	position: relative;
	padding: .4rem .75rem;
	background: var(--text-body);
	color: #fff;
	font-size: .75rem;
	border-radius: 3px;
}

.toc__short-title--signboard::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px 6px 0;
	border-style: solid;
	border-color: var(--text-body) transparent transparent;
}

.context-entity-switch {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.entity-current {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

.chevron {
	width: 14px;
	height: 14px;
	transition: transform 200ms ease;
}

.context-entity-switch:hover .chevron {
	transform: rotate(180deg);
}

.entity-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: rgba(20,20,20,0.92);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 10px 0;
	box-shadow: 0 10px 30px rgba(0,0,0,.4);

	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: all 180ms ease;
}

.entity-dropdown {
	max-height: calc(100vh - 120px); /* adjust to your sticky header height */
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	
}

.entity-dropdown::-webkit-scrollbar {
	width: 6px;
}

.entity-dropdown::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.2);
	border-radius: 10px;
}

.context-entity-switch:hover .entity-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

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

.entity-dropdown li a {
	display: block;
	padding: 8px 18px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
}

.entity-dropdown li a:hover {
	background: rgba(255,255,255,.06);
}

@media (max-width: 1024px) {

	.context-entity-switch:hover .entity-dropdown {
		opacity: 0;
		pointer-events: none;
	}

	.context-entity-switch.is-open .entity-dropdown {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}

.context-country-switch {
	position: relative;
	margin-left: 16px;
}

.country-current {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
}

.country-current img {
	height: 18px;
	width: auto;
	border-radius: 2px;
	display: block;
}

.country-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: rgba(20,20,20,.92);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,.4);

	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: all 180ms ease;

	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.context-country-switch:hover .country-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.country-dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.country-dropdown li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 6px;
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.country-dropdown li img {
	height: 20px;
	width: auto;
}

@media (max-width: 1024px) {

	.context-country-switch:hover .country-dropdown {
		opacity: 0;
		pointer-events: none;
	}

	.context-country-switch.is-open .country-dropdown {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}

.toc__slot.toc__slot--left {
	display: flex;
	align-items: center;
}

button.country-current, button.entity-current {
	padding: 0;
	margin: 0;
}

.toc__mobile-toggle {
	display: none;
	background: transparent;
	border: 0;
	color: inherit;
	font: inherit;
	cursor: pointer;
	align-items: center;
	gap: 6px;
}

@media (max-width: 1024px) {

	.toc__inner {
		flex-wrap: wrap;
	}

	.toc__mobile-toggle {
		display: inline-flex;
	}

	.toc__list {
		width: 100%;
		max-height: 0;
		overflow: hidden;
		transition: max-height 250ms ease;
		flex-direction: column;
		padding-top: 0;
		margin-top: 8px;
	}

	.toc.is-open .toc__list {
		max-height: 400px; /* enough for links */
		overflow-y: auto;
	}

	.toc__indicator {
		display: none;
	}

	.toc__item {
		width: 100%;
	}

	.toc__link {
		display: block;
		padding: 10px 0;
	}
}