/* ==========================================================================
   FITOORNAMA — HOMEPAGE LOCK V9
   Clean consolidated replacement for homepage-reference.css
   ========================================================================== */

:root {
	--ivory: #f7f4ed;
	--dim: #efeae0;
	--ink: #111111;
	--muted: rgba(17, 17, 17, 0.68);
	--line: rgba(17, 17, 17, 0.13);
	--forest: #2f4a42;
	--forest-deep: #243a34;
	--gold: #b88a3d;
	--gold-soft: #d7bb83;
	--display: "Cormorant Garamond", serif;
	--body: "Inter", sans-serif;
	--hi: "Noto Serif Devanagari", serif;
	--hisans: "Noto Sans Devanagari", sans-serif;
	--gutter: clamp(24px, 7vw, 120px);
	--max: 1360px;
	--ease: cubic-bezier(0.22, 0.61, 0.19, 1);
}

/* ==========================================================================
   BASE
   ========================================================================== */

body.home {
	margin: 0;
	color: var(--ink);
	background: var(--ivory);
	font-family: var(--body);
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

body.home #page,
body.home .site,
body.home .ast-container,
body.home .site-content,
body.home .content-area {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.home #masthead,
body.home .site-header,
body.home .ast-primary-header-bar {
	display: none !important;
}

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

.fitoornama-home img {
	display: block;
	max-width: 100%;
}

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

.fn-inner {
	width: min(calc(100% - (2 * var(--gutter))), var(--max));
	margin-inline: auto;
}

.fn-section {
	position: relative;
	padding: clamp(58px, 7vw, 96px) 0;
}

.fn-section::before {
	position: absolute;
	top: 0;
	right: var(--gutter);
	left: var(--gutter);
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(184, 138, 61, 0.22),
		transparent
	);
	content: "";
	opacity: 0.65;
}

.fn-daastaan::before,
.fn-featured::before {
	display: none;
}

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

.fn-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.fn-eyebrow::before {
	width: 26px;
	height: 1px;
	background: var(--gold);
	content: "";
	transition: width 0.7s var(--ease);
}

.fn-section-intro.is-visible .fn-eyebrow::before {
	width: 42px;
}

.fn-section-intro {
	max-width: 760px;
	margin: 0 0 clamp(32px, 4vw, 54px);
}

.fn-section-intro h2,
.fn-section-head h2,
.fn-khat h2,
.fn-contact__copy h2 {
	margin: 0;
	color: var(--ink);
	font-family: var(--hi);
	font-size: clamp(22px, 2.05vw, 31px);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.fn-section-intro > p:not(.fn-eyebrow) {
	max-width: 620px;
	margin: 18px 0 0;
	color: var(--muted);
	font: 400 14px/1.8 var(--body);
}

.fn-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(30px, 4vw, 52px);
}

.fn-section-head > p {
	max-width: 610px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.8;
}

.fn-text-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
	padding-bottom: 5px;
	color: var(--forest);
	font-family: var(--hisans);
	font-size: 13px;
	transition: color 0.32s ease, transform 0.32s var(--ease);
}

.fn-text-link::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--forest);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}

.fn-text-link:hover,
.fn-text-link:focus-visible {
	color: #3f6b5f;
	transform: translateX(4px);
}

.fn-text-link:hover::after,
.fn-text-link:focus-visible::after {
	transform: scaleX(1);
}

/* ==========================================================================
   REVEALS
   ========================================================================== */

.fn-reveal,
.fn-reveal-left,
.fn-reveal-right {
	opacity: 0;
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.fn-reveal {
	transform: translateY(28px);
}

.fn-reveal-left {
	transform: translateX(-36px);
}

.fn-reveal-right {
	transform: translateX(36px);
}

.fn-reveal.is-visible,
.fn-reveal-left.is-visible,
.fn-reveal-right.is-visible,
.is-visible {
	opacity: 1;
	transform: none;
}

/* ==========================================================================
   STICKY NAVIGATION
   ========================================================================== */

.fn-nav {
	position: fixed;
	inset: 0 0 auto;
	z-index: 500;
	padding: 12px var(--gutter);
	border-bottom: 1px solid var(--line);
	background: rgba(247, 244, 237, 0.94);
	backdrop-filter: blur(8px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fn-nav.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.fn-nav__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 58px;
	max-width: var(--max);
	margin-inline: auto;
}

.fn-wordmark {
	display: block;
	flex: 0 0 clamp(156px, 14vw, 205px);
	line-height: 0;
}

.fn-wordmark picture,
.fn-wordmark img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 48px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.fn-nav__links {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2.2vw, 34px);
}

.fn-nav__links a,
.fn-hero__menu a,
.fn-footer__links a,
.fn-footer__social a {
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
	font-family: var(--hisans);
	font-size: 13px;
	transition: color 0.28s ease, transform 0.28s var(--ease);
}

.fn-nav__links a::after,
.fn-hero__menu a::after,
.fn-footer__links a::after,
.fn-footer__social a::after {
	position: absolute;
	right: 50%;
	bottom: -7px;
	left: 50%;
	height: 1px;
	background: var(--gold);
	content: "";
	transition: right 0.28s ease, left 0.28s ease;
}

.fn-nav__links a:hover,
.fn-nav__links a.is-current {
	color: var(--forest);
	transform: scale(1.035);
}

.fn-nav__links a:hover::after,
.fn-nav__links a.is-current::after,
.fn-hero__menu a:hover::after,
.fn-hero__menu a.is-current::after,
.fn-footer__links a:hover::after,
.fn-footer__social a:hover::after {
	right: 15%;
	left: 15%;
}

.fn-search-trigger {
	display: inline-grid !important;
	flex: 0 0 auto;
	place-items: center;
	width: 34px;
	height: 34px;
	margin: 0;
	padding: 0 !important;
	border: 0;
	border-radius: 50%;
	color: inherit;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	opacity: 0.72;
	transition: color 0.25s ease, background-color 0.25s ease,
		transform 0.25s ease, opacity 0.25s ease;
}

.fn-search-trigger:hover {
	color: var(--forest);
	background: rgba(47, 74, 66, 0.08);
	opacity: 1;
	transform: scale(1.04);
}

.fn-search-trigger svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.fn-hero {
	position: relative;
	height: 100svh;
	min-height: 640px;
	padding: 0;
	background: var(--ink);
	overflow: hidden;
}

.fn-hero::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(
		circle at 50% 47%,
		rgba(0, 0, 0, 0.04) 0%,
		rgba(0, 0, 0, 0.12) 45%,
		rgba(0, 0, 0, 0.38) 100%
	);
	content: "";
	pointer-events: none;
}

.fn-hero__slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.015);
	transition: opacity 1.8s ease, transform 11s ease;
}

.fn-hero__slide::after {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 50% 50%,
			rgba(17, 17, 17, 0.14) 0%,
			rgba(17, 17, 17, 0.32) 48%,
			rgba(17, 17, 17, 0.48) 100%
		),
		linear-gradient(
			180deg,
			rgba(17, 17, 17, 0.34) 0%,
			rgba(17, 17, 17, 0.24) 42%,
			rgba(17, 17, 17, 0.62) 100%
		);
	content: "";
}

.fn-hero__slide.is-active {
	opacity: 1;
	transform: scale(1.075);
}

