/* ============================================================
   Homepage — pnza-redesign
   Dark-only. Sections rendered by blocks: hero, quality, products,
   brand-story, marquee, newsletter.
   Palette tokens live in base.css under body.pnza-homepage.
   ============================================================ */

.pnza-home-section {
	position: relative;
	background: var(--home-bg);
	color: var(--home-ink);
	font-family: 'Outfit', sans-serif;
}

/* Scroll-reveal base — content is always visible by default so a missing
   IntersectionObserver / broken JS never hides sections. The enter
   animation only activates when the viewport-animations observer adds
   `data-reveal-arm` before firing `.in-view`. */
.pnza-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}

.pnza-reveal[data-reveal-arm="1"] {
	opacity: 0;
	transform: translateY(40px);
}

.pnza-reveal[data-reveal-arm="1"].in-view {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.pnza-reveal,
	.pnza-reveal[data-reveal-arm="1"] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ============================================================
   1. Hero (split)
   ============================================================ */

.pnza-hero2 {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	min-height: 760px;
	background: var(--home-bg);
	overflow: hidden;
	width: 100%;
	max-width: 100vw;
}

/* Text column uses a grid stack so every slide occupies the same cell and
   the cell auto-sizes to the tallest slide's natural content. No absolute
   positioning, so no slide can overflow the column. */
.pnza-hero2__text {
	position: relative;
	padding: 0;
	display: grid;
	grid-template-areas: 'stack';
	grid-template-columns: 1fr;
	order: 1;
	background: var(--home-bg);
	min-height: 760px;
	min-width: 0;
	max-width: 100%;
}

.pnza-hero2__text > .pnza-hero2__slide {
	grid-area: stack;
	position: relative;
	inset: auto;
	padding: 112px 56px 44px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pnza-hero2__media {
	position: relative;
	overflow: hidden;
	background: #000;
	order: 2;
	min-width: 0;
	max-width: 100%;
}

.pnza-hero2__slides {
	position: absolute;
	inset: 0;
}

.pnza-hero2__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	/* Inactive slides stack over the active one — block pointer events so
	   hovers/clicks on the visible CTA actually reach it. */
	pointer-events: none;
	transition: opacity 1.1s cubic-bezier(.4,.1,.2,1);
}

.pnza-hero2__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.pnza-hero2__media img,
.pnza-hero2__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Keep the image almost at natural brightness so the model reads
	   clearly. The gentle contrast + saturate just matches the other
	   cream-lit media on the page. */
	filter: brightness(1) contrast(1.02) saturate(.95);
	display: block;
}

.pnza-hero2__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,.08), transparent 55%);
	pointer-events: none;
	z-index: 2;
}

.pnza-hero2__tag {
	position: absolute;
	top: 120px;
	left: 28px;
	z-index: 3;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.82;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pnza-hero2__tag-dot {
	color: var(--home-hot);
}

.pnza-hero2__counter {
	position: absolute;
	bottom: 26px;
	left: 28px;
	z-index: 3;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.72;
	font-family: 'Outfit', sans-serif;
}

.pnza-hero2__dots {
	position: absolute;
	bottom: 28px;
	right: 28px;
	z-index: 3;
	display: flex;
	gap: 8px;
	color: #fff;
}

.pnza-hero2__dot {
	width: 28px;
	height: 2px;
	background: rgba(255,255,255,0.28);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.4s ease, width 0.4s ease;
}

.pnza-hero2__dot.is-active {
	background: currentColor;
	width: 52px;
}

/* Text column */

.pnza-hero2__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-md);
	color: var(--home-gold);
	letter-spacing: var(--ls-eyebrow);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
}

.pnza-hero2__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-xl);
	line-height: var(--lh-tight);
	letter-spacing: var(--ls-tight-xl);
	font-weight: 800;
	color: var(--home-ink);
	margin: 0;
	text-transform: none;
}

.pnza-hero2__title em,
.pnza-hero2__title .pnza-hero2__title-em {
	font-style: italic;
	color: var(--home-gold);
	font-weight: 400;
}

.pnza-hero2__sub {
	margin-top: var(--sp-5);
	font-size: var(--fs-19);
	line-height: var(--lh-body);
	color: var(--home-muted);
	max-width: var(--mw-prose);
	font-weight: 400;
}

