/* ==========================================================
   NEHA TAGAI BHATT
   HTML-DRIVEN HOMEPAGE
========================================================== */

.nta-home {
	--home-gold: #b78946;
	--home-gold-light: #d5b078;
	--home-gold-dark: #8d622d;

	--home-ink: #29231d;
	--home-text: #675f56;
	--home-muted: #897e73;

	--home-ivory: #fcfaf5;
	--home-paper: #f7f1e8;
	--home-cream: #efe5d7;
	--home-white: #fffdfa;

	--home-border: rgba(168, 121, 59, 0.22);

	width: 100%;
	overflow: hidden;

	background: var(--home-ivory);
	color: var(--home-text);
}


/* Remove default WordPress content constraints */

.site-main--home,
.site-main--home > article,
.site-main--home .entry-content,
.site-main--home .wp-block-post-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.site-main--home .entry-content > *,
.site-main--home .wp-block-post-content > * {
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}


/* ==========================================================
   SHARED ELEMENTS
========================================================== */

.nta-home img {
	display: block;

	width: 100%;
	height: auto;
}

.nta-home-eyebrow {
	margin: 0 0 17px;

	color: var(--home-gold-dark);

	font-family: var(--font-body, "Inter", sans-serif);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.31em;
	text-transform: uppercase;
}

.nta-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 17px;

	min-height: 54px;
	padding: 15px 29px;

	font-family: var(--font-body, "Inter", sans-serif);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;

	transition:
		background-color 300ms ease,
		border-color 300ms ease,
		color 300ms ease,
		box-shadow 300ms ease,
		transform 300ms ease;
}

.nta-home-button span {
	font-size: 16px;
	line-height: 1;

	transition: transform 300ms ease;
}

.nta-home-button:hover,
.nta-home-button:focus-visible {
	transform: translateY(-2px);
}

.nta-home-button:hover span,
.nta-home-button:focus-visible span {
	transform: translateX(5px);
}

