/* =========================================================================
   Thurju — main.css
   Design tokens + full layout styling matching the Thurju.com homepage
   reference. Mobile-first breakpoints layered on top of the desktop-first
   base (project ships primarily as a wide dashboard-style layout).
   ========================================================================= */

:root {
	/* Color */
	--color-primary: #17803d;       /* forest green (logo, buttons, active states) */
	--color-primary-dark: #0f6b30;
	--color-primary-light: #e7f5ec;
	--color-accent-orange: #f97316; /* backpack orange used sparingly */
	--color-ink: #14181f;
	--color-body: #4b5563;
	--color-muted: #6b7280;
	--color-line: #e6e8ec;
	--color-line-soft: #f0f1f4;
	--color-bg: #ffffff;
	--color-bg-soft: #f8f9fb;
	--color-bg-rail: #fbfbfc;

	/* Category tile accent colors */
	--tint-purple-bg: #f1edfe;  --tint-purple-fg: #7c5cf5;
	--tint-orange-bg: #fef1e8;  --tint-orange-fg: #f2762e;
	--tint-green-bg:  #e7f7ec;  --tint-green-fg:  #1fa257;
	--tint-blue-bg:   #e8f2fe;  --tint-blue-fg:   #2e7cf2;
	--tint-red-bg:    #fdeaea; --tint-red-fg:    #e5484d;
	--tint-indigo-bg: #eaeaff; --tint-indigo-fg: #5457e5;
	--tint-sky-bg:    #e6f7fb; --tint-sky-fg:    #14b8d4;
	--tint-pink-bg:   #fdeaf3; --tint-pink-fg:   #e5488f;
	--tint-yellow-bg: #fef6e3; --tint-yellow-fg: #d99a10;
	--tint-teal-bg:   #e5f8f5; --tint-teal-fg:   #12a893;
	--tint-gray-bg:   #f1f2f4; --tint-gray-fg:   #5b6270;

	/* Type */
	--font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Layout */
	--rail-left-width: 248px;
	--rail-right-width: 320px;
	--content-max: 1536px;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--shadow-card: 0 1px 2px rgba(20, 24, 31, 0.04), 0 1px 8px rgba(20, 24, 31, 0.04);
	--shadow-card-hover: 0 8px 24px rgba(20, 24, 31, 0.10);
}

/* -------------------------------------------------------------------------
   Reset / base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-body);
	background: var(--color-bg-soft);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-ink); margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.thurju-icon { width: 1em; height: 1em; flex-shrink: 0; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
	white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--outline { background: #fff; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary-light); }
.btn--block { width: 100%; }

/* -------------------------------------------------------------------------
   Top bar
   ---------------------------------------------------------------------- */
.site-topbar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
	border-bottom: 1px solid var(--color-line);
}
.site-topbar__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto minmax(220px, 460px) 1fr auto;
	align-items: center;
	gap: 28px;
	padding: 14px 32px;
}

.topbar-logo__link { display: flex; align-items: center; gap: 10px; }
.topbar-logo__icon {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: var(--color-primary-light);
	color: var(--color-primary);
	border-radius: 10px;
}
.topbar-logo__icon svg { width: 22px; height: 22px; }
.topbar-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.topbar-logo__name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--color-ink); }
.topbar-logo__dotcom { color: var(--color-primary); }
.topbar-logo__tag { font-size: 11px; color: var(--color-muted); font-weight: 500; }
.custom-logo { max-height: 40px; width: auto; border-radius: 8px; }

.topbar-search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-bg-soft);
	border: 1px solid var(--color-line);
	border-radius: 10px;
	padding: 9px 12px;
	flex: 1;
}
.topbar-search__icon { width: 17px; height: 17px; color: var(--color-muted); }
.topbar-search__input { flex: 1; border: none; background: transparent; font-size: 14px; color: var(--color-ink); }
.topbar-search__input:focus { outline: none; }
.topbar-search__input::placeholder { color: #9aa1ac; }
.topbar-search__kbd {
	font-family: var(--font-body);
	font-size: 11px;
	color: var(--color-muted);
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: 5px;
	padding: 2px 6px;
}
.topbar-search--standalone { max-width: 480px; margin: 0 0 24px; }

.primary-menu { display: flex; align-items: center; gap: 26px; }
.primary-menu li { position: relative; }
.primary-menu a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--color-body);
	padding: 6px 0;
}
.primary-menu a::after { content: none; }
.primary-menu .menu-item-has-children > a::after {
	content: '';
	width: 7px; height: 7px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	margin-left: 2px;
	opacity: .6;
}
.primary-menu li:hover > a,
.primary-menu li.current-menu-item > a { color: var(--color-primary); }

