:root {
	--ras-navy: #0B1F33;
	--ras-gold: #C49A45;
	--ras-sand: #F4E8D0;
	--ras-coffee: #5A3825;
	--ras-white: #FFFFFF;
	--ras-soft: #F8F5EF;
	--ras-green: #3D7A4D;
	--ras-ink: #1A2733;
	--ras-muted: #66717C;
	--ras-border: rgba(11, 31, 51, 0.12);
	--ras-shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
	--ras-heading: "Cormorant Garamond", Georgia, serif;
	--ras-body: "Inter", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	color: var(--ras-ink);
	background: var(--ras-soft);
	font-family: var(--ras-body);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
}

body.ras-dark-mode {
	--ras-soft: #071522;
	--ras-white: #102235;
	--ras-ink: #F8F5EF;
	--ras-muted: #C6CFD6;
	--ras-border: rgba(255, 255, 255, 0.14);
	--ras-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
	background: #071522;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus {
	color: var(--ras-gold);
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.6em;
	color: var(--ras-navy);
	font-family: var(--ras-heading);
	font-weight: 700;
	line-height: 1.02;
}

body.ras-dark-mode h1,
body.ras-dark-mode h2,
body.ras-dark-mode h3,
body.ras-dark-mode h4,
body.ras-dark-mode h5,
body.ras-dark-mode h6 {
	color: #F8F5EF;
}

h1 {
	font-size: clamp(3rem, 8vw, 6.8rem);
	max-width: 12ch;
}

h2 {
	font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
	font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

p {
	margin: 0 0 1.25rem;
	color: var(--ras-muted);
}

ul,
ol {
	margin-top: 0;
}

.ras-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.screen-reader-text {
	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: 10000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--ras-navy);
	background: var(--ras-gold);
	border-radius: 6px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

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

.header-transparent {
	color: #FFFFFF;
	background: linear-gradient(180deg, rgba(11, 31, 51, 0.65), rgba(11, 31, 51, 0));
}

.header-solid,
.site-header.is-scrolled,
.site-header.nav-open {
	color: var(--ras-navy);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 16px 50px rgba(11, 31, 51, 0.1);
	backdrop-filter: blur(18px);
}

body.ras-dark-mode .header-solid,
body.ras-dark-mode .site-header.is-scrolled,
body.ras-dark-mode .site-header.nav-open {
	color: #F8F5EF;
	background: rgba(7, 21, 34, 0.96);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: 86px;
}

.site-branding {
	min-width: 180px;
}

.custom-logo-link img {
	width: auto;
	max-width: 210px;
	max-height: 72px;
	object-fit: contain;
}

.site-title {
	display: inline-flex;
	flex-direction: column;
	color: inherit;
	font-family: var(--ras-heading);
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 0.9;
}

.site-title small {
	margin-top: 5px;
	color: var(--ras-gold);
	font-family: var(--ras-body);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.main-navigation {
	justify-self: center;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: inherit;
	font-size: 0.93rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -18px;
	display: grid;
	min-width: 240px;
	margin: 0;
	padding: 12px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
	box-shadow: var(--ras-shadow);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	width: 100%;
	min-height: 38px;
	padding: 4px 8px;
	color: var(--ras-navy);
	border-radius: 6px;
}

.primary-menu .sub-menu a:hover {
	background: var(--ras-soft);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-book-button,
.ras-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	border-radius: 6px;
	border: 1px solid transparent;
}

.header-book-button,
.ras-button-primary {
	color: #FFFFFF;
	background: var(--ras-gold);
	border-color: var(--ras-gold);
	box-shadow: 0 14px 30px rgba(196, 154, 69, 0.24);
}

.header-book-button:hover,
.ras-button-primary:hover,
.header-book-button:focus,
.ras-button-primary:focus {
	color: #FFFFFF;
	background: #A97F31;
	border-color: #A97F31;
	transform: translateY(-1px);
}

.ras-button-secondary {
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.5);
}

.ras-button-secondary:hover,
.ras-button-secondary:focus {
	color: var(--ras-navy);
	background: #FFFFFF;
}

.ras-button-outline {
	color: var(--ras-navy);
	background: transparent;
	border-color: var(--ras-border);
}

.ras-button-outline:hover,
.ras-button-outline:focus {
	color: #FFFFFF;
	background: var(--ras-navy);
	border-color: var(--ras-navy);
}

.ras-button-light {
	color: var(--ras-navy);
	background: #FFFFFF;
	border-color: #FFFFFF;
}

.ras-button-light:hover,
.ras-button-light:focus {
	color: #FFFFFF;
	background: var(--ras-coffee);
	border-color: var(--ras-coffee);
}

.mode-toggle,
.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: inherit;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 50%;
}

