/*
 * 品御年菜一頁式銷售頁 v2.5.6
 * Architectural monochrome system: high contrast, strict grid, warm brass.
 */

/* OceanWP / theme reset */
.pys-sales-page-active #main,
.pys-sales-page-active #content-wrap,
.pys-sales-page-active .content-area,
.pys-sales-page-active .site-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.pys-sales-page-active .widget-area,
.pys-sales-page-active #right-sidebar,
.pys-sales-page-active #left-sidebar,
.pys-sales-page-active .page-header {
	display: none;
}

.pys-page-main {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* Design tokens and reset */
.pys-landing {
	--pys-accent: #ad9867;
	--pys-gold: #ad9867;
	--pys-button: #ad9867;
	--pys-ink: #0b0a0d;
	--pys-cream: #f2f1ee;
	--pys-max: 1180px;
	--pys-black: #09090b;
	--pys-panel: #121216;
	--pys-white: #fff;
	--pys-paper: #f4f4f2;
	--pys-grey: #6c6c6b;
	--pys-line: rgba(10, 10, 12, .16);
	--pys-line-dark: rgba(255, 255, 255, .17);
	--pys-display: "Arial Narrow", "Roboto Condensed", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
	--pys-body: "SF Pro Text", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
	position: relative;
	width: 100%;
	overflow: clip;
	background: var(--pys-paper);
	color: var(--pys-black);
	font-family: var(--pys-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

.pys-landing *,
.pys-landing *::before,
.pys-landing *::after {
	box-sizing: border-box;
}

/* Order-to-checkout transition */
.pys-order-transition {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
	background:
		radial-gradient(circle at 50% 46%, rgba(173, 152, 103, .16), transparent 34%),
		rgba(9, 9, 11, .94);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .42s ease, visibility 0s linear .42s;
}

.pys-landing.is-order-transitioning .pys-order-transition,
.pys-landing.is-checkout-entry:not(.is-checkout-revealed) .pys-order-transition {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.pys-order-transition__panel {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	width: min(430px, 100%);
	padding: 25px 28px 28px;
	border: 1px solid rgba(173, 152, 103, .56);
	background: rgba(14, 14, 17, .92);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
	color: #fff;
	transform: translateY(10px);
	transition: transform .42s ease;
}

.pys-landing.is-order-transitioning .pys-order-transition__panel,
.pys-landing.is-checkout-entry:not(.is-checkout-revealed) .pys-order-transition__panel {
	transform: translateY(0);
}

.pys-order-transition__mark {
	display: grid;
	width: 58px;
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid var(--pys-gold);
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
}

.pys-order-transition__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.pys-order-transition__copy strong {
	color: #fff;
	font-family: var(--pys-display);
	font-size: 17px;
	font-weight: 800;
	letter-spacing: .06em;
}

.pys-order-transition__copy small {
	color: rgba(255, 255, 255, .58);
	font-size: 10px;
	letter-spacing: .04em;
}

.pys-order-transition__line {
	position: absolute;
	right: 28px;
	bottom: 17px;
	left: 104px;
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, .12);
}

.pys-order-transition__line::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, var(--pys-gold), transparent);
	content: "";
	transform: translateX(-100%);
	animation: pys-order-progress 1.25s ease-in-out infinite;
}

@keyframes pys-order-progress {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.pys-landing img {
	display: block;
	max-width: 100%;
	height: auto;
}

.pys-landing h1,
.pys-landing h2,
.pys-landing h3,
.pys-landing p,
.pys-landing figure,
.pys-landing blockquote {
	margin-top: 0;
}

.pys-landing h1,
.pys-landing h2,
.pys-landing h3 {
	margin-top: 0;
	color: inherit;
	font-family: var(--pys-display);
	font-stretch: condensed;
	font-weight: 800;
	line-height: 1.08;
}

.pys-landing h1 {
	margin-bottom: 26px;
	font-size: clamp(50px, 6.1vw, 92px);
	letter-spacing: -.045em;
}

.pys-landing h2 {
	margin-bottom: 0;
	font-size: clamp(38px, 4.6vw, 66px);
	letter-spacing: -.045em;
}

.pys-landing h3 {
	margin-bottom: 10px;
	font-size: clamp(20px, 1.85vw, 27px);
	letter-spacing: -.025em;
}

.pys-skip-link {
	position: fixed;
	z-index: 100000;
	top: 12px;
	left: 12px;
	transform: translateY(-180%);
	padding: 10px 16px;
	background: #fff;
	color: #111;
}

.pys-skip-link:focus {
	transform: translateY(0);
}

/* Campaign navigation */
.pys-campaign-nav {
	position: absolute;
	z-index: 40;
	top: 0;
	right: 0;
	left: 0;
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
	align-items: center;
	gap: 32px;
	width: min(calc(100% - 72px), 1420px);
	min-height: 82px;
	margin-inline: auto;
	border-bottom: 1px solid rgba(255, 255, 255, .24);
	color: #fff;
}

.pys-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	justify-self: start;
	color: inherit;
	text-decoration: none;
}

.pys-brand:hover,
.pys-brand:focus {
	color: #fff;
	text-decoration: none;
}

.pys-brand-logo {
	display: block;
	width: auto;
	max-width: 230px;
	height: auto;
	max-height: 46px;
	object-fit: contain;
	object-position: left center;
}

.pys-brand strong,
.pys-brand small {
	display: block;
	line-height: 1.25;
}

.pys-brand strong {
	font-family: var(--pys-display);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .12em;
}

.pys-brand small {
	margin-top: 3px;
	opacity: .56;
	font-size: 7px;
	letter-spacing: .22em;
}

.pys-nav-links {
	display: flex;
	align-items: center;
	gap: 34px;
}

.pys-nav-links a {
	position: relative;
	padding: 30px 0 27px;
	color: inherit;
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-decoration: none;
}

.pys-nav-links a::after {
	position: absolute;
	right: 50%;
	bottom: -1px;
	left: 50%;
	height: 2px;
	background: var(--pys-gold);
	content: "";
	transition: right .22s ease, left .22s ease;
}

.pys-nav-links a:hover::after,
.pys-nav-links a:focus-visible::after {
	right: 0;
	left: 0;
}

.pys-nav-cta {
	display: inline-flex;
	min-width: 140px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	justify-self: end;
	border: 1px solid var(--pys-button) !important;
	background: var(--pys-button) !important;
	color: var(--pys-black);
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.pys-nav-cta:hover,
.pys-nav-cta:focus-visible {
	background: transparent !important;
	color: #fff;
	text-decoration: none;
}

/* Shared section architecture */
.pys-section {
	position: relative;
	padding: clamp(94px, 10vw, 154px) 36px;
	isolation: isolate;
}

.pys-section::before,
.pys-section::after {
	position: absolute;
	z-index: -2;
	inset: 0;
	pointer-events: none;
	content: "";
}

.pys-section::after {
	z-index: -1;
}

.pys-container {
	position: relative;
	z-index: 2;
	width: min(100%, var(--pys-max));
	margin-inline: auto;
}

.pys-theme--light,
.pys-theme--paper {
	background: var(--pys-paper);
	color: var(--pys-black);
}

.pys-theme--light::after,
.pys-theme--paper::after {
	opacity: .42;
	background-image: linear-gradient(90deg, transparent 49.94%, rgba(0, 0, 0, .026) 50%, transparent 50.06%);
	background-size: 25% 100%;
}

.pys-theme--dark,
.pys-theme--red {
	background: var(--pys-black);
	color: #fff;
}

.pys-theme--dark::after,
.pys-theme--red::after {
	background-image: linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, .026) 50%, transparent 50.1%);
	background-size: 25% 100%;
}

