/**
 * Per-template layout.
 *
 * Values are taken from the matching React page component so the rendered pages line up
 * with the original front end.
 */

/* Every page except the home page starts below the fixed navigation. */
.zz-page-top {
	padding-top: var(--nav-height);
}

.zz-page {
	padding: calc(var(--nav-height) + 60px) var(--page-gutter) 80px;
}

.zz-page__inner,
.zz-page--narrow {
	max-width: 800px;
	margin: 0 auto;
}

.zz-prose {
	font-family: 'Lora', serif;
	font-size: 17px;
	line-height: 1.8;
	color: var(--charcoal);
}

.zz-prose h1 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 24px;
}

/* -------------------------------------------------------------------------
 * Shared page hero
 * ---------------------------------------------------------------------- */

.zz-hero {
	background-size: cover;
	background-position: center center;
	padding: 80px var(--page-gutter) 70px;
	text-align: center;
}

.zz-hero__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	text-align: center;
}

.zz-hero__title {
	font-size: clamp(32px, 4vw, 52px);
	color: #fff;
	font-weight: 700;
	margin-top: 12px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.zz-hero__title--plain {
	text-shadow: none;
	margin: 0 0 16px;
}

.zz-hero__subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 12px;
}

/* -------------------------------------------------------------------------
 * Product archive — ProductsPage.jsx
 * ---------------------------------------------------------------------- */

.zz-products {
	background: var(--skin-light);
	padding: 60px var(--page-gutter) 100px;
}

.zz-products__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-filters {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 48px;
	justify-content: center;
}

.zz-filter {
	padding: 10px 24px;
	border-radius: 50px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	color: var(--charcoal);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: all 0.25s ease;
}

.zz-filter.is-active {
	border-color: var(--primary-red);
	background: var(--primary-red);
	color: #fff;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.19);
}

/* -------------------------------------------------------------------------
 * Single product — ProductDetailPage.jsx
 * ---------------------------------------------------------------------- */

.zz-product-crumbs {
	background: var(--skin-light);
	padding: 15px var(--page-gutter);
	border-bottom: 1px solid rgba(192, 57, 43, 0.06);
}

.zz-product-crumbs__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	display: flex;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
}

.zz-product-crumbs__inner a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.zz-product-crumbs__home {
	color: var(--primary-red);
}

.zz-product-crumbs__current {
	color: var(--charcoal);
	font-weight: 600;
}

.zz-product {
	padding: 60px var(--page-gutter);
}

.zz-product__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.zz-product__media {
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(192, 57, 43, 0.06);
	animation: zz-slide-in-left 0.5s var(--ease-out-soft) both;
}

.zz-product__image {
	width: 100%;
	height: 100%;
	max-width: 800px;
	max-height: 800px;
	object-fit: cover;
	margin: 0 auto;
	border-radius: 24px;
	display: block;
}

.zz-product__emoji {
	font-size: 200px;
	margin-bottom: 20px;
}

.zz-product__info {
	animation: zz-slide-in-right 0.5s var(--ease-out-soft) 0.2s both;
}

@keyframes zz-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zz-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.zz-product__title {
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 16px;
}

.zz-product__desc {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 30px;
}

.zz-product__section-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 20px;
}

.zz-product__line {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 15px;
}

.zz-product__line strong {
	color: var(--charcoal);
}

.zz-product__table {
	width: 100%;
	border-collapse: collapse;
}

.zz-product__table tr {
	border-bottom: 1px solid rgba(192, 57, 43, 0.06);
}

.zz-product__table td {
	padding: 12px 0;
}

.zz-product__table-key {
	font-weight: 600;
	color: var(--charcoal);
	width: 40%;
}

.zz-product__table-value {
	color: var(--muted);
}

