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

:root {
	/* Typography Scale */
	--font-size-body: 1.125rem; /* 18px desktop */
	--font-size-body-mobile: 1rem; /* 16px mobile */
	--font-display: "Tiro Kannada", Georgia, "Times New Roman", serif;

	/* Spacing Scale */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 8rem;

	/* Master Palette */
	--color-olive-earth: #5A5A32;
	--color-olive-earth-rgb: 90, 90, 50;
	--color-soft-cream: #F5F2EB;
	--color-soft-cream-rgb: 245, 242, 235;
	--color-soil-brown: #3A2F25;
	--color-soil-brown-rgb: 58, 47, 37;
	--color-antique-gold: #C0A47A;
	--color-antique-gold-rgb: 192, 164, 122;
	--color-sage: #7B8D6A;
	--color-sage-rgb: 123, 141, 106;
	--color-terracotta: #935F43;
	--color-terracotta-rgb: 147, 95, 67;

	/* Semantic Tokens */
	--color-text: var(--color-soft-cream);
	--color-bg: var(--color-olive-earth);
	--color-link: var(--color-terracotta);
	--color-link-hover: var(--color-antique-gold);
	--color-bg-content: var(--color-olive-earth);
	--color-bg-frame: var(--color-soil-brown);
	--color-border: var(--color-soil-brown);

	--page-padding: 1rem; /* Default mobile padding */
	--grid-gap: 0.5rem;
}

/* Color Themes */
.theme-olive {
	--color-bg: var(--color-olive-earth);
	--color-text: var(--color-soft-cream);
	--color-link: var(--color-terracotta);
	--color-link-hover: var(--color-antique-gold);
}

.theme-brown {
	--color-bg: var(--color-soil-brown);
	--color-text: var(--color-antique-gold);
	--color-link: var(--color-terracotta);
	--color-link-hover: var(--color-soft-cream);
}

.theme-emerald {
	--color-bg: var(--color-soil-brown);
	--color-text: var(--color-sage);
	--color-link: var(--color-sage);
	--color-link-hover: var(--color-soft-cream);
}

.theme-sage {
	--color-bg: var(--color-sage);
	--color-text: var(--color-soil-brown);
	--color-link: var(--color-soil-brown);
	--color-link-hover: var(--color-soil-brown);
}

.theme-cream {
	--color-bg: var(--color-soft-cream);
	--color-text: var(--color-soil-brown);
	--color-link: var(--color-terracotta);
	--color-link-hover: var(--color-olive-earth);
}

html,
body {
	width: 100vw;
	overflow-x: hidden;
}

body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: "area-variable", sans-serif;
	font-variation-settings: "slnt" 0, "wdth" 100, "wght" 450, "INKT" 0;
	font-weight: 450;
	font-size: var(--font-size-body-mobile);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "kern" 1;
	text-rendering: optimizeLegibility;
}

/* Typography - Mobile First */
h1, .h1 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 8vw, 6rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.02em;
	margin: 0;
	hyphens: none;
}

h2, .h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 5vw, 4rem);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.015em;
	margin: 0;
	hyphens: none;
}

h3, .h3 {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	hyphens: none;
}