.pys-section-number {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: max(12px, calc((100vw - var(--pys-max)) / 2 - 84px));
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateY(-50%) rotate(-90deg);
	color: currentColor;
	opacity: .48;
	font-family: var(--pys-display);
	font-style: normal;
	letter-spacing: .18em;
}

.pys-section-number b {
	font-size: 10px;
	font-weight: 800;
}

.pys-section-number i {
	display: block;
	width: 52px;
	height: 1px;
	background: currentColor;
}

.pys-section-number small {
	font-size: 7px;
}

.pys-ghost-word {
	position: absolute;
	z-index: -1;
	top: 3%;
	right: -1.5vw;
	max-width: 100%;
	overflow: hidden;
	color: currentColor;
	opacity: .028;
	font-family: var(--pys-display);
	font-size: clamp(110px, 18vw, 280px);
	font-stretch: condensed;
	font-weight: 900;
	letter-spacing: -.075em;
	line-height: .8;
	white-space: nowrap;
}

.pys-align--center,
.pys-align--center .pys-section-heading {
	text-align: center;
}

.pys-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
	align-items: end;
	gap: clamp(34px, 7vw, 104px);
	margin-bottom: clamp(54px, 7vw, 92px);
}

.pys-align--center .pys-section-heading {
	grid-template-columns: 1fr;
	max-width: 900px;
	margin-inline: auto;
}

.pys-heading-title {
	min-width: 0;
}

.pys-eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 16px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .21em;
	line-height: 1.5;
	text-transform: uppercase;
}

.pys-eyebrow::before {
	display: block;
	width: 34px;
	height: 2px;
	background: currentColor;
	content: "";
}

.pys-align--center .pys-eyebrow,
.pys-cta-inner .pys-eyebrow {
	justify-content: center;
}

.pys-lead,
.pys-hero-lead {
	max-width: 650px;
	margin-bottom: 0;
	color: var(--pys-grey);
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.85;
}

.pys-theme--dark .pys-lead,
.pys-theme--red .pys-lead,
.pys-theme--dark .pys-hero-lead,
.pys-theme--red .pys-hero-lead {
	color: rgba(255, 255, 255, .61);
}

.pys-lead > :last-child,
.pys-hero-lead > :last-child,
.pys-card-text > :last-child,
.pys-dish-body > div > :last-child,
.pys-step > div > div > :last-child,
.pys-faq-answer > :last-child {
	margin-bottom: 0;
}

.pys-grid {
	display: grid;
	gap: 0;
}

.pys-layout--1 .pys-grid { grid-template-columns: minmax(0, 1fr); }
.pys-layout--2 .pys-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pys-layout--3 .pys-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pys-layout--4 .pys-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Hero: full image field with restrained conversion copy */
.pys-section--hero {
	display: grid;
	min-height: max(760px, 100svh);
	align-items: center;
	padding: 118px 36px 58px;
	background: var(--pys-black);
	color: #fff;
}

.pys-section--hero .pys-container {
	width: min(100%, 1420px);
}

.pys-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: minmax(520px, 1fr) auto;
	min-height: 630px;
	overflow: hidden;
	background: #18181c;
}

.pys-hero-media {
	position: absolute;
	z-index: 0;
	inset: 0;
	margin: 0;
	overflow: hidden;
	background: #222226;
}

.pys-hero-media::before {
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 7, 9, .92) 0%, rgba(7, 7, 9, .72) 35%, rgba(7, 7, 9, .26) 72%, rgba(7, 7, 9, .34) 100%),
		linear-gradient(0deg, rgba(7, 7, 9, .86) 0%, transparent 44%);
	content: "";
}

.pys-hero-media::after {
	position: absolute;
	z-index: 3;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, .12);
	content: "";
}

.pys-hero-media img {
	width: 100%;
	height: 100%;
	min-height: 630px;
	object-fit: cover;
	object-position: center;
}

.pys-hero-media.is-placeholder {
	background:
		linear-gradient(120deg, transparent 0 56%, rgba(255, 255, 255, .045) 56.2% 56.5%, transparent 56.7%),
		radial-gradient(circle at 74% 38%, rgba(173, 152, 103, .18), transparent 18%),
		linear-gradient(135deg, #17171b, #08080a);
}

.pys-hero-copy {
	position: relative;
	z-index: 5;
	grid-column: 2 / 8;
	grid-row: 1;
	align-self: center;
	padding: 24px 6vw 72px 0;
}

.pys-hero-caption,
.pys-offer-kicker {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, .5);
	font-family: var(--pys-display);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .24em;
}

.pys-hero-caption span,
.pys-offer-kicker span {
	display: block;
	width: 38px;
	height: 1px;
	background: currentColor;
}

.pys-hero-copy h1 {
	max-width: 770px;
	text-shadow: 0 4px 34px rgba(0, 0, 0, .45);
}

.pys-hero-copy .pys-eyebrow {
	color: var(--pys-gold);
}

.pys-hero-lead {
	max-width: 520px;
	color: rgba(255, 255, 255, .7);
}

.pys-hero-media-line {
	position: absolute;
	z-index: 4;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, .64);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .33em;
	writing-mode: vertical-rl;
}

.pys-hero-facts {
	position: relative;
	z-index: 5;
	grid-column: 5 / 13;
	grid-row: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: rgba(8, 8, 10, .9);
	backdrop-filter: blur(12px);
}

.pys-hero-fact {
	min-height: 128px;
	padding: 27px 28px;
	border-left: 1px solid var(--pys-line-dark);
}

.pys-hero-fact small,
.pys-hero-fact strong,
.pys-hero-fact span {
	display: block;
}

.pys-hero-fact small {
	margin-bottom: 17px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
}

.pys-hero-fact strong {
	margin-bottom: 3px;
	font-family: var(--pys-display);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .025em;
}

.pys-hero-fact span {
	color: rgba(255, 255, 255, .5);
	font-size: 10px;
}

.pys-scroll-cue {
	position: absolute;
	z-index: 6;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgba(255, 255, 255, .5);
	font-size: 7px;
	letter-spacing: .2em;
	text-decoration: none;
	writing-mode: vertical-rl;
}

.pys-scroll-cue i {
	display: block;
	width: 1px;
	height: 38px;
	background: rgba(255, 255, 255, .4);
}

/* Buttons */
.pys-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
}