.header-solid .mode-toggle,
.site-header.is-scrolled .mode-toggle,
.site-header.nav-open .mode-toggle,
.header-solid .menu-toggle,
.site-header.is-scrolled .menu-toggle,
.site-header.nav-open .menu-toggle {
	border-color: var(--ras-border);
	background: var(--ras-soft);
}

.mode-toggle span {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: inset -5px -4px 0 var(--ras-gold);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 3px;
}

.hero-slider {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 100svh;
	padding: 150px 0 92px;
	overflow: hidden;
	color: #FFFFFF;
	background: var(--ras-navy);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-overlay {
	position: absolute;
	inset: 0;
}

.hero-slide {
	opacity: 0;
	transition: opacity 900ms ease;
}

.hero-slide.is-active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	background:
		linear-gradient(90deg, rgba(11, 31, 51, 0.86), rgba(11, 31, 51, 0.48), rgba(11, 31, 51, 0.2)),
		linear-gradient(180deg, rgba(11, 31, 51, 0.18), rgba(11, 31, 51, 0.74));
}

.hero-content {
	position: relative;
	z-index: 2;
}

.eyebrow,
.card-kicker {
	margin-bottom: 16px;
	color: var(--ras-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-copy p,
.tour-hero-content p {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 28px;
}

.hero-dots {
	position: absolute;
	right: max(20px, calc((100vw - 1180px) / 2));
	bottom: 48px;
	z-index: 3;
	display: flex;
	gap: 10px;
}

.hero-dots button {
	width: 34px;
	height: 4px;
	padding: 0;
	background: rgba(255, 255, 255, 0.42);
	border: 0;
	border-radius: 99px;
}

.hero-dots button.is-active {
	background: var(--ras-gold);
}

.section {
	padding: 96px 0;
}

.section-light {
	background: #FFFFFF;
}

.section-sand {
	background: var(--ras-sand);
}

body.ras-dark-mode .section-light,
body.ras-dark-mode .tour-card,
body.ras-dark-mode .destination-card,
body.ras-dark-mode .testimonial-card,
body.ras-dark-mode .contact-card,
body.ras-dark-mode .booking-section,
body.ras-dark-mode .sticky-booking-box,
body.ras-dark-mode .about-panel,
body.ras-dark-mode .destination-facts,
body.ras-dark-mode .post-card {
	background: #102235;
}

body.ras-dark-mode .section-sand {
	background: #12283D;
}

.intro-section {
	padding: 80px 0;
	background: #FFFFFF;
}

.intro-grid,
.about-grid,
.contact-grid,
.destination-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 56px;
	align-items: start;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 36px;
}

.section-heading h2 {
	max-width: 760px;
	margin-bottom: 0;
}

.section-heading-centered {
	display: block;
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.card-grid,
.destination-grid,
.testimonial-grid,
.why-grid,
.experience-grid {
	display: grid;
	gap: 24px;
}

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

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

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

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

.tour-card,
.destination-card,
.testimonial-card,
.why-card,
.post-card,
.contact-card,
.booking-section,
.about-panel,
.destination-facts,
.sticky-booking-box {
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(11, 31, 51, 0.07);
}

.tour-card,
.destination-card,
.post-card {
	overflow: hidden;
}

.tour-card-media,
.destination-card-media,
.post-card-image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ras-navy);
}