.zz-product__back {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 50px;
	border: 1.5px solid var(--primary-red);
	background: transparent;
	color: var(--primary-red);
	cursor: pointer;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	margin-top: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.zz-product__back:hover {
	background: var(--primary-red);
	color: #fff;
}

/* -------------------------------------------------------------------------
 * Tabs, shared by the product detail view and the About page
 * ---------------------------------------------------------------------- */

.zz-tabs__nav {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid rgba(192, 57, 43, 0.13);
	margin-bottom: 30px;
}

.zz-tab {
	background: none;
	border: none;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.zz-tab.is-active {
	font-weight: 700;
	color: var(--primary-red);
	border-bottom-color: var(--primary-red);
}

.zz-tabs__panel--enter,
.zz-tabs__panel.is-active {
	animation: zz-panel-in 0.3s ease both;
}

@keyframes zz-panel-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* -------------------------------------------------------------------------
 * Recipe archive — RecipesPage.jsx list view
 * ---------------------------------------------------------------------- */

.section-badge--recipes {
	border-color: rgba(192, 57, 43, 0.15);
}

.zz-recipes {
	background: var(--skin-light);
	padding: 60px var(--page-gutter) 100px;
}

.zz-recipes__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-card--recipe {
	border-color: rgba(192, 57, 43, 0.06);
}

.zz-card__media--recipe {
	height: 350px;
	background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(212, 175, 55, 0.08));
}

.zz-card__body--recipe {
	padding: 24px;
}

.zz-card__title--recipe {
	margin-bottom: 12px;
}

.zz-card__desc--recipe {
	margin-bottom: 20px;
}

/* -------------------------------------------------------------------------
 * Single recipe — RecipesPage.jsx detail view
 * ---------------------------------------------------------------------- */

.zz-recipe {
	background: var(--skin-light);
	padding: 60px var(--page-gutter);
}

.zz-recipe__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-recipe__back-link {
	background: none;
	border: none;
	color: var(--primary-red);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 30px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	animation: zz-slide-in-left 0.4s var(--ease-out-soft) both;
	transition: transform 0.2s ease;
}

.zz-recipe__back-link:hover {
	transform: translateX(-5px);
}

.zz-recipe__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.zz-recipe__media {
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(192, 57, 43, 0.06);
	overflow: hidden;
	animation: zz-slide-in-left 0.5s var(--ease-out-soft) both;
}

.zz-recipe__image {
	width: 100%;
	height: 100%;
	max-width: 800px;
	max-height: 800px;
	object-fit: cover;
	margin: 0 auto;
	border-radius: 24px;
	display: block;
}

.zz-recipe__emoji {
	font-size: 200px;
	padding: 40px;
}

.zz-recipe__info {
	animation: zz-slide-in-right 0.5s var(--ease-out-soft) 0.2s both;
}

.zz-recipe__title {
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 16px;
}

.zz-recipe__desc {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.zz-recipe__masala-row {
	margin-bottom: 20px;
}

.zz-recipe__masala {
	background: var(--primary-red);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	display: inline-block;
}

.zz-recipe__heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--charcoal);
}

.zz-recipe__ingredients {
	background: var(--white);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(192, 57, 43, 0.06);
}

.zz-recipe__section--spaced {
	margin-bottom: 20px;
}

.zz-recipe__section-title {
	background: var(--gold);
	padding: 6px 12px;
	font-weight: 700;
	border-radius: 8px;
	margin-bottom: 12px;
	color: #fff;
	font-size: 13px;
	display: inline-block;
}

.zz-recipe__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 20px;
	margin-top: 12px;
}

.zz-recipe__item {
	font-size: 13px;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 8px;
}

.zz-recipe__tick {
	color: var(--accent-green);
}

.zz-recipe__steps-wrap {
	margin-top: 60px;
	animation: zz-rise-in 0.5s var(--ease-out-soft) 0.3s both;
}

@keyframes zz-rise-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zz-recipe__steps-heading {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary-red);
}

.zz-recipe__steps {
	background: var(--skin-light);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(192, 57, 43, 0.06);
}