.pys-align--center .pys-buttons,
.pys-cta-inner .pys-buttons {
	justify-content: center;
}

.pys-button,
.pys-landing button.pys-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none;
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pys-button i {
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	transition: transform .2s ease;
}

.pys-button:hover i,
.pys-button:focus-visible i {
	transform: translateX(5px);
}

.pys-button--primary,
.pys-landing button.pys-button--primary {
	border-color: var(--pys-button) !important;
	background: var(--pys-button) !important;
	color: var(--pys-black);
}

.pys-button--primary:hover,
.pys-button--primary:focus-visible,
.pys-landing button.pys-button--primary:hover,
.pys-landing button.pys-button--primary:focus-visible {
	background: transparent !important;
	color: inherit;
	text-decoration: none;
}

.pys-button--secondary {
	border-color: rgba(255, 255, 255, .48);
	background: transparent;
	color: inherit;
}

.pys-theme--light .pys-button--secondary,
.pys-theme--paper .pys-button--secondary {
	border-color: var(--pys-black);
}

/* Trust / metrics bridge */
.pys-section--trust {
	padding: 0 36px;
	background: var(--pys-black);
	color: #fff;
}

.pys-section--trust .pys-container {
	width: min(100%, 1420px);
}

.pys-section--trust .pys-section-number,
.pys-section--trust .pys-ghost-word {
	display: none;
}

.pys-trust-shell {
	display: grid;
	grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
	border-right: 1px solid var(--pys-line-dark);
	border-left: 1px solid var(--pys-line-dark);
}

.pys-trust-intro {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	justify-content: center;
	padding: 38px 44px;
	border-right: 1px solid var(--pys-line-dark);
}

.pys-trust-intro h2 {
	font-size: clamp(27px, 2.7vw, 39px);
}

.pys-trust-note {
	max-width: 440px;
	margin-top: 17px;
	color: rgba(255, 255, 255, .55);
	font-size: 10px;
	line-height: 1.7;
}

.pys-trust-note p:last-child {
	margin-bottom: 0;
}

.pys-trust-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.pys-trust-item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: 30px 22px;
	border-right: 1px solid var(--pys-line-dark);
}

.pys-trust-item:last-child {
	border-right: 0;
}

.pys-trust-item small,
.pys-trust-item strong,
.pys-trust-item span {
	display: block;
}

.pys-trust-item small {
	margin-bottom: 30px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
}

.pys-trust-item strong {
	margin-bottom: 3px;
	font-family: var(--pys-display);
	font-size: 16px;
	font-weight: 800;
}

.pys-trust-item span {
	color: rgba(255, 255, 255, .48);
	font-size: 10px;
	line-height: 1.55;
}

/* Editorial information blocks */
.pys-card-grid {
	border-top: 1px solid currentColor;
	border-color: var(--pys-line);
}

.pys-card {
	position: relative;
	min-width: 0;
	min-height: 310px;
	padding: 38px 30px 34px;
	border-right: 1px solid var(--pys-line);
	border-bottom: 1px solid var(--pys-line);
}

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

.pys-theme--dark .pys-card-grid,
.pys-theme--dark .pys-card,
.pys-theme--red .pys-card-grid,
.pys-theme--red .pys-card {
	border-color: var(--pys-line-dark);
}

.pys-card-index {
	display: block;
	margin-bottom: 70px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .11em;
}

.pys-card.has-image {
	padding: 0;
}

.pys-card.has-image > img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	filter: saturate(.7) contrast(1.04);
}

.pys-card.has-image .pys-card-index {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 20px;
	color: #fff;
}

.pys-card.has-image .pys-card-copy {
	padding: 26px 28px 32px;
}

.pys-badge {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
}

.pys-card-text {
	color: var(--pys-grey);
	font-size: 12px;
	line-height: 1.75;
}

.pys-theme--dark .pys-card-text,
.pys-theme--red .pys-card-text {
	color: rgba(255, 255, 255, .54);
}

.pys-section--benefits {
	background: var(--pys-black);
	color: #fff;
}

.pys-section--benefits .pys-card:nth-child(2) {
	background: rgba(255, 255, 255, .035);
}

.pys-card-grid--guarantee .pys-card {
	min-height: 270px;
	text-align: center;
}

.pys-card-grid--guarantee .pys-card-index {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	margin: 0 auto 38px;
	border: 1px solid var(--pys-gold);
}

.pys-feature-layout {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(360px, 5fr);
	align-items: start;
	gap: clamp(42px, 7vw, 94px);
}

.pys-feature-layout .pys-section-heading {
	display: block;
	margin-bottom: 54px;
}

.pys-feature-layout .pys-section-heading .pys-lead {
	margin-top: 22px;
}

.pys-feature-layout .pys-card-grid {
	grid-template-columns: 1fr;
}

.pys-feature-layout .pys-card {
	min-height: 215px;
}

.pys-feature-media {
	position: sticky;
	top: 28px;
	margin: 0;
}

.pys-feature-media img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	filter: saturate(.74) contrast(1.05);
}

.pys-feature-media figcaption {
	position: absolute;
	right: -22px;
	bottom: 0;
	padding: 13px 14px;
	background: var(--pys-gold);
	color: var(--pys-black);
	font-family: var(--pys-display);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .18em;
	writing-mode: vertical-rl;
}

.pys-composition--reverse .pys-feature-copy { order: 2; }
.pys-composition--reverse .pys-feature-media { order: 1; }

/* Dish portfolio: fixed visual rhythm for quick scanning */
.pys-section--dishes {
	padding-bottom: clamp(110px, 13vw, 190px);
	background: var(--pys-black);
	color: #fff;
}

.pys-section--dishes .pys-lead {
	color: rgba(255, 255, 255, .58);
}

.pys-dishes {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, .16);
}

.pys-dishes-disclaimer {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .48);
	font-size: 12px;
	letter-spacing: .03em;
	line-height: 1.7;
	text-align: center;
}

.pys-dish {
	position: relative;
	grid-column: span 3;
	min-width: 0;
	min-height: 520px;
	overflow: hidden;
	background: #151519;
}

.pys-dish:nth-child(n+5) {
	grid-column: span 4;
	min-height: 470px;
}

.pys-dish-media {
	position: absolute;
	inset: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: #19191d;
}

.pys-dish-media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(4, 4, 6, .96) 0%, rgba(4, 4, 6, .68) 34%, rgba(4, 4, 6, .18) 70%, rgba(4, 4, 6, .28) 100%);
	content: "";
}

.pys-dish-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.68) contrast(1.08);
	transition: filter .45s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.pys-dish:hover .pys-dish-media img {
	filter: saturate(.9) contrast(1.03);
	transform: scale(1.035);
}

.pys-dish-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 25px;
	background:
		linear-gradient(135deg, transparent 0 49.8%, rgba(255, 255, 255, .07) 50%, transparent 50.2%),
		radial-gradient(circle at 72% 28%, rgba(173, 152, 103, .16), transparent 22%),
		#151519;
	color: rgba(255, 255, 255, .8);
}