.topbar-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }
.topbar-actions__lang {
	display: flex; align-items: center; gap: 6px;
	background: none; border: none; color: var(--color-body);
	font-size: 14px; font-weight: 600;
}
.topbar-actions__lang svg { width: 17px; height: 17px; }
.topbar-actions__icon {
	position: relative;
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid var(--color-line);
	background: #fff;
	color: var(--color-body);
}
.topbar-actions__icon svg { width: 18px; height: 18px; }
.topbar-actions__icon:hover { background: var(--color-bg-soft); }
.topbar-actions__dot {
	position: absolute; top: 8px; right: 9px;
	width: 7px; height: 7px; border-radius: 50%;
	background: #ef4444; border: 1.5px solid #fff;
}
.topbar-actions__burger {
	display: none;
	width: 38px; height: 38px;
	border-radius: 8px;
	border: 1px solid var(--color-line);
	background: #fff;
	align-items: center; justify-content: center;
}
.topbar-actions__burger svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------------------
   Overall shell: [left rail] [main] [right rail]
   ---------------------------------------------------------------------- */
.site-shell {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 24px 32px 56px;
	display: grid;
	grid-template-columns: var(--rail-left-width) minmax(0, 1fr) var(--rail-right-width);
	gap: 24px;
	align-items: start;
}

/* -------------------------------------------------------------------------
   Left rail — Explore
   ---------------------------------------------------------------------- */
.explore-rail {
	position: sticky;
	top: 88px;
	background: var(--color-bg-rail);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: calc(100vh - 104px);
	overflow-y: auto;
}
.explore-rail__heading {
	display: flex; align-items: center; gap: 8px;
	font-family: var(--font-display); font-weight: 700; font-size: 15px;
	color: var(--color-ink);
	padding: 0 8px;
}
.explore-rail__heading-icon { color: var(--color-primary); width: 18px; height: 18px; }

.explore-rail__nav ul { display: flex; flex-direction: column; gap: 2px; }
.explore-rail__nav a {
	display: flex; align-items: center; gap: 11px;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 14px; font-weight: 500;
	color: var(--color-body);
}
.explore-rail__nav li.is-active a {
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
	font-weight: 700;
}
.explore-rail__nav a:hover { background: var(--color-line-soft); }
.explore-rail__icon { width: 18px; height: 18px; color: currentColor; opacity: .85; flex-shrink: 0; }