.zz-recipe__step {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 16px;
	padding: 12px 20px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.zz-recipe__step-marker {
	min-width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--primary-red);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

.zz-recipe__step-text {
	margin: 0;
	font-size: 14px;
	color: var(--charcoal);
	line-height: 1.6;
	flex: 1;
}

.zz-recipe__back {
	margin-top: 40px;
	animation: zz-fade-in 0.5s ease 0.4s both;
}

@keyframes zz-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* -------------------------------------------------------------------------
 * Home: banner slideshow — BannerSlideshow.jsx
 * ---------------------------------------------------------------------- */

.zz-slideshow {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #000;
	margin-top: var(--nav-height);
}

.zz-slideshow__track {
	position: relative;
	width: 100%;
}

.zz-slideshow__slide {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	z-index: 0;
}

.zz-slideshow__slide--first {
	position: relative;
}

.zz-slideshow__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.zz-slideshow__img {
	width: 100%;
	height: auto;
	display: block;
	filter: brightness(1.05) saturate(1.15);
}

.zz-slideshow__dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.zz-slideshow__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.zz-slideshow__dot.is-active {
	background: var(--primary-red);
}

/* -------------------------------------------------------------------------
 * Home: shared section heading
 * ---------------------------------------------------------------------- */

.zz-section-head {
	text-align: center;
	margin-bottom: 64px;
}

.zz-section-head__rule {
	height: 2px;
	background: var(--primary-red);
	margin: 0 auto 16px;
	border-radius: 2px;
	width: 50px;
	animation: zz-rule-in 0.6s var(--ease-out-soft) both;
}

@keyframes zz-rule-in {
	from {
		width: 0;
	}

	to {
		width: 50px;
	}
}

/* -------------------------------------------------------------------------
 * Home: categories — CategoriesSection.jsx
 * ---------------------------------------------------------------------- */

.zz-categories {
	background: var(--skin-light);
	padding: 40px var(--page-gutter) 60px;
	overflow: hidden;
}

.zz-categories__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-categories__title {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 16px;
	color: var(--charcoal);
}

.zz-categories__intro {
	font-size: 16px;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

.zz-categories__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.zz-cat {
	background: var(--white);
	border-radius: 20px;
	padding: 36px 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	cursor: pointer;
	border: 1px solid rgba(var(--zz-cat-rgb), 0.082);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.zz-cat:hover {
	transform: translateY(-8px) scale(1.01);
}

.zz-cat__icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	background: rgba(var(--zz-cat-rgb), 0.063);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.zz-cat:hover .zz-cat__icon {
	transform: rotate(10deg) scale(1.05);
}

.zz-cat__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--charcoal);
}

.zz-cat__desc {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 16px;
	font-style: italic;
}

.zz-cat__items {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.zz-cat__item {
	font-size: 12px;
	background: rgba(var(--zz-cat-rgb), 0.031);
	padding: 4px 12px;
	border-radius: 50px;
	color: var(--zz-cat-color);
	font-weight: 500;
}

.zz-cat__cta {
	margin-top: auto;
	background: var(--zz-cat-color);
	color: #fff;
	padding: 8px 10px;
	border-radius: 12px;
	font-size: 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: transform 0.2s ease;
}

.zz-cat:hover .zz-cat__cta {
	transform: translateX(5px);
}

/* -------------------------------------------------------------------------
 * Home: our story — AboutPreview.jsx
 * ---------------------------------------------------------------------- */

.zz-story {
	background: var(--skin-warm);
	padding: 100px var(--page-gutter);
	overflow: hidden;
	scroll-margin-top: 80px;
}

.zz-story__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.zz-story__media {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 24px;
	box-shadow: 0 32px 60px rgba(192, 57, 43, 0.15);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.zz-story__media:hover {
	transform: scale(1.01);
}

.zz-story__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.zz-story__scrim {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.zz-story__orb {
	position: absolute;
	border-radius: 50%;
	z-index: 2;
}

.zz-story__orb--gold {
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: rgba(212, 175, 55, 0.1);
	/* The source starts this loop at 30% opacity, so rest there too. */
	opacity: 0.3;
	animation: zz-orb 5s ease-in-out infinite;
}

.zz-story__orb--cream {
	bottom: 0;
	left: 0;
	width: 150px;
	height: 150px;
	background: rgba(244, 219, 200, 0.08);
	display: none;
}

@keyframes zz-orb {
	0%, 100% {
		transform: scale(1);
		opacity: 0.3;
	}

	50% {
		transform: scale(1.3);
		opacity: 0.1;
	}
}

.zz-story__title {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 20px;
	color: var(--charcoal);
	line-height: 1.3;
}

.zz-story__title em {
	color: var(--primary-red);
}

.zz-story__text {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.9;
	margin-bottom: 20px;
}

.zz-story__text--last {
	margin-bottom: 32px;
}

.zz-story__ticks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 36px;
}

.zz-story__tick {
	font-size: 13px;
	color: var(--primary-red);
	font-weight: 500;
	padding: 4px 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

@media (max-width: 768px) {
	.zz-story {
		padding: 40px var(--page-gutter);
		scroll-margin-top: 70px;
	}

	.zz-story__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.zz-story__orb--cream {
		display: block;
	}

	.zz-story__orb--gold {
		animation: none;
		opacity: 1;
	}
}

/* -------------------------------------------------------------------------
 * Home: product highlights — ProductHighlights.jsx
 * ---------------------------------------------------------------------- */

.zz-highlights {
	background: var(--skin-light);
	padding: 100px var(--page-gutter);
}

.zz-highlights__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-highlights__title {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 700;
	margin-top: 16px;
	margin-bottom: 16px;
}

.zz-highlights__cta {
	text-align: center;
	margin-top: 48px;
}

/* -------------------------------------------------------------------------
 * Home: testimonials — Testimonials.jsx
 * ---------------------------------------------------------------------- */

.zz-testimonials {
	background: var(--skin-warm);
	padding: 100px var(--page-gutter);
	position: relative;
	overflow: hidden;
}

.zz-testimonials__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-testimonials__title {
	font-size: clamp(28px, 3.5vw, 42px);
	font-weight: 700;
	margin-top: 16px;
	color: var(--charcoal);
}

.zz-testimonials__intro {
	font-size: 16px;
	color: var(--muted);
	max-width: 500px;
	margin: 12px auto 0;
}

.zz-marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.zz-marquee__track {
	display: flex;
	gap: 28px;
	width: fit-content;
	animation: zz-marquee var(--zz-marquee-duration, 40s) linear infinite;
}

@keyframes zz-marquee {
	from {
		transform: translateX(0);
	}

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

.zz-quote {
	background: var(--white);
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.04);
	width: 350px;
	flex-shrink: 0;
	margin: 0;
}

.zz-quote__text {
	font-size: 15px;
	color: var(--charcoal);
	line-height: 1.8;
	margin: 20px 0;
	font-style: italic;
	border: none;
	padding: 0;
	quotes: none;
}

.zz-quote__person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zz-quote__avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-red), var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
}

.zz-quote__name {
	font-size: 15px;
	font-weight: 700;
	color: var(--charcoal);
	display: block;
}

.zz-quote__role {
	font-size: 12px;
	color: var(--muted);
	display: block;
}

/* -------------------------------------------------------------------------
 * About page — AboutPage.jsx
 * ---------------------------------------------------------------------- */

.zz-about {
	background: var(--white);
}

.zz-hero__title--flush {
	margin: 0;
}

.zz-hero__tagline {
	font-size: clamp(16px, 2vw, 20px);
	margin-top: 12px;
	opacity: 0.9;
	letter-spacing: 1px;
	color: #fff;
}

.zz-about-tabs {
	position: sticky;
	top: var(--nav-height);
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	z-index: 98;
	padding: 0 var(--page-gutter);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.zz-about-tabs__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	display: flex;
	gap: 30px;
	overflow-x: auto;
	white-space: nowrap;
}

.hide-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
	display: none;
}

.zz-about-tab {
	background: none;
	border: none;
	padding: 20px 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--charcoal);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.zz-about-tab.is-active {
	font-weight: 700;
	color: var(--primary-red);
	border-bottom-color: var(--primary-red);
}

@media (max-width: 768px) {
	.desktop-sticky-tabs {
		display: none !important;
	}
}

.zz-about-section {
	padding: 80px var(--page-gutter);
	background: var(--white);
}

.zz-about-section--tinted {
	background: var(--skin-light);
}

.zz-about-section__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-about-section__inner--narrow {
	max-width: 1000px;
}

.zz-about-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	align-items: center;
}

