/*
Theme Name: AnotherWorld Sigiriya
Theme URI: https://anotherworldsigiriya.com
Author: AnotherWorld
Author URI: https://www.instagram.com/anotherworldsigiriya/
Description: A mobile-first WordPress theme for AnotherWorld Sigiriya — stays, local adventures, food, safaris and transport.
Version: 2.1.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: anotherworld-sigiriya
*/

:root {
	--aw-ink: #18231f;
	--aw-forest: #19392f;
	--aw-deep: #0d281f;
	--aw-lime: #eadfc2;
	--aw-cream: #f7f5ef;
	--aw-paper: #fffefa;
	--aw-orange: #b85f47;
	--aw-yellow: #e9dfc9;
	--aw-sky: #dfe9e4;
	--aw-pink: #efe3dc;
	--aw-muted: #5d6a64;
	--aw-line: rgba(24, 35, 31, .16);
	--aw-shell: 1320px;
	--aw-radius: 18px;
	--aw-shadow: 0 18px 50px rgba(13, 40, 31, .11);
	--aw-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--aw-display-font: "Segoe UI Variable Display", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--aw-cream);
	color: var(--aw-ink);
	font-family: var(--aw-body-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-words strong,
.button {
	font-family: var(--aw-display-font);
}

body.menu-is-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.site-shell {
	width: min(var(--aw-shell), calc(100% - 44px));
	margin-inline: auto;
}

.narrow-shell {
	max-width: 850px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	padding: 10px 16px;
	margin: 0;
	clip: auto;
	background: var(--aw-lime);
	color: var(--aw-ink);
	font-weight: 800;
	border-radius: 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: 78px;
	background: rgba(247, 245, 239, .94);
	border-bottom: 1px solid var(--aw-line);
	backdrop-filter: blur(16px);
}

.scroll-progress {
	position: fixed;
	top: 77px;
	right: 0;
	left: 0;
	z-index: 110;
	height: 2px;
	pointer-events: none;
}

.scroll-progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--aw-orange);
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform;
}

.admin-bar .scroll-progress {
	top: 109px;
}

.admin-bar .site-header {
	top: 32px;
}

.header-inner {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	width: fit-content;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	width: 44px;
	max-height: 44px;
	object-fit: contain;
}

.brand-mark {
	width: 43px;
	height: 43px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	background: var(--aw-forest);
	color: var(--aw-lime);
	border-radius: 50%;
	font-size: 15px;
	font-weight: 820;
	letter-spacing: -.08em;
	transform: rotate(-7deg);
}

.brand-words {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand-words strong {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -.035em;
}

.brand-words small {
	margin-top: 5px;
	color: #65746d;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.primary-navigation .aw-menu {
	display: flex;
	align-items: center;
	gap: clamp(17px, 2.2vw, 32px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	position: relative;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.primary-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -8px;
	height: 2px;
	background: var(--aw-orange);
	transition: right .2s ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item a::after {
	right: 0;
}

.header-book {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--aw-ink);
	border-radius: 99px;
	font-size: 13px;
	font-weight: 800;
	transition: background .2s, color .2s;
}

.header-book:hover {
	background: var(--aw-ink);
	color: var(--aw-cream);
}

.menu-toggle {
	display: none;
}

.home-hero {
	min-height: calc(100svh - 78px);
	padding: clamp(46px, 5vw, 76px) 0 clamp(65px, 7vw, 100px);
	display: flex;
	align-items: center;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
	gap: clamp(45px, 7vw, 105px);
	align-items: center;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 24px;
	height: 2px;
	background: var(--aw-orange);
}

.hero-copy h1 {
	margin: 35px 0 28px;
	font-size: clamp(58px, 7vw, 105px);
	font-weight: 780;
	line-height: .86;
	letter-spacing: -.075em;
}

.hero-copy h1 strong,
.hero-copy h1 em {
	display: inline-block;
}

.hero-copy h1 strong {
	color: var(--aw-forest);
}

.hero-copy h1 em,
.inner-hero h1 em {
	color: var(--aw-orange);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

.hero-lead {
	max-width: 630px;
	margin: 0;
	color: #3e5249;
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.65;
}

.button-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
	margin: 32px 0 39px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-lime {
	background: var(--aw-lime);
	color: var(--aw-ink);
	box-shadow: 0 12px 28px rgba(57, 77, 22, .15);
}

.button-lime:hover {
	box-shadow: 0 15px 36px rgba(57, 77, 22, .24);
}

.button-dark {
	background: var(--aw-ink);
	color: var(--aw-cream);
}

.button-outline {
	border-color: var(--aw-ink);
	background: transparent;
}

.simple-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 14px;
	font-weight: 900;
}

.rating-chip {
	display: inline-flex;
	align-items: center;
	gap: 13px;
}

.rating-number {
	width: 55px;
	height: 55px;
	display: grid;
	place-items: center;
	background: var(--aw-forest);
	color: #fff;
	border-radius: 16px 16px 16px 4px;
	font-size: 18px;
	font-weight: 900;
}

.rating-chip > span:last-child {
	display: flex;
	flex-direction: column;
}

.rating-chip b {
	font-size: 13px;
}

.rating-chip small {
	margin-top: 2px;
	color: #6a7771;
	font-size: 11px;
}

.hero-photo-wrap {
	position: relative;
	min-height: min(650px, 72svh);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-photo {
	position: relative;
	width: min(100%, 680px);
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--aw-forest);
	border-radius: 38px 38px 20px 20px;
	box-shadow: 24px 28px 0 var(--aw-forest);
	transform: perspective(1100px) rotate(1.25deg) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
	transition: transform .22s ease-out;
}

.hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 39, 29, .32), transparent 50%);
	pointer-events: none;
}

.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	filter: saturate(.96) contrast(1.03);
}

.round-stamp {
	position: absolute;
	top: 8%;
	left: -20px;
	z-index: 3;
	width: 148px;
	height: 148px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--aw-yellow);
	border-radius: 50%;
	box-shadow: var(--aw-shadow);
	line-height: 1.05;
	transform: rotate(-10deg);
}

.round-stamp::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px dashed rgba(16, 37, 30, .5);
	border-radius: 50%;
}

.round-stamp small {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .14em;
}

.round-stamp b {
	margin: 5px 0;
	font-size: 25px;
}

.photo-note {
	position: absolute;
	right: -15px;
	bottom: 11%;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 17px;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: 15px;
	box-shadow: var(--aw-shadow);
	transform: rotate(-2deg);
}

.photo-note i {
	width: 10px;
	height: 10px;
	background: #48af5e;
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(72, 175, 94, .15);
}