.explore-rail__promo {
	margin-top: 6px;
	background: linear-gradient(160deg, var(--color-primary-light), #fff 70%);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 16px;
}
.explore-rail__promo h4 { font-size: 14.5px; margin-bottom: 6px; }
.explore-rail__promo p { font-size: 12.5px; color: var(--color-muted); margin: 0 0 12px; }
.explore-rail__stores { display: flex; gap: 8px; margin-top: 10px; }
.explore-rail__stores a {
	width: 34px; height: 34px; border-radius: 8px;
	display: grid; place-items: center;
	background: #fff; border: 1px solid var(--color-line);
	color: var(--color-ink);
}
.explore-rail__stores svg { width: 17px; height: 17px; }

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.hero {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
	background: var(--hero-image, none) center/cover no-repeat, linear-gradient(160deg, #1e293b, #0f172a);
	padding: 40px;
	color: #fff;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,15,20,.15) 0%, rgba(8,12,18,.55) 75%, rgba(6,10,15,.78) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 640px; }
.hero__title {
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 14px;
	text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero__title-highlight { color: #7CE38B; }
.hero__subtitle {
	font-size: 15.5px;
	color: rgba(255,255,255,.9);
	max-width: 480px;
	margin: 0 0 22px;
}
.hero__search {
	display: flex;
	background: #fff;
	border-radius: 12px;
	padding: 6px;
	gap: 4px;
	box-shadow: 0 12px 32px rgba(0,0,0,.25);
	flex-wrap: wrap;
}
.hero__search-field {
	display: flex; align-items: center; gap: 8px;
	padding: 9px 12px;
	color: var(--color-ink);
	flex: 1;
	min-width: 140px;
	border-right: 1px solid var(--color-line-soft);
}
.hero__search-field:last-of-type { border-right: none; }
.hero__search-field svg { width: 17px; height: 17px; color: var(--color-muted); flex-shrink: 0; }
.hero__search-field input,
.hero__search-field select { border: none; background: transparent; font-size: 13.5px; width: 100%; color: var(--color-ink); }
.hero__search-field input:focus, .hero__search-field select:focus { outline: none; }
.hero__search-field--main { flex: 1.8; }
.hero__search-submit { border-radius: 8px; padding: 10px 26px; }

.hero__popular {
	margin-top: 16px;
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	font-size: 13px;
}
.hero__popular-label { color: rgba(255,255,255,.75); }
.hero__popular-tag {
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.28);
	backdrop-filter: blur(4px);
	padding: 5px 12px;
	border-radius: 999px;
	color: #fff;
	font-weight: 500;
	transition: background-color .15s ease;
}
.hero__popular-tag:hover { background: rgba(255,255,255,.28); }

/* -------------------------------------------------------------------------
   Section header
   ---------------------------------------------------------------------- */
.section { margin-top: 36px; }
.section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section__title { font-size: 20px; font-weight: 800; }
.section__link { display: inline-flex; align-items: center; gap: 4px; color: var(--color-primary); font-weight: 600; font-size: 13.5px; }
.section__link svg { width: 14px; height: 14px; }

/* -------------------------------------------------------------------------
   Explore by Category grid
   ---------------------------------------------------------------------- */
.category-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.category-card {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.category-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); border-color: transparent; }
.category-card__icon {
	width: 42px; height: 42px;
	border-radius: 10px;
	display: grid; place-items: center;
}
.category-card__icon svg { width: 21px; height: 21px; }
.category-card__label { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--color-ink); }
.category-card__desc { font-size: 12px; color: var(--color-muted); margin-top: -6px; }

.category-card--purple .category-card__icon { background: var(--tint-purple-bg); color: var(--tint-purple-fg); }
.category-card--orange .category-card__icon { background: var(--tint-orange-bg); color: var(--tint-orange-fg); }
.category-card--green .category-card__icon  { background: var(--tint-green-bg);  color: var(--tint-green-fg); }
.category-card--blue .category-card__icon   { background: var(--tint-blue-bg);   color: var(--tint-blue-fg); }
.category-card--red .category-card__icon    { background: var(--tint-red-bg);    color: var(--tint-red-fg); }
.category-card--indigo .category-card__icon { background: var(--tint-indigo-bg); color: var(--tint-indigo-fg); }
.category-card--sky .category-card__icon    { background: var(--tint-sky-bg);    color: var(--tint-sky-fg); }
.category-card--pink .category-card__icon   { background: var(--tint-pink-bg);   color: var(--tint-pink-fg); }
.category-card--yellow .category-card__icon { background: var(--tint-yellow-bg); color: var(--tint-yellow-fg); }
.category-card--teal .category-card__icon   { background: var(--tint-teal-bg);   color: var(--tint-teal-fg); }
.category-card--gray .category-card__icon   { background: var(--tint-gray-bg);   color: var(--tint-gray-fg); }

/* -------------------------------------------------------------------------
   Trending Now — horizontally scrollable card row
   ---------------------------------------------------------------------- */
.trending-scroller {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(220px, 1fr);
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
}
.trending-scroller::-webkit-scrollbar { height: 6px; }
.trending-scroller::-webkit-scrollbar-thumb { background: var(--color-line); border-radius: 4px; }

.trek-card {
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-card);
	transition: box-shadow .15s ease, transform .15s ease;
}
.trek-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.trek-card__media { aspect-ratio: 4/3; background: var(--color-line-soft); overflow: hidden; }
.trek-card__img { width: 100%; height: 100%; object-fit: cover; }
.trek-card__body { padding: 12px 14px 16px; }
.trek-card__title { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.trek-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--color-muted); }
.rating { display: inline-flex; align-items: center; gap: 4px; color: var(--color-ink); font-weight: 700; }
.rating .icon-star, .rating svg { width: 13px; height: 13px; color: #f5a623; }
.rating__count { color: var(--color-muted); font-weight: 500; }

/* -------------------------------------------------------------------------
   Top Destinations
   ---------------------------------------------------------------------- */
.destinations-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.dest-tile {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 3/4;
	background: var(--color-line-soft);
}
.dest-tile__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.dest-tile:hover .dest-tile__img { transform: scale(1.06); }
.dest-tile::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
}
.dest-tile__label {
	position: absolute; left: 10px; bottom: 10px; z-index: 1;
	color: #fff; font-weight: 700; font-size: 13px;
}