.card-image,
.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.tour-card:hover .card-image,
.destination-card:hover .card-image,
.post-card:hover img {
	transform: scale(1.045);
}

.tour-card-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	padding: 8px 12px;
	color: var(--ras-navy);
	background: #FFFFFF;
	border-radius: 6px;
	font-size: 0.78rem;
	font-weight: 800;
}

.tour-card-body,
.destination-card-body,
.post-card > div {
	padding: 24px;
}

.tour-card h3,
.destination-card h3,
.post-card h2 {
	margin-bottom: 12px;
}

.tour-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}

.tour-card-meta span,
.archive-filter a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 4px 10px;
	color: var(--ras-navy);
	background: var(--ras-soft);
	border-radius: 99px;
	font-size: 0.78rem;
	font-weight: 800;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ras-navy);
	font-weight: 800;
}

.text-link::after {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--ras-gold);
	transition: width 180ms ease;
}

.text-link:hover::after {
	width: 42px;
}

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

.why-card {
	padding: 28px;
}

.why-card span {
	display: inline-block;
	width: 42px;
	height: 42px;
	margin-bottom: 22px;
	background:
		linear-gradient(135deg, var(--ras-gold), var(--ras-coffee));
	border-radius: 50%;
}

.why-card h3 {
	font-size: 1.55rem;
}

.experience-card {
	position: relative;
	display: flex;
	align-items: end;
	min-height: 190px;
	padding: 24px;
	overflow: hidden;
	color: #FFFFFF;
	background:
		linear-gradient(180deg, rgba(11, 31, 51, 0.22), rgba(11, 31, 51, 0.78)),
		linear-gradient(135deg, var(--ras-navy), var(--ras-green));
	border-radius: 8px;
}

.experience-card:nth-child(2n) {
	background:
		linear-gradient(180deg, rgba(11, 31, 51, 0.18), rgba(11, 31, 51, 0.76)),
		linear-gradient(135deg, var(--ras-coffee), var(--ras-gold));
}