.zz-about-figure {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.zz-about-figure__img {
	width: 100%;
	object-fit: cover;
	display: block;
}

.zz-about-figure__img--4x3 {
	aspect-ratio: 4 / 3;
}

.zz-about-figure__img--3x4 {
	aspect-ratio: 3 / 4;
}

.zz-about__eyebrow {
	color: var(--primary-red);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.zz-about__heading {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 20px;
}

.zz-about__heading--tight {
	margin-top: 10px;
}

.zz-about__text {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 20px;
}

.zz-about__text--last {
	margin-bottom: 0;
}

.zz-about__head {
	text-align: center;
	margin-bottom: 60px;
}

.zz-about__head .zz-about__heading {
	margin-bottom: 16px;
}

.zz-about__lede {
	font-size: 15px;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* The Awards page sets its heading and intro a size larger than the About page does. */
.zz-awards .zz-about__heading {
	font-size: clamp(32px, 4vw, 44px);
}

.zz-awards .zz-about__lede {
	font-size: 16px;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

/* The React layout kept the portrait first at every width. */

/* Timeline */

.zz-timeline {
	position: relative;
	padding: 20px 0;
}

.zz-timeline__line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	top: 0;
	bottom: 0;
	background: rgba(192, 57, 43, 0.082);
}

.zz-timeline__line--active {
	bottom: auto;
	height: 0;
	background: var(--primary-red);
	transform-origin: top;
}

.zz-timeline__item {
	display: flex;
	margin-bottom: 60px;
	position: relative;
	width: 100%;
}

.zz-timeline__item--left {
	justify-content: flex-start;
}

.zz-timeline__item--right {
	justify-content: flex-end;
}

.zz-timeline__dot {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 20px;
	height: 20px;
	background: var(--primary-red);
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.zz-timeline__content {
	width: 45%;
	position: relative;
	background: var(--white);
	padding: 25px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.zz-timeline__item--left .zz-timeline__content {
	text-align: right;
}

.zz-timeline__item--right .zz-timeline__content {
	text-align: left;
}

.zz-timeline__year {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-red);
	margin-bottom: 10px;
}

.zz-timeline__desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 768px) {
	.zz-timeline__line {
		left: 20px;
		transform: none;
	}

	.zz-timeline__item {
		justify-content: flex-end;
	}

	.zz-timeline__dot {
		left: 20px;
		transform: translateX(-50%);
	}

	.zz-timeline__content,
	.zz-timeline__item--left .zz-timeline__content {
		width: calc(100% - 50px);
		text-align: left;
	}
}

/* -------------------------------------------------------------------------
 * Awards page — AwardsPage.jsx
 * ---------------------------------------------------------------------- */

.zz-awards__section {
	padding: 100px var(--page-gutter);
	background: var(--white);
	min-height: 60vh;
}

.zz-awards__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-awards__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.zz-award {
	background: var(--skin-light);
	border-radius: 16px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease;
}

.zz-award:hover {
	transform: translateY(-5px);
}

.zz-award__media {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zz-award__media--placeholder {
	background: rgba(240, 240, 240, 0.38);
	color: var(--charcoal);
	text-align: center;
	padding: 20px;
}

.zz-award__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zz-award__placeholder-note {
	font-size: 12px;
	color: var(--muted);
}

.zz-award__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--charcoal);
}

/* -------------------------------------------------------------------------
 * Careers page — CareersPage.jsx
 * ---------------------------------------------------------------------- */

.zz-careers {
	background: var(--white);
	min-height: 100vh;
}

.zz-careers__section {
	padding: 100px var(--page-gutter);
	background: var(--white);
	min-height: 60vh;
}

.zz-careers__inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

.zz-job {
	background: var(--skin-light);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.04);
	margin-bottom: 28px;
}

.zz-job__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 8px;
}