.pys-dish-placeholder b {
	font-family: var(--pys-display);
	font-size: clamp(64px, 7vw, 106px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .85;
}

.pys-dish-placeholder i {
	font-family: var(--pys-display);
	font-size: 7px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .2em;
	line-height: 1.7;
	text-align: right;
}

.pys-dish-badge {
	position: absolute;
	z-index: 3;
	top: 20px;
	right: 18px;
	padding: 4px 9px;
	border: 1px solid rgba(255, 255, 255, .5);
	color: #fff;
	font-family: var(--pys-display);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .08em;
}

.pys-dish-body {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 36px 24px 26px;
	color: #fff;
}

.pys-dish-number {
	display: block;
	margin-bottom: 18px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
}

.pys-dish-body h3 {
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.16;
}

.pys-dish-description {
	max-width: 450px;
	color: rgba(255, 255, 255, .58);
	font-size: 10px;
	line-height: 1.7;
}

.pys-dish-description p:last-child {
	margin-bottom: 0;
}

.pys-dish-quick {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: -2px 0 10px;
	color: rgba(255, 255, 255, .82);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .035em;
}

.pys-dish-quick span {
	display: inline-grid;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	place-items: center;
	border: 1px solid var(--pys-gold);
	color: var(--pys-gold);
	font-size: 8px;
}

.pys-dish-details {
	margin-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.pys-dish-details summary {
	position: relative;
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0 6px;
	cursor: pointer;
	color: #fff;
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	list-style: none;
}

.pys-dish-details summary::-webkit-details-marker {
	display: none;
}

.pys-dish-details summary i,
.pys-dish-details summary i::after {
	display: block;
	width: 12px;
	height: 1px;
	background: var(--pys-gold);
	content: "";
	transition: transform .2s ease;
}

.pys-dish-details summary i {
	position: relative;
	flex: 0 0 12px;
}

.pys-dish-details summary i::after {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(90deg);
}

.pys-dish-details[open] summary i::after {
	transform: rotate(0deg);
}

.pys-dish-details > div {
	padding: 7px 0 2px;
	color: rgba(255, 255, 255, .7);
	font-size: 9px;
	line-height: 1.75;
}

.pys-dish-details > div p:last-child {
	margin-bottom: 0;
}

.pys-dish-details strong {
	color: #fff;
}

/* Preparation timeline */
.pys-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--pys-line);
	list-style: none;
}

.pys-step {
	position: relative;
	min-width: 0;
	min-height: 280px;
	padding: 36px 38px 32px;
	border-right: 1px solid var(--pys-line);
	border-bottom: 1px solid var(--pys-line);
}

.pys-step:last-child {
	border-right: 0;
}

.pys-theme--dark .pys-steps,
.pys-theme--dark .pys-step,
.pys-theme--red .pys-steps,
.pys-theme--red .pys-step {
	border-color: var(--pys-line-dark);
}

.pys-step-number {
	display: block;
	margin-bottom: 48px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: clamp(54px, 5vw, 76px);
	font-weight: 900;
	letter-spacing: -.07em;
	line-height: .85;
}

.pys-step > i {
	display: block;
	width: 52px;
	height: 2px;
	margin-bottom: 25px;
	background: var(--pys-gold);
}

.pys-step > div > div {
	color: var(--pys-grey);
	font-size: 12px;
}

/* Testimonials */
.pys-testimonials {
	border-top: 1px solid var(--pys-line);
}

.pys-testimonial {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 310px;
	margin: 0;
	padding: 66px 34px 34px;
	border-right: 1px solid var(--pys-line);
	border-bottom: 1px solid var(--pys-line);
}

.pys-testimonial.has-image {
	padding: 0;
}

.pys-testimonial-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-bottom: 1px solid var(--pys-line);
}

.pys-testimonial-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pys-testimonial-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.pys-testimonial.has-image .pys-testimonial-copy {
	padding: 30px 30px 32px;
}

.pys-testimonial-verified {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 20px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .12em;
}

.pys-testimonial-verified i {
	display: inline-grid;
	width: 17px;
	height: 17px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 9px;
	font-style: normal;
}

.pys-testimonial::before {
	position: absolute;
	top: 16px;
	left: 30px;
	color: var(--pys-gold);
	content: "“";
	font-family: Georgia, serif;
	font-size: 60px;
}

.pys-testimonial blockquote {
	flex: 1;
	margin: 0 0 34px;
	padding: 0;
	border: 0;
	font-family: var(--pys-display);
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.65;
}

.pys-testimonial figcaption {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	color: var(--pys-grey);
	font-size: 10px;
}

.pys-testimonial figcaption strong,
.pys-testimonial figcaption span {
	display: block;
}

.pys-testimonial figcaption span {
	text-align: right;
}

/* Offer / direct order */
.pys-section--offer {
	padding-block: clamp(105px, 12vw, 180px);
	background: var(--pys-black);
	color: #fff;
}

.pys-offer-stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(350px, 5fr) minmax(0, 7fr);
	align-items: center;
	gap: clamp(52px, 8vw, 110px);
}

.pys-offer-media {
	position: absolute;
	z-index: -1;
	inset: -74px 40% -74px -8vw;
	margin: 0;
	overflow: hidden;
	opacity: .25;
}

.pys-offer-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(9, 9, 11, .35), var(--pys-black) 96%);
	content: "";
}

.pys-offer-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(.45) contrast(1.08);
}

.pys-offer-kicker {
	margin-bottom: 28px;
}

.pys-offer-copy h2 {
	max-width: 700px;
}

.pys-offer-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	margin: 38px 0 0;
	padding: 0;
	border-top: 1px solid var(--pys-line-dark);
	list-style: none;
}

.pys-offer-list li {
	position: relative;
	padding: 21px 20px 21px 26px;
	border-bottom: 1px solid var(--pys-line-dark);
}

.pys-offer-list li:nth-child(odd) {
	border-right: 1px solid var(--pys-line-dark);
}

.pys-offer-list li::before {
	position: absolute;
	top: 27px;
	left: 0;
	width: 9px;
	height: 9px;
	border: 1px solid var(--pys-gold);
	content: "";
}

.pys-offer-list strong,
.pys-offer-list span {
	display: block;
}

.pys-offer-list strong {
	font-family: var(--pys-display);
	font-size: 13px;
	font-weight: 800;
}

.pys-offer-list span {
	margin-top: 4px;
	color: rgba(255, 255, 255, .52);
	font-size: 9px;
	line-height: 1.7;
}

.pys-price-card {
	position: relative;
	padding: clamp(40px, 5vw, 62px) clamp(30px, 4vw, 50px);
	border: 1px solid rgba(255, 255, 255, .42);
	background: rgba(255, 255, 255, .025);
	color: #fff;
	text-align: left;
}

.pys-price-card::before,
.pys-price-card::after {
	position: absolute;
	width: 28px;
	height: 28px;
	border-color: var(--pys-gold);
	content: "";
}