/* -------------------------------------------------------------------------
   Right rail — widgets
   ---------------------------------------------------------------------- */
.right-rail { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.thurju-widget {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 16px;
}
.thurju-widget__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; gap: 8px; }
.thurju-widget__title { font-size: 15px; font-weight: 800; }
.thurju-widget__link { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; color: var(--color-primary); font-weight: 600; white-space: nowrap; }
.thurju-widget__link svg { width: 12px; height: 12px; }
.thurju-widget p { font-size: 12.5px; color: var(--color-muted); margin: 4px 0 12px; }

/* Weather widget */
.widget-weather__location { font-size: 12.5px; color: var(--color-muted); margin: 2px 0 8px; }
.widget-weather__now { display: flex; align-items: center; justify-content: space-between; }
.widget-weather__temp { font-size: 34px; font-weight: 800; font-family: var(--font-display); }
.widget-weather__icon { width: 44px; height: 44px; color: var(--color-primary); }
.widget-weather__icon svg { width: 100%; height: 100%; }
.widget-weather__desc { font-size: 13px; color: var(--color-muted); margin: 0 0 14px; }
.widget-weather__stats {
	display: grid;
	grid-template-columns: 1fr auto;
	row-gap: 8px;
	padding: 12px 0;
	border-top: 1px solid var(--color-line-soft);
	border-bottom: 1px solid var(--color-line-soft);
	margin-bottom: 14px;
}
.widget-weather__stat { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--color-muted); }
.widget-weather__stat svg { width: 14px; height: 14px; }
.widget-weather__stat--right { justify-content: flex-end; font-weight: 700; color: var(--color-ink); font-size: 12.5px; }
.widget-weather__forecast { display: flex; justify-content: space-between; gap: 4px; }
.widget-weather__day { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--color-muted); }
.widget-weather__day-icon { width: 20px; height: 20px; color: var(--color-primary); }
.widget-weather__day-icon svg { width: 100%; height: 100%; }
.widget-weather__day-temps { font-weight: 700; color: var(--color-ink); font-size: 11px; }

/* Offline maps widget */
.widget-offline-maps { position: relative; overflow: hidden; }
.widget-offline-maps__art { position: absolute; right: -8px; bottom: -8px; width: 70px; height: 70px; color: var(--tint-green-bg); opacity: .9; z-index: 0; }
.widget-offline-maps__art svg { width: 100%; height: 100%; }
.widget-offline-maps .btn { position: relative; z-index: 1; }

/* Permits widget */
.widget-permits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.widget-permits__item {
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	padding: 10px 4px;
	border: 1px solid var(--color-line);
	border-radius: 10px;
	font-size: 11px; font-weight: 600; color: var(--color-body);
}
.widget-permits__item svg { width: 18px; height: 18px; color: var(--color-primary); }
.widget-permits__item:hover { background: var(--color-bg-soft); }