.photo-note span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.photo-note small {
	color: #66756e;
	font-size: 10px;
}

.photo-note b {
	font-size: 12px;
}

.vertical-place {
	position: absolute;
	right: -5vw;
	bottom: -8px;
	z-index: 2;
	color: var(--aw-cream);
	font-size: clamp(28px, 3.4vw, 53px);
	font-weight: 950;
	letter-spacing: .08em;
	line-height: 1;
	text-shadow: -1px -1px rgba(16, 37, 30, .35), 1px 1px rgba(16, 37, 30, .35);
	writing-mode: vertical-rl;
}

.word-ribbon {
	overflow: hidden;
	background: var(--aw-orange);
	border-block: 1px solid var(--aw-ink);
	transform: rotate(-.65deg) scale(1.015);
}

.word-ribbon div {
	width: max-content;
	padding: 13px 0;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: .13em;
	word-spacing: 16px;
	white-space: nowrap;
	animation: aw-marquee 36s linear infinite;
}

.word-ribbon b {
	font-size: 15px;
}

@keyframes aw-marquee {
	to { transform: translateX(-50%); }
}

.section {
	padding: clamp(80px, 9vw, 130px) 0;
}

.dark-section {
	padding: clamp(85px, 9vw, 125px) 0;
	background: var(--aw-deep);
	color: var(--aw-cream);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
	gap: 50px;
	align-items: end;
	margin-bottom: 50px;
}

.section-heading h2 {
	max-width: 900px;
	margin: 14px 0 0;
	font-size: clamp(43px, 5.2vw, 76px);
	line-height: .98;
	letter-spacing: -.058em;
	font-weight: 760;
}

.section-heading > p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 17px;
	line-height: 1.65;
}

.heading-light > p {
	color: #b9c7c0;
}

.heading-light .eyebrow > span {
	background: var(--aw-lime);
}

.today-scroll {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.today-card {
	position: relative;
	min-height: 275px;
	padding: 23px;
	overflow: hidden;
	color: var(--aw-ink);
	border-radius: var(--aw-radius);
	transition: transform .2s ease;
}

.today-card:hover {
	transform: translateY(-5px);
}

.card-sky { background: var(--aw-sky); }
.card-yellow { background: var(--aw-yellow); }
.card-orange { background: var(--aw-orange); }
.card-pink { background: var(--aw-pink); }
.card-lime { background: var(--aw-lime); }

.today-card time {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
}

.today-card h3 {
	margin: 68px 0 10px;
	font-size: clamp(22px, 2vw, 29px);
	line-height: 1;
	letter-spacing: -.04em;
}

.today-card p {
	margin: 0 25px 0 0;
	font-size: 13px;
	line-height: 1.45;
}

.today-card > span {
	position: absolute;
	right: 20px;
	bottom: 17px;
	font-size: 22px;
}

.today-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 24px;
	color: #afc0b8;
	font-size: 13px;
}

.today-bottom a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--aw-lime);
	font-weight: 900;
}

.pathway-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--aw-line);
}

.pathway-card {
	position: relative;
	min-height: 390px;
	padding: 25px;
	border-right: 1px solid var(--aw-line);
	transition: background .2s, transform .2s;
}

.pathway-card:first-child {
	border-left: 1px solid var(--aw-line);
}

.pathway-card:hover {
	background: var(--aw-paper);
	transform: translateY(-4px);
}

.pathway-card small {
	color: #738078;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .14em;
}

.path-icon {
	position: absolute;
	top: 22px;
	right: 24px;
	font-size: 27px;
}

.pathway-card h3 {
	margin: 102px 0 16px;
	font-size: clamp(32px, 3vw, 45px);
	line-height: 1;
	letter-spacing: -.05em;
	font-weight: 760;
}

.pathway-card p {
	color: var(--aw-muted);
}

.pathway-card > b {
	position: absolute;
	left: 25px;
	bottom: 28px;
	font-size: 12px;
}

.split-feature {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	min-height: 690px;
	background: var(--aw-yellow);
}

.feature-photo {
	position: relative;
	min-height: 620px;
	overflow: hidden;
}

.feature-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.92) contrast(1.04);
}

.feature-photo > p {
	position: absolute;
	left: 24px;
	bottom: 22px;
	max-width: calc(100% - 48px);
	margin: 0;
	padding: 10px 14px;
	background: var(--aw-cream);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 900;
	transform: rotate(-1deg);
}

.feature-copy {
	align-self: center;
	padding: clamp(60px, 8vw, 115px) clamp(30px, 7vw, 100px);
}

.feature-copy h2 {
	margin: 16px 0 25px;
	font-size: clamp(44px, 5.2vw, 76px);
	line-height: .97;
	letter-spacing: -.06em;
	font-weight: 760;
}

.feature-copy > p {
	font-size: 17px;
	line-height: 1.65;
}

.clean-list,
.fact-list,
.tick-list,
.big-number-list {
	padding: 0;
	margin: 30px 0 34px;
	list-style: none;
}

.clean-list {
	border-top: 1px solid rgba(16, 37, 30, .35);
}

.clean-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(16, 37, 30, .35);
}

.clean-list b {
	font-size: 14px;
}

.clean-list span {
	color: #48574f;
	font-size: 12px;
	text-align: right;
}

.experience-list {
	margin-bottom: 37px;
	border-top: 1px solid var(--aw-line);
}

.experience-list a {
	display: grid;
	grid-template-columns: 1.2fr 1fr auto;
	gap: 30px;
	align-items: center;
	padding: 25px 2px;
	border-bottom: 1px solid var(--aw-line);
	transition: padding .2s, background .2s;
}

.experience-list a:hover {
	padding-inline: 18px;
	background: var(--aw-paper);
}

.experience-list span {
	font-size: clamp(24px, 3vw, 39px);
	font-weight: 900;
	letter-spacing: -.04em;
}

.experience-list small {
	color: var(--aw-muted);
	font-size: 13px;
}

.experience-list b {
	color: #7a867f;
	font-size: 11px;
	letter-spacing: .14em;
}

.orange-section {
	padding: clamp(90px, 9vw, 130px) 0;
	background: var(--aw-orange);
}

.food-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(50px, 9vw, 140px);
	align-items: center;
}

.food-grid h2 {
	margin: 17px 0 0;
	font-size: clamp(54px, 6.5vw, 94px);
	line-height: .9;
	letter-spacing: -.065em;
	font-weight: 760;
}