.pys-price-card::before {
	top: 10px;
	left: 10px;
	border-top: 2px solid;
	border-left: 2px solid;
}

.pys-price-card::after {
	right: 10px;
	bottom: 10px;
	border-right: 2px solid;
	border-bottom: 2px solid;
}

.pys-price-label {
	display: block;
	margin-bottom: 28px;
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .2em;
}

.pys-regular-price {
	margin-bottom: 5px;
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
}

.pys-sale-price {
	margin-bottom: 10px;
	color: #fff;
}

.pys-sale-price small,
.pys-sale-price strong {
	display: block;
}

.pys-sale-price small {
	margin-bottom: 6px;
	font-family: var(--pys-display);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
}

.pys-sale-price strong {
	font-family: var(--pys-display);
	font-size: var(--pys-desktop-price-size, 64px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: .9;
	white-space: nowrap;
}

.pys-save-note {
	display: inline-block;
	margin: 7px 0 18px;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, .36);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
}

.pys-restore-price {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .55);
	font-size: 10px;
}

.pys-restore-price strong {
	color: #fff;
	font-family: var(--pys-display);
	font-size: 11px;
}

.pys-per-person {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 16px;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.pys-per-person span {
	color: rgba(255, 255, 255, .56);
	font-size: 9px;
}

.pys-per-person strong {
	color: #fff;
	font-family: var(--pys-display);
	font-size: 12px;
	font-weight: 800;
}

.pys-price-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin: 0 0 16px;
	padding: 0;
	background: rgba(255, 255, 255, .16);
	list-style: none;
}

.pys-price-facts li {
	padding: 10px 6px;
	background: var(--pys-black);
	color: rgba(255, 255, 255, .75);
	font-size: 8px;
	font-weight: 800;
	text-align: center;
}

.pys-deadline {
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .57);
	font-size: 10px;
}

.pys-price-card .pys-button,
.pys-cart-form .pys-button {
	width: 100%;
}

.pys-cart-form,
.pys-order-start {
	margin: 0;
}

.pys-order-start {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
}

.pys-quantity-label {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, .6);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .11em;
}

.pys-quantity {
	display: grid;
	grid-template-columns: 46px minmax(70px, 1fr) 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .4);
}

.pys-quantity button,
.pys-quantity input {
	display: block;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0;
	background: transparent !important;
	box-shadow: none;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	font: inherit;
	line-height: 44px;
	opacity: 1 !important;
	text-align: center;
	text-indent: 0;
	justify-self: stretch;
}

.pys-quantity button {
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
}

.pys-quantity button:first-child { border-right: 1px solid rgba(255, 255, 255, .22); }
.pys-quantity button:last-child { border-left: 1px solid rgba(255, 255, 255, .22); }

.pys-quantity input {
	-webkit-appearance: none;
	appearance: none;
	font-family: var(--pys-display);
	font-size: 16px;
	font-weight: 800;
	-moz-appearance: textfield;
	vertical-align: middle;
}

.pys-quantity input::-webkit-outer-spin-button,
.pys-quantity input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.pys-order-start .pys-button.is-loading,
.pys-order-start .pys-button:disabled {
	cursor: wait;
	opacity: .7;
}

.pys-microcopy {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .4);
	font-size: 8px;
}

/* Same-page classic WooCommerce checkout */
.pys-inline-checkout {
	position: relative;
	overflow: hidden;
	scroll-margin-top: 78px;
	padding-block: clamp(92px, 10vw, 145px);
	padding-inline: clamp(24px, 5vw, 76px);
	background: var(--pys-paper);
	color: var(--pys-black);
}

.pys-landing.is-checkout-entry .pys-inline-checkout > .pys-container {
	transition: opacity .52s ease, transform .52s ease;
}

.pys-landing.is-checkout-entry:not(.is-checkout-revealed) .pys-inline-checkout > .pys-container {
	opacity: 0;
	transform: translateY(18px);
}

.pys-landing.is-checkout-entry.is-checkout-revealed .pys-inline-checkout > .pys-container {
	opacity: 1;
	transform: translateY(0);
}

.pys-checkout-ghost {
	position: absolute;
	top: 12px;
	right: -1vw;
	color: rgba(0, 0, 0, .035);
	font-family: var(--pys-display);
	font-size: clamp(84px, 15vw, 220px);
	font-weight: 900;
	letter-spacing: -.075em;
	line-height: .8;
	pointer-events: none;
}

.pys-checkout-heading {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
	align-items: end;
	gap: clamp(28px, 7vw, 96px);
	margin-bottom: clamp(45px, 7vw, 80px);
}

.pys-checkout-heading .pys-eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.pys-checkout-heading h2 {
	max-width: 750px;
}

.pys-checkout-heading > p:last-child {
	margin: 0;
	padding-left: 18px;
	border-left: 2px solid var(--pys-gold);
	color: var(--pys-grey);
	font-size: 12px;
}

.pys-checkout-summary {
	margin-bottom: 32px;
	padding: 0;
	border-top: 1px solid var(--pys-line);
	border-bottom: 1px solid var(--pys-line);
	font-size: 11px;
}

.pys-checkout-summary-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 18px 0;
}

.pys-checkout-summary-head > span {
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .15em;
}

.pys-checkout-summary-head > strong {
	font-family: var(--pys-display);
	font-size: 14px;
	font-weight: 800;
}

.pys-checkout-summary-head > a {
	color: var(--pys-grey);
	font-size: 10px;
	text-underline-offset: 4px;
}

.pys-checkout-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--pys-line);
	list-style: none;
}

.pys-checkout-facts li {
	min-height: 78px;
	padding: 16px 18px;
	border-right: 1px solid var(--pys-line);
}

.pys-checkout-facts li:last-child {
	border-right: 0;
}

.pys-checkout-facts small,
.pys-checkout-facts strong {
	display: block;
}

.pys-checkout-facts small {
	margin-bottom: 7px;
	color: var(--pys-grey);
	font-size: 8px;
	letter-spacing: .08em;
}

.pys-checkout-facts strong {
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.55;
}

.pys-checkout-help {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 13px 0;
	border-top: 1px solid var(--pys-line);
	color: var(--pys-grey);
	font-size: 9px;
}

.pys-checkout-help span {
	display: inline-grid;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	place-items: center;
	border: 1px solid var(--pys-gold);
	border-radius: 50%;
	color: var(--pys-gold);
	font-size: 9px;
}

.pys-checkout-form form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
	align-items: start;
	gap: 0 clamp(42px, 7vw, 88px);
	margin: 0;
}

.pys-checkout-form form.checkout > #customer_details {
	grid-row: 1 / span 2;
	grid-column: 1;
}

.pys-checkout-form form.checkout > #order_review_heading {
	grid-row: 1;
	grid-column: 2;
}

.pys-checkout-form form.checkout > #order_review {
	grid-row: 2;
	grid-column: 2;
}

.pys-checkout-form .col2-set,
.pys-checkout-form .col2-set .col-1,
.pys-checkout-form .col2-set .col-2 {
	float: none;
	width: 100%;
	margin: 0;
}