.zz-job__meta {
	font-size: 13px;
	color: var(--primary-red);
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.zz-job__body {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 24px;
}

/* -------------------------------------------------------------------------
 * Blog listing — BlogPage.jsx
 * ---------------------------------------------------------------------- */

.zz-blog {
	background: var(--skin-warm);
	min-height: 100vh;
}

.zz-blog__hero {
	padding: 80px var(--page-gutter) 70px;
	text-align: center;
	background-size: cover;
	background-position: center;
}

.zz-blog__title {
	font-size: clamp(36px, 5vw, 56px);
	color: #fff;
	margin: 0 0 16px;
	animation: zz-rise-in 0.5s var(--ease-out-soft) both;
}

.zz-blog__title span {
	color: var(--light-gold);
	font-style: italic;
}

.zz-blog__intro {
	max-width: 600px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	line-height: 1.6;
	animation: zz-rise-in 0.5s var(--ease-out-soft) 0.1s both;
}

.zz-blog__list {
	padding: 60px var(--page-gutter) 80px;
}

.zz-blog__list-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.zz-post {
	display: flex;
	flex-direction: row;
	transition: transform 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 40px;
}

.zz-post--last {
	border-bottom: none;
}

.zz-post:hover {
	transform: translateY(-8px);
}

.zz-post__media {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	width: 45%;
	min-height: 300px;
	display: block;
	flex-shrink: 0;
}

.zz-post__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zz-post__category {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(255, 255, 255, 0.9);
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-red);
	backdrop-filter: blur(4px);
}