.food-grid h2 em {
	color: var(--aw-cream);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

.food-intro {
	padding-left: clamp(32px, 5vw, 75px);
	border-left: 1px solid rgba(16, 37, 30, .35);
}

.food-symbol {
	font-size: 43px;
}

.food-intro p {
	font-size: 17px;
	line-height: 1.65;
}

.maliya-note {
	background: var(--aw-paper);
}

.note-grid {
	display: grid;
	grid-template-columns: .32fr 1fr;
	gap: clamp(40px, 7vw, 105px);
}

.note-label {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.note-label i {
	color: var(--aw-orange);
	font-family: Georgia, serif;
	font-size: 68px;
	font-style: normal;
}

.note-grid blockquote {
	margin: 0;
	font-size: clamp(35px, 4.5vw, 67px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.05em;
}

.note-sign {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 38px;
}

.note-sign > span {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	background: var(--aw-forest);
	color: var(--aw-lime);
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 23px;
	font-style: italic;
}

.note-sign p {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 1.4;
}

.note-sign b {
	font-size: 13px;
}

.note-sign small {
	color: #718078;
	font-size: 11px;
}

.trust-section {
	padding: clamp(90px, 9vw, 125px) 0;
	background: var(--aw-sky);
	text-align: center;
}

.eyebrow-center {
	justify-content: center;
}

.trust-score {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 28px 0 48px;
}

.trust-score > strong {
	font-size: clamp(80px, 10vw, 140px);
	line-height: .85;
	letter-spacing: -.08em;
}

.trust-score div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.35;
}

.trust-score b {
	font-size: 22px;
}

.trust-score span {
	font-size: 12px;
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	text-align: left;
}

.review-grid blockquote {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	padding: 27px;
	margin: 0;
	background: var(--aw-paper);
	border-radius: 17px;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.5;
}

.review-grid cite {
	margin-top: 30px;
	color: #718078;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.centered-link {
	margin-top: 35px;
}

.closing-cta,
.page-cta {
	position: relative;
	overflow: hidden;
	padding: clamp(105px, 10vw, 155px) 0 75px;
	background: var(--aw-forest);
	color: var(--aw-cream);
	text-align: center;
}

.closing-cta::before,
.page-cta::before {
	content: "ANOTHERWORLD";
	position: absolute;
	top: 50%;
	left: 50%;
	color: transparent;
	font-size: 15vw;
	font-weight: 950;
	letter-spacing: -.07em;
	line-height: 1;
	white-space: nowrap;
	-webkit-text-stroke: 1px rgba(255, 255, 255, .09);
	transform: translate(-50%, -50%);
}

.closing-cta .site-shell,
.page-cta .site-shell {
	position: relative;
	z-index: 2;
}

.closing-cta h2,
.page-cta h2,
.not-found h1 {
	margin: 22px 0;
	font-size: clamp(57px, 9vw, 128px);
	line-height: .9;
	letter-spacing: -.07em;
}

.closing-cta > .site-shell > p:not(.eyebrow),
.page-cta > .site-shell > p:not(.eyebrow) {
	margin: 0 0 30px;
	color: #c0cec7;
	font-size: 17px;
}

.closing-details {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	margin-top: 75px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	color: #bccbc4;
	font-size: 12px;
}

.site-footer {
	padding: 60px 0 25px;
	background: var(--aw-deep);
	color: var(--aw-cream);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr .75fr .75fr;
	gap: 60px;
}

.footer-brand .brand-words small {
	color: #9aaea4;
}

.footer-line {
	margin-top: 22px;
	color: #9aaca4;
	font-size: 12px;
}

.footer-links,
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
}

.footer-links strong,
.footer-contact strong {
	margin-bottom: 8px;
	color: var(--aw-lime);
	font-size: 10px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
	color: #c6d0cc;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 48px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .13);
	color: #7f9389;
	font-size: 10px;
}

.mobile-actions {
	display: none;
}

/* Inner pages */
.inner-hero {
	padding: clamp(78px, 8vw, 120px) 0;
	background: var(--aw-sky);
}

.inner-hero-orange { background: var(--aw-orange); }
.inner-hero-food { background: var(--aw-yellow); }
.inner-hero-taxi { background: var(--aw-lime); }
.inner-hero-story { background: var(--aw-paper); }
.inner-hero-contact { background: var(--aw-pink); }

.inner-hero-grid {
	display: grid;
	grid-template-columns: 1.3fr .7fr;
	gap: 60px;
	align-items: end;
}

.inner-hero h1 {
	margin: 20px 0 0;
	font-size: clamp(57px, 7.8vw, 112px);
	line-height: .88;
	letter-spacing: -.075em;
	font-weight: 760;
}

.inner-hero-grid > p {
	max-width: 520px;
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
}

.info-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: clamp(80px, 9vw, 125px);
	border: 1px solid var(--aw-line);
	background: var(--aw-paper);
}

.info-strip > div {
	display: flex;
	flex-direction: column;
	padding: 22px;
	border-right: 1px solid var(--aw-line);
}

.info-strip > div:last-child {
	border-right: 0;
}

.info-strip small {
	color: #6e7d75;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .13em;
}

.info-strip b {
	margin-top: 7px;
	font-size: 13px;
}

.compact-heading {
	margin-bottom: 38px;
}

.room-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.room-card {
	position: relative;
	min-height: 485px;
	padding: clamp(28px, 4vw, 48px);
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.room-card:nth-child(3n + 2) { background: var(--aw-sky); }
.room-card:nth-child(3n + 3) { background: var(--aw-yellow); }

.room-card-head {
	display: flex;
	justify-content: space-between;
	color: #65756d;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.room-card h2 {
	margin: 65px 0 15px;
	font-size: clamp(40px, 4.5vw, 65px);
	line-height: 1;
	letter-spacing: -.06em;
}

.room-card > p {
	max-width: 580px;
	color: #485b52;
}

.room-card ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 18px;
	padding: 20px 0;
	margin: 25px 0 48px;
	border-block: 1px solid rgba(16, 37, 30, .2);
	list-style: none;
}

.room-card li {
	font-size: 12px;
	font-weight: 750;
}

.room-card li::before {
	content: "✓";
	margin-right: 7px;
	color: #268245;
	font-weight: 900;
}

.room-card > a {
	position: absolute;
	left: clamp(28px, 4vw, 48px);
	bottom: 30px;
	font-size: 13px;
	font-weight: 900;
}

.property-grid,
.transport-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.property-grid article,
.transport-grid article {
	min-height: 320px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--aw-radius);
}

.property-grid small,
.transport-grid small,
.food-card small {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .15em;
}

.property-grid h3,
.transport-grid h2 {
	margin: 80px 0 14px;
	font-size: 31px;
	line-height: 1;
	letter-spacing: -.045em;
}

.property-grid p {
	color: #bdcbc4;
	font-size: 14px;
}