.experience-card span {
	position: relative;
	z-index: 2;
	font-family: var(--ras-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.testimonial-card {
	padding: 30px;
}

.rating {
	color: var(--ras-gold);
	font-size: 1rem;
	letter-spacing: 0.14em;
}

.testimonial-card blockquote {
	margin: 18px 0 24px;
	color: var(--ras-ink);
	font-family: var(--ras-heading);
	font-size: 1.65rem;
	line-height: 1.18;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
}

.testimonial-author strong {
	color: var(--ras-navy);
}

.cta-section {
	padding: 86px 0;
	color: #FFFFFF;
	background:
		linear-gradient(90deg, rgba(11, 31, 51, 0.95), rgba(90, 56, 37, 0.82)),
		var(--ras-navy);
}

.cta-section h2,
.cta-section p {
	color: #FFFFFF;
}

.cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.booking-shell {
	max-width: 1120px;
}

.booking-section {
	padding: 32px;
}

.booking-intro {
	max-width: 760px;
	margin-bottom: 28px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.booking-form label {
	display: grid;
	gap: 8px;
	color: var(--ras-navy);
	font-weight: 800;
}

.booking-form span {
	font-size: 0.86rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.newsletter input,
.search-form input {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	color: var(--ras-ink);
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 6px;
	outline: none;
}

.booking-form textarea {
	min-height: 130px;
	resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.newsletter input:focus,
.search-form input:focus {
	border-color: var(--ras-gold);
	box-shadow: 0 0 0 3px rgba(196, 154, 69, 0.18);
}

.form-wide {
	grid-column: 1 / -1;
}

.page-hero {
	position: relative;
	color: #FFFFFF;
	background:
		linear-gradient(90deg, rgba(11, 31, 51, 0.92), rgba(61, 122, 77, 0.58)),
		var(--ras-navy);
}

.compact-hero {
	padding: 158px 0 82px;
}

.compact-hero h1,
.compact-hero p {
	color: #FFFFFF;
}

.compact-hero h1 {
	max-width: 860px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.86rem;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.82);
}

.archive-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.tour-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 74svh;
	padding: 150px 0 76px;
	overflow: hidden;
	color: #FFFFFF;
	background: var(--ras-navy);
}

.tour-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tour-hero-content {
	position: relative;
	z-index: 2;
}

.tour-hero h1,
.tour-hero p {
	color: #FFFFFF;
}

.tour-summary {
	position: relative;
	z-index: 3;
	margin-top: -42px;
}

.summary-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
	box-shadow: var(--ras-shadow);
}

.summary-grid div {
	padding: 24px;
	border-right: 1px solid var(--ras-border);
}

.summary-grid div:last-child {
	border-right: 0;
}

.summary-grid span,
.destination-facts span,
.sticky-booking-box span {
	display: block;
	color: var(--ras-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.summary-grid strong,
.destination-facts strong,
.sticky-booking-box strong {
	display: block;
	color: var(--ras-navy);
	line-height: 1.3;
}

.tour-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}

.tour-block {
	margin-bottom: 58px;
}

.tour-block:last-child {
	margin-bottom: 0;
}

.block-heading {
	margin-bottom: 22px;
}

.accordion {
	display: grid;
	gap: 12px;
}

.accordion-item {
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
	overflow: hidden;
}

.accordion-item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 60px;
	padding: 16px 20px;
	color: var(--ras-navy);
	background: transparent;
	border: 0;
	font-weight: 800;
	text-align: left;
}

.accordion-item button::after {
	content: "+";
	color: var(--ras-gold);
	font-size: 1.4rem;
}

.accordion-item button[aria-expanded="true"]::after {
	content: "-";
}

.accordion-panel {
	padding: 0 20px 18px;
}

.included-table {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.included-table > div {
	padding: 24px;
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
}

.check-list,
.included-table ul,
.footer-column ul,
.destination-facts ul,
.sticky-booking-box ul,
.footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li,
.included-table li,
.footer-contact li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
}

.check-list li::before,
.included-table li::before,
.footer-contact li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	background: var(--ras-gold);
	border-radius: 50%;
}

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

.gallery-grid a {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ras-navy);
	border-radius: 8px;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.gallery-grid a:hover img {
	transform: scale(1.04);
}

.tour-sidebar {
	position: relative;
}

.sticky-booking-box {
	position: sticky;
	top: 114px;
	padding: 26px;
}

.sticky-booking-box ul,
.destination-facts ul {
	display: grid;
	gap: 16px;
	margin: 22px 0;
}

.sticky-booking-box li,
.destination-facts li {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ras-border);
}

.destination-layout {
	grid-template-columns: minmax(0, 1fr) 340px;
}

.destination-facts,
.about-panel,
.contact-card {
	padding: 30px;
}

.narrow-content {
	max-width: 780px;
}

.narrow-content a {
	color: var(--ras-coffee);
	text-decoration: underline;
	text-decoration-color: rgba(196, 154, 69, 0.55);
	text-underline-offset: 4px;
}

.featured-figure {
	margin: 0 0 30px;
	border-radius: 8px;
	overflow: hidden;
}

.post-card {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 0;
	margin-bottom: 24px;
}

.post-card-image {
	height: 100%;
	aspect-ratio: auto;
}

.site-footer {
	color: rgba(255, 255, 255, 0.8);
	background: var(--ras-navy);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
	gap: 38px;
	padding: 72px 0;
}

.footer-column h2,
.footer-column h3 {
	color: #FFFFFF;
	font-family: var(--ras-body);
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-column p,
.footer-column li,
.footer-column a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.footer-socials a {
	min-height: 36px;
	padding: 6px 12px;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 99px;
}

.newsletter form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	margin-top: 18px;
}

.newsletter button,
.search-form .search-submit {
	min-height: 48px;
	padding: 0 16px;
	color: #FFFFFF;
	background: var(--ras-gold);
	border: 1px solid var(--ras-gold);
	border-radius: 6px;
	font-weight: 800;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
	color: var(--ras-gold);
	font-weight: 800;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 560px;
	margin-top: 22px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 4px 12px;
	color: var(--ras-navy);
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 6px;
	font-weight: 800;
}