p {
    margin: 0 0 1em 0;
    max-width: 65ch;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	top: 50%;
	left: 50%;
	width: 3.75rem;
	height: 3.75rem;
	margin: -1.875rem 0 0 -1.875rem;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles */
a:focus:not(:focus-visible) {
	background: transparent;
}

a:focus-visible {
	outline: 2px solid var(--color-text);
	outline-offset: 2px;
	background: transparent;
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.type-tiny,
.cdawrap {
	font-size: 0.875rem; /* 14px */
	text-transform: uppercase;
	font-weight: 400;
	font-variation-settings: "wght" 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.frame {
	padding: var(--page-padding);
	text-transform: uppercase;
	position: relative;
	display: grid;
	line-height: 1;
	height: 100dvh;
	grid-row-gap: 1rem;
	grid-column-gap: 1rem;
	justify-items: center;
	align-content: center;
	text-align: center;
	background: var(--color-bg);
	grid-template-columns: 1fr;
	grid-template-rows: auto auto 1fr;
	grid-template-areas: 'title' 'subline' 'tags';
}

.noise {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 5000;
	opacity: 0.07;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

/* Per-section organic texture — large, non-repeating, theme-aware */
.content:not(.content--full)::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: url('../img/kacima-textured-bg.png') center / cover no-repeat;
	opacity: 0.42;
	mix-blend-mode: overlay;
}

.content:not(.content--full) > * {
	position: relative;
	z-index: 1;
}

/* Light sections: use the darker texture for subtle depth */
.theme-cream.content:not(.content--full)::before,
.theme-sage.content:not(.content--full)::before {
	background-image: url('../img/kacima-textured-bg-dark.png');
	mix-blend-mode: soft-light;
	opacity: 0.28;
}

/* Dark sections: warm texture adds filtered-light highlights */
.theme-brown.content:not(.content--full)::before,
.theme-emerald.content:not(.content--full)::before,
.theme-olive.content:not(.content--full)::before {
	background-image: url('../img/kacima-textured-bg.png');
	mix-blend-mode: overlay;
	opacity: 0.48;
}

.frame #cdawrap {
  justify-self: center;
}

.frame__title {
  grid-area: title;
  margin: 0;
  line-height: 1;
}

.frame__title img {
	display: block;
	width: 100%;
	max-width: 80vw;
	height: auto;
	margin: 0 auto;
}

.frame__subline {
	grid-area: subline;
}

.frame__tags {
  grid-area: tags;
  justify-self: center;
}

.frame__links {
	justify-content: center;
    align-items: center;
}

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

/* ───────────────────────────────────────────────
   Kācima Custom Header
   ─────────────────────────────────────────────── */

.k-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(var(--color-soil-brown-rgb), 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(var(--color-soft-cream-rgb), 0.08);
	transition: all 0.4s ease;
}

.k-header.scrolled {
	background: rgba(var(--color-soil-brown-rgb), 0.95);
	padding: 0.75rem 1.5rem;
}

.k-header__logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.k-header__logo img {
	height: 36px;
	width: auto;
}

.k-header__brand {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.25rem;
	color: var(--color-soft-cream);
	letter-spacing: 0.02em;
}

.k-header__nav {
	display: none;
}

.k-header__nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.k-header__nav-links a {
	color: rgba(var(--color-soft-cream-rgb), 0.85);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 400;
	transition: color 0.2s ease;
	position: relative;
}

.k-header__nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-antique-gold);
	transition: width 0.3s ease;
}

.k-header__nav-links a:hover {
	color: var(--color-soft-cream);
}

.k-header__nav-links a:hover::after {
	width: 100%;
}

.k-header__cta {
	display: none;
}

.k-header__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.25rem;
	background: var(--color-antique-gold);
	color: var(--color-soil-brown);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 400;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.k-header__cta-btn:hover {
	background: var(--color-terracotta);
	transform: translateY(-1px);
}

.k-header__menu-btn {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.k-header__menu-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-soft-cream);
	transition: all 0.3s ease;
	border-radius: 2px;
}

.k-header__menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.k-header__menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.k-header__menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.k-header__mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 360px;
	height: 100vh;
	background: var(--color-soil-brown);
	z-index: 1001;
	padding: 5rem 2rem 2rem;
	transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.k-header__mobile-menu.active {
	right: 0;
}

.k-header__mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.k-header__mobile-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.k-header__mobile-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.k-header__mobile-links li {
	margin-bottom: 1.5rem;
}

.k-header__mobile-links a {
	display: block;
	color: var(--color-soft-cream);
	text-decoration: none;
	font-size: 1.5rem;
	font-family: Georgia, 'Times New Roman', serif;
	transition: color 0.2s ease;
}

.k-header__mobile-links a:hover {
	color: var(--color-antique-gold);
}

.k-header__mobile-cta {
	display: inline-block;
	margin-top: 2rem;
	padding: 1rem 2rem;
	background: var(--color-antique-gold);
	color: var(--color-soil-brown);
	text-decoration: none;
	font-weight: 600;
	border-radius: 40px;
}

.k-header__mobile-contact {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(var(--color-soft-cream-rgb), 0.1);
}

.k-header__mobile-contact p {
	color: rgba(var(--color-soft-cream-rgb), 0.6);
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
}

.k-header__mobile-contact a {
	color: var(--color-soft-cream);
	text-decoration: none;
	font-size: 0.95rem;
}

@media screen and (min-width: 768px) {
	.k-header {
		padding: 1.25rem 2.5rem;
	}

	.k-header__nav {
		display: block;
	}

	.k-header__menu-btn {
		display: none;
	}

	.k-header__cta {
		display: block;
	}
}

/* ───────────────────────────────────────────────
   Kācima Custom Footer
   ─────────────────────────────────────────────── */

.k-footer {
	background: var(--color-soil-brown);
	color: var(--color-soft-cream);
	padding: 4rem 1.5rem 2rem;
	margin-top: 4rem;
}