.fn-hero__center {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-inline: 24px;
	color: var(--ivory);
	text-align: center;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.fn-hero__logo {
	display: block;
	width: min(720px, 59vw);
	height: auto;
	margin: 0 auto 12px;
	opacity: 0;
	filter: none;
	text-shadow: none;
	animation: fnHeroLogoFade 0.9s 0.15s ease forwards;
}

.fn-hero__logo-static {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	filter: none !important;
	object-fit: contain !important;
	transform: none !important;
}

.fn-hero__lottie,
.fn-hero__logo-fallback {
	display: none !important;
}

@keyframes fnHeroLogoFade {
	to {
		opacity: 1;
	}
}

.fn-hero__rotating {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.94);
	font-family: var(--hi);
	font-size: clamp(13px, 1.1vw, 17px);
	font-style: italic;
	line-height: 1.55;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.fn-hero__rotating.is-changing {
	opacity: 0;
	transform: translateY(5px);
}

.fn-hero__tagline {
	max-width: 780px;
	margin: 9px auto 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.135em;
	line-height: 1.55;
	text-transform: uppercase;
}

.fn-hero__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(13px, 2vw, 30px);
	margin-top: 20px;
}

.fn-hero__menu a {
	color: rgba(255, 255, 255, 0.94);
	font-size: 13px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.fn-hero__menu a:hover,
.fn-hero__menu a.is-current {
	color: #fff;
}

.fn-search-trigger--hero {
	width: 30px;
	height: 30px;
	margin-left: -2px;
	color: rgba(255, 255, 255, 0.92);
	transform: translateY(-1px);
}

.fn-search-trigger--hero:hover {
	color: #fff;
	background: rgba(47, 74, 66, 0.72);
}

.fn-hero__dots {
	position: absolute;
	right: var(--gutter);
	bottom: 38px;
	z-index: 4;
	display: flex;
	gap: 12px;
}

.fn-hero__dot {
	width: 22px;
	height: 2px;
	padding: 0;
	border: 0;
	background: rgba(247, 244, 237, 0.35);
}

.fn-hero__dot.is-active {
	background: var(--gold);
}

.fn-hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: rgba(247, 244, 237, 0.78);
	font-size: 9px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transform: translateX(-50%);
	transition: color 0.3s ease, transform 0.3s ease;
}

.fn-hero__scroll i {
	width: 1px;
	height: 30px;
	background: linear-gradient(var(--gold), transparent);
	animation: fnScrollCue 1.8s ease-in-out infinite;
}

.fn-hero__scroll:hover,
.fn-hero__scroll:focus-visible {
	color: var(--gold);
	transform: translateX(-50%) translateY(2px);
}

@keyframes fnScrollCue {
	0%,
	100% {
		opacity: 0.55;
		transform: scaleY(0.65);
		transform-origin: top;
	}
	50% {
		opacity: 1;
		transform: scaleY(1);
		transform-origin: top;
	}
}

.fn-hero__social {
	position: absolute;
	bottom: clamp(24px, 4vw, 46px);
	left: clamp(20px, 3vw, 48px);
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 13px;
}

.fn-hero__social a {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	color: #fff;
	opacity: 0.54;
	transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.fn-hero__social a:hover {
	color: #d8e1dd;
	opacity: 1;
	transform: translateY(-2px);
}

/* ==========================================================================
   DAASTAAN
   ========================================================================== */

.fn-daastaan {
	background: var(--dim);
}

.fn-daastaan__grid,
.fn-contact__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: clamp(42px, 7vw, 100px);
}

.fn-daastaan__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(30, 30, 30, 0.08);
}

.fn-daastaan__media img,
.fn-contact__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
}

.fn-daastaan__media:hover img,
.fn-contact__media:hover img {
	transform: scale(1.04);
}

.fn-daastaan__copy {
	position: relative;
	max-width: 690px;
	padding-block: 18px;
}

.fn-daastaan__copy::before {
	position: absolute;
	top: -42px;
	right: 2%;
	color: rgba(184, 138, 61, 0.13);
	font-family: var(--display);
	font-size: 128px;
	line-height: 1;
	content: "“";
	pointer-events: none;
}

.fn-daastaan__copy h2 {
	margin: 0 0 24px;
	font-family: var(--display);
	font-size: clamp(33px, 3.25vw, 48px);
	font-weight: 500;
	line-height: 1.14;
}

.fn-daastaan__copy > p:not(.fn-eyebrow):not(.fn-hi-lede),
.fn-contact__copy p {
	max-width: 62ch;
	margin: 0 0 15px;
	color: var(--muted);
	font-size: clamp(13px, 1.05vw, 15px);
	line-height: 1.82;
}

.fn-daastaan__copy .fn-hi-lede {
	margin-top: 22px;
	color: var(--forest);
	font-family: var(--hi);
	font-size: clamp(18px, 1.6vw, 23px);
	font-style: italic;
	line-height: 1.65;
}

/* ==========================================================================
   FEATURED STORIES
   ========================================================================== */

.fn-featured {
	position: relative;
	height: min(900px, 88svh);
	min-height: 720px;
	margin: 0;
	padding: 0;
	color: var(--ink);
	background: #111;
	overflow: hidden;
	isolation: isolate;
}

.fn-featured__stage {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.fn-featured__slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	margin: 0;
	padding: 0;
	visibility: hidden;
	opacity: 0;
	transition: opacity 1.15s ease, visibility 1.15s ease;
}

.fn-featured__slide.is-active {
	z-index: 2;
	visibility: visible;
	opacity: 1;
}

.fn-featured__image {
	position: absolute;
	inset: -2%;
	width: 104%;
	height: 104%;
	margin: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1.015);
	transition: transform 10s linear;
	will-change: transform;
}

.fn-featured__slide.is-active .fn-featured__image {
	transform: scale(1.075);
}

/*
 * Soft ivory editorial veil from the left, with a restrained lower fade.
 * This keeps the image present while making the text area calm and readable.
 */
.fn-featured__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(247, 244, 237, 0.97) 0%,
			rgba(247, 244, 237, 0.92) 18%,
			rgba(247, 244, 237, 0.76) 34%,
			rgba(247, 244, 237, 0.38) 49%,
			rgba(247, 244, 237, 0.08) 66%,
			rgba(247, 244, 237, 0) 78%
		),
		linear-gradient(
			180deg,
			rgba(17, 17, 17, 0.02) 42%,
			rgba(17, 17, 17, 0.12) 72%,
			rgba(17, 17, 17, 0.36) 100%
		);
	pointer-events: none;
}

/* Intro keeps the same shared eyebrow and heading language as other sections. */

.fn-featured__intro {
	position: absolute;
	top: clamp(48px, 6vh, 76px);
	left: calc(var(--gutter) + 12px);
	z-index: 5;
	width: min(620px, calc(100% - (2 * var(--gutter))));
	max-width: 620px;
	margin: 0;
	transform: none;
}

.fn-featured__intro .fn-eyebrow {
	color: var(--muted);
}

.fn-featured__intro h2 {
	margin: 0;
	color: var(--ink);
}

.fn-featured__intro .fn-section-description {
	max-width: 540px;
	margin-top: 16px;
	color: rgba(17, 17, 17, 0.68);
}

/* Story content */

.fn-featured__content {
	position: absolute;
	bottom: clamp(76px, 9vh, 112px);
	left: calc(var(--gutter) + 12px);
	z-index: 5;
	width: min(820px, calc(100% - (2 * var(--gutter))));
	max-width: 820px;
	margin: 0;
	transform: none;
}

.fn-featured__type {
	margin: 0 0 15px;
	color: var(--gold);
	font: 500 10px/1.4 var(--body);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.fn-featured__content h3 {
	max-width: 760px;
	margin: 0;
	color: var(--ink);
	font-family: var(--hi);
	font-size: clamp(38px, 4.2vw, 62px);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-shadow: none;
}

.fn-featured__content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.32s ease;
}

.fn-featured__content h3 a:hover,
.fn-featured__content h3 a:focus-visible {
	color: var(--forest);
}