.pnza-hero2__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.pnza-hero2__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-15);
	color: var(--home-ink);
	font-weight: 500;
	padding: 14px 28px;
	border: 1px solid var(--home-ink);
	border-radius: 9999px;
	cursor: pointer;
	text-decoration: none;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s cubic-bezier(.2,.7,.3,1),
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

/* Match the arrow hover treatment: gold-tinted wash + gold border + gold
   ink, with the same -2px lift. Text, doodle icon, and border all inherit
   currentColor so a single declaration flips everything at once. */
a.pnza-hero2__cta:hover,
a.pnza-hero2__cta:focus-visible {
	background: rgba(217, 179, 110, 0.15);
	border-color: var(--home-gold);
	color: var(--home-gold);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(217, 179, 110, 0.2);
}

a.pnza-hero2__cta:active {
	transform: translateY(0);
}

.pnza-hero2__arrows {
	position: absolute;
	bottom: 44px;
	right: 56px;
	display: flex;
	gap: 10px;
	z-index: 4;
}

.pnza-hero2__arrow {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(244, 236, 216, 0.32);
	background: transparent;
	color: var(--home-ink);
	cursor: pointer;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(.2,.7,.3,1);
}

.pnza-hero2__arrow:hover {
	background: rgba(217, 179, 110, 0.15);
	border-color: var(--home-gold);
	color: var(--home-gold);
	transform: translateY(-2px);
}

.pnza-hero2__arrow:active {
	transform: translateY(0);
}

/* Reduced motion — no crossfade */
@media (prefers-reduced-motion: reduce) {
	.pnza-hero2__slide {
		transition: none;
	}
}

/* Mobile: media top, content bottom — flex column so the WHOLE hero caps
   at 80vh and the media shrinks to leave room for the text card. */
@media (max-width: 1099px) {
	.pnza-hero2 {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		grid-template-rows: none;
		min-height: 0;
		max-height: none;
		height: auto;
		padding-inline: 0;
	}
	.pnza-hero2__media {
		order: 1;
		aspect-ratio: 4 / 3;
		flex: 0 0 auto;
		height: auto;
		min-height: 0;
		width: 100%;
		border-radius: 0;
	}
	.pnza-hero2__media img,
	.pnza-hero2__media video {
		object-position: center;
	}
	.pnza-hero2__text {
		order: 2;
		flex: 0 0 auto;
		padding: 0;
		min-height: 0;
		height: auto;
		/* Stack all slides in a single grid cell so the wrapper sizes to the
		   tallest slide. Otherwise the active-only flow on mobile makes the
		   page jump as slides cycle through different copy lengths. */
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}
	/* Hide nav arrows on mobile, swipe takes over. */
	.pnza-hero2__arrows {
		display: none;
	}
	.pnza-hero2__text > .pnza-hero2__slide {
		padding: 22px 24px 72px;
		position: relative;
		inset: auto;
		grid-column: 1;
		grid-row: 1;
	}
	.pnza-hero2__title {
		font-size: var(--fs-display-xl-mobile);
	}
	.pnza-hero2__sub {
		font-size: var(--fs-17);
		margin-top: var(--sp-3);
	}
	.pnza-hero2__footer {
		margin-top: var(--sp-5);
		gap: 10px;
	}
	.pnza-hero2__tag {
		top: 22px;
		left: 22px;
	}
	.pnza-hero2__dots {
		right: 22px;
		bottom: 22px;
	}
	.pnza-hero2__counter {
		left: 22px;
		bottom: 22px;
	}
}

/* ============================================================
   2. Quality grid
   ============================================================ */

.pnza-quality {
	padding: var(--sp-10) max(24px, calc((100vw - var(--mw-site)) / 2));
	background: var(--home-bg);
	border-bottom: 1px solid var(--home-line);
}

.pnza-quality__intro {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 72px;
	align-items: start;
	margin-bottom: var(--sp-10);
}

.pnza-quality__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-lg);
	color: var(--home-gold);
	letter-spacing: var(--ls-eyebrow);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
}

.pnza-quality__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-lg);
	margin: 0;
	color: var(--home-ink);
	letter-spacing: var(--ls-tight);
	font-weight: 800;
	line-height: var(--lh-tight);
	text-transform: none;
}

.pnza-quality__title em,
.pnza-quality__title .pnza-hl {
	/* User requested: this one section's accent word should read as a strong
	   brand mark - upright, heavy, gold. Other sections still use the
	   italic/light treatment from the design. */
	font-style: normal;
	color: var(--home-gold);
	font-weight: 900;
	letter-spacing: -0.055em;
}