.pys-checkout-form .col2-set .col-2 {
	margin-top: 40px;
}

.pys-checkout-form h3,
.pys-checkout-form #order_review_heading {
	margin: 0 0 24px;
	padding: 0 0 14px;
	border-bottom: 2px solid var(--pys-black);
	color: var(--pys-black);
	font-family: var(--pys-display);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.02em;
}

.pys-checkout-form .form-row {
	float: none;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
}

.pys-checkout-form .form-row-first,
.pys-checkout-form .form-row-last {
	width: calc(50% - 7px);
}

.pys-checkout-form .form-row-first { float: left; }
.pys-checkout-form .form-row-last { float: right; }

.pys-checkout-form .form-row label {
	display: block;
	margin-bottom: 6px;
	color: #444;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
}

.pys-checkout-form .required { color: #9a1d25; }

.pys-checkout-form .input-text,
.pys-checkout-form input[type="text"],
.pys-checkout-form input[type="email"],
.pys-checkout-form input[type="tel"],
.pys-checkout-form textarea,
.pys-checkout-form select,
.pys-checkout-form .select2-container .select2-selection--single {
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, .24);
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	color: var(--pys-black);
	font-size: 13px;
}

.pys-checkout-form .input-text:focus,
.pys-checkout-form input:focus,
.pys-checkout-form textarea:focus,
.pys-checkout-form select:focus {
	border-color: var(--pys-black);
	outline: 1px solid var(--pys-black);
}

.pys-checkout-form textarea {
	min-height: 108px;
	resize: vertical;
}

.pys-checkout-form .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 24px;
}

.pys-checkout-form .select2-container .select2-selection--single .select2-selection__arrow {
	top: 9px;
	right: 7px;
}

.pys-checkout-form table.shop_table {
	width: 100%;
	margin: 0 0 26px;
	border: 0;
	border-collapse: collapse;
	background: transparent;
	font-size: 11px;
}

.pys-checkout-form table.shop_table th,
.pys-checkout-form table.shop_table td {
	padding: 13px 7px;
	border: 0;
	border-bottom: 1px solid var(--pys-line);
	background: transparent;
	color: var(--pys-black);
}

.pys-checkout-form table.shop_table th:last-child,
.pys-checkout-form table.shop_table td:last-child {
	text-align: right;
}

.pys-checkout-form .woocommerce-checkout-payment {
	padding: 0;
	border: 1px solid var(--pys-line);
	border-radius: 0;
	background: #fff;
}

.pys-checkout-form .woocommerce-checkout-payment ul.payment_methods {
	margin: 0;
	padding: 7px 20px;
	border: 0;
	list-style: none;
}

.pys-checkout-form .woocommerce-checkout-payment ul.payment_methods > li {
	margin: 0;
	padding: 16px 0;
	border-bottom: 1px solid var(--pys-line);
}

.pys-checkout-form .woocommerce-checkout-payment ul.payment_methods > li:last-child {
	border-bottom: 0;
}

.pys-checkout-form .woocommerce-checkout-payment label {
	color: var(--pys-black);
	font-size: 12px;
	font-weight: 700;
}

.pys-checkout-form .woocommerce-checkout-payment label img {
	display: inline-block;
	width: auto;
	max-height: 28px;
	margin-left: 7px;
	vertical-align: middle;
}

.pys-checkout-form .payment_box {
	margin: 11px 0 0;
	padding: 13px 14px;
	border-radius: 0;
	background: var(--pys-cream);
	color: var(--pys-grey);
	font-size: 10px;
}

.pys-checkout-form .payment_box::before { display: none; }

.pys-checkout-form .place-order {
	margin: 0;
	padding: 20px;
}