.simple-faq h2,
.arrival-section h2 {
	margin: 15px 0 45px;
	font-size: clamp(43px, 5vw, 67px);
	line-height: .98;
	letter-spacing: -.06em;
}

.simple-faq details {
	border-top: 1px solid var(--aw-line);
}

.simple-faq details:last-child {
	border-bottom: 1px solid var(--aw-line);
}

.simple-faq summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	padding: 22px 0;
	font-size: 18px;
	font-weight: 850;
	cursor: pointer;
	list-style: none;
}

.simple-faq summary::after {
	content: "+";
	font-size: 25px;
	font-weight: 400;
}

.simple-faq details[open] summary::after {
	content: "−";
}

.simple-faq details p {
	max-width: 700px;
	margin: -7px 0 25px;
	color: var(--aw-muted);
}

.experience-notice {
	display: grid;
	grid-template-columns: .25fr 1fr auto;
	gap: 30px;
	align-items: center;
	padding: 25px 28px;
	margin-bottom: 95px;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: 16px;
}

.experience-notice b {
	color: var(--aw-orange);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.experience-notice p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 13px;
}

.experience-notice a {
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.experience-group {
	display: grid;
	grid-template-columns: .42fr 1fr;
	gap: clamp(45px, 8vw, 120px);
	padding: 20px 0 95px;
	scroll-margin-top: 100px;
}

.experience-group + .experience-group {
	padding-top: 95px;
	border-top: 1px solid var(--aw-line);
}

.experience-group-title h2 {
	margin: 18px 0;
	font-size: clamp(42px, 5vw, 68px);
	line-height: .98;
	letter-spacing: -.055em;
}

.experience-items {
	border-top: 1px solid var(--aw-line);
}

.experience-items article {
	display: grid;
	grid-template-columns: 38px 1fr 1.35fr auto;
	gap: 24px;
	align-items: start;
	padding: 25px 0;
	border-bottom: 1px solid var(--aw-line);
}

.experience-items small {
	color: #7c8982;
	font-size: 10px;
	font-weight: 900;
}

.experience-items h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -.025em;
}

.experience-items p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 13px;
	line-height: 1.55;
}

.experience-items a {
	font-size: 11px;
	font-weight: 900;
	white-space: nowrap;
}

.safari-band {
	padding: clamp(80px, 8vw, 115px) 0;
	background: var(--aw-yellow);
}

.safari-grid,
.two-column-copy {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(55px, 9vw, 140px);
	align-items: start;
}

.safari-grid h2,
.two-column-copy h2 {
	margin: 17px 0 0;
	font-size: clamp(47px, 6vw, 82px);
	line-height: .94;
	letter-spacing: -.06em;
}

.fact-list {
	margin-top: 0;
	border-top: 1px solid rgba(16, 37, 30, .35);
}

.fact-list li,
.tick-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(16, 37, 30, .35);
	font-size: 13px;
}

.fact-list span {
	text-align: right;
}

.small-note {
	font-size: 12px;
	line-height: 1.55;
}

.food-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.food-card {
	min-height: 350px;
	padding: clamp(30px, 4vw, 48px);
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.food-card-main {
	grid-row: span 2;
	background: var(--aw-orange);
}

.food-card h2 {
	margin: 75px 0 15px;
	font-size: clamp(40px, 4.5vw, 63px);
	line-height: .98;
	letter-spacing: -.055em;
}

.food-card-main h2 {
	margin-top: 105px;
}

.food-card p {
	color: #465950;
}

.food-card ul {
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
}

.food-card li {
	padding: 11px 0;
	border-bottom: 1px solid rgba(16, 37, 30, .25);
	font-size: 13px;
	font-weight: 750;
}

.price-note {
	display: grid;
	grid-template-columns: .3fr 1fr auto;
	gap: 28px;
	align-items: center;
	margin-top: 18px;
	padding: 25px 28px;
	background: var(--aw-yellow);
	border-radius: 14px;
}

.price-note b {
	font-size: 13px;
}

.price-note p {
	margin: 0;
	font-size: 13px;
}

.price-note a {
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.night-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.night-grid article {
	min-height: 300px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--aw-radius);
}

.night-grid article > span {
	font-size: 28px;
}

.night-grid h3 {
	margin: 82px 0 12px;
	font-size: 27px;
	line-height: 1;
	letter-spacing: -.04em;
}

.night-grid p {
	color: #b8c6bf;
	font-size: 13px;
}

.page-cta-orange {
	background: var(--aw-orange);
	color: var(--aw-ink);
}

.page-cta-orange > .site-shell > p:not(.eyebrow) {
	color: #33453d;
}

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	background: var(--aw-paper);
}

.price-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	text-align: left;
}

.price-table th,
.price-table td {
	padding: 19px 23px;
	border-bottom: 1px solid var(--aw-line);
}

.price-table thead th {
	background: var(--aw-forest);
	color: var(--aw-cream);
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.price-table tbody th {
	font-size: 15px;
}

.price-table td {
	font-size: 14px;
	font-weight: 800;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
	border-bottom: 0;
}

.price-updated {
	margin-top: 13px;
	color: #6e7b74;
	font-size: 11px;
}

.transport-options {
	padding-top: 10px;
}

.transport-grid article {
	background: var(--aw-paper);
	border-color: var(--aw-line);
}

.transport-grid h2 {
	margin-top: 75px;
}

.transport-grid p {
	color: var(--aw-muted);
	font-size: 14px;
}

.transport-grid a {
	display: inline-block;
	margin-top: 20px;
	font-size: 12px;
	font-weight: 900;
}

.honest-transport,
.message-help {
	padding: clamp(85px, 9vw, 125px) 0;
}

.honest-transport .two-column-copy > div:last-child > p {
	margin-top: 0;
	color: #bfccc6;
	font-size: 17px;
}

.tick-list {
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.tick-list li {
	justify-content: flex-start;
	border-color: rgba(255, 255, 255, .2);
}

.tick-list li::before {
	content: "✓";
	margin-right: 10px;
	color: var(--aw-lime);
	font-weight: 900;
}

.story-page-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(45px, 8vw, 120px);
	align-items: start;
}

.story-page-photo {
	position: sticky;
	top: 110px;
}

.story-page-photo img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 48% 48% 18px 18px;
}

.story-page-photo p {
	margin-top: 12px;
	color: #6e7c74;
	font-size: 11px;
}

.story-page-copy h2 {
	margin: 20px 0 30px;
	font-size: clamp(43px, 5vw, 72px);
	line-height: .98;
	letter-spacing: -.06em;
}

.story-page-copy > p {
	color: #3d5148;
	font-size: 18px;
	line-height: 1.75;
}