.pnza-quality__body {
	font-size: var(--fs-21);
	line-height: var(--lh-body);
	margin: 0;
	color: var(--home-ink);
	opacity: 0.85;
	max-width: var(--mw-prose);
	font-weight: 400;
	align-self: end;
}

.pnza-quality__body .pnza-hl {
	color: var(--home-gold);
}

.pnza-quality__body em {
	font-style: italic;
}

.pnza-quality__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--home-line);
	border: 1px solid var(--home-line);
}

.pnza-quality__card {
	background: var(--home-bg);
	padding: 40px 36px;
	min-height: 220px;
	transition: background 0.3s ease;
}

.pnza-quality__card:hover {
	background: var(--home-bg-2);
}

.pnza-quality__icon {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--home-ink);
	transition: color 0.4s ease, transform 0.5s cubic-bezier(.2,.7,.3,1);
}

.pnza-quality__card:hover .pnza-quality__icon {
	color: var(--home-gold);
	transform: rotate(-6deg) scale(1.1);
}

.pnza-quality__card-title {
	font-size: 22px;
	color: var(--home-ink);
	font-weight: 500;
	letter-spacing: var(--ls-tight);
	margin-bottom: 10px;
}

.pnza-quality__card-body {
	font-size: var(--fs-15);
	color: var(--home-muted);
	line-height: var(--lh-body);
}

@media (max-width: 1099px) {
	.pnza-quality {
		padding: var(--sp-10) max(24px, calc((100vw - var(--mw-site)) / 2));
	}
	.pnza-quality__intro {
		grid-template-columns: 1fr;
		gap: var(--sp-6);
		margin-bottom: var(--sp-8);
	}
	.pnza-quality__grid {
		grid-template-columns: 1fr;
	}
	.pnza-quality__card {
		padding: 32px 24px;
	}
}

/* ============================================================
   3. Products (polaroid, unchanged)
   The polaroid card itself lives in components.css — do not duplicate.
   Only the section wrapper and header get restyled here.
   ============================================================ */

.pnza-products {
	background: var(--home-bg);
	color: var(--home-ink);
	padding: var(--sp-14) max(24px, calc((100vw - var(--mw-site)) / 2));
	position: relative;
	/* Clip decorative doodles that poke past the right/left edges with
	   negative offsets (star_burst right:-60px, zigzag_pair left:-40px,
	   squiggle_marks left:85%). Without this they trigger horizontal
	   scroll on mobile. `clip` (vs `hidden`) preserves position:fixed
	   descendants. */
	overflow: clip;
	border-top: 1px solid var(--home-line);
	border-bottom: 1px solid var(--home-line);
}

.pnza-products__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: var(--sp-9);
	gap: var(--sp-6);
	flex-wrap: wrap;
}

.pnza-products__intro {
	max-width: 720px;
}

.pnza-products__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-md);
	color: var(--home-gold);
	letter-spacing: var(--ls-eyebrow);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
}

.pnza-products__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-lg);
	margin: 0;
	color: var(--home-ink);
	letter-spacing: var(--ls-tight);
	font-weight: 800;
	line-height: var(--lh-tight);
	text-transform: none;
}

.pnza-products__title em,
.pnza-products__title .pnza-hl {
	font-style: italic;
	color: var(--home-gold);
	font-weight: 400;
}

.pnza-products__more {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-15);
	font-weight: 500;
	color: var(--home-ink);
	text-decoration: none;
	padding: 4px 0 6px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	transition: color 0.25s ease;
}

.pnza-products__more:hover {
	color: var(--home-gold);
}

.pnza-products__more-icon {
	color: var(--home-gold);
}

/* 3-col polaroid grid */
.pnza-products__grid {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.pnza-products__grid .pnza-polaroid {
	width: 340px;
}

@media (max-width: 1099px) {
	.pnza-products {
		padding: var(--sp-10) max(24px, calc((100vw - var(--mw-site)) / 2));
	}
	.pnza-products__header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: var(--sp-8);
	}
	.pnza-products__grid {
		gap: var(--sp-5);
	}
	.pnza-products__grid .pnza-polaroid {
		width: 100%;
		max-width: 340px;
	}
}

/* ============================================================
   4. Brand story
   ============================================================ */

.pnza-story2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	border-top: 1px solid var(--home-line);
	border-bottom: 1px solid var(--home-line);
	background: var(--home-bg);
}

.pnza-story2__media {
	position: relative;
	overflow: hidden;
	background: #000;
}