.nta-home-button--gold {
	border: 1px solid var(--home-gold);

	background:
		linear-gradient(
			135deg,
			#9c692e 0%,
			#be8d4b 52%,
			#986329 100%
		);

	color: #fff;

	box-shadow:
		0 17px 36px rgba(72, 45, 19, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nta-home-button--gold:hover,
.nta-home-button--gold:focus-visible {
	color: #fff;

	box-shadow:
		0 22px 44px rgba(72, 45, 19, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nta-home-button--outline {
	border: 1px solid rgba(141, 98, 45, 0.72);

	background: rgba(255, 253, 250, 0.22);
	color: var(--home-gold-dark);
}

.nta-home-button--outline:hover,
.nta-home-button--outline:focus-visible {
	background: var(--home-gold);
	color: #fff;
}


/* ==========================================================
   HERO
========================================================== */

.nta-home-hero {
	position: relative;

	display: grid;
	grid-template-columns:
		minmax(340px, 0.82fr)
		minmax(0, 1.18fr);
	align-items: stretch;

	min-height: 100vh;
	overflow: hidden;

	background: #e7dbcb;

	isolation: isolate;
}

.nta-home-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;

	overflow: hidden;
}

.nta-home-hero__image img {
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center 28%;

	filter:
		saturate(0.88)
		contrast(0.98)
		brightness(1.04);

	transform: scale(1.002);
}

.nta-home-hero__image-shade {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			90deg,
			rgba(34, 25, 18, 0.88) 0%,
			rgba(39, 29, 21, 0.69) 31%,
			rgba(39, 29, 21, 0.32) 56%,
			rgba(39, 29, 21, 0.08) 79%,
			transparent 100%
		),
		linear-gradient(
			180deg,
			rgba(27, 20, 15, 0.12) 0%,
			transparent 48%,
			rgba(26, 18, 13, 0.25) 100%
		);

	pointer-events: none;
}

.nta-home-hero__content {
	position: relative;
	z-index: 2;

	grid-column: 1;

	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;

	max-width: 690px;

	padding:
		clamp(155px, 14vh, 210px)
		clamp(40px, 6.5vw, 120px)
		clamp(90px, 10vh, 145px);

	color: #fff;
}

.nta-home-hero .nta-home-eyebrow {
	color: #d7aa67;
}

.nta-home-ornament {
	display: flex;
	align-items: center;
	gap: 11px;

	width: 112px;
	margin-bottom: 24px;
}

.nta-home-ornament span {
	flex: 1;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(215, 170, 103, 0.85)
		);
}

.nta-home-ornament span:last-child {
	background:
		linear-gradient(
			90deg,
			rgba(215, 170, 103, 0.85),
			transparent
		);
}

.nta-home-ornament i {
	color: #d7aa67;

	font-size: 9px;
	font-style: normal;
}

.nta-home-hero__title {
	margin: 0;

	color: #fffaf3;

	font-family: var(--font-heading, "Cormorant Garamond", serif);
	font-size: clamp(61px, 6.7vw, 106px);
	font-weight: 500;
	line-height: 0.88;
	letter-spacing: -0.045em;

	text-shadow:
		0 3px 20px rgba(0, 0, 0, 0.17);
}

.nta-home-hero__title em {
	display: block;

	margin-top: 12px;

	color: #e4c38d;

	font-size: 0.69em;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.025em;
}

.nta-home-hero__description {
	max-width: 520px;

	margin: 33px 0 38px;

	color: rgba(255, 255, 255, 0.86);

	font-family: var(--font-body, "Inter", sans-serif);
	font-size: clamp(16px, 1.2vw, 19px);
	font-weight: 300;
	line-height: 1.8;
}

.nta-home-hero__corner {
	position: absolute;
	z-index: 2;

	width: 160px;
	height: 160px;

	border-color: rgba(220, 180, 116, 0.28);
	border-style: solid;

	pointer-events: none;
}

.nta-home-hero__corner--left {
	bottom: 29px;
	left: 29px;

	border-width: 0 0 1px 1px;
}

.nta-home-hero__corner--right {
	top: 116px;
	right: 30px;

	border-width: 1px 1px 0 0;
}


/* ==========================================================
   GALLERY
========================================================== */

.nta-home-gallery {
	position: relative;

	padding:
		clamp(85px, 9vw, 140px)
		clamp(24px, 5vw, 80px)
		clamp(95px, 10vw, 150px);

	overflow: hidden;

	border-top: 1px solid var(--home-border);

	background:
		radial-gradient(
			circle at 7% 12%,
			rgba(184, 135, 70, 0.065),
			transparent 25%
		),
		radial-gradient(
			circle at 94% 83%,
			rgba(184, 135, 70, 0.055),
			transparent 27%
		),
		repeating-linear-gradient(
			0deg,
			rgba(74, 53, 31, 0.01) 0,
			rgba(74, 53, 31, 0.01) 1px,
			transparent 1px,
			transparent 5px
		),
		var(--home-ivory);

	isolation: isolate;
}

.nta-home-gallery__shape {
	position: absolute;
	z-index: -1;

	border: 1px solid rgba(173, 124, 63, 0.09);

	pointer-events: none;
}

.nta-home-gallery__shape--left {
	top: 90px;
	left: -150px;

	width: 310px;
	height: 310px;

	border-radius: 50%;
}

.nta-home-gallery__shape--left::before,
.nta-home-gallery__shape--left::after {
	content: "";

	position: absolute;

	border: 1px solid rgba(173, 124, 63, 0.07);
	border-radius: 50%;
}

.nta-home-gallery__shape--left::before {
	inset: 35px;
}

.nta-home-gallery__shape--left::after {
	inset: 75px;
}

.nta-home-gallery__shape--right {
	right: -110px;
	bottom: 110px;

	width: 250px;
	height: 420px;

	border-radius: 160px 0 0 160px;
}

.nta-home-section-heading {
	position: relative;
	z-index: 2;

	max-width: 720px;

	margin:
		0
		auto
		clamp(48px, 5vw, 72px);

	text-align: center;
}

.nta-home-section-heading h2 {
	margin: 0;

	color: var(--home-ink);

	font-family: var(--font-heading, "Cormorant Garamond", serif);
	font-size: clamp(52px, 5.8vw, 82px);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: 0.08em;
	text-indent: 0.08em;
	text-transform: uppercase;
}

.nta-home-section-heading > p:last-child {
	max-width: 590px;

	margin: 0 auto;

	color: var(--home-muted);

	font-family: var(--font-heading, "Cormorant Garamond", serif);
	font-size: clamp(17px, 1.45vw, 21px);
	font-style: italic;
	line-height: 1.5;
}

.nta-home-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 150px;
	margin: 23px auto 20px;
}