.pys-checkout-form #place_order,
.pys-checkout-form button.button.alt {
	float: none;
	width: 100%;
	min-height: 50px;
	margin: 16px 0 0;
	padding: 13px 18px;
	border: 1px solid var(--pys-button) !important;
	border-radius: 0;
	background: var(--pys-button) !important;
	box-shadow: none;
	color: var(--pys-black) !important;
	font-family: var(--pys-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
}

.pys-checkout-form #place_order:hover,
.pys-checkout-form #place_order:focus-visible,
.pys-checkout-form button.button.alt:hover,
.pys-checkout-form button.button.alt:focus-visible {
	border-color: var(--pys-button) !important;
	background: var(--pys-button) !important;
	color: var(--pys-black);
}

.pys-checkout-form .woocommerce-privacy-policy-text,
.pys-checkout-form .woocommerce-terms-and-conditions-wrapper {
	color: var(--pys-grey);
	font-size: 9px;
}

.pys-checkout-form .woocommerce-error,
.pys-checkout-form .woocommerce-info,
.pys-checkout-form .woocommerce-message,
.pys-checkout-message .woocommerce-error {
	margin: 0 0 24px;
	padding: 14px 17px 14px 42px;
	border: 1px solid var(--pys-line);
	border-top: 3px solid var(--pys-black);
	border-radius: 0;
	background: #fff;
	color: var(--pys-black);
	font-size: 11px;
}

.pys-checkout-payment-note {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 24px 0 0;
	color: var(--pys-grey);
	font-size: 9px;
}

.pys-checkout-payment-note span {
	display: inline-grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border: 1px solid var(--pys-gold);
	color: var(--pys-black);
}

.pys-checkout-message {
	max-width: 700px;
	margin: 0 auto;
	padding: clamp(36px, 6vw, 64px);
	border: 1px solid var(--pys-line);
	background: #fff;
	text-align: center;
}

.pys-checkout-message > strong {
	display: block;
	margin-bottom: 11px;
	font-family: var(--pys-display);
	font-size: 22px;
	font-weight: 800;
}

.pys-checkout-message > p {
	margin-bottom: 22px;
	color: var(--pys-grey);
	font-size: 12px;
}

.pys-checkout-message .pys-button { width: auto; }

/* FAQ */
.pys-section--faq .pys-container {
	display: grid;
	grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
	align-items: start;
	gap: clamp(52px, 9vw, 122px);
}

.pys-section--faq .pys-section-heading {
	position: sticky;
	top: 36px;
	display: block;
	margin-bottom: 0;
}

.pys-section--faq .pys-section-heading .pys-lead {
	margin-top: 22px;
}

.pys-faq {
	border-top: 2px solid var(--pys-black);
}

.pys-faq-item {
	border-bottom: 1px solid var(--pys-line);
}

.pys-faq-item summary {
	position: relative;
	display: grid;
	grid-template-columns: 42px 1fr 22px;
	align-items: center;
	gap: 10px;
	padding: 26px 3px;
	cursor: pointer;
	list-style: none;
}

.pys-faq-item summary::-webkit-details-marker { display: none; }

.pys-faq-item summary small {
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 9px;
	font-weight: 800;
}

.pys-faq-item summary b {
	font-family: var(--pys-display);
	font-size: 16px;
	font-weight: 800;
}

.pys-faq-item summary span,
.pys-faq-item summary span::after {
	position: absolute;
	top: 50%;
	right: 3px;
	width: 14px;
	height: 1px;
	background: var(--pys-black);
	content: "";
	transition: transform .2s ease;
}

.pys-faq-item summary span::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

.pys-faq-item[open] summary span::after { transform: rotate(0); }

.pys-faq-answer {
	padding: 0 38px 28px 52px;
	color: var(--pys-grey);
	font-size: 12px;
}

/* Final CTA and custom image sections */
.pys-section--cta {
	display: grid;
	min-height: 620px;
	align-items: center;
	padding-block: clamp(100px, 11vw, 160px);
	background-color: var(--pys-black);
	background-image: var(--pys-section-image);
	background-position: center;
	background-size: cover;
}

.pys-section--cta::before {
	background: rgba(7, 7, 9, .88);
}

.pys-section--cta .pys-ghost-word {
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	opacity: .04;
}

.pys-cta-inner {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
}

.pys-cta-chop {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	margin: 0 auto 34px;
	border: 1px solid var(--pys-gold);
	color: var(--pys-gold);
	font-family: var(--pys-display);
	font-size: 25px;
	font-weight: 800;
}

.pys-hero-chop {
	position: absolute;
	z-index: 4;
	top: 34px;
	right: 34px;
	margin: 0;
	aspect-ratio: 1;
	pointer-events: none;
}

.pys-cta-inner .pys-lead {
	margin: 24px auto 0;
}

.pys-custom-image {
	position: relative;
	margin: 50px 0 0;
}

.pys-custom-image img {
	width: 100%;
	max-height: 700px;
	object-fit: cover;
	filter: saturate(.72) contrast(1.06);
}

.pys-custom-image figcaption {
	position: absolute;
	right: -25px;
	bottom: 0;
	padding: 11px 15px;
	background: var(--pys-black);
	color: #fff;
	font-family: var(--pys-display);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .2em;
	writing-mode: vertical-rl;
}

.pys-section--custom.pys-composition--split .pys-container,
.pys-section--custom.pys-composition--reverse .pys-container {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(380px, 7fr);
	align-items: center;
	gap: clamp(42px, 8vw, 104px);
}

.pys-section--custom.pys-composition--split .pys-section-heading,
.pys-section--custom.pys-composition--reverse .pys-section-heading {
	display: block;
	margin-bottom: 0;
}

.pys-section--custom.pys-composition--split .pys-custom-image,
.pys-section--custom.pys-composition--reverse .pys-custom-image {
	margin-top: 0;
}

.pys-section--custom.pys-composition--reverse .pys-section-heading { order: 2; }
.pys-section--custom.pys-composition--reverse .pys-custom-image { order: 1; }

.pys-sticky-cta { display: none; }

/* Composition controls */
.pys-composition--reverse.pys-section--offer .pys-offer-copy { order: 1; }
.pys-composition--reverse.pys-section--offer .pys-price-card { order: 2; }
.pys-composition--minimal .pys-ghost-word { display: none; }
.pys-composition--fullbleed:not(.pys-section--cta) {
	background-image: var(--pys-section-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}
.pys-composition--fullbleed:not(.pys-section--cta)::before { background: rgba(7, 7, 9, .78); }

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
	.pys-section:not(.pys-section--hero) .pys-container {
		opacity: .01;
		transform: translateY(18px);
		transition: opacity .55s ease, transform .55s ease;
	}

	.pys-section.is-visible .pys-container {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1180px) {
	.pys-section-number { display: none; }
	.pys-campaign-nav { width: calc(100% - 48px); }
	.pys-layout--4 .pys-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pys-trust-list { grid-template-columns: repeat(2, 1fr); }
	.pys-trust-item:nth-child(2) { border-right: 0; }
	.pys-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--pys-line-dark); }
	.pys-dish { grid-column: span 6; }
	.pys-dish:nth-child(n+5) { grid-column: span 4; }
}

@media (max-width: 900px) {
	.pys-campaign-nav { grid-template-columns: 1fr auto; }
	.pys-nav-links { display: none; }
	.pys-hero-copy { grid-column: 1 / 9; padding-left: 40px; }
	.pys-hero-facts { grid-column: 3 / 13; }
	.pys-trust-shell { grid-template-columns: 1fr; }
	.pys-trust-intro { min-height: 0; border-right: 0; border-bottom: 1px solid var(--pys-line-dark); }
	.pys-section-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
	.pys-layout--3 .pys-grid { grid-template-columns: 1fr; }
	.pys-card { min-height: 260px; border-right: 0; }
	.pys-card-index { margin-bottom: 42px; }
	.pys-feature-layout,
	.pys-section--custom.pys-composition--split .pys-container,
	.pys-section--custom.pys-composition--reverse .pys-container { grid-template-columns: 1fr; }
	.pys-feature-media { position: relative; top: auto; }
	.pys-feature-media img { height: min(112vw, 650px); }
	.pys-dish,
	.pys-dish:nth-child(n+5) { grid-column: span 6; }
	.pys-steps { grid-template-columns: repeat(2, 1fr); }
	.pys-offer-stage { grid-template-columns: 1fr; }
	.pys-price-card { width: min(100%, 620px); }
	.pys-checkout-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
	.pys-checkout-heading .pys-eyebrow { grid-column: 1; }
	.pys-checkout-form form.checkout { grid-template-columns: 1fr; gap: 0; }
	.pys-checkout-form form.checkout > #customer_details,
	.pys-checkout-form form.checkout > #order_review_heading,
	.pys-checkout-form form.checkout > #order_review { grid-row: auto; grid-column: 1; }
	.pys-checkout-form form.checkout > #order_review_heading { margin-top: 50px; }
	.pys-section--faq .pys-container { grid-template-columns: 1fr; }
	.pys-section--faq .pys-section-heading { position: static; margin-bottom: 42px; }
}