.k-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.k-footer__brand {
	max-width: 300px;
}

.k-footer__brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.k-footer__brand-logo img {
	height: 32px;
}

.k-footer__brand-name {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.25rem;
	color: var(--color-soft-cream);
}

.k-footer__brand-desc {
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(var(--color-soft-cream-rgb), 0.7);
	margin: 0;
}

.k-footer__links h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-antique-gold);
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.k-footer__links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.k-footer__links li {
	margin-bottom: 0.75rem;
}

.k-footer__links a {
	color: rgba(var(--color-soft-cream-rgb), 0.75);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.k-footer__links a:hover {
	color: var(--color-soft-cream);
}

.k-footer__contact p {
	color: rgba(var(--color-soft-cream-rgb), 0.7);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.k-footer__contact a {
	color: var(--color-soft-cream);
	text-decoration: none;
}

.k-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.k-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(var(--color-soft-cream-rgb), 0.08);
	border-radius: 50%;
	color: var(--color-soft-cream);
	transition: all 0.3s ease;
}

.k-footer__social a:hover {
	background: var(--color-antique-gold);
	color: var(--color-soil-brown);
}

.k-footer__bottom {
	max-width: 1200px;
	margin: 3rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid rgba(var(--color-soft-cream-rgb), 0.1);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.k-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.k-footer__legal a {
	color: rgba(var(--color-soft-cream-rgb), 0.5);
	font-size: 0.8rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.k-footer__legal a:hover {
	color: var(--color-soft-cream);
}

.k-footer__copyright {
	color: rgba(var(--color-soft-cream-rgb), 0.5);
	font-size: 0.8rem;
}

.k-footer__copyright a {
	color: var(--color-antique-gold);
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.k-footer {
		padding: 5rem 2.5rem 2rem;
	}

	.k-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
		gap: 3rem;
	}

	.k-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.page-footer a {
    display: inline-block;
    padding: 0.75rem; /* Ensure touch target > 44px */
}

.flex-line {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.content {
	position: relative;
	min-height: 100dvh;
	background: var(--color-bg-content);
	align-content: center;
}

.content--cutoff {
	overflow: hidden;
}

.content--padded {
	padding: var(--page-padding);
}

.content--chapter {
	min-height: 100dvh;
	padding-top: 8vh;
	padding-bottom: 8vh;
	text-align: center;
}

.content--chapter .type-tiny {
	font-size: clamp(1em, 1.8vw, 1.25em);
	margin-bottom: 1em;
	letter-spacing: 0.15em;
	opacity: 0.8;
}

.content--chapter .content__text {
	font-size: clamp(1.5em, 6vw, 4.5em);
	line-height: 1.15;
	font-weight: 500;
	max-width: 90vw;
	margin: 0 auto;
}

.content--marquee {
	min-height: auto;
	padding: 0;
	overflow: hidden;
	background: var(--color-bg-content);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.marquee {
	display: flex;
	white-space: nowrap;
	font-size: clamp(1rem, 3vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 1rem 0;
}

.marquee__track {
	display: flex;
	animation: marquee 30s linear infinite;
}

.marquee__track span {
	padding: 0 1.5rem;
	font-weight: 400;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track {
		animation: none;
	}
}

.content--full {
	display: grid;
	height: 100dvh;
	place-items: center;
	grid-template-areas: 'main';
	grid-template-rows: 100%;
	grid-template-columns: 100%;
}

.content__text {
	font-size: var(--font-size-body-mobile);
	max-width: 65ch;
	line-height: 1.6;
	margin: 0.5rem 0;
	font-weight: 450;
	font-variation-settings: "wght" 450;
	text-wrap: balance;
	letter-spacing: -0.025em;
}

.sentence {
	display: inline;
}

.reveal-line {
	display: block;
	overflow: hidden;
	line-height: inherit;
	/* Generous vertical padding so the translated inner can rise from below the
		clip without ever being truncated (yPercent: 105). */
	padding: 0.15em 0 0.35em;
	will-change: transform;
}

.reveal-line__inner {
	display: block;
	white-space: nowrap;
	will-change: transform, opacity;
}

[data-split-revealed="true"] > .reveal-line + .reveal-line {
	margin-top: -0.18em;
}

@media (prefers-reduced-motion: reduce) {
	.sentence,
	.reveal-line,
	.reveal-line__inner {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Grid System - Mobile Default (4 columns) */
.grid {
	grid-area: main;
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: repeat(4,1fr);
	gap: var(--grid-gap);
}

.grid--spaced {
	gap: var(--grid-gap);
}

.grid--zoomed {
	gap: var(--grid-gap);
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	justify-content: center;
	align-content: center;
}

.grid--zoomed .grid__img {
	width: 100%;
	height: 100%;
}

.grid--columns {
  grid-template-columns: repeat(2,1fr); /* Reduce for mobile */
  grid-template-rows: repeat(2,min-content);
  align-content: center;
}

.grid--single {
  height: auto;
  justify-self: center;
}

.grid--column {
	grid-template-columns: repeat(15, calc((100% - 14 * var(--grid-gap)) / 15));
    gap: var(--grid-gap);
	grid-template-rows: auto;
}

.grid__img:has(.grid__img-inner) {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	max-height: 100%;
	min-width: 100%;
}

.grid__img .grid__img-inner {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	will-change: transform;
}

.ar-wide {
	aspect-ratio: 4/3;
}

.ar-narrow {
	aspect-ratio: 2/3;
}

.ar-rect {
	aspect-ratio: 1;
}

.span-2 {
	grid-column: auto / span 2;
}

.span-3 {
	grid-column: auto / span 3;
}

.grid--small {
	grid-template-columns: repeat(4,1fr); /* Mobile adaptation */
	grid-auto-rows: 1fr;
}

.grid--tiny {
	height: 60vh;
	grid-template-columns: repeat(7,1fr); /* Mobile adaptation */
	grid-auto-rows: auto;
}

.grid--wide {
	grid-template-columns: repeat(3,1fr); /* Mobile adaptation */
	grid-template-rows: repeat(4,1fr);
	grid-auto-rows: 1fr;
}

/* Keep positioning classes */
.pos-1 { grid-area: 1 / 1; }
.pos-2 { grid-area: 1 / 3; }
.pos-3 { grid-area: 1 / 4; }
.pos-4 { grid-area: 1 / 5; }
.pos-5 { grid-area: 1 / 7; }
.pos-6 { grid-area: 2 / 1; }
.pos-7 { grid-area: 2 / 3; }
.pos-8 { grid-area: 2 / 4; }
.pos-9 { grid-area: 2 / 6; }
.pos-10 { grid-area: 2 / 7; }
.pos-11 { grid-area: 2 / 8; }
.pos-12 { grid-area: 3 / 1; }
.pos-13 { grid-area: 3 / 2; }
.pos-14 { grid-area: 3 / 4; }
.pos-15 { grid-area: 3 / 5; }
.pos-16 { grid-area: 3 / 7; }
.pos-17 { grid-area: 3 / 8; }
.pos-18 { grid-area: 2 / 5; }

.grid__img {
	background-size: cover;
	background-position: 50% 50%;
	pointer-events: none;
	will-change: transform;
	transform: translateZ(0.1px);
}

.grid--columns .grid__img {
	height: min-content;
	aspect-ratio: 2 / 3;
}

.content__title {
	grid-area: main;
	position: relative;
	display: flex;
	flex-direction: column;
}

.content__title-main {
	font-size: clamp(2rem, 7vw, 4.5rem);
	line-height: 1.05;
	margin: 0.5rem 0 0;
	font-weight: 500;
	font-variation-settings: "wght" 500;
	text-wrap: balance;
	letter-spacing: -0.03em;
}

.content__title-main + p {
	margin: 0;
	max-width: 6.25rem;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.end {
	align-self: end;
}

.acenter {
	align-self: center;
}

.page-footer {
	padding: var(--page-padding);
	position: relative;
	display: grid;
	width: 100%;
	grid-row-gap: 1rem;
	justify-items: center;
	margin-top: 20vh;
	grid-template-columns: 1fr;
}

@media (max-aspect-ratio: 16/9) {
  .grid:not(.grid--zoomed) {
    width: 100%; 
    height: auto; 
    aspect-ratio: 16/9;
  }
}

/* Responsive Breakpoints */

/* 480px: Mobile Large */
@media screen and (min-width: 480px) {
    :root {
        --page-padding: 1.5rem;
        --grid-gap: 1rem;
    }
    .grid--columns {
        grid-template-columns: repeat(3,1fr);
    }
}

/* 768px: Tablet */
@media screen and (min-width: 768px) {
    :root {
        --page-padding: 2rem;
        --grid-gap: 1.5rem;
    }
    
    body {
        font-size: var(--font-size-body);
    }

    .content__text {
        font-size: clamp(1.25rem, 4vw, 1.7rem);
    }

    .grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .grid--small {
        grid-template-columns: repeat(9,1fr);
    }
    
    .grid--tiny {
        grid-template-columns: repeat(14,1fr);
    }
    
    .grid--wide {
        grid-template-columns: repeat(5,1fr);
    }
    
    .grid--columns {
        grid-template-columns: repeat(5,1fr);
    }

    .content--chapter {
        padding-top: 12vh;
        padding-bottom: 12vh;
    }

    .content--chapter .type-tiny {
        margin-bottom: 1.5em;
    }

    .marquee {
        font-size: clamp(1.5rem, 4vw, 3rem);
        padding: 1.5rem 0;
    }

    .marquee__track span {
        padding: 0 2rem;
    }

    .page-footer {
        justify-items: start;
        grid-template-columns: repeat(2, auto);
        justify-content: space-between;
    }
}

/* 1024px: Desktop */
@media screen and (min-width: 1024px) {
    :root {
        --page-padding: max(2rem, 5vw);
        --grid-gap: 2rem;
    }

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

    [data-grid-first] {
        grid-template-columns: repeat(8, 1fr);
    }

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

    .grid--wide {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .grid--zoomed {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .frame {
        grid-template-columns: 1fr;
		grid-template-rows: 1fr auto auto 1fr;
		grid-row-gap: 2vh;
		align-items: center;
		grid-template-areas: 
			'.' 
			'title' 
			'subline' 
			'tags';
    }
    
    .frame__links {
		margin-left: 0;
		justify-content: center;
		margin-top: 0.5rem;
	}
	
	.frame__subline {
		align-self: start;
	}
	
	.frame__title {
		align-self: end;
	}
	
	.frame #cdawrap {
		text-align: center;
		max-width: 100%;
		justify-self: center;
	}
    
    .frame__title img {
        max-width: 56rem;
    }

    .page-footer {
		grid-template-columns: repeat(3,auto);
	}
}

/* Custom components derived from motionsites-export prompts — Kācima palette, namespaced .k- */

/* Let the five replaced sections use their theme background colors */
#offerings,
#community,
#pricing,
#location,
#stay {
	background: var(--color-bg);
}

.k-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ───────────────────────────────────────────────
   #offerings — Glow feature cards
   ─────────────────────────────────────────────── */

.k-section-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	font-weight: 400;
	margin: 0 0 0.5rem;
	text-align: center;
	letter-spacing: -0.01em;
}

.theme-cream .k-section-title {
	color: var(--color-soil-brown);
}

.theme-sage .k-section-title {
	color: var(--color-soft-cream);
}

.k-section-subtitle {
	font-size: clamp(0.9rem, 2vw, 1.1rem);
	text-align: center;
	margin: 0 auto 2rem;
	max-width: 500px;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.theme-cream .k-section-subtitle {
	color: var(--color-soil-brown);
}

.theme-sage .k-section-subtitle {
	color: rgba(var(--color-soft-cream-rgb), 0.75);
}

.k-glow-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	width: 100%;
	max-width: 1280px;
	margin: 2.5rem auto 0;
	text-align: left;
	padding: 0 1rem;
}

@media screen and (min-width: 768px) {
	.k-glow-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
		padding: 0 2rem;
	}
}

@media screen and (min-width: 1024px) {
	.k-glow-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.k-glow-card {
	position: relative;
	display: flex;
	min-height: 260px;
	border-radius: 24px;
	color: var(--color-soil-brown);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.k-glow-card:hover {
	transform: translateY(-6px) scale(1.01);
}

.k-glow-card__glow {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	background: var(--card-gradient);
	filter: blur(28px);
	opacity: 0.4;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.k-glow-card:hover .k-glow-card__glow {
	opacity: 0.6;
}

.k-glow-card__inner {
	position: relative;
	z-index: 1;
	flex: 1;
	border-radius: 24px;
	padding: 1.75rem;
	background: linear-gradient(145deg, rgba(var(--color-soft-cream-rgb), 0.96), rgba(var(--color-antique-gold-rgb), 0.2)) padding-box, var(--card-gradient) border-box;
	border: 1.5px solid transparent;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.k-glow-card__icon {
	color: var(--color-olive-earth);
	line-height: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-olive-earth-rgb), 0.06);
	border-radius: 14px;
	transition: transform 0.3s ease, background 0.3s ease;
}

.k-glow-card:hover .k-glow-card__icon {
	transform: scale(1.08);
	background: rgba(var(--color-olive-earth-rgb), 0.12);
}

.k-glow-card__icon svg {
	width: 26px;
	height: 26px;
}

.k-glow-card__title {
	font-size: 1.05rem;
	text-transform: none;
	letter-spacing: -0.01em;
	font-weight: 600;
	margin: 0 0 0.4rem;
	color: var(--color-soil-brown);
	font-family: Georgia, 'Times New Roman', serif;
}

.k-glow-card__desc {
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
	opacity: 0.8;
	color: var(--color-soil-brown);
	font-weight: 400;
}

/* ───────────────────────────────────────────────
   #community — CTA card with image background
   ─────────────────────────────────────────────── */

.k-community {
	position: relative;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	border-radius: 28px;
	overflow: hidden;
	min-height: 220px;
	background: var(--color-soft-cream);
}

.k-community__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.k-community__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(var(--color-soil-brown-rgb), 0.78) 0%, rgba(var(--color-soil-brown-rgb), 0.45) 100%);
	z-index: 1;
}

.k-community__content {
	position: relative;
	z-index: 2;
	padding: 40px;
	max-width: 560px;
	text-align: left;
	color: var(--color-soft-cream);
}

.k-community__title {
	font-size: clamp(1.25rem, 4vw, 1.625rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin: 0 0 0.75rem;
}

.k-community__text {
	font-size: clamp(0.9rem, 2vw, 0.95rem);
	line-height: 1.65;
	margin: 0 0 1.75rem;
	max-width: 400px;
	opacity: 0.92;
}

.k-community__form {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	max-width: 80%;
}

.k-community__form input,
.k-community__form button {
	font-family: inherit;
}

.k-community__form input {
	flex: 1;
	min-width: 200px;
	padding: 13px 22px;
	border-radius: 50px;
	border: 1px solid rgba(var(--color-antique-gold-rgb), 0.75);
	background: rgba(var(--color-soft-cream-rgb), 0.96);
	color: var(--color-soil-brown);
	font-size: 0.875rem;
	outline: none;
	box-shadow: 0 1px 5px rgba(var(--color-soil-brown-rgb), 0.1);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.k-community__form input::placeholder {
	color: var(--color-sage);
}

.k-community__form input:focus {
	border-color: var(--color-antique-gold);
	box-shadow: 0 1px 10px rgba(var(--color-antique-gold-rgb), 0.28);
}

.k-community__form button {
	padding: 13px 24px;
	border-radius: 50px;
	border: 0;
	background: var(--color-soft-cream);
	color: var(--color-soil-brown);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	letter-spacing: 0.01em;
	box-shadow: 0 2px 10px rgba(var(--color-soil-brown-rgb), 0.15);
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.k-community__form button:hover {
	background: var(--color-terracotta);
	color: var(--color-soft-cream);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(var(--color-soil-brown-rgb), 0.28);
}

.k-community__form button:active {
	transform: translateY(0);
}

.k-community__members {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.k-community__avatars {
	display: flex;
}

.k-community__avatars span {
	display: inline-block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-left: -9px;
	overflow: hidden;
	background-size: cover;
	background-position: center top;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	flex-shrink: 0;
}

.k-community__avatars span:first-child {
	margin-left: 0;
}

.k-community__members p {
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0;
	opacity: 0.95;
}

@media screen and (max-width: 600px) {
	.k-community__content {
		padding: 24px;
		max-width: 100%;
	}

	.k-community__title {
		font-size: 1.15rem;
	}

	.k-community__text {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}

	.k-community__form {
		flex-direction: column;
		gap: 8px;
		max-width: 100%;
	}

	.k-community__form input,
	.k-community__form button {
		width: 100%;
		min-width: auto;
		text-align: center;
	}

	.k-community__avatars span {
		width: 28px;
		height: 28px;
		margin-left: -7px;
	}
}

/* ───────────────────────────────────────────────
   #pricing — Package fits pricing
   ─────────────────────────────────────────────── */

.k-pricing {
	width: 100%;
	max-width: 1000px;
	margin: 2rem auto 0;
	text-align: left;
}

.k-pricing__grid-wrapper {
	background: rgba(var(--color-soft-cream-rgb), 0.85);
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 24px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.6),
		0 4px 24px rgba(0, 0, 0, 0.04);
}

.k-pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 0 1rem;
}

@media screen and (min-width: 768px) {
	.k-pricing__grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 0;
	}
}

@media screen and (min-width: 1024px) {
	.k-pricing {
		max-width: 1100px;
		margin: 0 auto;
	}
}

.k-pricing-card {
	position: relative;
	background: var(--color-soft-cream);
	color: var(--color-soil-brown);
	border-radius: 20px;
	padding: 32px;
	overflow: hidden;
	box-shadow:
		0 2px 10px rgba(0, 0, 0, 0.03),
		0 8px 32px rgba(var(--color-soil-brown-rgb), 0.08);
	display: flex;
	flex-direction: column;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.k-pricing-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.06),
		0 20px 60px rgba(var(--color-soil-brown-rgb), 0.12);
}

.k-pricing-card::before,
.k-pricing-card::after,
.k-pricing-card__dot-bl,
.k-pricing-card__dot-br {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: var(--color-antique-gold);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.7;
}

.k-pricing-card::before {
	top: 16px;
	left: 16px;
}

.k-pricing-card::after {
	top: 16px;
	right: 16px;
}

.k-pricing-card__dot-bl {
	bottom: 16px;
	left: 16px;
}

.k-pricing-card__dot-br {
	bottom: 16px;
	right: 16px;
}

.k-pricing-card__title {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 0 12px;
	letter-spacing: -0.015em;
	color: var(--color-soil-brown);
	font-family: Georgia, 'Times New Roman', serif;
}

.k-pricing-card__price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(var(--color-soil-brown-rgb), 0.15);
	min-height: 84px;
	margin-bottom: 20px;
}

.k-pricing-card__amount {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(2.6rem, 5vw, 3.4rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1;
	color: var(--color-olive-earth);
}

.k-pricing-card__unit {
	font-size: 0.875rem;
	color: var(--color-soil-brown);
	font-weight: 400;
	line-height: 1.4;
}

.k-pricing-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	font-size: 0.9rem;
	color: var(--color-soil-brown);
	line-height: 1.7;
}

.k-pricing-card__list li {
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
}

.k-pricing-card__list li::before {
	content: '❖';
	position: absolute;
	left: 0;
	color: var(--color-terracotta);
}

.k-pricing-card__desc {
	font-size: 0.85rem;
	color: var(--color-soil-brown);
	line-height: 1.6;
	max-width: 210px;
	margin-bottom: auto;
}

.k-pricing-card__btn {
	display: inline-block;
	width: fit-content;
	padding: 14px 32px;
	border-radius: 40px;
	background: var(--color-olive-earth);
	color: var(--color-soft-cream);
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: auto;
	z-index: 2;
	position: relative;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 16px rgba(var(--color-olive-earth-rgb), 0.25);
}

.k-pricing-card__btn:hover {
	background: var(--color-soil-brown);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(var(--color-olive-earth-rgb), 0.35);
	text-decoration: none;
}

.k-pricing-card__btn:focus-visible {
	outline: 2px solid var(--color-soil-brown);
	outline-offset: 3px;
}

.k-pricing-card__art {
	position: absolute;
	bottom: 0;
	right: 20px;
	width: 120px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	z-index: 1;
	pointer-events: none;
	opacity: 0.9;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.k-pricing-card:hover .k-pricing-card__art {
	transform: translateY(-3px) rotate(-1.5deg);
}

.k-pricing-card--bottom {
	background: rgba(var(--color-soft-cream-rgb), 0.88);
	min-height: 220px;
	padding: 32px 32px 4px 32px;
}

.k-pricing-card--bottom .k-pricing-card__dot-bl,
.k-pricing-card--bottom .k-pricing-card__dot-br {
	display: none;
}

.k-pricing-card--bottom .k-pricing-card__btn {
	margin-top: 60px;
}

.k-pricing-card__bottom-desc {
	font-size: 0.85rem;
	color: var(--color-soil-brown);
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: -20px;
	z-index: 2;
	position: relative;
}

.k-pricing-card__landscape {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 360px;
	height: 240px;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
	opacity: 0.85;
	border-radius: 0 0 16px 0;
}

@media screen and (max-width: 768px) {
	.k-pricing-card__art {
		width: 96px;
		height: 72px;
		right: 12px;
		opacity: 0.85;
	}

	.k-pricing-card__desc,
	.k-pricing-card__bottom-desc {
		max-width: none;
	}

	.k-pricing-card__landscape {
		width: 240px;
		height: 160px;
		opacity: 0.85;
	}

	.k-pricing-card--bottom {
		padding: 28px 24px 4px 24px;
	}

	.k-pricing-card--bottom .k-pricing-card__btn {
		margin-top: 40px;
	}
}

@media screen and (max-width: 480px) {
	.k-pricing-card__amount {
		font-size: 2.6rem;
	}

	.k-pricing-card__landscape {
		width: 180px;
		height: 120px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.k-glow-card,
	.k-pricing-card,
	.k-pricing-card__art,
	.k-community__form button,
	.k-community__form input,
	.k-stay-card,
	.k-bento__card {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* ───────────────────────────────────────────────
   #location — Bento-style stat grid
   ─────────────────────────────────────────────── */

.k-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--grid-gap);
	width: 100%;
	max-width: 1000px;
	margin: 2rem auto 0;
	text-align: left;
}

@media screen and (min-width: 768px) {
	.k-bento {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}

	.k-bento__card--large {
		grid-column: 1;
		grid-row: 1 / 3;
	}

	.k-bento__card--image {
		grid-column: 2;
		grid-row: 1;
	}

	.k-bento__card--image + .k-bento__card--stat,
	.k-bento__card--image ~ .k-bento__card--stat:last-child {
		grid-column: 2;
		grid-row: 2;
	}
}

.k-bento__card {
	position: relative;
	border-radius: 20px;
	padding: 24px;
	overflow: hidden;
	background: var(--color-soft-cream);
	color: var(--color-soil-brown);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 180px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.k-bento__card--large {
	min-height: 320px;
	background: linear-gradient(135deg, var(--color-olive-earth), var(--color-sage));
	color: var(--color-soft-cream);
}

.k-bento__card--image {
	min-height: 240px;
	background-size: cover;
	background-position: center;
	color: var(--color-soft-cream);
}

.k-bento__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 100%);
	z-index: 0;
}

.k-bento__card-content {
	position: relative;
	z-index: 1;
}

.k-bento__stat {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.k-bento__number {
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.03em;
}

.k-bento__unit {
	font-size: 1.5rem;
	font-weight: 400;
	opacity: 0.85;
}

.k-bento__label {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	opacity: 0.9;
}

/* ───────────────────────────────────────────────
   #stay — Image-accent card grid
   ─────────────────────────────────────────────── */

.k-stay-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--grid-gap);
	width: 100%;
	max-width: 1000px;
	margin: 2rem auto 0;
	text-align: left;
}

@media screen and (min-width: 768px) {
	.k-stay-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.k-stay-card {
	background: var(--color-soft-cream);
	color: var(--color-soil-brown);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.k-stay-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.k-stay-card__img {
	height: 180px;
	background-size: cover;
	background-position: center;
}

@media screen and (min-width: 768px) {
	.k-stay-card__img {
		height: 220px;
	}
}

.k-stay-card__body {
	padding: 1.5rem;
}

.k-stay-card__title {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
	margin: 0 0 0.5rem;
}

.k-stay-card__text {
	font-size: 1rem;
	line-height: 1.5;
	margin: 0;
	opacity: 0.9;
}

/* ───────────────────────────────────────────────
   Kācima Frame Hero Enhancements
   ─────────────────────────────────────────────── */

.k-frame-hero {
	isolation: isolate;
	overflow: hidden;
	background-image:
		linear-gradient(180deg, rgba(var(--color-olive-earth-rgb), 0.48), rgba(var(--color-soil-brown-rgb), 0.72)),
		url('../img/39.webp');
	background-position: center;
	background-size: cover;
	grid-template-rows: auto auto auto;
	grid-row-gap: clamp(0.75rem, 1.8vw, 1.4rem);
	padding-top: clamp(5rem, 8vw, 7rem);
}

.k-frame-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(var(--color-soil-brown-rgb), 0.38), transparent 42%, rgba(var(--color-olive-earth-rgb), 0.28));
	pointer-events: none;
}

.k-frame-hero__copy {
	display: grid;
	justify-items: center;
	gap: 0.85rem;
	color: var(--color-soft-cream);
	text-transform: none;
}

.k-frame-hero__eyebrow {
	margin: 0;
	font-size: clamp(0.78rem, 1.4vw, 0.95rem);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(var(--color-soft-cream-rgb), 0.78);
	animation: fadeInUp 1s ease-out 0.15s backwards;
}

.k-frame-hero__line {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.85rem, 5.5vw, 4.25rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: var(--color-soft-cream);
	text-transform: none;
	animation: fadeInUp 1s ease-out 0.3s backwards;
}

.k-frame-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0 1.45rem;
	border-radius: 999px;
	background: rgba(var(--color-soft-cream-rgb), 0.18);
	border: 1px solid rgba(var(--color-soft-cream-rgb), 0.28);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	color: var(--color-soft-cream);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	animation: fadeInUp 1s ease-out 0.45s backwards;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}

.k-frame-hero__cta:hover {
	transform: translateY(-2px);
	background: rgba(var(--color-soft-cream-rgb), 0.27);
	text-decoration: none;
}

.k-frame-hero .frame__tags {
	align-self: end;
	padding-bottom: clamp(1rem, 3vw, 2.5rem);
	color: rgba(var(--color-soft-cream-rgb), 0.72);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