.fn-featured__excerpt {
	max-width: 610px;
	margin: 21px 0 0;
	color: rgba(17, 17, 17, 0.72);
	font-size: 14px;
	line-height: 1.82;
}

.fn-featured__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	padding-bottom: 5px;
	color: var(--forest);
	font-family: var(--hisans);
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition:
		color 0.32s ease,
		transform 0.32s var(--ease);
}

.fn-featured__link::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--forest);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}

.fn-featured__link span {
	display: inline-block;
	transition: transform 0.32s var(--ease);
}

.fn-featured__link:hover,
.fn-featured__link:focus-visible {
	color: var(--gold);
	transform: translateX(4px);
}

.fn-featured__link:hover::after,
.fn-featured__link:focus-visible::after {
	transform: scaleX(1);
}

.fn-featured__link:hover span,
.fn-featured__link:focus-visible span {
	transform: translateX(5px);
}

/* Controls */

.fn-featured__controls {
	position: absolute;
	right: var(--gutter);
	bottom: clamp(30px, 4vh, 44px);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 16px;
}

.fn-featured__controls button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(17, 17, 17, 0.16);
	border-radius: 0;
	color: var(--forest);
	background: rgba(247, 244, 237, 0.82);
	box-shadow: none;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	backdrop-filter: blur(5px);
	transition: color 0.28s ease, background 0.28s ease,
		border-color 0.28s ease, transform 0.28s var(--ease);
}

.fn-featured__controls button:hover,
.fn-featured__controls button:focus-visible {
	border-color: var(--forest);
	color: var(--ivory);
	background: var(--forest);
	transform: translateY(-2px);
}

.fn-featured__count {
	min-width: 52px;
	color: rgba(247, 244, 237, 0.92);
	font: 500 10px/1 var(--body);
	letter-spacing: 0.16em;
	text-align: center;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.fn-featured__count b {
	font-weight: 600;
}

/* Featured Stories responsive */

@media (max-width: 991px) {
	.fn-featured {
		height: 820px;
		min-height: 720px;
	}

	.fn-featured__shade {
		background:
			linear-gradient(
				90deg,
				rgba(247, 244, 237, 0.96) 0%,
				rgba(247, 244, 237, 0.9) 30%,
				rgba(247, 244, 237, 0.62) 52%,
				rgba(247, 244, 237, 0.12) 78%,
				rgba(247, 244, 237, 0) 100%
			),
			linear-gradient(
				180deg,
				rgba(17, 17, 17, 0) 48%,
				rgba(17, 17, 17, 0.32) 100%
			);
	}

	.fn-featured__intro,
	.fn-featured__content {
		left: 40px;
		width: min(720px, calc(100% - 80px));
	}

	.fn-featured__intro {
		top: 50px;
	}

	.fn-featured__content {
		bottom: 112px;
	}

	.fn-featured__content h3 {
		font-size: clamp(40px, 7vw, 62px);
	}

	.fn-featured__controls {
		right: 40px;
	}
}

@media (max-width: 640px) {
	.fn-featured {
		height: 760px;
		min-height: 700px;
	}

	.fn-featured__image {
		background-position: 58% center;
	}

	.fn-featured__shade {
		background:
			linear-gradient(
				180deg,
				rgba(247, 244, 237, 0.97) 0%,
				rgba(247, 244, 237, 0.9) 34%,
				rgba(247, 244, 237, 0.58) 58%,
				rgba(17, 17, 17, 0.1) 78%,
				rgba(17, 17, 17, 0.44) 100%
			);
	}

	.fn-featured__intro,
	.fn-featured__content {
		right: 24px;
		left: 24px;
		width: auto;
	}

	.fn-featured__intro {
		top: 30px;
	}

	.fn-featured__intro .fn-section-description {
		max-width: 36ch;
		font-size: 13px;
		line-height: 1.65;
	}

	.fn-featured__content {
		bottom: 108px;
	}

	.fn-featured__type {
		margin-bottom: 11px;
		font-size: 9px;
	}

	.fn-featured__content h3 {
		max-width: 12ch;
		font-size: clamp(31px, 10vw, 42px);
		line-height: 1.08;
	}

	.fn-featured__excerpt {
		display: -webkit-box;
		max-width: 40ch;
		margin-top: 16px;
		font-size: 13px;
		line-height: 1.65;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.fn-featured__link {
		margin-top: 18px;
		font-size: 12px;
	}

	.fn-featured__controls {
		right: 24px;
		bottom: 26px;
		gap: 12px;
	}

	.fn-featured__controls button {
		width: 40px;
		height: 40px;
	}

	.fn-featured__count {
		min-width: 46px;
	}
}


/* ==========================================================================
   JOURNAL
   ========================================================================== */

.fn-journal {
	background: var(--dim);
}

.fn-journal__list {
	border-top: 1px solid var(--line);
}

.fn-journal__item {
	display: grid;
	grid-template-columns: 90px 110px 1fr auto;
	align-items: center;
	gap: 22px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
	transition: padding-left 0.4s ease, background 0.4s ease;
}

.fn-journal__item:hover {
	padding-left: 12px;
	background: linear-gradient(
		90deg,
		rgba(47, 74, 66, 0.075),
		transparent 75%
	);
}

.fn-journal__item img {
	width: 90px;
	height: 64px;
	object-fit: cover;
}

.fn-journal__item time {
	color: rgba(17, 17, 17, 0.45);
	font-size: 11px;
}

.fn-journal__item h3 {
	margin: 0;
	font-family: var(--hi);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 500;
}

.fn-journal__item span {
	color: var(--gold);
	transition: color 0.32s ease, transform 0.32s var(--ease);
}

.fn-journal__item:hover span {
	color: #3f6b5f;
	transform: translateX(4px);
}

/* ==========================================================================
   TRAVEL
   ========================================================================== */

.fn-travel__quote,
.fn-cta {
	display: none !important;
}

.fn-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.5vw, 32px);
}

.fn-card {
	transition: transform 0.65s var(--ease);
}

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

.fn-card__media {
	aspect-ratio: 4 / 5;
	background: var(--line);
	overflow: hidden;
}

.fn-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.fn-card:hover img {
	transform: scale(1.06);
}

.fn-card__meta {
	margin: 15px 0 4px;
	color: rgba(17, 17, 17, 0.45);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fn-card h3 {
	margin: 0;
	font-family: var(--hi);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 500;
	transition: color 0.32s ease;
}

.fn-card:hover h3 {
	color: var(--forest);
}

.fn-travel .fn-section-intro > p:not(.fn-eyebrow) {
	max-width: none;
	white-space: nowrap;
}

/* ==========================================================================
   PHOTO STORIES
   ========================================================================== */

.fn-gallery {
	color: var(--ink);
	background: var(--ivory);
}

.fn-gallery .fn-section-head > p,
.fn-gallery .fn-eyebrow {
	color: var(--muted);
}

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

.fn-gallery__item {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	transition: transform 0.65s var(--ease);
}

.fn-gallery__item--wide {
	grid-column: span 2;
	min-height: 520px;
}

.fn-gallery__item:hover {
	transform: translateY(-5px);
}

.fn-gallery__item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
}

.fn-gallery__item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 44%, rgba(17, 17, 17, 0.72));
	content: "";
}

.fn-gallery__item:hover img {
	transform: scale(1.06);
}

.fn-gallery__item div {
	position: absolute;
	bottom: 20px;
	left: 24px;
	z-index: 2;
	color: var(--ivory);
}