/* News widget */
.widget-news__list { display: flex; flex-direction: column; gap: 12px; }
.widget-news__item { display: flex; gap: 10px; align-items: flex-start; }
.widget-news__thumb {
	width: 44px; height: 44px; border-radius: 8px;
	overflow: hidden; flex-shrink: 0;
	background: var(--color-line-soft);
	display: grid; place-items: center; color: var(--color-muted);
}
.widget-news__thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-news__thumb svg { width: 18px; height: 18px; }
.widget-news__title { display: block; font-size: 12.8px; font-weight: 700; color: var(--color-ink); line-height: 1.35; margin-bottom: 3px; }
.widget-news__date { font-size: 11px; color: var(--color-muted); }

/* Community widget */
.widget-community__avatars { display: flex; align-items: center; }
.widget-community__avatar {
	width: 30px; height: 30px; border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -8px;
}
.widget-community__avatar:first-child { margin-left: 0; }
.widget-community__more { margin-left: 10px; font-size: 12px; font-weight: 700; color: var(--color-ink); }

/* -------------------------------------------------------------------------
   Simple page / blog layouts (index.php, page.php, single.php)
   ---------------------------------------------------------------------- */
.main-content--simple { background: transparent; }
.simple-page { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 28px; }
.simple-page__title { font-size: 24px; margin-bottom: 20px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden; }
.post-card__media { aspect-ratio: 4/3; background: var(--color-line-soft); display: grid; place-items: center; color: var(--color-muted); }
.post-card__media svg { width: 24px; height: 24px; }
.post-card__body { padding: 14px; }
.post-card__title { font-size: 15px; margin-bottom: 6px; }
.post-card__excerpt { font-size: 13px; color: var(--color-muted); margin: 0 0 8px; }
.post-card__date { font-size: 11.5px; color: var(--color-muted); }
.single-page__meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--color-muted); margin-bottom: 16px; }
.single-page__thumb { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 20px; }
.single-page__content { font-size: 15px; line-height: 1.75; color: var(--color-body); }
.single-page__content p { margin: 0 0 16px; }
.pagination { margin-top: 24px; display: flex; gap: 8px; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.site-footer { background: #10241a; color: #cbd6cf; margin-top: 56px; }
.site-footer__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 48px 32px 28px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 32px;
}
.site-footer__brand { display: flex; gap: 12px; }
.site-footer__brand .topbar-logo__icon { background: rgba(255,255,255,.08); color: #7CE38B; }
.site-footer__brand .topbar-logo__name { color: #fff; }
.site-footer__brand p { font-size: 13px; color: #9fb0a6; margin-top: 8px; max-width: 260px; }
.footer-widget__title { color: #fff; font-size: 14px; margin-bottom: 14px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 13.5px; color: #b7c3bc; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 18px 32px;
	text-align: center;
	font-size: 12.5px;
	color: #86967f;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1280px) {
	.site-shell { grid-template-columns: var(--rail-left-width) minmax(0, 1fr); }
	.right-rail { display: none; }
	.category-grid { grid-template-columns: repeat(4, 1fr); }
	.destinations-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 980px) {
	.site-topbar__inner { grid-template-columns: auto 1fr auto; gap: 16px; }
	.topbar-search { display: none; }
	.topbar-nav { display: none; }
	.topbar-actions__signin { display: none; }
	.topbar-actions__burger { display: flex; }

	.site-shell { grid-template-columns: 1fr; padding: 16px; }
	.explore-rail {
		position: fixed; inset: 0 20% 0 0; top: 0; height: 100vh; max-height: none;
		z-index: 60; transform: translateX(-100%); transition: transform .25s ease;
		border-radius: 0; border: none; box-shadow: 0 0 40px rgba(0,0,0,.2);
	}
	.explore-rail.is-open { transform: translateX(0); }
	.category-grid { grid-template-columns: repeat(3, 1fr); }
	.destinations-grid { grid-template-columns: repeat(3, 1fr); }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.hero { padding: 24px; min-height: 360px; }
	.hero__search { flex-direction: column; }
	.hero__search-field { border-right: none; border-bottom: 1px solid var(--color-line-soft); }
	.category-grid { grid-template-columns: repeat(2, 1fr); }
	.destinations-grid { grid-template-columns: repeat(2, 1fr); }
	.post-grid { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
}