.page-numbers.current {
	color: #FFFFFF;
	background: var(--ras-navy);
}

.wp-block-image img,
.wp-block-gallery img {
	border-radius: 8px;
}

.template-showcase {
	padding: 92px 0;
	background:
		linear-gradient(90deg, rgba(11, 31, 51, 0.94), rgba(61, 122, 77, 0.68)),
		var(--ras-navy);
}

.template-showcase h2,
.template-showcase p {
	color: #FFFFFF;
}

.template-showcase-grid,
.editorial-grid,
.boutique-grid,
.proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: start;
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.stat-row div {
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
}

.stat-row strong {
	display: block;
	color: var(--ras-gold);
	font-family: var(--ras-heading);
	font-size: 2.5rem;
	line-height: 1;
}

.stat-row span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.editorial-section,
.boutique-section,
.expedition-section {
	position: relative;
}

.editorial-large {
	padding: 36px;
	background: #FFFFFF;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
	box-shadow: var(--ras-shadow);
}

.editorial-stack {
	display: grid;
	gap: 14px;
}

.editorial-stack a {
	display: flex;
	align-items: center;
	min-height: 76px;
	padding: 20px 24px;
	color: var(--ras-navy);
	background: var(--ras-soft);
	border: 1px solid var(--ras-border);
	border-left: 5px solid var(--ras-gold);
	border-radius: 8px;
	font-family: var(--ras-heading);
	font-size: 1.5rem;
	font-weight: 700;
}

.editorial-stack a:hover {
	color: #FFFFFF;
	background: var(--ras-navy);
}

.expedition-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.expedition-grid article {
	min-height: 280px;
	padding: 28px;
	color: #FFFFFF;
	background:
		linear-gradient(180deg, rgba(11, 31, 51, 0.18), rgba(11, 31, 51, 0.82)),
		linear-gradient(135deg, var(--ras-navy), var(--ras-green));
	border-radius: 8px;
}

.expedition-grid article:nth-child(2) {
	background:
		linear-gradient(180deg, rgba(11, 31, 51, 0.18), rgba(11, 31, 51, 0.82)),
		linear-gradient(135deg, var(--ras-coffee), var(--ras-gold));
}

.expedition-grid article h3,
.expedition-grid article p {
	color: #FFFFFF;
}

.expedition-grid article span {
	display: inline-flex;
	margin-bottom: 80px;
	padding: 6px 10px;
	color: var(--ras-navy);
	background: #FFFFFF;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.boutique-promises {
	padding: 32px;
	background: var(--ras-sand);
	border: 1px solid var(--ras-border);
	border-radius: 8px;
}

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

.ras-kit-cultural-heritage .hero-overlay {
	background:
		linear-gradient(90deg, rgba(74, 46, 33, 0.9), rgba(74, 46, 33, 0.44), rgba(11, 31, 51, 0.18)),
		linear-gradient(180deg, rgba(11, 31, 51, 0.18), rgba(74, 46, 33, 0.78));
}

.ras-kit-adventure-expedition .hero-overlay {
	background:
		linear-gradient(90deg, rgba(7, 30, 38, 0.9), rgba(47, 111, 79, 0.5), rgba(7, 30, 38, 0.2)),
		linear-gradient(180deg, rgba(7, 30, 38, 0.12), rgba(7, 30, 38, 0.84));
}

.ras-kit-omo-valley-boutique .hero-overlay {
	background:
		linear-gradient(90deg, rgba(101, 55, 31, 0.9), rgba(101, 55, 31, 0.44), rgba(23, 36, 58, 0.2)),
		linear-gradient(180deg, rgba(23, 36, 58, 0.12), rgba(101, 55, 31, 0.78));
}

.woocommerce-shell {
	background: #FFFFFF;
	padding: 32px;
	border: 1px solid var(--ras-border);
	border-radius: 8px;
}