.fn-gallery__item p {
	margin: 0;
	color: var(--gold);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.fn-gallery__item h3 {
	margin: 4px 0 0;
	font-family: var(--hi);
	font-size: clamp(18px, 1.8vw, 23px);
	font-weight: 500;
	transition: color 0.32s ease;
}

.fn-gallery__item:hover h3 {
	color: var(--gold-soft);
}

/* ==========================================================================
   CLIENT WORK
   ========================================================================== */

.fn-work__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 28px);
}

.fn-work__item {
	transition: transform 0.65s var(--ease);
}

.fn-work__item:hover {
	transform: translateY(-5px);
}

.fn-work__item > div {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.fn-work__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.fn-work__item > div span {
	position: absolute;
	inset: auto 0 0;
	padding: 22px;
	color: var(--ivory);
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.fn-work__item:hover img {
	transform: scale(1.07);
}

.fn-work__item:hover > div span {
	opacity: 1;
}

.fn-work__item h3 {
	margin: 12px 0 2px;
	font-family: var(--hi);
	font-size: 19px;
	font-weight: 500;
	transition: color 0.32s ease;
}

.fn-work__item:hover h3 {
	color: var(--forest);
}

.fn-work__item p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.fn-khat {
	padding-block: clamp(70px, 8vw, 110px);
	text-align: center;
	background: var(--dim);
}

.fn-khat .fn-inner {
	max-width: 900px;
}

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

.fn-khat p {
	color: var(--muted);
	font-family: var(--hisans);
}

.fn-khat small {
	display: block;
	margin: -28px auto 30px;
	color: rgba(17, 17, 17, 0.42);
	font-size: 11px;
}

.fn-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	width: min(660px, 100%);
	margin: 0 auto;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.28);
}

.fn-newsletter input,
.fn-newsletter button {
	display: flex;
	align-items: center;
	height: 48px;
}

.fn-newsletter input {
	min-width: 0;
	width: 100%;
	margin: 0 !important;
	padding: 10px 0 !important;
	border: 0 !important;
	color: var(--ink);
	background: transparent !important;
	box-shadow: none !important;
	font: 400 17px/1.4 var(--hisans);
}

.fn-newsletter input::placeholder {
	color: rgba(47, 74, 66, 0.48);
}

.fn-newsletter button {
	justify-content: center;
	margin: 0 !important;
	padding: 10px 4px !important;
	border: 0 !important;
	color: var(--forest);
	background: transparent !important;
	font: 500 13px/1.4 var(--hisans);
	white-space: nowrap;
	transition: color 0.25s ease, transform 0.25s ease;
}

