/* =====================================================
   TENU ABOUT — GLOBAL (Elementor widgets)
===================================================== */

.elementor-widget-tenu_story,
.elementor-widget-tenu_inspiration,
.elementor-widget-tenu_meaning,
.elementor-widget-tenu_philosophy {
	width: 100% !important;
	max-width: none !important;
	overflow: visible !important;
}

.elementor-widget-tenu_story > .elementor-widget-container,
.elementor-widget-tenu_inspiration > .elementor-widget-container,
.elementor-widget-tenu_meaning > .elementor-widget-container,
.elementor-widget-tenu_philosophy > .elementor-widget-container {
	width: 100% !important;
	max-width: none !important;
	overflow: visible !important;
	padding: 0 !important;
}

.tenu-widget.tenu-dynamic-about {
	--tenu-primary: #4e3221;
	--tenu-primary-light: #75513a;
	--tenu-dark: #1d120c;
	--tenu-darker: #120b07;
	--tenu-cream: #f4eee8;
	--tenu-soft: #e7ddd3;
	--tenu-white: #ffffff;
	--tenu-text: #33261f;

	--tenu-heading-font:
		Georgia,
		"Times New Roman",
		serif;

	--tenu-body-font:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Arial,
		sans-serif;

	position: relative;
	left: 50%;

	width: 100vw !important;
	max-width: 100vw !important;

	margin-right: -50vw !important;
	margin-left: -50vw !important;

	overflow: hidden;

	color: var(--tenu-text);
	background: var(--tenu-cream);

	font-family: var(--tenu-body-font);
}

.tenu-widget.tenu-dynamic-about,
.tenu-widget.tenu-dynamic-about * {
	box-sizing: border-box;
}

.tenu-widget.tenu-dynamic-about h2,
.tenu-widget.tenu-dynamic-about h3,
.tenu-widget.tenu-dynamic-about p {
	margin-top: 0;
}

.tenu-widget.tenu-dynamic-about h2,
.tenu-widget.tenu-dynamic-about h3,
.tenu-widget.tenu-dynamic-about strong {
	font-family: var(--tenu-heading-font);
}

.tenu-about-container {
	position: relative;
	z-index: 5;

	width: min(100%, 1320px);
	margin: 0 auto;

	padding-right: clamp(22px, 5vw, 72px);
	padding-left: clamp(22px, 5vw, 72px);
}


/* =====================================================
   SHARED TYPOGRAPHY
===================================================== */

.tenu-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 16px;

	color: var(--tenu-primary);

	font-family: var(--tenu-body-font);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 2.7px;
	text-transform: uppercase;
}

.tenu-eyebrow::before {
	content: "";

	width: 34px;
	height: 1px;

	background: currentColor;

	transform-origin: left;

	animation:
		tenuLinePulse 2.4s ease-in-out infinite;
}

.tenu-eyebrow-light {
	color: rgba(255, 255, 255, 0.65);
}