.pnza-story2__media img,
.pnza-story2__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.72) contrast(1.08) saturate(.88);
	display: block;
}

.pnza-story2__tag {
	position: absolute;
	bottom: 28px;
	left: 28px;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.85;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	z-index: 2;
}

.pnza-story2__panel {
	background: var(--home-bg-2);
	padding: 90px 64px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pnza-story2__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-md);
	color: var(--home-gold);
	letter-spacing: var(--ls-eyebrow);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
}

.pnza-story2__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-md);
	margin: 0;
	color: var(--home-ink);
	letter-spacing: var(--ls-tight);
	line-height: var(--lh-display);
	font-weight: 800;
	text-transform: none;
}

.pnza-story2__title em,
.pnza-story2__title .pnza-hl {
	font-style: italic;
	color: var(--home-gold);
	font-weight: 400;
}

.pnza-story2__body {
	margin-top: var(--sp-5);
	font-size: var(--fs-18);
	color: var(--home-ink);
	opacity: 0.78;
	max-width: var(--mw-prose);
	line-height: var(--lh-body);
}

.pnza-story2__cta {
	margin-top: var(--sp-6);
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-15);
	font-weight: 500;
	color: var(--home-ink);
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	padding: 4px 0 6px;
	position: relative;
	transition: color 0.25s ease;
}

.pnza-story2__cta:hover {
	color: var(--home-gold);
}

.pnza-story2__cta-icon {
	color: var(--home-gold);
}

@media (max-width: 1099px) {
	.pnza-story2 {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.pnza-story2__media {
		aspect-ratio: 16 / 10;
	}
	.pnza-story2__panel {
		padding: var(--sp-9) max(24px, calc((100vw - var(--mw-site)) / 2));
	}
}

/* ============================================================
   5. Marquee
   ============================================================ */

.pnza-marquee {
	padding: var(--sp-9) 0;
	overflow: hidden;
	border-bottom: 1px solid var(--home-line);
	background: var(--home-bg);
}

.pnza-marquee__track {
	display: flex;
	width: max-content;
	animation: pnza-marquee-scroll 58s linear infinite;
	white-space: nowrap;
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-display-xl);
	color: var(--home-ink);
	line-height: var(--lh-eyebrow);
}

.pnza-marquee__group {
	display: inline-flex;
	align-items: center;
	gap: 0;
	/* No trailing gap: the group content already ends with the separator
	   dot + space, so the loop seamlessly stitches. */
}

.pnza-marquee__sep {
	display: inline-block;
	padding: 0 0.45em;
	color: var(--home-muted);
}

/* ============================================================
   404 page
   ============================================================ */

.pnza-404 {
	background: var(--home-bg, #0e0d0b);
	color: var(--home-ink, #f4ecd8);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--sp-18) max(24px, calc((100vw - var(--mw-content)) / 2)) var(--sp-14);
}

.pnza-404__inner {
	max-width: 720px;
	text-align: center;
}

.pnza-404__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-md);
	color: var(--home-gold);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
	letter-spacing: var(--ls-eyebrow);
}

.pnza-404__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-xl);
	line-height: var(--lh-tight);
	letter-spacing: var(--ls-tight-xl);
	font-weight: 800;
	margin: 0 0 var(--sp-6);
	color: var(--home-ink);
	text-transform: none;
}

.pnza-404__title .pnza-hl {
	font-style: italic;
	color: var(--home-gold);
	font-weight: 400;
}

.pnza-404__body {
	font-size: var(--fs-19);
	color: var(--home-muted);
	max-width: var(--mw-prose);
	margin: 0 auto var(--sp-6);
	line-height: var(--lh-body);
}

.pnza-404__actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	justify-content: center;
}

.pnza-404__actions .pnza-hero2__cta {
	min-width: 220px;
	justify-content: center;
}

.pnza-404__actions .pnza-hero2__cta--outline {
	color: #d9b36e;
	border-color: #d9b36e;
}

.pnza-marquee__group .pnza-hl {
	color: var(--home-gold);
}

.pnza-marquee__group .pnza-dim {
	color: var(--home-muted);
}

@keyframes pnza-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

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

/* Mobile — faster scroll so the message turns over before users scroll past. */
@media (max-width: 768px) {
	.pnza-marquee__track {
		animation-duration: 28s !important;
	}
}

/* ============================================================
   6. Newsletter
   ============================================================ */