.fn-newsletter button:hover {
	color: var(--gold);
	transform: translateX(3px);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.fn-contact {
	padding-top: clamp(65px, 8vw, 105px);
	padding-bottom: clamp(75px, 9vw, 120px);
}

.fn-contact__media {
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.fn-outline-button {
	display: inline-block;
	margin-top: 18px;
	padding: 13px 30px;
	border: 1px solid var(--ink);
	font-family: var(--hisans);
	transition: color 0.35s ease, background 0.35s ease,
		border-color 0.35s ease;
}

.fn-outline-button:hover {
	border-color: var(--forest);
	color: var(--ivory);
	background: var(--forest);
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */

.fn-search {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: var(--gutter);
	color: var(--ink);
	background: rgba(247, 244, 237, 0.985);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.fn-search.is-open {
	visibility: visible;
	opacity: 1;
}

.fn-search__inner {
	width: min(980px, calc(100vw - 56px));
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.4s ease, transform 0.55s var(--ease);
}

.fn-search.is-open .fn-search__inner {
	opacity: 1;
	transform: none;
}

.fn-search__eyebrow {
	margin: 0 0 34px;
	color: var(--forest);
	font: 500 10px/1 var(--body);
	letter-spacing: 0.24em;
}

.fn-search__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.35);
}

.fn-search__form input {
	min-width: 0;
	width: 100%;
	min-height: 1.45em;
	padding: 0 !important;
	border: 0 !important;
	outline: 0;
	color: var(--ink);
	background: transparent !important;
	box-shadow: none !important;
	font: 500 clamp(30px, 4.3vw, 58px) / 1.35 var(--hi);
}

.fn-search__form input::placeholder {
	color: rgba(17, 17, 17, 0.28);
}

.fn-search__form button {
	padding: 7px 0 0;
	border: 0;
	color: var(--forest);
	background: transparent;
	font: 500 11px/1 var(--body);
	letter-spacing: 0.12em;
	cursor: pointer;
	white-space: nowrap;
}

.fn-search__hint {
	margin: 18px 0 0;
	color: rgba(17, 17, 17, 0.5);
	font: 400 12px/1.6 var(--body);
}

.fn-search__close {
	position: absolute;
	top: clamp(22px, 4vw, 44px);
	right: clamp(22px, 4vw, 48px);
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.fn-search__close span {
	position: absolute;
	top: 20px;
	left: 8px;
	width: 26px;
	height: 1px;
	background: var(--ink);
}

.fn-search__close span:first-child {
	transform: rotate(45deg);
}

.fn-search__close span:last-child {
	transform: rotate(-45deg);
}

body.fn-search-open {
	overflow: hidden;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.fn-footer {
	min-height: 0;
	padding: 44px var(--gutter) 16px;
	color: rgba(20, 24, 22, 0.82);
	text-align: center;
	background: linear-gradient(145deg, #e7dcc4, #efe6d4 55%, #d8c59b);
}

.fn-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(1180px, 100%);
	margin-inline: auto;
}

.fn-footer__monogram {
	display: block;
	width: clamp(62px, 5.2vw, 78px);
	margin: 0 auto 12px;
	opacity: 0.95;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.fn-footer__monogram:hover {
	opacity: 1;
	transform: translateY(-3px);
}

.fn-footer__monogram img {
	display: block;
	width: 100%;
	height: auto;
	filter: none;
}

.fn-footer__tagline {
	margin: 0 0 16px;
	color: #1f2925;
	font: 400 clamp(14px, 1.25vw, 18px) / 1.52 var(--hi);
}

.fn-footer__links,
.fn-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.fn-footer__links {
	margin: 0 0 11px;
}

.fn-footer__social {
	margin: 0 0 14px;
}

.fn-footer__links a {
	color: rgba(20, 24, 22, 0.72);
	font: 400 12px/1.4 var(--hi);
}

.fn-footer__social a {
	color: rgba(20, 24, 22, 0.58);
	font: 500 9px/1 var(--body);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.fn-footer__links a:hover,
.fn-footer__social a:hover {
	color: var(--forest);
}

.fn-footer__seo {
	max-width: 950px;
	margin: 0 auto 13px;
	color: rgba(20, 24, 22, 0.58);
	font: 400 9px/1.6 var(--body);
	letter-spacing: 0.1em;
}

.fn-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	width: 100%;
	margin-top: 0;
	padding-top: 12px;
	border-top: 1px solid rgba(20, 24, 22, 0.17);
	color: rgba(20, 24, 22, 0.58);
	font: 400 9px/1.5 var(--body);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
	.fn-nav__links {
		display: none;
	}

	.fn-nav__inner {
		justify-content: space-between;
	}

	.fn-search-trigger {
		margin-left: auto;
	}
}

@media (max-width: 900px) {
	.fn-daastaan__grid,
	.fn-contact__grid {
		grid-template-columns: 1fr;
	}

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

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

	.fn-gallery__item--wide {
		grid-column: span 2;
	}

	.fn-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.fn-hero__logo {
		width: min(82vw, 650px);
	}


	.fn-travel .fn-section-intro > p:not(.fn-eyebrow) {
		white-space: normal;
	}
}

@media (max-width: 620px) {
	.fn-nav {
		display: none;
	}

	.fn-hero__center {
		padding-inline: 18px;
	}

	.fn-hero__logo {
		width: 91vw;
		margin-bottom: 4px;
	}

	.fn-hero__menu {
		gap: 11px 17px;
		margin-top: 16px;
	}

	.fn-hero__menu a {
		font-size: 12px;
	}

	.fn-hero__social {
		display: none;
	}

	.fn-section {
		padding: 56px 0;
	}

	.fn-section-intro h2,
	.fn-section-head h2,
	.fn-khat h2,
	.fn-contact__copy h2 {
		font-size: clamp(23px, 7vw, 32px);
	}

	.fn-daastaan__copy h2 {
		font-size: clamp(31px, 9vw, 40px);
	}

	.fn-daastaan__copy::before {
		top: -22px;
		font-size: 90px;
	}







	.fn-card-grid,
	.fn-work__grid,
	.fn-gallery__grid {
		grid-template-columns: 1fr;
	}

	.fn-gallery__item--wide {
		grid-column: auto;
		min-height: 420px;
	}

	.fn-journal__item {
		grid-template-columns: 74px 1fr;
		grid-template-areas:
			"image title"
			"image date";
	}

	.fn-journal__item img {
		grid-area: image;
		width: 74px;
		height: 74px;
	}

	.fn-journal__item h3 {
		grid-area: title;
	}

	.fn-journal__item time {
		grid-area: date;
	}

	.fn-journal__item span {
		display: none;
	}

	.fn-newsletter {
		grid-template-columns: 1fr;
		gap: 4px;
		text-align: left;
	}

	.fn-newsletter button {
		justify-self: start;
	}

	.fn-search__inner {
		width: calc(100vw - 36px);
	}

	.fn-search__form {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fn-search__form input {
		font-size: clamp(28px, 9vw, 42px);
	}

	.fn-search__form button {
		justify-self: start;
	}

	.fn-footer {
		padding: 38px 22px 16px;
	}

	.fn-footer__bottom {
		flex-direction: column;
		gap: 4px;
	}
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.fn-hero__slide,
	.fn-featured__slide,
	.fn-featured__image,
	.fn-reveal,
	.fn-reveal-left,
	.fn-reveal-right,
	.fn-search,
	.fn-search__inner {
		transition: none !important;
	}

	.fn-hero__logo {
		opacity: 1;
		animation: none;
	}

	.fn-hero__scroll i {
		animation: none;
	}

	.fn-reveal,
	.fn-reveal-left,
	.fn-reveal-right {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   FITOORNAMA — HOMEPAGE v1.0 FINAL REFINEMENTS
   Built directly on HOMEPAGE LOCK V9.
   These overrides preserve the approved homepage structure and composition.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Sticky header: social support, spacing, logo sharpness and entrance polish
   -------------------------------------------------------------------------- */

.fn-nav {
	padding-block: 11px;
	transition:
		opacity 0.48s var(--ease),
		transform 0.58s var(--ease),
		background-color 0.35s ease,
		box-shadow 0.35s ease;
}

.fn-nav.is-visible {
	box-shadow: 0 8px 30px rgba(17, 17, 17, 0.045);
}

.fn-nav__inner {
	gap: clamp(16px, 1.8vw, 24px);
}

.fn-wordmark img,
.fn-hero__logo-static,
.fn-footer__monogram img {
	image-rendering: auto;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	transform: translateZ(0);
}

.fn-nav__social {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 11px;
	margin-left: 2px;
}

.fn-nav__social a {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	color: rgba(17, 17, 17, 0.56);
	opacity: 0.86;
	transition:
		color 0.28s ease,
		opacity 0.28s ease,
		transform 0.28s var(--ease);
}

.fn-nav__social a:hover,
.fn-nav__social a:focus-visible {
	color: var(--forest);
	opacity: 1;
	transform: translateY(-2px);
}

.fn-nav__social svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: currentColor;
}

/* --------------------------------------------------------------------------
   Hero: preserve composition, improve spacing and motion rhythm
   -------------------------------------------------------------------------- */

.fn-hero__slide {
	transform: scale(1.012);
	transition:
		opacity 2s ease,
		transform 13s linear;
}

.fn-hero__slide.is-active {
	transform: scale(1.065);
}

.fn-hero__center {
	padding-top: clamp(8px, 1.2vh, 18px);
}

.fn-hero__logo {
	margin-bottom: clamp(10px, 1.25vw, 18px);
	animation-duration: 1.05s;
	animation-timing-function: var(--ease);
}

.fn-hero__rotating {
	margin-top: 6px;
}

.fn-hero__tagline {
	margin-top: 10px;
}

.fn-hero__menu {
	margin-top: clamp(18px, 2.2vw, 24px);
}

.fn-hero__social a {
	color: #fff;
	opacity: 0.68;
}

.fn-hero__social a:hover,
.fn-hero__social a:focus-visible {
	color: #fff;
	opacity: 1;
}

.fn-hero__scroll {
	transition:
		color 0.32s ease,
		transform 0.4s var(--ease),
		opacity 0.32s ease;
}

.fn-hero__scroll i {
	animation-duration: 2.15s;
}

/* --------------------------------------------------------------------------
   Daastaan teaser: editorial balance without changing the grid
   -------------------------------------------------------------------------- */

.fn-daastaan__copy {
	padding-block: clamp(12px, 2vw, 24px);
}

.fn-daastaan__copy h2 {
	margin-bottom: clamp(20px, 2.1vw, 28px);
}

.fn-daastaan__copy > p:not(.fn-eyebrow):not(.fn-hi-lede) {
	margin-bottom: 16px;
}

.fn-daastaan__copy .fn-hi-lede {
	margin-top: clamp(20px, 2.2vw, 28px);
}

.fn-daastaan__media {
	transition:
		transform 0.7s var(--ease),
		box-shadow 0.7s var(--ease);
}

.fn-daastaan__media:hover {
	transform: translateY(-4px);
	box-shadow: 0 34px 82px rgba(30, 30, 30, 0.1);
}

/* --------------------------------------------------------------------------
   Featured Stories: transition, controls and text rhythm polish
   -------------------------------------------------------------------------- */

.fn-featured__slide {
	transition:
		opacity 1.35s ease,
		visibility 1.35s ease;
}

.fn-featured__image {
	transition: transform 12s linear;
}

.fn-featured__slide.is-active .fn-featured__image {
	transform: scale(1.066);
}

.fn-featured__content h3 {
	text-wrap: balance;
}

.fn-featured__excerpt {
	text-wrap: pretty;
}

.fn-featured__controls button {
	transition:
		color 0.3s ease,
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.34s var(--ease);
}

.fn-featured__controls button:active {
	transform: translateY(0) scale(0.97);
}

/* --------------------------------------------------------------------------
   Newsletter: precise vertical alignment and cleaner interaction
   -------------------------------------------------------------------------- */

.fn-newsletter {
	align-items: end;
}

.fn-newsletter input,
.fn-newsletter button {
	min-height: 48px;
}

.fn-newsletter input:focus {
	outline: none;
}

.fn-newsletter:focus-within {
	border-bottom-color: var(--forest);
}

.fn-newsletter button {
	padding-inline: 8px !important;
}

/* --------------------------------------------------------------------------
   Contact: finished editorial closing section
   -------------------------------------------------------------------------- */

.fn-contact__copy {
	max-width: 650px;
}

.fn-contact__copy h2 {
	margin-bottom: 20px;
}

.fn-contact__copy p:last-of-type {
	margin-bottom: 0;
}

.fn-contact__media {
	box-shadow: 0 24px 64px rgba(30, 30, 30, 0.07);
	transition:
		transform 0.7s var(--ease),
		box-shadow 0.7s var(--ease);
}

.fn-contact__media:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 76px rgba(30, 30, 30, 0.1);
}

/* --------------------------------------------------------------------------
   Footer: final hierarchy and interaction polish
   -------------------------------------------------------------------------- */

.fn-footer {
	padding-top: 48px;
}

.fn-footer__links a,
.fn-footer__social a {
	transition:
		color 0.28s ease,
		transform 0.28s var(--ease);
}

.fn-footer__links a:hover,
.fn-footer__links a:focus-visible,
.fn-footer__social a:hover,
.fn-footer__social a:focus-visible {
	transform: translateY(-1px);
}

.fn-footer__bottom {
	align-items: center;
}

/* --------------------------------------------------------------------------
   Global animation polish
   -------------------------------------------------------------------------- */

.fn-reveal,
.fn-reveal-left,
.fn-reveal-right {
	transition:
		opacity 0.95s var(--ease),
		transform 0.95s var(--ease);
}

.fn-card,
.fn-gallery__item,
.fn-work__item {
	will-change: transform;
}

/* --------------------------------------------------------------------------
   Final responsive polish
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.fn-nav__social {
		gap: 9px;
	}

	.fn-nav__social a {
		width: 17px;
		height: 17px;
	}
}

@media (max-width: 980px) {
	.fn-nav__social {
		margin-left: auto;
	}

	.fn-search-trigger {
		margin-left: 0;
	}
}

@media (max-width: 900px) {
	.fn-hero__center {
		padding-top: 0;
	}

	.fn-daastaan__copy,
	.fn-contact__copy {
		max-width: 760px;
	}

	.fn-contact__grid {
		gap: 38px;
	}
}

@media (max-width: 620px) {
	.fn-hero {
		min-height: 600px;
	}

	.fn-hero__rotating {
		margin-top: 5px;
	}

	.fn-hero__tagline {
		max-width: 38ch;
		margin-top: 8px;
		font-size: 8px;
		letter-spacing: 0.115em;
	}

	.fn-hero__menu {
		margin-top: 15px;
	}

	.fn-daastaan__copy,
	.fn-contact__copy {
		padding-block: 4px;
	}

	.fn-daastaan__media,
	.fn-contact__media {
		box-shadow: 0 18px 46px rgba(30, 30, 30, 0.07);
	}

	.fn-newsletter input,
	.fn-newsletter button {
		min-height: 44px;
	}

	.fn-footer {
		padding-top: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fn-nav,
	.fn-nav__social a,
	.fn-daastaan__media,
	.fn-contact__media,
	.fn-featured__controls button,
	.fn-footer__links a,
	.fn-footer__social a {
		transition: none !important;
	}

	.fn-daastaan__media:hover,
	.fn-contact__media:hover,
	.fn-featured__controls button:active,
	.fn-footer__links a:hover,
	.fn-footer__social a:hover {
		transform: none;
	}
}


/* ==========================================================================
   MASTER REFINEMENTS — July 2026
   ========================================================================== */

/* Crisp PNG-only wordmarks and improved large-screen hero rhythm. */
.fn-wordmark img,
.fn-hero__logo-static {
	image-rendering: auto;
	backface-visibility: hidden;
}

.fn-nav__actions,
.fn-nav__social {
	display: flex;
	align-items: center;
}

.fn-nav__actions {
	flex: 0 0 auto;
	gap: 10px;
}

.fn-nav__social {
	gap: 8px;
}

.fn-nav__social a {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	color: #111;
	opacity: .78;
	transition: color .28s ease, opacity .28s ease, transform .28s var(--ease);
}

.fn-nav__social a:hover,
.fn-nav__social a:focus-visible {
	color: var(--forest);
	opacity: 1;
	transform: translateY(-2px);
}

.fn-nav__social svg,
.fn-hero__social svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.fn-nav__social svg .fill,
.fn-nav__social svg path:not(.fill-ivory),
.fn-hero__social svg .fill,
.fn-hero__social svg path:not(.fill-ivory) {
	fill: currentColor;
	stroke: none;
}

.fn-nav__social svg .fill-ivory,
.fn-hero__social svg .fill-ivory {
	fill: var(--ivory);
	stroke: none;
}

.fn-hero__logo {
	width: min(780px, 62vw);
	margin-bottom: 18px;
}

.fn-hero__rotating {
	margin-top: 13px;
	font-size: clamp(15px, 1.2vw, 19px);
	line-height: 1.75;
}

.fn-hero__tagline {
	max-width: 860px;
	margin-top: 14px;
	font-size: clamp(9px, .72vw, 11px);
	line-height: 1.7;
}

.fn-hero__menu {
	gap: clamp(16px, 2.15vw, 34px);
	margin-top: 29px;
}

.fn-hero__menu a {
	font-size: clamp(13px, .94vw, 15px);
}

/* Explicit high-contrast controls over photography. */
.fn-hero__social a,
.fn-hero__scroll {
	color: #fff;
	opacity: .92;
	text-shadow: 0 1px 12px rgba(0,0,0,.55);
}

.fn-hero__social a:hover,
.fn-hero__social a:focus-visible,
.fn-hero__scroll:hover,
.fn-hero__scroll:focus-visible {
	color: #fff;
	opacity: 1;
}

.fn-hero__scroll i {
	background: linear-gradient(#fff, rgba(255,255,255,0));
}

/* Featured Stories: clearer separation, calmer title scale, reliable link layer. */
.fn-featured__intro {
	top: clamp(44px, 5.5vh, 70px);
}

.fn-featured__intro h2 {
	margin-top: 8px;
	line-height: 1.12;
}

.fn-featured__intro .fn-section-description {
	margin-top: 13px;
}

.fn-featured__content {
	bottom: clamp(70px, 8vh, 102px);
}

.fn-featured__type {
	margin-bottom: 18px;
	line-height: 1.55;
}

.fn-featured__content h3 {
	max-width: 700px;
	font-size: clamp(32px, 3.7vw, 54px);
	line-height: 1.16;
}

.fn-featured__excerpt {
	margin-top: 18px;
}

.fn-featured__link {
	z-index: 8;
	margin-top: 20px;
	pointer-events: auto !important;
	touch-action: manipulation;
}

/* Newsletter homepage alignment. */
.fn-khat .fn-inner,
.fn-khat .fn-section-intro,
.fn-khat .fn-section-intro > *,
.fn-khat small {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.fn-khat .fn-section-intro {
	display: flex;
	align-items: center;
	flex-direction: column;
}

/* Mulaqat: image-free editorial invitation. */
.fn-contact {
	background: var(--ivory);
}

.fn-contact__editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
	gap: clamp(56px, 9vw, 150px);
	align-items: center;
}

.fn-contact__intro {
	max-width: 720px;
}

.fn-contact__intro h2 {
	max-width: 700px;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(48px, 6.2vw, 92px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: .98;
}

.fn-contact__intro > p:last-child {
	max-width: 620px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.9;
}

.fn-contact__card {
	position: relative;
	padding: clamp(34px, 4.5vw, 60px);
	border-top: 1px solid var(--gold);
	border-bottom: 1px solid rgba(17,17,17,.18);
	background: var(--dim);
}

.fn-contact__note {
	margin: 0 0 38px;
	color: var(--forest);
	font: 400 clamp(22px, 2.2vw, 31px)/1.45 var(--hi);
}

.fn-contact__details {
	display: grid;
	gap: 0;
}

.fn-contact__details a {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 18px;
	padding: 16px 0;
	border-top: 1px solid rgba(17,17,17,.12);
}

.fn-contact__details span {
	color: rgba(17,17,17,.45);
	font-size: 9px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.fn-contact__details strong {
	font-size: 13px;
	font-weight: 400;
}

.fn-contact__cta {
	display: inline-flex;
	gap: 12px;
	margin-top: 34px;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--forest);
	color: var(--forest);
	font-family: var(--hisans);
	font-size: 14px;
	transition: color .3s ease, transform .3s var(--ease);
}

.fn-contact__cta:hover {
	color: var(--gold);
	transform: translateX(4px);
}

/* Footer contact details. */
.fn-footer__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 34px;
	margin: 0 0 14px;
}

.fn-footer__contact a {
	color: rgba(20,24,22,.72);
	font-size: 11px;
}

.fn-footer__contact span {
	margin-right: 8px;
	color: rgba(20,24,22,.42);
	font-size: 8px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.fn-footer__contact a:hover {
	color: var(--forest);
}

@media (max-width: 1100px) {
	.fn-nav__social a:nth-child(n+4) { display: none; }
	.fn-contact__editorial { grid-template-columns: 1fr 1fr; gap: 54px; }
}

@media (max-width: 900px) {
	.fn-nav__social { display: flex; }
	.fn-contact__editorial { grid-template-columns: 1fr; }
	.fn-contact__card { max-width: 620px; }
}

@media (max-width: 620px) {
	.fn-hero__logo { width: 92vw; margin-bottom: 10px; }
	.fn-hero__rotating { margin-top: 8px; font-size: 14px; }
	.fn-hero__tagline { margin-top: 10px; font-size: 8px; }
	.fn-hero__menu { margin-top: 21px; }
	.fn-featured__intro { top: 38px; }
	.fn-featured__content { bottom: 74px; }
	.fn-featured__content h3 { font-size: clamp(29px, 9vw, 40px); }
	.fn-contact__intro h2 { font-size: clamp(42px, 13vw, 64px); }
	.fn-contact__details a { grid-template-columns: 1fr; gap: 5px; }
	.fn-footer__contact { flex-direction: column; gap: 5px; }
}

/* ==========================================================================
   FINAL POLISH — v1.2.0
   ========================================================================== */

/* Keep PNG wordmarks on the pixel grid; GPU promotion was softening fine edges. */
.fn-wordmark img,
.fn-hero__logo-static {
	transform: none !important;
	backface-visibility: visible !important;
	-webkit-font-smoothing: auto;
	image-rendering: auto;
}

.fn-wordmark {
	transform: translateZ(0);
}

/* Scroll cue must remain white over every hero photograph. */
.fn-hero__scroll,
.fn-hero__scroll span,
.fn-hero__scroll:visited {
	color: #fff !important;
	opacity: 1 !important;
	text-shadow: 0 1px 14px rgba(0, 0, 0, .72);
}

.fn-hero__scroll i {
	background: linear-gradient(#fff 0%, rgba(255,255,255,.58) 55%, transparent 100%) !important;
}

/* Featured navigation: light, translucent circular arrows instead of boxes. */
.fn-featured__controls {
	gap: 12px;
}

.fn-featured__controls button {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 50%;
	color: #fff;
	background: rgba(17,17,17,.16);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.fn-featured__controls button:hover,
.fn-featured__controls button:focus-visible {
	border-color: rgba(255,255,255,.9);
	color: #fff;
	background: rgba(47,74,66,.72);
	transform: translateY(-2px) scale(1.04);
}

/* Journal rows: transform-based motion avoids abrupt layout jumps. */
.fn-journal__item {
	position: relative;
	padding-inline: 0;
	transition:
		transform .58s var(--ease),
		background-color .48s ease,
		border-color .48s ease,
		box-shadow .58s var(--ease);
	will-change: transform;
}

.fn-journal__item::before {
	content: "";
	position: absolute;
	inset: 0 -18px;
	z-index: -1;
	background: linear-gradient(90deg, rgba(47,74,66,.075), rgba(47,74,66,.018) 62%, transparent);
	opacity: 0;
	transform: scaleX(.96);
	transform-origin: left center;
	transition: opacity .48s ease, transform .58s var(--ease);
}

.fn-journal__item:hover,
.fn-journal__item:focus-visible {
	padding-left: 0;
	background: transparent;
	transform: translateX(10px);
	box-shadow: -1px 0 0 rgba(184,138,61,.5);
}

.fn-journal__item:hover::before,
.fn-journal__item:focus-visible::before {
	opacity: 1;
	transform: scaleX(1);
}

.fn-journal__item img,
.fn-journal__item h3,
.fn-journal__item time {
	transition: transform .58s var(--ease), color .38s ease, opacity .38s ease;
}

.fn-journal__item:hover img {
	transform: scale(1.035);
}

/* Photo-story titles stay readable on all imagery. */
.fn-gallery__item > div,
.fn-gallery__item > div p,
.fn-gallery__item > div h3,
.fn-gallery__item h3 {
	color: #fff !important;
	text-shadow: 0 2px 18px rgba(0,0,0,.72);
}

.fn-gallery__item::after {
	background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08) 58%, transparent 78%);
}

/* Mulaqat: quiet editorial closing chapter, without duplicate contact details. */
.fn-contact--final {
	position: relative;
	overflow: hidden;
	padding-block: clamp(96px, 12vw, 176px);
	background:
		radial-gradient(circle at 82% 18%, rgba(184,138,61,.09), transparent 32%),
		var(--forest);
	color: var(--ivory);
}

.fn-contact--final::before {
	content: "मुलाक़ात";
	position: absolute;
	right: -1vw;
	bottom: -0.18em;
	color: rgba(247,244,237,.035);
	font: 500 clamp(120px, 22vw, 360px)/.8 var(--hi);
	white-space: nowrap;
	pointer-events: none;
}

.fn-contact__final-inner {
	position: relative;
	z-index: 1;
}

.fn-contact--final .fn-eyebrow {
	color: rgba(247,244,237,.7);
}

.fn-contact__final-rule {
	width: 100%;
	height: 1px;
	margin: clamp(24px, 3vw, 42px) 0 clamp(48px, 6vw, 86px);
	background: linear-gradient(90deg, var(--gold), rgba(247,244,237,.18), transparent);
	transform-origin: left;
}

.fn-contact__final-copy {
	max-width: 920px;
	margin-left: clamp(0px, 8vw, 130px);
}

.fn-contact__final-kicker {
	margin: 0 0 28px;
	color: var(--gold-soft);
	font: 400 clamp(22px, 2.2vw, 34px)/1.5 var(--hi);
}

.fn-contact__final-copy h2 {
	max-width: 880px;
	margin: 0;
	color: var(--ivory);
	font: 500 clamp(48px, 7vw, 104px)/.96 var(--display);
	letter-spacing: -.045em;
	text-wrap: balance;
}

.fn-contact__final-copy > p:not(.fn-contact__final-kicker) {
	max-width: 560px;
	margin: 32px 0 0;
	color: rgba(247,244,237,.66);
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.85;
}

.fn-contact__final-cta {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-top: 42px;
	padding-bottom: 7px;
	border-bottom: 1px solid rgba(247,244,237,.52);
	color: #fff;
	font-family: var(--hisans);
	font-size: 14px;
	letter-spacing: .035em;
	transition: color .35s ease, border-color .35s ease, transform .45s var(--ease);
}

.fn-contact__final-cta:hover,
.fn-contact__final-cta:focus-visible {
	border-color: var(--gold);
	color: var(--gold-soft);
	transform: translateX(6px);
}

/* Layered section entrances and a softer hand-off between homepage chapters. */
.fn-page-reveal {
	position: relative;
	opacity: 0;
	transform: translate3d(0, 54px, 0) scale(.992);
	filter: blur(5px);
	transition:
		opacity 1s ease,
		transform 1.15s var(--ease),
		filter 1s ease;
}

.fn-page-reveal.is-page-visible {
	opacity: 1;
	transform: none;
	filter: none;
}

.fn-page-reveal:not(.fn-featured):not(.fn-contact)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(72vw, 1040px);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(184,138,61,.2), transparent);
	transform: translateX(-50%) scaleX(.68);
	opacity: 0;
	transition: opacity 1.2s .25s ease, transform 1.35s .2s var(--ease);
	pointer-events: none;
}

.fn-page-reveal.is-page-visible:not(.fn-featured):not(.fn-contact)::after {
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

@media (max-width: 767px) {
	.fn-featured__controls button { width: 38px; height: 38px; }
	.fn-contact__final-copy { margin-left: 0; }
	.fn-contact__final-copy h2 { font-size: clamp(43px, 13vw, 68px); }
	.fn-contact--final::before { right: -30vw; }
	.fn-page-reveal { transform: translate3d(0, 34px, 0); filter: blur(3px); }
}

@media (prefers-reduced-motion: reduce) {
	.fn-page-reveal,
	.fn-page-reveal.is-page-visible,
	.fn-journal__item,
	.fn-journal__item::before {
		transition: none !important;
		transform: none !important;
		filter: none !important;
	}
}

/* FINAL MICRO PATCH — crisp wordmark + compact newsletter-style Mulaqat. */
.fn-wordmark img,
.fn-hero__logo-static {
	image-rendering: auto !important;
	transform: none !important;
	filter: none !important;
	backface-visibility: visible !important;
}

.fn-contact--final {
	min-height: 0;
	padding-block: clamp(70px, 8vw, 110px);
	background: var(--forest);
	text-align: center;
}

.fn-contact--final::before {
	content: none !important;
}

.fn-contact__final-inner {
	max-width: 900px;
	margin-inline: auto;
}

.fn-contact--final .fn-eyebrow {
	justify-content: center;
	margin-inline: auto;
	color: rgba(247, 244, 237, .72);
}

.fn-contact__final-rule {
	width: min(92px, 24vw);
	margin: 24px auto 30px;
	background: var(--gold);
}

.fn-contact__final-copy {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.fn-contact__final-kicker {
	margin: 0 auto 16px;
	font-size: clamp(17px, 1.55vw, 23px);
	line-height: 1.55;
}

.fn-contact__final-copy h2 {
	max-width: 680px;
	margin-inline: auto;
	font-size: clamp(34px, 4.2vw, 58px);
	line-height: 1.04;
	letter-spacing: -.03em;
}

.fn-contact__final-copy > p:not(.fn-contact__final-kicker) {
	max-width: 520px;
	margin: 20px auto 0;
	font-size: clamp(13px, 1vw, 15px);
	line-height: 1.75;
}

.fn-contact__final-cta {
	margin-top: 28px;
	font-size: 13px;
}

/* FINAL DETAIL PATCH v1.2.2 — clean wordmark and interactive compact Mulaqat. */
.fn-wordmark img,
.fn-hero__logo-static {
	image-rendering: auto !important;
	filter: none !important;
	transform: translateZ(0) !important;
	will-change: auto !important;
}

.fn-contact--final {
	padding-block: clamp(68px, 7.2vw, 96px);
}

.fn-contact__final-inner {
	max-width: 820px;
}

.fn-contact--final .fn-eyebrow {
	font-size: clamp(10px, .72vw, 12px);
	letter-spacing: .2em;
}

.fn-contact__final-rule {
	position: relative;
	width: min(104px, 28vw);
	height: 1px;
	margin: 20px auto 26px;
	overflow: visible;
	background: rgba(247,244,237,.2);
}

.fn-contact__final-rule i {
	position: absolute;
	top: 50%;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 5px rgba(184,138,61,.09);
	transform: translate(-50%,-50%);
	animation: fnMulaqatDot 4.8s var(--ease) infinite;
}

.fn-contact__final-kicker {
	margin-bottom: 13px;
	font-size: clamp(16px, 1.35vw, 21px);
}

.fn-contact__final-copy h2 {
	max-width: 620px;
	font-size: clamp(30px, 3.35vw, 47px);
	line-height: 1.08;
	letter-spacing: -.025em;
	transition: letter-spacing .65s var(--ease), transform .65s var(--ease);
}

.fn-contact__final-copy:hover h2 {
	letter-spacing: -.012em;
	transform: translateY(-2px);
}

.fn-contact__final-copy > p:not(.fn-contact__final-kicker) {
	margin-top: 16px;
	font-size: clamp(12px, .92vw, 14px);
}

.fn-contact__final-cta {
	position: relative;
	gap: 11px;
	margin-top: 24px;
	padding: 7px 0;
	border-bottom-color: rgba(247,244,237,.38);
	overflow: hidden;
}

.fn-contact__final-cta::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--gold);
	transform: translateX(-105%);
	transition: transform .6s var(--ease);
}

.fn-contact__final-cta b {
	font: inherit;
	transition: transform .5s var(--ease);
}

.fn-contact__final-cta:hover::after,
.fn-contact__final-cta:focus-visible::after {
	transform: translateX(0);
}

.fn-contact__final-cta:hover b,
.fn-contact__final-cta:focus-visible b {
	transform: translate(3px,-3px);
}

@keyframes fnMulaqatDot {
	0%, 12% { left: 0; opacity: .45; }
	42%, 58% { left: 100%; opacity: 1; }
	88%, 100% { left: 0; opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
	.fn-contact__final-rule i { animation: none; left: 50%; }
	.fn-contact__final-copy h2,
	.fn-contact__final-cta::after,
	.fn-contact__final-cta b { transition: none !important; }
}

/* ==========================================================================
   V3.1 — SHARED INNER-SITE EDITORIAL FRAMEWORK
   ========================================================================== */
body:not(.home) .fn-nav {
  position: fixed;
  inset: 0 0 auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: rgba(247,244,237,.96);
  border-bottom: 1px solid rgba(30,30,30,.10);
  box-shadow: 0 8px 30px rgba(30,30,30,.04);
  color: #1e1e1e;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body:not(.home) .fn-nav__links a { color:#1e1e1e; }
body:not(.home) .fn-nav__links a:hover,
body:not(.home) .fn-nav__links a.is-current,
body:not(.home) .fn-nav__links a[aria-current="page"] { color:#2f4a42; }
body:not(.home) .fn-nav__links a.is-current::after,
body:not(.home) .fn-nav__links a[aria-current="page"]::after { transform:scaleX(1); }
body:not(.home) .fn-wordmark { width:205px; }
body:not(.home) .fn-wordmark img { width:100%; height:auto; display:block; }
body:not(.home) .fn-nav__actions { display:flex; align-items:center; justify-content:flex-end; gap:10px; }
body:not(.home) .fn-page-hero { padding-top:78px; }
body:not(.home) .fn-footer { margin-top:0; }
body:not(.home) a { text-decoration:none; }

@media (max-width: 980px) {
  body:not(.home) .fn-nav__inner { grid-template-columns:170px 1fr auto; }
  body:not(.home) .fn-nav__links { overflow-x:auto; justify-content:flex-start; scrollbar-width:none; }
  body:not(.home) .fn-nav__links::-webkit-scrollbar { display:none; }
}
@media (max-width: 720px) {
  body:not(.home) .fn-wordmark { width:150px; }
  body:not(.home) .fn-nav__inner { min-height:68px; width:min(100% - 28px, 1440px); }
  body:not(.home) .fn-nav__links { display:none; }
  body:not(.home) .fn-page-hero { padding-top:68px; }
}