.signature {
	margin-top: 42px;
	font-family: Georgia, serif;
	font-size: 34px;
	font-style: italic;
}

.signature span {
	font-family: inherit;
	font-size: 13px;
	font-style: normal;
}

.values-section {
	padding: clamp(85px, 9vw, 125px) 0;
	background: var(--aw-yellow);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 50px;
	border-top: 1px solid rgba(16, 37, 30, .3);
}

.values-grid article {
	min-height: 310px;
	padding: 25px;
	border-right: 1px solid rgba(16, 37, 30, .3);
}

.values-grid article:first-child {
	border-left: 1px solid rgba(16, 37, 30, .3);
}

.values-grid small {
	font-size: 10px;
	font-weight: 900;
}

.values-grid h3 {
	margin: 95px 0 13px;
	font-size: 27px;
	line-height: 1.05;
	letter-spacing: -.04em;
}

.values-grid p {
	font-size: 13px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.contact-card {
	position: relative;
	min-height: 420px;
	padding: 30px;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	transition: transform .2s;
}

.contact-card:hover {
	transform: translateY(-5px);
}

.contact-primary {
	background: var(--aw-lime);
}

.contact-card small {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .14em;
}

.contact-card > span {
	position: absolute;
	top: 26px;
	right: 28px;
	font-size: 27px;
}

.contact-card h2 {
	margin: 125px 0 15px;
	font-size: 42px;
	line-height: 1;
	letter-spacing: -.055em;
}

.contact-card p {
	color: var(--aw-muted);
}

.contact-card > b {
	position: absolute;
	left: 30px;
	bottom: 30px;
	font-size: 12px;
}

.big-number-list {
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.big-number-list li {
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.big-number-list b {
	color: var(--aw-lime);
	font-size: 11px;
}

.big-number-list span {
	font-size: 18px;
	font-weight: 800;
}

.arrival-section {
	text-align: center;
}

.arrival-section .eyebrow {
	justify-content: center;
}

.arrival-section > .site-shell > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--aw-muted);
	font-size: 18px;
}

.content-area {
	min-height: 60vh;
}

.content-area h1 {
	margin: 20px 0 30px;
	font-size: clamp(50px, 7vw, 90px);
	line-height: .95;
	letter-spacing: -.06em;
}

.entry-content {
	font-size: 18px;
}

.page-editor-content {
	background: var(--aw-paper);
	border-block: 1px solid var(--aw-line);
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
	line-height: 1.05;
	letter-spacing: -.04em;
}

.entry-content h2 {
	font-size: clamp(34px, 5vw, 58px);
}

.entry-content a {
	text-decoration: underline;
	text-decoration-color: var(--aw-orange);
	text-underline-offset: .18em;
}

.entry-content img {
	border-radius: var(--aw-radius);
}

.not-found {
	min-height: 75vh;
	display: flex;
	align-items: center;
}

/* Refined homepage and editable collection layouts */
.home-photo-story {
	padding: 0 0 clamp(78px, 9vw, 125px);
	background: var(--aw-orange);
}

.photo-story-shell figure,
.food-photo-intro figure {
	position: relative;
	overflow: hidden;
	margin: 0;
	border-radius: clamp(18px, 3vw, 34px);
	box-shadow: var(--aw-shadow);
}

.photo-story-shell img,
.food-photo-intro img {
	width: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.photo-story-shell img {
	aspect-ratio: 16 / 8.5;
}

.photo-story-shell figcaption,
.food-photo-intro figcaption {
	position: absolute;
	right: clamp(16px, 3vw, 36px);
	bottom: clamp(16px, 3vw, 36px);
	left: clamp(16px, 3vw, 36px);
	max-width: 590px;
	padding: clamp(21px, 3vw, 34px);
	background: rgba(255, 254, 250, .91);
	border: 1px solid rgba(255, 255, 255, .65);
	border-radius: 17px;
	box-shadow: 0 18px 50px rgba(13, 40, 31, .18);
	backdrop-filter: blur(14px);
}

.photo-story-shell figcaption small,
.food-photo-intro figcaption small {
	display: block;
	margin-bottom: 12px;
	color: var(--aw-orange);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .15em;
}

.photo-story-shell figcaption strong,
.food-photo-intro figcaption strong {
	display: block;
	font-family: var(--aw-display-font);
	font-size: clamp(23px, 3.2vw, 41px);
	line-height: 1.05;
	letter-spacing: -.045em;
}

.photo-story-shell figcaption a {
	display: inline-flex;
	gap: 10px;
	margin-top: 21px;
	padding-bottom: 3px;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 900;
}

.food-photo-intro {
	padding: clamp(45px, 6vw, 82px) 0 0;
	background: var(--aw-cream);
}

.food-photo-intro img {
	aspect-ratio: 16 / 8;
}

.food-photo-intro figcaption {
	max-width: 530px;
}

.card-media {
	overflow: hidden;
	margin-top: 24px;
	border-radius: 13px;
	background: var(--aw-sky);
}

.card-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.card-media + h3,
.card-media + h2 {
	margin-top: 28px;
}

.home-offers {
	background: var(--aw-cream);
}

.offer-teaser-grid,
.support-grid,
.tour-grid,
.place-grid,
.deal-grid,
.mini-price-grid {
	display: grid;
	gap: 14px;
}

.offer-teaser-grid,
.support-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 34px;
}

.offer-teaser-grid article,
.support-card {
	min-height: 330px;
	padding: clamp(27px, 3.2vw, 42px);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.offer-teaser-grid article {
	background: var(--aw-paper);
}

.offer-teaser-grid small,
.support-card small,
.tour-card time,
.place-card small,
.deal-card small,
.mini-price-grid small {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.offer-teaser-grid h3,
.support-card h3 {
	margin: 90px 0 14px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 720;
	line-height: 1;
	letter-spacing: -.045em;
}

.offer-teaser-grid p,
.support-card p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 14px;
}

.support-section {
	padding: clamp(85px, 9vw, 125px) 0;
	background: var(--aw-deep);
	color: var(--aw-cream);
}

.support-card {
	position: relative;
	border-color: rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .035);
	transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.support-card:hover {
	transform: translateY(-4px);
	border-color: rgba(234, 223, 194, .5);
	background: rgba(255, 255, 255, .065);
}

.support-card small {
	color: var(--aw-lime);
}

.support-card p {
	color: #bcc9c3;
}

.support-card b {
	position: absolute;
	right: 30px;
	bottom: 28px;
	left: 30px;
	font-size: 12px;
}

.maliya-short {
	max-width: 760px;
	margin: 30px 0 20px;
	color: var(--aw-muted);
	font-size: 16px;
}

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

.tour-card {
	position: relative;
	min-height: 520px;
	padding: clamp(28px, 3.5vw, 43px);
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.tour-card-top,
.place-top,
.deal-card-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: #68766f;
}

.tour-card h3,
.place-card h3,
.deal-card h2 {
	margin: 68px 0 15px;
	font-size: clamp(32px, 3.6vw, 50px);
	font-weight: 740;
	line-height: .98;
	letter-spacing: -.05em;
}

.tour-copy,
.place-card > div:not(.place-top),
.deal-card > div:not(.deal-card-top) {
	color: var(--aw-muted);
	font-size: 14px;
}

.tour-card dl,
.deal-card dl {
	margin: 26px 0 56px;
	border-top: 1px solid var(--aw-line);
}

.tour-card dl > div,
.deal-card dl > div {
	display: grid;
	grid-template-columns: .33fr 1fr;
	gap: 18px;
	padding: 12px 0;
	border-bottom: 1px solid var(--aw-line);
}

.tour-card dt,
.deal-card dt {
	color: #748078;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.tour-card dd,
.deal-card dd {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
}

.tour-note {
	margin: -35px 0 52px;
	padding-left: 11px;
	border-left: 2px solid var(--aw-orange);
	color: var(--aw-muted);
	font-size: 11px;
}

.tour-book,
.place-card > a,
.deal-card > a {
	position: absolute;
	right: clamp(28px, 3.5vw, 43px);
	bottom: 28px;
	left: clamp(28px, 3.5vw, 43px);
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	font-weight: 800;
}

.large-copy {
	margin-top: 0;
	font-size: 18px;
	line-height: 1.7;
}

.inner-hero-guide {
	background: var(--aw-sky);
}

.inner-hero-deals {
	background: var(--aw-yellow);
}

.confidence-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 100px;
	border: 1px solid var(--aw-line);
	background: var(--aw-paper);
}

.confidence-bar span {
	padding: 18px 20px;
	border-right: 1px solid var(--aw-line);
	font-size: 11px;
	font-weight: 750;
	text-align: center;
}

.confidence-bar span:last-child {
	border-right: 0;
}

.place-group + .place-group {
	margin-top: 105px;
	padding-top: 100px;
	border-top: 1px solid var(--aw-line);
}

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

.place-card {
	position: relative;
	min-height: 520px;
	padding: clamp(27px, 3vw, 38px);
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.place-card h3 {
	margin-top: 72px;
	font-size: clamp(29px, 3vw, 40px);
}

.place-meta,
.place-deal {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 13px 0;
	margin: 0;
	border-top: 1px solid var(--aw-line);
}

.place-meta {
	margin-top: 25px;
}

.place-meta b,
.place-deal b {
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.place-meta span,
.place-deal span {
	color: var(--aw-muted);
	font-size: 11px;
}

.recommend-band,
.restaurant-band,
.challenge-band,
.map-section {
	padding: clamp(82px, 9vw, 125px) 0;
	background: var(--aw-sky);
}

.recommend-band .two-column-copy > div:last-child > p,
.restaurant-band .two-column-copy > div:last-child > p,
.challenge-grid > div:last-child > p {
	margin-top: 0;
	color: var(--aw-muted);
	font-size: 18px;
	line-height: 1.7;
}

.deal-intro {
	display: grid;
	grid-template-columns: .25fr 1fr;
	gap: 30px;
	padding: 24px 27px;
	margin-bottom: 55px;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: 14px;
}

.deal-intro b {
	color: var(--aw-orange);
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.deal-intro p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 13px;
}

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

.deal-card {
	position: relative;
	min-height: 500px;
	padding: clamp(28px, 3.5vw, 44px);
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
}

.deal-card:nth-child(2n) {
	background: var(--aw-sky);
}

.challenge-band {
	background: var(--aw-orange);
}

.challenge-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(50px, 9vw, 130px);
}

.challenge-grid h2 {
	margin: 18px 0 0;
	font-size: clamp(48px, 6vw, 82px);
	font-weight: 760;
	line-height: .94;
	letter-spacing: -.06em;
}

.team-page-section {
	background: var(--aw-paper);
}

.light-ticks {
	border-color: var(--aw-line);
}

.light-ticks li {
	border-color: var(--aw-line);
}

.light-ticks li::before {
	color: var(--aw-orange);
}

.mini-price-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 45px;
}

.mini-price-grid article {
	min-height: 220px;
	padding: 25px;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: 14px;
}

.mini-price-grid small {
	color: var(--aw-orange);
}

.mini-price-grid h3 {
	margin: 52px 0 8px;
	font-size: 24px;
	font-weight: 720;
	line-height: 1;
	letter-spacing: -.04em;
}

.mini-price-grid strong {
	font-size: 12px;
}

.mini-price-grid p {
	margin: 10px 0 0;
	color: var(--aw-muted);
	font-size: 10px;
}

.map-section {
	background: var(--aw-yellow);
}

.map-grid {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	gap: clamp(45px, 8vw, 105px);
	align-items: center;
}

.map-grid h2 {
	margin: 18px 0 25px;
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 760;
	line-height: .96;
	letter-spacing: -.055em;
}

.map-grid > div > p:not(.eyebrow) {
	margin-bottom: 25px;
	color: var(--aw-muted);
}

.map-grid iframe {
	width: 100%;
	min-height: 480px;
	border: 0;
	border-radius: var(--aw-radius);
	filter: saturate(.7) contrast(.95);
}

/* Built-in guided helper: useful navigation, not a fake AI chatbot */
.digital-helper-toggle {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 140;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 10px 17px;
	background: var(--aw-paper);
	color: var(--aw-ink);
	border: 1px solid var(--aw-line);
	border-radius: 16px;
	box-shadow: var(--aw-shadow);
	cursor: pointer;
}

.digital-helper-toggle > span:last-child {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.3;
}

.digital-helper-toggle small {
	color: var(--aw-muted);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.digital-helper-toggle b {
	font-size: 12px;
}

.helper-pulse {
	width: 11px;
	height: 11px;
	background: var(--aw-orange);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(184, 95, 71, .14);
}

.digital-helper {
	position: fixed;
	right: 24px;
	bottom: 94px;
	z-index: 145;
	width: min(390px, calc(100vw - 36px));
	padding: 24px;
	visibility: hidden;
	opacity: 0;
	background: var(--aw-paper);
	border: 1px solid var(--aw-line);
	border-radius: 20px;
	box-shadow: 0 28px 75px rgba(13, 40, 31, .22);
	transform: translateY(14px) scale(.98);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.digital-helper.is-open {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.helper-head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 15px;
}

.helper-head small {
	color: var(--aw-orange);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .14em;
}

.helper-head h2 {
	margin: 9px 0 20px;
	font-size: 25px;
	font-weight: 750;
	line-height: 1.05;
	letter-spacing: -.04em;
}

.helper-close {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	padding: 0;
	background: transparent;
	border: 1px solid var(--aw-line);
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
}

.helper-options {
	border-top: 1px solid var(--aw-line);
}

.helper-options a {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	gap: 9px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid var(--aw-line);
}

.helper-options span {
	color: #7a867f;
	font-size: 9px;
	font-weight: 800;
}

.helper-options b {
	font-size: 12px;
}

.helper-options i {
	font-style: normal;
}

.digital-helper > p {
	margin: 17px 0 0;
	color: var(--aw-muted);
	font-size: 10px;
}

/* Subtle motion with a no-motion fallback */
.reveal-ready {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero-copy > * {
	animation: aw-copy-in .75s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy > :nth-child(5) { animation-delay: .32s; }

.hero-photo-wrap {
	animation: aw-photo-in .9s cubic-bezier(.2, .7, .2, 1) .12s both;
}

.motion-card {
	--card-rx: 0deg;
	--card-ry: 0deg;
	transform: perspective(1000px) rotateX(var(--card-rx)) rotateY(var(--card-ry));
	transform-style: preserve-3d;
	transition: transform .2s ease-out, box-shadow .3s ease, border-color .3s ease;
	will-change: transform;
}

@media (hover: hover) {
	.motion-card:hover {
		border-color: rgba(184, 95, 71, .42);
		box-shadow: 0 24px 58px rgba(13, 40, 31, .13);
		transform: perspective(1000px) translateY(-3px) rotateX(var(--card-rx)) rotateY(var(--card-ry));
	}

	.photo-story-shell figure:hover img,
	.food-photo-intro figure:hover img,
	.card-media:hover img {
		transform: scale(1.035);
	}
}

.hero-photo img {
	animation: aw-photo-breathe 14s ease-in-out infinite alternate;
}

@keyframes aw-copy-in {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes aw-photo-in {
	from { opacity: 0; transform: translateY(24px) scale(.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes aw-photo-breathe {
	from { transform: scale(1); }
	to { transform: scale(1.018); }
}

@media (max-width: 1120px) {
	.header-inner {
		grid-template-columns: 1fr auto auto;
	}

	.primary-navigation .aw-menu {
		gap: 16px;
	}

	.primary-navigation a {
		font-size: 12px;
	}

	.hero-grid {
		gap: 45px;
	}

	.hero-copy h1 {
		font-size: clamp(59px, 7.4vw, 83px);
	}

	.today-scroll {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.pathway-card:nth-child(3),
	.values-grid article:nth-child(3) {
		border-left: 1px solid var(--aw-line);
	}

	.pathway-card:nth-child(n + 3),
	.values-grid article:nth-child(n + 3) {
		border-top: 1px solid var(--aw-line);
	}

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

@media (max-width: 900px) {
	.admin-bar .site-header { top: 46px; }

	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.header-book {
		display: none;
	}

	.menu-toggle {
		justify-self: end;
		display: grid;
		gap: 6px;
		width: 44px;
		height: 44px;
		place-content: center;
		padding: 0;
		background: transparent;
		border: 1px solid var(--aw-line);
		border-radius: 50%;
		cursor: pointer;
	}

	.menu-toggle > span:not(.screen-reader-text) {
		width: 18px;
		height: 2px;
		background: var(--aw-ink);
		transition: transform .2s;
	}

	.menu-toggle[aria-expanded="true"] > span:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		transform: translateY(-4px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		top: 78px;
		left: 0;
		right: 0;
		max-height: 0;
		overflow: hidden;
		background: var(--aw-cream);
		transition: max-height .3s ease;
	}

	.admin-bar .primary-navigation {
		top: 124px;
	}

	.primary-navigation.is-open {
		max-height: calc(100vh - 78px);
		border-bottom: 1px solid var(--aw-line);
	}

	.primary-navigation .aw-menu {
		display: grid;
		gap: 0;
		width: min(var(--aw-shell), calc(100% - 44px));
		padding: 16px 0 28px;
		margin-inline: auto;
	}

	.primary-navigation a {
		display: block;
		padding: 13px 0;
		border-bottom: 1px solid var(--aw-line);
		font-size: 18px;
	}

	.primary-navigation a::after {
		display: none;
	}

	.hero-grid,
	.inner-hero-grid,
	.section-heading,
	.food-grid,
	.note-grid,
	.safari-grid,
	.two-column-copy,
	.story-page-grid {
		grid-template-columns: 1fr;
	}

	.home-hero {
		min-height: auto;
	}

	.hero-photo-wrap {
		min-height: 600px;
	}

	.section-heading {
		gap: 22px;
	}

	.split-feature {
		grid-template-columns: 1fr;
	}

	.feature-photo {
		min-height: 580px;
	}

	.food-intro {
		padding: 35px 0 0;
		border-top: 1px solid rgba(16, 37, 30, .35);
		border-left: 0;
	}

	.note-label {
		flex-direction: row;
	}

	.note-label i {
		font-size: 48px;
	}

	.note-sign {
		margin-top: 30px;
	}

	.info-strip,
	.property-grid,
	.transport-grid,
	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.info-strip > div:nth-child(2) {
		border-right: 0;
	}

	.info-strip > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--aw-line);
	}

	.experience-group {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.story-page-photo {
		position: static;
		max-width: 600px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.offer-teaser-grid,
	.support-grid,
	.place-grid,
	.mini-price-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.challenge-grid,
	.map-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	body {
		padding-bottom: 69px;
	}

	.site-shell {
		width: min(100% - 36px, var(--aw-shell));
	}

	.site-header {
		height: 70px;
	}

	.scroll-progress,
	.admin-bar .scroll-progress {
		top: 69px;
	}

	.admin-bar .site-header {
		top: 0;
	}

	.brand-mark,
	.custom-logo {
		width: 39px;
		height: 39px;
	}

	.brand-words strong {
		font-size: 15px;
	}

	.brand-words small {
		font-size: 8px;
	}

	.primary-navigation {
		top: 70px;
	}

	.admin-bar .primary-navigation {
		top: 70px;
	}

	.home-hero {
		padding: 44px 0 73px;
	}

	.hero-grid {
		gap: 55px;
	}

	.hero-copy h1 {
		margin: 28px 0 24px;
		font-size: clamp(57px, 18vw, 78px);
	}

	.hero-lead {
		font-size: 16px;
	}

	.button-row {
		align-items: flex-start;
		flex-direction: column;
		margin: 28px 0 34px;
	}

	.hero-photo-wrap {
		min-height: 345px;
	}

	.hero-photo {
		width: 91%;
		aspect-ratio: 4 / 3;
		box-shadow: 14px 18px 0 var(--aw-forest);
	}

	.home-photo-story {
		padding-bottom: 72px;
	}

	.photo-story-shell figure,
	.food-photo-intro figure {
		background: var(--aw-paper);
	}

	.photo-story-shell img,
	.food-photo-intro img {
		aspect-ratio: 4 / 3;
	}

	.photo-story-shell figcaption,
	.food-photo-intro figcaption {
		position: static;
		max-width: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
	}

	.round-stamp {
		top: 2%;
		left: -2px;
		width: 116px;
		height: 116px;
	}

	.round-stamp b {
		font-size: 20px;
	}

	.photo-note {
		right: 0;
		bottom: 7%;
	}

	.vertical-place {
		right: -6px;
	}

	.section,
	.dark-section,
	.orange-section,
	.trust-section,
	.values-section,
	.honest-transport,
	.message-help,
	.safari-band {
		padding: 76px 0;
	}

	.section-heading h2 {
		font-size: 43px;
	}

	.today-scroll {
		display: flex;
		overflow-x: auto;
		margin-right: -18px;
		padding-right: 18px;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
	}

	.today-scroll::-webkit-scrollbar {
		display: none;
	}

	.today-card {
		flex: 0 0 76vw;
		min-height: 230px;
		scroll-snap-align: start;
	}

	.today-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.pathway-grid,
	.values-grid,
	.review-grid,
	.info-strip,
	.room-grid,
	.property-grid,
	.transport-grid,
	.food-cards,
	.night-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.pathway-card,
	.pathway-card:first-child,
	.pathway-card:nth-child(3),
	.values-grid article,
	.values-grid article:first-child,
	.values-grid article:nth-child(3) {
		min-height: 300px;
		border-left: 0;
		border-right: 0;
		border-top: 1px solid var(--aw-line);
	}

	.pathway-card h3 {
		margin-top: 64px;
	}

	.feature-photo {
		min-height: 475px;
	}

	.feature-copy {
		padding: 68px 20px 75px;
	}

	.feature-copy h2 {
		font-size: 47px;
	}

	.clean-list li {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.clean-list span {
		text-align: left;
	}

	.experience-list a {
		grid-template-columns: 1fr auto;
		gap: 5px 15px;
	}

	.experience-list small {
		grid-column: 1;
	}

	.experience-list b {
		grid-column: 2;
		grid-row: 1 / 3;
	}

	.food-grid h2 {
		font-size: 55px;
	}

	.note-grid blockquote {
		font-size: 35px;
	}

	.trust-score {
		align-items: center;
		flex-direction: column;
	}

	.trust-score div {
		align-items: center;
	}

	.review-grid blockquote {
		min-height: 180px;
	}

	.closing-cta,
	.page-cta {
		padding: 100px 0 65px;
	}

	.closing-cta h2,
	.page-cta h2,
	.not-found h1 {
		font-size: 59px;
	}

	.closing-details {
		align-items: center;
		flex-direction: column;
		margin-top: 58px;
	}

	.inner-hero {
		padding: 66px 0 72px;
	}

	.inner-hero-grid {
		gap: 30px;
	}

	.inner-hero h1 {
		font-size: clamp(58px, 17vw, 79px);
	}

	.inner-hero-grid > p {
		font-size: 16px;
	}

	.info-strip > div,
	.info-strip > div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--aw-line);
	}

	.info-strip > div:last-child {
		border-bottom: 0;
	}

	.room-card {
		min-height: 500px;
	}

	.room-card h2 {
		margin-top: 55px;
	}

	.room-card ul {
		grid-template-columns: 1fr;
	}

	.experience-notice,
	.price-note {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.experience-group {
		padding-bottom: 65px;
	}

	.experience-group + .experience-group {
		padding-top: 65px;
	}

	.experience-items article {
		grid-template-columns: 30px 1fr;
		gap: 8px 15px;
	}

	.experience-items p,
	.experience-items a {
		grid-column: 2;
	}

	.food-card-main {
		grid-row: auto;
	}

	.food-card-main h2 {
		margin-top: 75px;
	}

	.story-page-copy > p {
		font-size: 16px;
	}

	.contact-card {
		min-height: 350px;
	}

	.contact-card h2 {
		margin-top: 90px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.offer-teaser-grid,
	.support-grid,
	.tour-grid,
	.place-grid,
	.deal-grid,
	.mini-price-grid {
		grid-template-columns: 1fr;
	}

	.offer-teaser-grid article,
	.support-card {
		min-height: 290px;
	}

	.tour-card,
	.place-card,
	.deal-card {
		min-height: 520px;
	}

	.confidence-bar {
		grid-template-columns: repeat(2, 1fr);
		margin-bottom: 72px;
	}

	.confidence-bar span:nth-child(2) {
		border-right: 0;
	}

	.confidence-bar span:nth-child(-n + 2) {
		border-bottom: 1px solid var(--aw-line);
	}

	.deal-intro {
		grid-template-columns: 1fr;
	}

	.map-grid iframe {
		min-height: 390px;
	}

	.digital-helper-toggle {
		right: 14px;
		bottom: 82px;
		width: 48px;
		height: 48px;
		min-height: 48px;
		justify-content: center;
		padding: 0;
		border-radius: 50%;
	}

	.digital-helper-toggle > span:last-child {
		display: none;
	}

	.digital-helper {
		right: 12px;
		bottom: 140px;
		width: calc(100vw - 24px);
		max-height: calc(100svh - 165px);
		overflow-y: auto;
	}

	.footer-grid > div:first-child {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 150;
		display: grid;
		grid-template-columns: 1fr 1.3fr 1fr;
		padding: 8px 9px calc(8px + env(safe-area-inset-bottom));
		background: var(--aw-paper);
		border-top: 1px solid var(--aw-line);
		box-shadow: 0 -10px 30px rgba(8, 39, 29, .12);
	}

	.mobile-actions a {
		min-height: 47px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		border-radius: 12px;
		font-size: 12px;
		font-weight: 900;
	}

	.mobile-actions .mobile-whatsapp {
		background: var(--aw-lime);
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.word-ribbon div { animation: none; }
	.hero-photo img { animation: none; }
	.hero-copy > *,
	.hero-photo-wrap { animation: none; }
	.motion-card { transform: none; }
	.reveal-ready { opacity: 1; transform: none; }
	*,
	*::before,
	*::after { transition-duration: .01ms !important; }
}