@media (max-width: 680px) {
	.pys-landing { padding-bottom: 66px; font-size: 14px; line-height: 1.72; }
	.pys-campaign-nav { width: calc(100% - 32px); min-height: 68px; }
	.pys-brand-logo { max-width: 150px; max-height: 36px; }
	.pys-brand strong { font-size: 12px; }
	.pys-brand small { display: none; }
	.pys-nav-cta { min-width: 104px; min-height: 35px; font-size: 9px; }
	.pys-section { padding: 76px 19px; }
	.pys-ghost-word { top: 3%; font-size: 27vw; }
	.pys-landing h1 { font-size: clamp(43px, 14vw, 61px); line-height: 1.05; }
	.pys-landing h2 { font-size: clamp(34px, 10.5vw, 47px); line-height: 1.1; }
	.pys-section-heading { margin-bottom: 46px; }
	.pys-section--hero { min-height: 820px; padding: 88px 16px 32px; }
	.pys-section--hero .pys-container,
	.pys-hero-grid { min-height: 700px; }
	.pys-hero-grid { display: block; }
	.pys-hero-media { inset: 0; }
	.pys-hero-media::before {
		background: linear-gradient(0deg, rgba(7, 7, 9, .98) 4%, rgba(7, 7, 9, .78) 52%, rgba(7, 7, 9, .34) 100%);
	}
	.pys-hero-media img { height: 100%; min-height: 0; object-position: center; }
	.pys-hero-copy { position: absolute; z-index: 5; right: 22px; bottom: 142px; left: 22px; padding: 0; }
	.pys-hero-caption { margin-bottom: 22px; }
	.pys-hero-media-line { display: none; }
	.pys-hero-chop { top: 22px; right: 20px; width: 58px; height: 58px; font-size: 22px; }
	.pys-hero-facts {
		position: absolute;
		z-index: 6;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}
	.pys-hero-fact { min-width: 72vw; min-height: 112px; padding: 22px 20px; scroll-snap-align: start; }
	.pys-hero-fact small { margin-bottom: 10px; }
	.pys-scroll-cue { display: none; }
	.pys-buttons { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
	.pys-button { width: 100%; }
	.pys-section--trust { padding: 0 16px; }
	.pys-trust-intro { padding: 34px 24px; }
	.pys-trust-list { grid-template-columns: repeat(2, 1fr); }
	.pys-trust-item { min-height: 138px; padding: 20px 13px; }
	.pys-trust-item small { margin-bottom: 18px; }
	.pys-layout--2 .pys-grid,
	.pys-layout--4 .pys-grid { grid-template-columns: 1fr; }
	.pys-card { min-height: 240px; padding: 31px 22px; }
	.pys-dishes { grid-template-columns: 1fr; gap: 1px; }
	.pys-dish,
	.pys-dish:nth-child(n+5) { grid-column: 1; min-height: min(132vw, 520px); }
	.pys-dish-body { padding: 32px 22px 24px; }
	.pys-dish-description { font-size: 10px; }
	.pys-dish-details > div { font-size: 10px; }
	.pys-steps { grid-template-columns: 1fr; }
	.pys-step { min-height: 0; padding: 30px 24px; border-right: 0; }
	.pys-step-number { margin-bottom: 30px; font-size: 54px; }
	.pys-testimonials { grid-template-columns: 1fr !important; }
	.pys-testimonial { min-height: 250px; padding: 60px 24px 28px; border-right: 0; }
	.pys-section--offer { padding-block: 84px; }
	.pys-offer-stage { gap: 44px; }
	.pys-offer-list { grid-template-columns: 1fr; }
	.pys-offer-list li:nth-child(odd) { border-right: 0; }
	.pys-price-card { padding: 40px 23px; }
	.pys-sale-price strong { font-size: clamp(54px, 18vw, 72px); }
	.pys-inline-checkout { padding: 76px 19px 88px; }
	.pys-checkout-ghost { top: 24px; font-size: 23vw; }
	.pys-checkout-heading { margin-bottom: 42px; }
	.pys-checkout-heading > p:last-child { padding-left: 14px; }
	.pys-checkout-summary-head { grid-template-columns: 1fr auto; gap: 7px 12px; }
	.pys-checkout-summary-head > span { grid-column: 1 / -1; }
	.pys-checkout-summary-head > strong { grid-column: 1; }
	.pys-checkout-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pys-checkout-facts li { min-height: 82px; border-bottom: 1px solid var(--pys-line); }
	.pys-checkout-facts li:nth-child(2n) { border-right: 0; }
	.pys-checkout-facts li:nth-last-child(-n+2) { border-bottom: 0; }
	.pys-checkout-form .form-row-first,
	.pys-checkout-form .form-row-last { float: none; width: 100%; }
	.pys-checkout-form .woocommerce-checkout-payment ul.payment_methods,
	.pys-checkout-form .place-order { padding-right: 14px; padding-left: 14px; }
	.pys-checkout-payment-note { align-items: flex-start; justify-content: flex-start; line-height: 1.6; }
	.pys-checkout-payment-note span { flex: 0 0 19px; }
	.pys-checkout-message { padding: 32px 20px; }
	.pys-checkout-message .pys-button { width: 100%; }
	.pys-faq-item summary { grid-template-columns: 32px 1fr 18px; padding: 22px 0; }
	.pys-faq-answer { padding: 0 10px 24px 42px; }
	.pys-section--cta { min-height: 580px; }
	.pys-custom-image figcaption { right: 0; }
	.pys-sticky-cta {
		position: fixed;
		z-index: 9997;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		min-height: 64px;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 9px max(13px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(13px, env(safe-area-inset-left));
		border-top: 1px solid var(--pys-line-dark);
		background: rgba(9, 9, 11, .97);
		box-shadow: 0 -8px 28px rgba(0, 0, 0, .2);
		color: #fff;
		backdrop-filter: blur(12px);
	}
	.pys-sticky-cta > span {
		display: flex;
		min-width: 0;
		flex-direction: column;
		line-height: 1.3;
	}
	.pys-sticky-cta > span strong {
		font-family: var(--pys-display);
		font-size: 12px;
		font-weight: 900;
	}
	.pys-sticky-cta > span small {
		margin-top: 3px;
		color: rgba(255, 255, 255, .58);
		font-size: 8px;
		font-weight: 500;
	}
	.pys-sticky-cta a {
		flex: 0 0 auto;
		padding: 9px 16px;
		background: var(--pys-button) !important;
		color: var(--pys-black);
		font-family: var(--pys-display);
		font-size: 10px;
		font-weight: 800;
		letter-spacing: .07em;
		text-decoration: none;
	}
	.pys-sticky-order {
		display: grid;
		width: 100%;
		grid-template-columns: 92px minmax(72px, 1fr) auto;
		align-items: center;
		gap: 9px;
	}
	.pys-sticky-quantity {
		grid-template-columns: 29px 34px 29px;
		height: 40px;
	}
	.pys-sticky-quantity button,
	.pys-sticky-quantity input {
		height: 38px;
		font-size: 14px;
		line-height: 38px;
	}
	.pys-sticky-total {
		display: flex;
		min-width: 0;
		flex-direction: column;
		line-height: 1.25;
	}
	.pys-sticky-total strong {
		font-family: var(--pys-display);
		font-size: 12px;
		font-weight: 900;
		white-space: nowrap;
	}
	.pys-sticky-total small {
		margin-top: 2px;
		color: rgba(255, 255, 255, .58);
		font-size: 8px;
	}
	.pys-sticky-submit {
		min-height: 40px;
		padding: 9px 13px;
		border: 0;
		border-radius: 0;
		background: var(--pys-button) !important;
		color: var(--pys-black);
		font-family: var(--pys-display);
		font-size: 10px;
		font-weight: 800;
		letter-spacing: .04em;
		white-space: nowrap;
	}
	.pys-sticky-submit:disabled { cursor: wait; opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
	.pys-landing *,
	.pys-landing *::before,
	.pys-landing *::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
	}
	.pys-order-transition__line::after {
		animation: none !important;
		transform: none;
	}
}