.pnza-newsletter2 {
	padding: var(--sp-14) max(24px, calc((100vw - var(--mw-site)) / 2));
	background: var(--home-bg);
	text-align: center;
}

.pnza-newsletter2__eyebrow {
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-eyebrow-lg);
	color: var(--home-gold);
	letter-spacing: var(--ls-eyebrow);
	line-height: var(--lh-eyebrow);
	margin-bottom: var(--sp-3);
}

.pnza-newsletter2__title {
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-display-md);
	margin: 0;
	color: var(--home-ink);
	letter-spacing: var(--ls-tight);
	font-weight: 800;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	line-height: var(--lh-display);
	text-transform: none;
}

.pnza-newsletter2__title em,
.pnza-newsletter2__title .pnza-hl {
	font-style: italic;
	color: var(--home-gold);
	font-weight: 400;
}

.pnza-newsletter2__form {
	max-width: var(--mw-form);
	margin: var(--sp-8) auto 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: opacity 0.4s ease;
}

.pnza-newsletter2__form.is-submitted .pnza-newsletter2__row,
.pnza-newsletter2__form.is-submitted .pnza-newsletter2__consent {
	display: none;
}

.pnza-newsletter2__row {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--home-ink);
	padding-bottom: 10px;
	transition: border-color 0.3s ease;
}

.pnza-newsletter2__row:focus-within {
	border-bottom-color: var(--home-gold);
}

/* Honeypot — hidden from humans, visible to dumb bots. */
.pnza-newsletter2__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.pnza-newsletter2__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-14);
	color: var(--home-ink);
	opacity: 0.85;
	cursor: pointer;
	line-height: 1.5;
}

.pnza-newsletter2__consent input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: var(--home-gold);
	cursor: pointer;
}

.pnza-newsletter2__consent a {
	color: var(--home-gold);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pnza-newsletter2__consent a:hover {
	color: var(--home-ink);
}

.pnza-newsletter2__status {
	min-height: 1.4em;
	font-family: 'Amatic SC', cursive;
	font-size: var(--fs-22, 1.5rem);
	letter-spacing: 0.02em;
	text-align: center;
	margin-top: 6px;
}

.pnza-newsletter2__status.is-success {
	color: var(--home-gold);
}

.pnza-newsletter2__status.is-error {
	color: #d97a6c;
}

.pnza-newsletter2__submit:disabled {
	opacity: 0.5;
	cursor: progress;
}

.pnza-newsletter2__icon {
	color: var(--home-gold);
}

.pnza-newsletter2__input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--home-ink);
	padding: 14px 0;
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-21);
	outline: none;
}

.pnza-newsletter2__input::placeholder {
	color: var(--home-muted);
}

.pnza-newsletter2__submit {
	background: transparent;
	border: none;
	color: var(--home-gold);
	font-family: 'Outfit', sans-serif;
	font-size: var(--fs-18);
	cursor: pointer;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.25s cubic-bezier(.2,.7,.3,1), color 0.25s ease;
}

.pnza-newsletter2__submit:hover {
	color: var(--home-ink);
	transform: translateX(4px);
}

.pnza-newsletter2__submit:active {
	transform: translateX(0);
}

@media (max-width: 1099px) {
	.pnza-newsletter2 {
		padding: var(--sp-10) max(24px, calc((100vw - var(--mw-site)) / 2));
	}
	.pnza-newsletter2__eyebrow {
		font-size: var(--fs-eyebrow-md);
	}
}

@media (max-width: 640px) {
	.pnza-newsletter2 {
		padding: var(--sp-10) 20px;
	}
	.pnza-newsletter2__form {
		max-width: 420px;
	}
	.pnza-newsletter2__row {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		border-bottom: none;
		padding-bottom: 0;
	}
	.pnza-newsletter2__icon {
		display: none;
	}
	.pnza-newsletter2__input {
		width: 100%;
		text-align: center;
		padding: 12px 0;
		border-bottom: 1px solid var(--home-ink);
		font-size: var(--fs-18);
		transition: border-color 0.3s ease;
	}
	.pnza-newsletter2__row:focus-within .pnza-newsletter2__input {
		border-bottom-color: var(--home-gold);
	}
	.pnza-newsletter2__consent {
		justify-content: center;
		text-align: left;
	}
	.pnza-newsletter2__submit {
		justify-content: center;
		align-self: center;
		padding: 6px 12px;
	}
	.pnza-newsletter2__submit:hover {
		transform: none;
	}
}