.tenu-widget.tenu-dynamic-about em {
	color: var(--tenu-primary-light);
	font-weight: 400;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.tenu-reveal {
	opacity: 0;

	transform: translateY(32px);

	transition:
		opacity 0.75s cubic-bezier(.2, .7, .2, 1),
		transform 0.75s cubic-bezier(.2, .7, .2, 1);
}

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


/* =====================================================
   OUR STORY
===================================================== */

.tenu-story {
	position: relative;
	overflow: hidden;

	background:
		radial-gradient(
			circle at 92% 12%,
			rgba(78, 50, 33, 0.08),
			transparent 28%
		),
		radial-gradient(
			circle at 8% 78%,
			rgba(78, 50, 33, 0.05),
			transparent 24%
		),
		var(--tenu-cream);
}

.tenu-story::after {
	content: "";

	position: absolute;
	inset: 0;
	z-index: 0;

	opacity: 0.14;

	background-image:
		linear-gradient(
			rgba(78, 50, 33, 0.055) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(78, 50, 33, 0.055) 1px,
			transparent 1px
		);

	background-size: 72px 72px;

	pointer-events: none;
}

.tenu-story-giant-number {
	position: absolute;
	top: clamp(20px, 4vw, 48px);
	right: clamp(10px, 4vw, 56px);
	z-index: 1;

	color: transparent;

	-webkit-text-stroke: 1px rgba(78, 50, 33, 0.14);

	font-family: var(--tenu-heading-font);
	font-size: clamp(140px, 22vw, 280px);
	line-height: 0.8;
	letter-spacing: -0.04em;

	pointer-events: none;
	user-select: none;
}

.tenu-story-layout {
	display: grid;
	grid-template-columns:
		minmax(240px, 0.88fr)
		minmax(0, 1.12fr);

	align-items: stretch;

	gap: clamp(28px, 4vw, 56px);

	padding-top: clamp(48px, 5.5vw, 72px);
	padding-bottom: clamp(40px, 5vw, 64px);
}

/* Media / image — height follows the text column */

.tenu-story-media {
	position: relative;
	z-index: 3;

	align-self: stretch;

	min-height: 0;
	max-width: none;
	margin-inline: 0;
	padding: 14px 14px 22px 22px;
}

.tenu-story-figure {
	position: relative;
	z-index: 2;

	margin: 0;
	overflow: hidden;

	width: 100%;
	height: 100%;
	min-height: 0;

	background: var(--tenu-soft);
}

.tenu-story-figure img,
.tenu-story-image-fallback {
	position: absolute;
	inset: 0;

	display: block;
	width: 100%;
	height: 100%;

	object-fit: cover;

	transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.tenu-story-image-fallback {
	background:
		linear-gradient(
			145deg,
			#d9ccc0 0%,
			#b89a82 48%,
			#6b4a35 100%
		);
}

.tenu-story-media:hover .tenu-story-figure img,
.tenu-story-media:hover .tenu-story-image-fallback {
	transform: scale(1.04);
}

.tenu-story-media-frame {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 8px;
	left: 8px;
	z-index: 1;

	border: 1px solid rgba(78, 50, 33, 0.28);

	pointer-events: none;
}

.tenu-story-media-caption {
	position: absolute;
	left: 12px;
	bottom: 16px;
	z-index: 3;

	color: rgba(255, 255, 255, 0.78);

	font-size: 8px;
	font-weight: 600;
	letter-spacing: 2.8px;
	text-transform: uppercase;

	writing-mode: vertical-rl;
	transform: rotate(180deg);

	text-shadow: 0 1px 8px rgba(18, 11, 7, 0.35);
}

/* Content column */

.tenu-story-content {
	position: relative;
	z-index: 3;

	display: flex;
	flex-direction: column;
	justify-content: center;

	min-width: 0;
	min-height: 0;
}

.tenu-story-header {
	margin-bottom: 14px;
}

.tenu-story-header h2 {
	display: block;

	margin: 0 0 12px;

	color: var(--tenu-primary);

	font-size: clamp(40px, 4.4vw, 64px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -2.4px;
	white-space: nowrap;
}

.tenu-story-header h2 em {
	display: inline;

	margin-left: 0.22em;

	color: transparent;

	-webkit-text-stroke: 1px var(--tenu-primary);

	transition:
		color 0.4s ease,
		transform 0.4s ease;
}

.tenu-story-header:hover h2 em {
	color: var(--tenu-primary);
	transform: none;
}

.tenu-quote {
	display: flex;
	flex-direction: column;
	gap: 2px;

	max-width: 280px;

	padding: 8px 0 8px 14px;

	border-left: 1px solid var(--tenu-primary);
}

.tenu-quote span {
	color: rgba(51, 38, 31, 0.58);

	font-size: 13px;
	line-height: 1.35;
}

.tenu-quote strong {
	color: var(--tenu-primary);

	font-size: 17px;
	font-weight: 500;
	line-height: 1.3;
}

.tenu-story-intro {
	position: relative;

	margin-bottom: 12px;
	padding-bottom: 0;
}

.tenu-story-lead {
	margin-bottom: 6px;

	color: rgba(51, 38, 31, 0.62);

	font-size: 12px;
	line-height: 1.5;
}

.tenu-story-intro h3 {
	max-width: 520px;
	margin-bottom: 0;

	color: var(--tenu-primary);

	font-size: clamp(18px, 1.85vw, 24px);
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: -0.5px;
}

.tenu-copy-row {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 12px;

	margin-bottom: 14px;
}

.tenu-copy-line {
	position: relative;
	overflow: hidden;

	height: 1px;
	margin-top: 9px;

	background: rgba(78, 50, 33, 0.18);
}

.tenu-copy-line::after {
	content: "";

	position: absolute;
	inset: 0;

	background: var(--tenu-primary);

	transform: translateX(-100%);

	animation: tenuMovingLine 3s ease-in-out infinite;
}

.tenu-copy-row p {
	max-width: 480px;
	margin-bottom: 0;

	color: rgba(51, 38, 31, 0.7);

	font-size: 13px;
	line-height: 1.55;
}

.tenu-statements {
	border-top: 1px solid rgba(78, 50, 33, 0.17);
}

.tenu-statement {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	align-items: center;

	min-height: 0;

	padding: 9px 0;

	border-bottom: 1px solid rgba(78, 50, 33, 0.17);

	transition:
		padding 0.3s ease,
		background 0.3s ease;
}

.tenu-statement:hover {
	padding-right: 10px;
	padding-left: 10px;

	background: rgba(78, 50, 33, 0.045);
}

.tenu-statement span {
	color: rgba(78, 50, 33, 0.42);

	font-size: 8px;
	letter-spacing: 1.4px;
}

.tenu-statement p {
	margin-bottom: 0;

	color: var(--tenu-primary);

	font-size: clamp(13px, 1.1vw, 15px);
	line-height: 1.35;
}

.tenu-floating-symbol {
	position: absolute;
	z-index: 1;

	color: rgba(78, 50, 33, 0.045);

	font-family:
		"Noto Sans Egyptian Hieroglyphs",
		"Segoe UI Symbol",
		serif;

	line-height: 1;

	pointer-events: none;
}

.tenu-float-one {
	top: 12%;
	left: -40px;

	font-size: clamp(120px, 16vw, 220px);

	animation: tenuFloatOne 8s ease-in-out infinite;
}

.tenu-float-two {
	right: 6%;
	bottom: 14%;

	font-size: clamp(60px, 7vw, 100px);

	animation: tenuFloatTwo 7s ease-in-out infinite;
}


/* =====================================================
   CONTINUOUS MOVING STRIP
===================================================== */

.tenu-moving-strip {
	position: relative;
	z-index: 8;

	width: 100%;
	overflow: hidden;

	padding: 13px 0;

	color: var(--tenu-cream);
	background: var(--tenu-primary);

	border-top:
		1px solid rgba(255, 255, 255, 0.1);

	border-bottom:
		1px solid rgba(255, 255, 255, 0.1);
}

.tenu-strip-track {
	display: flex;
	width: max-content;

	animation:
		tenuMarquee 28s linear infinite;

	will-change: transform;
}

.tenu-strip-group {
	flex: 0 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: clamp(22px, 2.8vw, 45px);

	min-width: 100vw;

	padding: 0 clamp(18px, 3vw, 45px);
}

.tenu-strip-group span {
	flex: 0 0 auto;

	color: rgba(255, 255, 255, 0.88);

	font-size: 9px;
	font-weight: 600;
	letter-spacing: 3.2px;
	text-transform: uppercase;
	white-space: nowrap;
}

.tenu-strip-group i {
	flex: 0 0 auto;

	color: rgba(255, 255, 255, 0.38);

	font-family:
		"Noto Sans Egyptian Hieroglyphs",
		"Segoe UI Symbol",
		serif;

	font-size: 17px;
	font-style: normal;
	line-height: 1;
}


/* =====================================================
   INSPIRATION
===================================================== */

.tenu-inspiration {
	position: relative;
	overflow: hidden;

	color: var(--tenu-white);

	background:
		linear-gradient(
			120deg,
			var(--tenu-darker),
			var(--tenu-primary) 52%,
			#382116
		);
}

.tenu-inspiration-layout {
	display: grid;
	grid-template-columns:
		minmax(230px, 0.72fr)
		minmax(0, 1.28fr);

	gap: clamp(45px, 7vw, 95px);
	align-items: center;

	min-height: 530px;

	padding-top: clamp(62px, 7vw, 95px);
	padding-bottom: clamp(62px, 7vw, 95px);
}

.tenu-inspiration-visual {
	position: relative;

	min-height: 310px;
}

.tenu-large-number {
	display: block;

	color: transparent;

	-webkit-text-stroke:
		1px rgba(255, 255, 255, 0.15);

	font-family: var(--tenu-heading-font);
	font-size: clamp(155px, 20vw, 280px);
	line-height: 0.83;
}

.tenu-vertical-word {
	position: absolute;
	left: 8px;
	bottom: 0;

	color: rgba(255, 255, 255, 0.45);

	font-size: 9px;
	letter-spacing: 4px;
	text-transform: uppercase;

	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.tenu-inspiration-copy {
	position: relative;
	z-index: 5;
}

.tenu-inspiration-copy h2 {
	display: flex;
	flex-direction: column;

	margin-bottom: 25px;

	color: var(--tenu-white);

	font-size: clamp(42px, 5.2vw, 72px);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: -3px;
}

.tenu-inspiration-copy h2 em {
	color: rgba(255, 255, 255, 0.36);
}

.tenu-inspiration-copy > p {
	max-width: 690px;
	margin-bottom: 14px;

	color: rgba(255, 255, 255, 0.69);

	font-size: 14px;
	line-height: 1.75;
}

.tenu-inspiration-highlight {
	display: grid;
	grid-template-columns: 45px minmax(0, 1fr);
	gap: 16px;
	align-items: center;

	max-width: 690px;

	margin-top: 25px;
	padding: 18px;

	background:
		rgba(255, 255, 255, 0.05);

	border:
		1px solid rgba(255, 255, 255, 0.11);

	backdrop-filter: blur(8px);

	transition:
		transform 0.35s ease,
		background 0.35s ease;
}

.tenu-inspiration-highlight:hover {
	transform: translateX(8px);

	background:
		rgba(255, 255, 255, 0.08);
}

.tenu-inspiration-highlight > span {
	color: rgba(255, 255, 255, 0.72);

	font-family:
		"Noto Sans Egyptian Hieroglyphs",
		"Segoe UI Symbol",
		serif;

	font-size: 30px;
}

.tenu-inspiration-highlight p {
	margin-bottom: 0;

	color: var(--tenu-white);

	font-size: clamp(15px, 1.35vw, 19px);
	line-height: 1.5;
}

.tenu-orbit-symbol {
	position: absolute;
	top: 50%;
	left: 17%;

	width: clamp(245px, 28vw, 400px);
	aspect-ratio: 1;

	transform:
		translate(-50%, -50%);

	pointer-events: none;
}

.tenu-orbit-ring {
	position: absolute;
	inset: 0;

	border:
		1px solid rgba(255, 255, 255, 0.09);

	border-radius: 50%;

	animation:
		tenuSpin 20s linear infinite;
}

.tenu-orbit-ring::before,
.tenu-orbit-ring::after {
	content: "";

	position: absolute;

	width: 7px;
	height: 7px;

	background:
		rgba(255, 255, 255, 0.42);

	border-radius: 50%;
}

.tenu-orbit-ring::before {
	top: 8%;
	left: 22%;
}

.tenu-orbit-ring::after {
	right: 6%;
	bottom: 26%;
}

.tenu-orbit-main {
	position: absolute;
	top: 50%;
	left: 50%;

	color: rgba(255, 255, 255, 0.055);

	font-size: clamp(120px, 16vw, 230px);
	line-height: 1;

	transform:
		translate(-50%, -50%);
}

.tenu-orbit-small {
	position: absolute;

	color: rgba(255, 255, 255, 0.2);

	font-size: 30px;
}

.tenu-orbit-a {
	top: 5%;
	right: 20%;

	animation:
		tenuFloatOne 5s ease-in-out infinite;
}

.tenu-orbit-b {
	left: 3%;
	bottom: 24%;

	animation:
		tenuFloatTwo 6s ease-in-out infinite;
}

.tenu-inspiration-glow {
	position: absolute;
	top: 15%;
	right: 5%;

	width: 350px;
	height: 350px;

	background:
		rgba(255, 255, 255, 0.05);

	border-radius: 50%;

	filter: blur(90px);

	animation:
		tenuGlow 6s ease-in-out infinite;
}

.tenu-flow-line {
	position: absolute;
	right: 0;
	bottom: -25px;
	left: 0;

	width: 100%;
	height: 190px;

	opacity: 0.14;
}

.tenu-flow-line path {
	fill: none;
	stroke: #ffffff;
	stroke-width: 1.1;
	stroke-dasharray: 12 14;

	animation:
		tenuDash 15s linear infinite;
}


/* =====================================================
   MEANING
===================================================== */

.tenu-meaning {
	position: relative;

	background:
		radial-gradient(
			circle at 90% 15%,
			rgba(78, 50, 33, 0.07),
			transparent 25%
		),
		var(--tenu-cream);
}

.tenu-meaning .tenu-about-container {
	padding-top: clamp(60px, 7vw, 92px);
	padding-bottom: clamp(60px, 7vw, 92px);
}

.tenu-meaning-heading {
	display: grid;
	grid-template-columns:
		minmax(0, 1.2fr)
		minmax(250px, 0.8fr);

	gap: 45px;
	align-items: end;

	margin-bottom: 38px;
}

.tenu-meaning-heading h2 {
	display: flex;
	flex-direction: column;

	margin-bottom: 0;

	color: var(--tenu-primary);

	font-size: clamp(45px, 6vw, 82px);
	font-weight: 400;
	line-height: 0.91;
	letter-spacing: -4px;
}

.tenu-meaning-heading h2 span {
	display: block;
}

.tenu-meaning-heading h2 em {
	color: transparent;

	-webkit-text-stroke:
		1px var(--tenu-primary);
}

.tenu-meaning-intro {
	max-width: 430px;
	margin-bottom: 2px;

	color: rgba(51, 38, 31, 0.64);

	font-size: 14px;
	line-height: 1.75;
}

.tenu-letter-grid {
	display: grid;
	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	border-top:
		1px solid rgba(78, 50, 33, 0.18);

	border-bottom:
		1px solid rgba(78, 50, 33, 0.18);

	perspective: 1000px;
}

.tenu-letter-card {
	position: relative;
	overflow: hidden;

	min-height: 315px;
	padding: 22px;

	border-right:
		1px solid rgba(78, 50, 33, 0.18);

	transform-style: preserve-3d;

	transition:
		transform 0.25s ease,
		background 0.4s ease,
		box-shadow 0.4s ease;
}

.tenu-letter-card:last-child {
	border-right: 0;
}

.tenu-letter-card::before {
	content: "";

	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	height: 0;

	background:
		var(--tenu-primary);

	transition:
		height 0.45s cubic-bezier(.2, .7, .2, 1);
}

.tenu-letter-card:hover::before {
	height: 100%;
}

.tenu-card-index {
	position: relative;
	z-index: 3;

	color: rgba(78, 50, 33, 0.4);

	font-size: 9px;
	letter-spacing: 1.5px;

	transition:
		color 0.35s ease;
}

.tenu-card-letter {
	position: absolute;
	top: 0;
	right: 12px;
	z-index: 2;

	color: rgba(78, 50, 33, 0.065);

	font-family: var(--tenu-heading-font);
	font-size: clamp(125px, 12vw, 185px);
	line-height: 1;

	transition:
		color 0.35s ease,
		transform 0.45s ease;
}

.tenu-card-symbol {
	position: absolute;
	top: 47%;
	left: 50%;
	z-index: 3;

	color: rgba(78, 50, 33, 0.1);

	font-size: 38px;

	opacity: 0;

	transform:
		translate(-50%, -50%)
		scale(0.8);

	transition:
		opacity 0.35s ease,
		transform 0.4s ease,
		color 0.35s ease;
}

.tenu-card-copy {
	position: absolute;
	right: 22px;
	bottom: 24px;
	left: 22px;
	z-index: 3;
}

.tenu-card-copy h3 {
	margin-bottom: 8px;

	color: var(--tenu-primary);

	font-size: clamp(23px, 2vw, 31px);
	font-weight: 400;
	line-height: 1.1;

	transition:
		color 0.35s ease;
}

.tenu-card-copy p {
	max-width: 225px;
	margin-bottom: 0;

	color: rgba(51, 38, 31, 0.66);

	font-size: 12px;
	line-height: 1.65;

	transition:
		color 0.35s ease;
}

.tenu-letter-card:hover {
	z-index: 5;

	box-shadow:
		0 22px 45px rgba(28, 17, 11, 0.16);
}

.tenu-letter-card:hover .tenu-card-index {
	color: rgba(255, 255, 255, 0.44);
}

.tenu-letter-card:hover .tenu-card-letter {
	color: rgba(255, 255, 255, 0.065);

	transform:
		translateY(-8px)
		rotate(-3deg);
}

.tenu-letter-card:hover .tenu-card-symbol {
	color: rgba(255, 255, 255, 0.18);

	opacity: 1;

	transform:
		translate(-50%, -50%)
		scale(1);
}

.tenu-letter-card:hover .tenu-card-copy h3 {
	color: var(--tenu-white);
}

.tenu-letter-card:hover .tenu-card-copy p {
	color: rgba(255, 255, 255, 0.68);
}


/* =====================================================
   PHILOSOPHY
===================================================== */

.tenu-philosophy {
	position: relative;
	overflow: hidden;

	color: var(--tenu-white);
	text-align: center;

	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(255, 255, 255, 0.065),
			transparent 32%
		),
		var(--tenu-darker);
}

.tenu-philosophy-inner {
	padding-top: clamp(65px, 7vw, 98px);
	padding-bottom: clamp(65px, 7vw, 98px);
}

.tenu-philosophy h2 {
	position: relative;
	z-index: 3;

	display: flex;
	flex-direction: column;

	max-width: 940px;

	margin: 0 auto 22px;

	color: var(--tenu-white);

	font-size: clamp(48px, 6.5vw, 88px);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: -4px;
}

.tenu-philosophy h2 em {
	color: transparent;

	-webkit-text-stroke:
		1px rgba(255, 255, 255, 0.52);
}

.tenu-philosophy-inner > p {
	position: relative;
	z-index: 3;

	max-width: 630px;

	margin: 0 auto 32px;

	color: rgba(255, 255, 255, 0.61);

	font-size: 14px;
	line-height: 1.75;
}

.tenu-philosophy-list {
	position: relative;
	z-index: 3;

	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	max-width: 880px;
	margin: 0 auto;

	border-top:
		1px solid rgba(255, 255, 255, 0.12);

	border-bottom:
		1px solid rgba(255, 255, 255, 0.12);
}

.tenu-philosophy-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;

	padding: 22px 16px;

	border-right:
		1px solid rgba(255, 255, 255, 0.12);

	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.tenu-philosophy-item:last-child {
	border-right: 0;
}

.tenu-philosophy-item:hover {
	background:
		rgba(255, 255, 255, 0.05);

	transform:
		translateY(-6px);
}

.tenu-philosophy-item span {
	color: rgba(255, 255, 255, 0.3);

	font-family: var(--tenu-body-font);
	font-size: 8px;
	letter-spacing: 1.5px;
}

.tenu-philosophy-item strong {
	color: var(--tenu-white);

	font-size: clamp(17px, 1.7vw, 23px);
	font-weight: 400;
}

.tenu-philosophy-background-symbol {
	position: absolute;
	top: 50%;
	left: 50%;

	color: rgba(255, 255, 255, 0.022);

	font-family:
		"Noto Sans Egyptian Hieroglyphs",
		"Segoe UI Symbol",
		serif;

	font-size: clamp(280px, 42vw, 600px);
	line-height: 1;

	transform:
		translate(-50%, -50%);

	animation:
		tenuSymbolBreath 6s ease-in-out infinite;

	pointer-events: none;
}

.tenu-philosophy-lines {
	position: absolute;
	inset: 0;

	opacity: 0.16;

	background-image:
		linear-gradient(
			90deg,
			transparent 49.8%,
			rgba(255, 255, 255, 0.11) 50%,
			transparent 50.2%
		);
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes tenuLinePulse {

	0%,
	100% {
		opacity: 0.5;
		transform: scaleX(0.55);
	}

	50% {
		opacity: 1;
		transform: scaleX(1);
	}

}

@keyframes tenuMovingLine {

	0% {
		transform: translateX(-100%);
	}

	50% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(100%);
	}

}

@keyframes tenuMarquee {

	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}

}

@keyframes tenuFloatOne {

	0%,
	100% {
		transform:
			translateY(0)
			rotate(0deg);
	}

	50% {
		transform:
			translateY(-14px)
			rotate(3deg);
	}

}

@keyframes tenuFloatTwo {

	0%,
	100% {
		transform:
			translateY(0)
			rotate(0deg);
	}

	50% {
		transform:
			translateY(11px)
			rotate(-4deg);
	}

}

@keyframes tenuSpin {

	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}

}

@keyframes tenuDash {

	from {
		stroke-dashoffset: 0;
	}

	to {
		stroke-dashoffset: -400;
	}

}

@keyframes tenuGlow {

	0%,
	100% {
		opacity: 0.45;
		transform: scale(0.92);
	}

	50% {
		opacity: 1;
		transform: scale(1.08);
	}

}

@keyframes tenuSymbolBreath {

	0%,
	100% {
		opacity: 0.55;

		transform:
			translate(-50%, -50%)
			scale(0.96);
	}

	50% {
		opacity: 1;

		transform:
			translate(-50%, -50%)
			scale(1.02);
	}

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

	.tenu-story-layout {
		grid-template-columns:
			minmax(220px, 0.9fr)
			minmax(0, 1.1fr);

		gap: 28px;
		align-items: stretch;
	}

	.tenu-story-giant-number {
		font-size: clamp(100px, 18vw, 170px);
		opacity: 0.85;
	}

	.tenu-story-header h2,
	.tenu-meaning-heading h2,
	.tenu-philosophy h2 {
		letter-spacing: -2.2px;
	}

	.tenu-inspiration-layout {
		grid-template-columns:
			minmax(190px, 0.55fr)
			minmax(0, 1.45fr);

		gap: 38px;
	}

	.tenu-orbit-symbol {
		left: 14%;

		opacity: 0.75;
	}

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

	.tenu-letter-card:nth-child(2) {
		border-right: 0;
	}

	.tenu-letter-card:nth-child(1),
	.tenu-letter-card:nth-child(2) {
		border-bottom:
			1px solid rgba(78, 50, 33, 0.18);
	}

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

	.tenu-about-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.tenu-story-layout {
		grid-template-columns: 1fr;
		gap: 24px;

		padding-top: 48px;
		padding-bottom: 40px;
	}

	.tenu-story {
		background: var(--tenu-cream);
	}

	.tenu-story::after {
		background-size: 42px 42px;
	}

	.tenu-story-giant-number {
		top: 12px;
		right: 8px;

		font-size: 96px;
		opacity: 0.65;
	}

	.tenu-story-media {
		order: -1;
		width: 100%;
		max-width: 340px;
		height: auto;
		aspect-ratio: 4 / 5;
		margin-inline: auto;
		padding: 12px 12px 18px 18px;
	}

	.tenu-story-figure {
		position: absolute;
		inset: 12px 12px 18px 18px;
		width: auto;
		height: auto;
	}

	.tenu-story-header {
		margin-bottom: 12px;
	}

	.tenu-story-header h2 {
		margin-bottom: 12px;

		font-size: clamp(36px, 10vw, 44px);
		line-height: 1;
		letter-spacing: -1.6px;
		white-space: normal;
	}

	.tenu-story-header:hover h2 em {
		transform: none;
	}

	.tenu-quote {
		padding: 8px 0 8px 12px;
	}

	.tenu-quote span {
		font-size: 13px;
	}

	.tenu-quote strong {
		font-size: 16px;
	}

	.tenu-story-intro {
		margin-bottom: 12px;
	}

	.tenu-story-intro h3 {
		font-size: 20px;
		letter-spacing: -0.4px;
	}

	.tenu-copy-row {
		grid-template-columns:
			28px minmax(0, 1fr);

		gap: 10px;
		margin-bottom: 14px;
	}

	.tenu-copy-row p {
		font-size: 13px;
	}

	.tenu-statement {
		grid-template-columns:
			28px minmax(0, 1fr);

		gap: 10px;

		padding: 9px 0;
	}

	.tenu-statement:hover {
		padding-right: 0;
		padding-left: 0;
	}

	.tenu-float-one {
		font-size: 100px;
		opacity: 0.7;
	}

	.tenu-float-two {
		bottom: 18%;
		font-size: 48px;
	}

	.tenu-moving-strip {
		padding: 11px 0;
	}

	.tenu-strip-group {
		gap: 20px;

		padding-right: 18px;
		padding-left: 18px;
	}

	.tenu-strip-group span {
		font-size: 8px;
		letter-spacing: 2.2px;
	}

	.tenu-inspiration-layout {
		grid-template-columns: 1fr;
		gap: 18px;

		min-height: auto;

		padding-top: 55px;
		padding-bottom: 62px;
	}

	.tenu-inspiration-visual {
		min-height: 120px;
	}

	.tenu-large-number {
		font-size: 110px;
	}

	.tenu-vertical-word {
		right: 0;
		bottom: 12px;
		left: auto;
	}

	.tenu-orbit-symbol {
		top: 17%;
		left: 82%;

		width: 205px;

		opacity: 0.5;
	}

	.tenu-inspiration-copy h2 {
		margin-bottom: 21px;

		font-size: 43px;
		letter-spacing: -2px;
	}

	.tenu-inspiration-copy > p {
		font-size: 14px;
	}

	.tenu-inspiration-highlight {
		grid-template-columns:
			36px minmax(0, 1fr);

		margin-top: 20px;
		padding: 15px;
	}

	.tenu-inspiration-highlight:hover {
		transform: none;
	}

	.tenu-inspiration-highlight > span {
		font-size: 25px;
	}

	.tenu-inspiration-highlight p {
		font-size: 15px;
	}

	.tenu-meaning .tenu-about-container {
		padding-top: 52px;
		padding-bottom: 52px;
	}

	.tenu-meaning-heading {
		grid-template-columns: 1fr;
		gap: 19px;

		margin-bottom: 31px;
	}

	.tenu-meaning-heading h2 {
		font-size: 45px;
		letter-spacing: -2px;
	}

	.tenu-meaning-intro {
		font-size: 14px;
	}

	.tenu-letter-grid {
		grid-template-columns: 1fr;
	}

	.tenu-letter-card {
		min-height: 250px;

		border-right: 0;
		border-bottom:
			1px solid rgba(78, 50, 33, 0.18);
	}

	.tenu-letter-card:last-child {
		border-bottom: 0;
	}

	.tenu-card-letter {
		font-size: 135px;
	}

	.tenu-letter-card::before {
		display: none;
	}

	.tenu-letter-card:hover {
		box-shadow: none;
		transform: none !important;
	}

	.tenu-letter-card:hover .tenu-card-index {
		color: rgba(78, 50, 33, 0.4);
	}

	.tenu-letter-card:hover .tenu-card-letter {
		color: rgba(78, 50, 33, 0.065);
		transform: none;
	}

	.tenu-letter-card:hover .tenu-card-symbol {
		opacity: 0;
	}

	.tenu-letter-card:hover .tenu-card-copy h3 {
		color: var(--tenu-primary);
	}

	.tenu-letter-card:hover .tenu-card-copy p {
		color: rgba(51, 38, 31, 0.66);
	}

	.tenu-philosophy-inner {
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.tenu-philosophy h2 {
		margin-bottom: 20px;

		font-size: 48px;
		letter-spacing: -2.5px;
	}

	.tenu-philosophy-inner > p {
		margin-bottom: 28px;

		font-size: 14px;
	}

	.tenu-philosophy-list {
		grid-template-columns: 1fr;
	}

	.tenu-philosophy-item {
		padding: 18px 15px;

		border-right: 0;
		border-bottom:
			1px solid rgba(255, 255, 255, 0.12);
	}

	.tenu-philosophy-item:last-child {
		border-bottom: 0;
	}

	.tenu-philosophy-item:hover {
		transform: none;
	}

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

	.tenu-widget.tenu-dynamic-about *,
	.tenu-widget.tenu-dynamic-about *::before,
	.tenu-widget.tenu-dynamic-about *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}

	.tenu-reveal {
		opacity: 1;
		transform: none;
	}

}