.zz-post__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	padding: 20px 0 20px 40px;
}

.zz-post__date {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}

.zz-post__title {
	font-size: 22px;
	margin: 0 0 12px;
	color: var(--charcoal);
	line-height: 1.3;
}

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

.zz-post__excerpt {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 24px;
	flex: 1;
}

.zz-post__more {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-red);
	font-weight: 600;
	font-size: 14px;
	margin-top: auto;
	text-decoration: none;
}

@media (max-width: 768px) {
	.zz-post {
		flex-direction: column;
	}

	.zz-post__media {
		width: 100%;
		height: 250px;
		/* The original only overrode height, so the 300px minimum still applies here. */
	}

	.zz-post__body {
		padding: 24px 0 0 0;
	}
}

/* -------------------------------------------------------------------------
 * Single article — SingleBlogPage.jsx
 * ---------------------------------------------------------------------- */

.zz-article-page {
	background: var(--skin-warm);
	min-height: 100vh;
}

.zz-article {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px var(--page-gutter) 80px;
}

.zz-article__back {
	background: none;
	border: none;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 24px;
	transition: color 0.3s ease;
	text-decoration: none;
}

.zz-article__back:hover {
	color: var(--primary-red);
}

.zz-article__head {
	text-align: center;
	margin-bottom: 40px;
}

.zz-article__category {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(192, 57, 43, 0.08);
	color: var(--primary-red);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

.zz-article__title {
	font-size: clamp(32px, 5vw, 48px);
	color: var(--charcoal);
	margin: 0 0 16px;
	line-height: 1.2;
}

.zz-article__date {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
}

.zz-article__media {
	width: 100%;
	height: 50vh;
	min-height: 300px;
	max-height: 500px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	animation: zz-rise-in 0.5s var(--ease-out-soft) both;
}

.zz-article__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zz-article__body {
	font-size: 17px;
	line-height: 1.8;
	color: var(--charcoal);
	font-family: 'Lora', serif;
}

/*
 * React rendered the article as one pre-wrap block, so the gap between paragraphs was a
 * blank line: one line-height. Matching that keeps the spacing identical while still using
 * real paragraphs.
 */
.zz-article__body p {
	margin-bottom: 1.8em;
}

.zz-article__body p:last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
 * Contact page — ContactPage.jsx
 * ---------------------------------------------------------------------- */

.zz-hero__title--contact {
	font-size: clamp(36px, 5vw, 56px);
	margin-top: 12px;
	line-height: 1.2;
	text-shadow: none;
}

.zz-hero__rule {
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 24px auto 20px;
	border-radius: 2px;
}

.zz-hero__lede {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	max-width: 500px;
	margin: 0 auto;
}

.zz-contact {
	background: var(--skin-light);
	padding: 80px var(--page-gutter) 100px;
}

.zz-contact__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
}

.zz-contact__heading {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--charcoal);
}

.zz-contact__intro {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 36px;
}

.zz-contact__row {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.zz-contact__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(192, 57, 43, 0.031);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.zz-contact__row:hover .zz-contact__icon {
	transform: scale(1.05);
}

.zz-contact__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: var(--primary-red);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.zz-contact__value {
	font-size: 14px;
	color: var(--charcoal);
	line-height: 1.6;
}

.zz-contact__value a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.zz-contact__value a:hover {
	color: var(--primary-red);
}

.zz-contact__map {
	margin-top: 24px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: var(--skin-warm);
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}

.zz-contact__map-pin {
	font-size: 28px;
}

.zz-contact__map-label {
	font-size: 12px;
	color: var(--muted);
	font-weight: 500;
}

.zz-contact__card {
	background: var(--white);
	border-radius: 24px;
	padding: 44px 40px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	align-self: start;
}

.zz-contact__card-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--charcoal);
}

.zz-contact__card-note {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 28px;
}

.zz-contact__pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 16px;
}

.zz-input {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	background: var(--white);
	color: var(--charcoal);
	margin-bottom: 16px;
	display: block;
	transition: all 0.3s ease;
}

.zz-input:focus {
	outline: none;
	border-color: var(--primary-red);
}

.zz-input--area {
	resize: vertical;
}

.zz-contact__submit {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
}

@media (max-width: 900px) {
	.zz-contact__inner {
		grid-template-columns: 1fr;
	}
}