.nta-home-divider span {
	flex: 1;
	height: 1px;

	background:
		linear-gradient(
			90deg,
			transparent,
			var(--home-gold)
		);
}

.nta-home-divider span:last-child {
	background:
		linear-gradient(
			90deg,
			var(--home-gold),
			transparent
		);
}

.nta-home-divider i {
	color: var(--home-gold);

	font-size: 8px;
	font-style: normal;
}


/* ==========================================================
   ARTWORK GRID
========================================================== */

.nta-home-art-grid {
	position: relative;
	z-index: 2;

	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap:
		clamp(38px, 5vw, 74px)
		clamp(20px, 2.8vw, 42px);

	width: min(1420px, 100%);
	margin: 0 auto;
}

.nta-home-art-card {
	min-width: 0;
}

.nta-home-art-card__link {
	display: block;

	color: inherit;
	text-decoration: none;
}

.nta-home-art-card__image {
	position: relative;

	margin: 0;
	padding: clamp(7px, 0.7vw, 11px);

	overflow: hidden;

	border: 1px solid rgba(163, 111, 48, 0.58);

	background:
		linear-gradient(
			145deg,
			#fffefa 0%,
			#f5ecdf 57%,
			#e8d9c4 100%
		);

	box-shadow:
		0 19px 44px rgba(46, 30, 17, 0.09),
		0 4px 12px rgba(46, 30, 17, 0.05);

	transition:
		border-color 400ms ease,
		box-shadow 400ms ease,
		transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nta-home-art-card__image::before {
	content: "";

	position: absolute;
	inset: 3px;
	z-index: 3;

	border: 1px solid rgba(178, 126, 64, 0.25);

	pointer-events: none;
}

.nta-home-art-card__image img {
	width: 100%;
	aspect-ratio: 4 / 5;

	object-fit: cover;

	filter:
		saturate(0.97)
		contrast(1.015);

	transition:
		filter 500ms ease,
		transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nta-home-art-card__overlay {
	position: absolute;
	inset:
		clamp(7px, 0.7vw, 11px);
	z-index: 2;

	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	padding: 22px;

	visibility: hidden;
	opacity: 0;

	background:
		linear-gradient(
			180deg,
			transparent 48%,
			rgba(31, 21, 14, 0.77) 100%
		);

	color: #fff;

	font-family: var(--font-body, "Inter", sans-serif);
	font-size: 9px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.16em;
	text-transform: uppercase;

	transition:
		opacity 350ms ease,
		visibility 350ms ease;
}

.nta-home-art-card__overlay i {
	color: #e3bd7f;

	font-family: Georgia, serif;
	font-size: 19px;
	font-style: normal;
}

.nta-home-art-card__details {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;

	padding: 19px 4px 0;
}

.nta-home-art-card__details h3 {
	margin: 0 0 6px;

	color: var(--home-ink);

	font-family: var(--font-heading, "Cormorant Garamond", serif);
	font-size: clamp(22px, 1.8vw, 29px);
	font-weight: 500;
	line-height: 1.05;
}

.nta-home-art-card__details p {
	margin: 0;

	color: var(--home-muted);

	font-family: var(--font-body, "Inter", sans-serif);
	font-size: 9px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nta-home-art-card__arrow {
	color: var(--home-gold-dark);

	font-family: Georgia, serif;
	font-size: 18px;
	line-height: 1;

	transition: transform 300ms ease;
}

@media (hover: hover) and (pointer: fine) {

	.nta-home-art-card:hover .nta-home-art-card__image {
		border-color: rgba(142, 87, 28, 0.85);

		box-shadow:
			0 31px 67px rgba(45, 28, 14, 0.15),
			0 10px 25px rgba(45, 28, 14, 0.07);

		transform: translateY(-6px);
	}

	.nta-home-art-card:hover .nta-home-art-card__image img {
		filter:
			saturate(1.04)
			contrast(1.025);

		transform: scale(1.035);
	}

	.nta-home-art-card:hover .nta-home-art-card__overlay {
		visibility: visible;
		opacity: 1;
	}

	.nta-home-art-card:hover .nta-home-art-card__arrow {
		transform: translate(4px, -4px);
	}
}


/* ==========================================================
   GALLERY FOOTER
========================================================== */

.nta-home-gallery__footer {
	display: flex;
	align-items: center;
	flex-direction: column;

	margin-top: clamp(62px, 7vw, 100px);

	text-align: center;
}

.nta-home-gallery__footer p {
	margin: 0 0 22px;

	color: var(--home-muted);

	font-family: var(--font-heading, "Cormorant Garamond", serif);
	font-size: clamp(17px, 1.5vw, 21px);
	font-style: italic;
	line-height: 1.5;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

	.nta-home-hero {
		grid-template-columns: 1fr;
	}

	.nta-home-hero__content {
		max-width: 610px;

		padding-right: 48px;
		padding-left: 48px;
	}

	.nta-home-hero__image img {
		object-position: 61% 25%;
	}

	.nta-home-art-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nta-home-hero__corner--right {
		top: 105px;
	}
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

	.nta-home-hero {
		display: flex;
		align-items: flex-end;

		min-height: 760px;
	}

	.nta-home-hero__image img {
		object-position: 64% top;
	}

	.nta-home-hero__image-shade {
		background:
			linear-gradient(
				180deg,
				rgba(24, 18, 13, 0.05) 0%,
				rgba(24, 18, 13, 0.12) 31%,
				rgba(24, 18, 13, 0.82) 70%,
				rgba(24, 18, 13, 0.97) 100%
			);
	}

	.nta-home-hero__content {
		width: 100%;
		max-width: none;

		padding:
			150px
			24px
			60px;
	}

	.nta-home-ornament {
		margin-bottom: 17px;
	}

	.nta-home-hero__title {
		font-size: clamp(50px, 14vw, 67px);
	}

	.nta-home-hero__title em {
		margin-top: 9px;
	}

	.nta-home-hero__description {
		max-width: 460px;

		margin:
			25px
			0
			29px;

		font-size: 15px;
		line-height: 1.7;
	}

	.nta-home-hero__corner {
		width: 90px;
		height: 90px;
	}

	.nta-home-hero__corner--left {
		bottom: 17px;
		left: 17px;
	}

	.nta-home-hero__corner--right {
		top: 98px;
		right: 17px;
	}

	.nta-home-gallery {
		padding:
			75px
			15px
			90px;
	}

	.nta-home-section-heading {
		margin-bottom: 40px;
	}

	.nta-home-section-heading h2 {
		font-size: clamp(43px, 12vw, 58px);
	}

	.nta-home-section-heading > p:last-child {
		max-width: 325px;

		font-size: 16px;
		line-height: 1.45;
	}

	.nta-home-divider {
		width: 118px;
		margin:
			18px
			auto
			16px;
	}

	.nta-home-art-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap:
			34px
			11px;
	}

	.nta-home-art-card__image {
		padding: 5px;
	}

	.nta-home-art-card__image::before {
		inset: 2px;
	}

	.nta-home-art-card__image img {
		aspect-ratio: 4 / 5;
	}

	.nta-home-art-card__overlay {
		display: none;
	}

	.nta-home-art-card__details {
		gap: 7px;

		padding:
			13px
			2px
			0;
	}

	.nta-home-art-card__details h3 {
		margin-bottom: 4px;

		font-size: clamp(17px, 5vw, 21px);
	}

	.nta-home-art-card__details p {
		font-size: 8px;
		letter-spacing: 0.08em;
	}

	.nta-home-art-card__arrow {
		font-size: 15px;
	}

	.nta-home-gallery__shape--left {
		left: -225px;
	}

	.nta-home-gallery__shape--right {
		right: -190px;
	}
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

	.nta-home-hero {
		min-height: 700px;
	}

	.nta-home-hero__content {
		padding:
			135px
			20px
			46px;
	}

	.nta-home-hero__title {
		font-size: clamp(46px, 13vw, 58px);
	}

	.nta-home-button {
		width: 100%;
		max-width: 310px;
	}

	.nta-home-art-grid {
		gap:
			30px
			9px;
	}

	.nta-home-art-card__details h3 {
		font-size: 17px;
	}
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

	.nta-home *,
	.nta-home *::before,
	.nta-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}