/**
 * Golden Palace Banquet Hall — design system.
 *
 * The .gp-* class names are a frozen contract shared by the block patterns,
 * the seeder markup, and the dynamic blocks. Values are transcribed from the
 * Claude Design source pages.
 */

/* ---------------------------------------------------------------------------
 * Base
 * ------------------------------------------------------------------------ */

body {
	-webkit-font-smoothing: antialiased;
}

/* Core adds block-gap margins between the template's root blocks
   (header / main / footer) — the design has them flush. */
body .wp-site-blocks > * + * {
	margin-block-start: 0;
}

.gp-main {
	background: var(--wp--preset--color--base);
}

.gp-main > .wp-block-post-content > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

@keyframes gpFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gp-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.gp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.gp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.gp-hero__content {
		animation: none !important;
	}
}

/* ---------------------------------------------------------------------------
 * Buttons (core/button blocks carrying gp-btn-* classes)
 * ------------------------------------------------------------------------ */

.wp-block-button.gp-btn .wp-block-button__link {
	display: inline-block;
	border: none;
	border-radius: 999px;
	padding: 15px 32px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	transition: filter 0.2s ease, background 0.2s ease;
}

.wp-block-button.gp-btn--gold .wp-block-button__link {
	background: linear-gradient(135deg, #d4b26a, #b98f45);
	color: #1c1610;
	font-weight: 700;
}

.wp-block-button.gp-btn--gold .wp-block-button__link:hover {
	filter: brightness(1.08);
}

.wp-block-button.gp-btn--shadow .wp-block-button__link {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.wp-block-button.gp-btn--outline .wp-block-button__link {
	background: transparent;
	border: 1px solid rgba(198, 161, 91, 0.6);
	color: #e8dcc6;
	padding: 14px 33px;
}

.wp-block-button.gp-btn--outline .wp-block-button__link:hover {
	background: rgba(198, 161, 91, 0.12);
}

.wp-block-button.gp-btn--outline-hero .wp-block-button__link {
	background: rgba(16, 13, 10, 0.35);
	border: 1px solid rgba(212, 178, 106, 0.75);
	color: #f0e6d2;
	padding: 14px 31px;
}

.wp-block-button.gp-btn--outline-hero .wp-block-button__link:hover {
	background: rgba(198, 161, 91, 0.2);
}

.gp-buttons.wp-block-buttons {
	gap: 16px;
	justify-content: center;
}

/* Small pill in the header */
.gp-btn.gp-btn--sm,
a.gp-btn.gp-btn--sm {
	display: inline-block;
	background: linear-gradient(135deg, #d4b26a, #b98f45);
	color: #1c1610;
	border-radius: 999px;
	padding: 11px 22px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-decoration: none;
	transition: filter 0.2s ease;
}

a.gp-btn.gp-btn--sm:hover {
	filter: brightness(1.08);
	color: #1c1610;
}

/* ---------------------------------------------------------------------------
 * Header
 * ------------------------------------------------------------------------ */

header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 50;
}

body.admin-bar header.wp-block-template-part {
	top: var(--wp-admin--admin-bar--height, 32px);
}

.gp-header {
	background: rgba(20, 16, 12, 0.92);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(198, 161, 91, 0.25);
	transition: background 0.25s ease;
}

.gp-header.is-scrolled {
	background: rgba(16, 13, 10, 0.97);
}

.gp-header__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--wp--custom--header-height, 76px);
}

.gp-header__logo {
	display: flex;
	align-items: center;
	flex: none;
}

.gp-header__logo img {
	height: 40px;
	width: auto;
	display: block;
}

.gp-header__wordmark {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 24px;
	font-weight: 600;
	color: #d4b26a;
	white-space: nowrap;
}

.gp-header__nav {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.gp-header__link {
	color: #e8dcc6;
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: color 0.2s ease;
}

.gp-header__link:hover {
	color: #c6a15b;
}

.gp-header__link.is-active {
	color: #c6a15b;
	font-weight: 600;
}

.gp-lang-zh .gp-header__link {
	font-size: 15px;
	letter-spacing: 0.06em;
}

.gp-lang-zh .gp-header__link.is-active {
	font-weight: 700;
}

.gp-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: none;
}

.gp-lang {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
}

.gp-lang__current {
	color: #c6a15b;
	font-weight: 700;
}

.gp-lang__sep {
	color: rgba(232, 220, 198, 0.35);
}

.gp-lang__link {
	color: #e8dcc6;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.gp-lang__link--zh {
	font-family: 'Noto Serif SC', serif;
}

.gp-lang__link:hover {
	color: #c6a15b;
}

/* ---------------------------------------------------------------------------
 * Section bands
 * ------------------------------------------------------------------------ */

.gp-section {
	padding-top: var(--wp--custom--section-padding-y, 96px);
	padding-bottom: var(--wp--custom--section-padding-y, 96px);
}

.gp-band--cream {
	background: #f7f1e5;
	color: #241c12;
}

.gp-band--sand {
	background: #ede2cb;
	color: #241c12;
	border-top: 1px solid rgba(185, 143, 69, 0.3);
	border-bottom: 1px solid rgba(185, 143, 69, 0.3);
}

.gp-band--panel {
	background: #211a12;
	border-top: 1px solid rgba(198, 161, 91, 0.18);
	border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}

.gp-band--dark {
	background: #171310;
}

.gp-band--rule-top {
	border-top: 1px solid rgba(185, 143, 69, 0.25);
}

.gp-band--rule-top-dark {
	border-top: 1px solid rgba(198, 161, 91, 0.18);
}

.gp-band--cta {
	background: radial-gradient(900px 400px at 50% 0%, rgba(198, 161, 91, 0.16), transparent 65%), #171310;
	border-top: 1px solid rgba(198, 161, 91, 0.18);
}

.gp-band--cream h1,
.gp-band--cream h2,
.gp-band--cream h3,
.gp-band--cream h4,
.gp-band--sand h1,
.gp-band--sand h2,
.gp-band--sand h3,
.gp-band--sand h4 {
	color: #241c12;
}

/* ---------------------------------------------------------------------------
 * Typography helpers
 * ------------------------------------------------------------------------ */

p.gp-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 22px;
	color: #d4b26a;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	line-height: 1.4;
}

.gp-eyebrow::before,
.gp-eyebrow::after {
	content: '';
	display: block;
	width: 44px;
	height: 1px;
	background: #c6a15b;
	flex: none;
}

.gp-band--cream .gp-eyebrow,
.gp-band--sand .gp-eyebrow {
	color: #9a742f;
	font-size: 12px;
	margin-bottom: 18px;
}

.gp-band--cream .gp-eyebrow::before,
.gp-band--cream .gp-eyebrow::after,
.gp-band--sand .gp-eyebrow::before,
.gp-band--sand .gp-eyebrow::after {
	width: 36px;
	background: #b98f45;
}

.gp-lang-zh .gp-eyebrow {
	font-size: 14px;
	letter-spacing: 0.35em;
	text-transform: none;
}

h2.gp-h2 {
	margin: 0 0 16px;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.1;
	color: #f7f1e3;
}

.gp-band--cream h2.gp-h2,
.gp-band--sand h2.gp-h2 {
	color: #241c12;
}

.gp-lang-zh h2.gp-h2 {
	font-size: clamp(32px, 3.8vw, 46px);
	line-height: 1.2;
}

.gp-lede {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.65;
	color: rgba(232, 220, 198, 0.68);
	text-wrap: pretty;
}

.gp-band--cream .gp-lede,
.gp-band--sand .gp-lede {
	color: rgba(36, 28, 18, 0.65);
}

.gp-lang-zh .gp-lede {
	font-size: 16px;
	line-height: 1.9;
}

.wp-block-group.gp-section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.gp-section-head--narrow {
	max-width: 680px;
}

.gp-section-head--wide {
	max-width: 760px;
}

.gp-tagline {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 22px;
	flex-wrap: wrap;
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 600;
	color: #d4b26a;
	margin: 0;
}

.gp-tagline .gp-tagline__dot {
	color: rgba(198, 161, 91, 0.5);
	font-size: 0.5em;
}

.gp-lang-zh .gp-tagline {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: clamp(22px, 2.8vw, 32px);
}

/* ---------------------------------------------------------------------------
 * Hero (group with absolute background image + gradient scrim)
 * ------------------------------------------------------------------------ */

.gp-hero {
	position: relative;
	overflow: hidden;
}

.gp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.gp-hero__bg .wp-block-image {
	margin: 0;
	height: 100%;
}

.gp-hero__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(16, 13, 10, 0.72) 0%, rgba(16, 13, 10, 0.55) 45%, rgba(23, 19, 16, 0.9) 100%);
}

/* Slideshow: stack the slides and crossfade the active one. */
.gp-hero__bg--slideshow .gp-hero__slide {
	position: absolute;
	inset: 0;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.gp-hero__bg--slideshow .gp-hero__slide.is-active {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.gp-hero__bg--slideshow .gp-hero__slide {
		transition: none;
	}
}

.gp-hero__content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 140px 28px 150px;
	text-align: center;
	animation: gpFadeUp 0.7s ease both;
}

.gp-hero__content--wide {
	max-width: 940px;
	padding: 130px 28px 130px;
}

h1.gp-hero__title {
	margin: 0 0 20px;
	font-size: clamp(44px, 5.4vw, 76px);
	line-height: 1.05;
	color: #f7f1e3;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
	text-wrap: pretty;
}

h1.gp-hero__title--md {
	font-size: clamp(42px, 5.2vw, 72px);
	line-height: 1.06;
}

h1.gp-hero__title--sm {
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.08;
}

.gp-lang-zh h1.gp-hero__title {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: clamp(40px, 5vw, 66px);
	line-height: 1.15;
}

p.gp-hero__lede {
	margin: 0 0 18px;
	font-size: 18.5px;
	line-height: 1.55;
	color: #e5d5b4;
	font-weight: 500;
	text-wrap: pretty;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.gp-lang-zh p.gp-hero__lede {
	font-size: 19px;
	line-height: 1.7;
}

p.gp-hero__body {
	margin: 0 auto 36px;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(240, 230, 210, 0.85);
	text-wrap: pretty;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

p.gp-hero__body--tight {
	margin-bottom: 34px;
}

.gp-hero .gp-tagline {
	font-size: clamp(22px, 2.6vw, 30px);
	gap: 20px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.gp-lang-zh .gp-hero__content {
	max-width: 900px;
}

/* ---------------------------------------------------------------------------
 * Grids (group blocks with .gp-grid--*)
 * ------------------------------------------------------------------------ */

.gp-grid {
	display: grid;
	gap: 32px;
}

.gp-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 36px;
	align-items: center;
}

.gp-grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gp-grid--3-narrow {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gp-grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 28px;
}

.gp-grid--split {
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 56px;
	align-items: center;
}

.gp-grid--pkg {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	align-items: stretch;
}

.gp-grid.gp-grid--rows2 {
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	margin-bottom: 32px;
}

.gp-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ---------------------------------------------------------------------------
 * Cards
 * ------------------------------------------------------------------------ */

.gp-card {
	background: #fffdf8;
	border: 1px solid rgba(185, 143, 69, 0.28);
	border-radius: var(--wp--custom--card-radius, 8px);
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(36, 28, 18, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gp-card--lift:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(36, 28, 18, 0.14);
}

.gp-card--dark {
	background: #211a12;
	border-color: rgba(198, 161, 91, 0.3);
	box-shadow: none;
}

.gp-card--dark.gp-card--lift:hover {
	transform: translateY(-6px);
	box-shadow: none;
}

.gp-card .wp-block-image {
	margin: 0;
}

.gp-card .wp-block-image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.gp-card__body {
	padding: 24px 26px 28px;
}

.gp-card__body--sm {
	padding: 22px 24px 26px;
}

h3.gp-card__title,
h4.gp-card__title {
	margin: 0 0 8px;
	font-size: 25px;
	line-height: 1.2;
	color: #241c12;
}

.gp-card--dark h3.gp-card__title,
.gp-card--dark h4.gp-card__title {
	color: #f0e6d2;
	font-size: 24px;
	margin-bottom: 4px;
}

.gp-lang-zh h3.gp-card__title,
.gp-lang-zh h4.gp-card__title {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: 22px;
}

p.gp-card__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(36, 28, 18, 0.62);
	text-wrap: pretty;
}

.gp-card--dark p.gp-card__text {
	color: rgba(232, 220, 198, 0.65);
}

.gp-lang-zh p.gp-card__text {
	line-height: 1.8;
}

p.gp-zh-sub {
	font-family: 'Noto Serif SC', 'Noto Serif TC', serif;
	font-size: 15px;
	color: #9a742f;
	margin: 0 0 10px;
	line-height: 1.4;
}

.gp-card--dark p.gp-zh-sub {
	color: #d4b26a;
}

/* Horizontal media card (Home signature dishes) */
.gp-card--h {
	display: flex;
	align-items: center;
	gap: 20px;
}

.gp-card--h:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(36, 28, 18, 0.14);
}

.gp-card--h .wp-block-image {
	flex: none;
}

.gp-card--h .wp-block-image img {
	width: 150px;
	height: 130px;
	aspect-ratio: auto;
	object-fit: cover;
}

.gp-card--h .gp-card__body {
	padding: 16px 22px 16px 0;
}

.gp-card--h h4.gp-card__title {
	font-size: 23px;
	margin: 0 0 6px;
}

p.gp-card__text--sm {
	font-size: 14px;
	line-height: 1.6;
}

/* Tall standalone image (Home right column) */
.gp-img-tall .wp-block-image,
.gp-img-tall {
	margin: 0;
	height: 100%;
}

.gp-img-tall img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 24px 48px rgba(36, 28, 18, 0.22);
}

/* Split-section image (Art of Dim Sum) */
.gp-img-split img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 24px 48px rgba(36, 28, 18, 0.22);
}

/* Badges over card images */
.gp-card__media {
	position: relative;
}

.gp-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: rgba(23, 19, 16, 0.85);
	color: #d4b26a;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	line-height: 1.3;
}

.gp-badge--gold {
	top: 18px;
	left: 18px;
	background: linear-gradient(135deg, #d4b26a, #b98f45);
	color: #1c1610;
	font-size: 12px;
	padding: 7px 16px;
}

/* Icon cards (why-choose / preparation methods) */
.gp-icon-card {
	border: 1px solid rgba(185, 143, 69, 0.28);
	border-radius: 8px;
	padding: 38px 32px;
	background: #fffdf8;
	box-shadow: 0 8px 28px rgba(36, 28, 18, 0.06);
}

h3.gp-icon-card__title {
	margin: 0 0 12px;
	font-size: 28px;
	color: #241c12;
}

.gp-lang-zh h3.gp-icon-card__title {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: 25px;
}

p.gp-icon-card__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(36, 28, 18, 0.62);
	text-wrap: pretty;
}

.gp-lang-zh p.gp-icon-card__text {
	font-size: 14.5px;
	line-height: 1.9;
}

.gp-icon-card--dark {
	border-color: rgba(198, 161, 91, 0.3);
	background: rgba(198, 161, 91, 0.05);
	box-shadow: none;
	text-align: center;
}

.gp-icon-card--dark h3.gp-icon-card__title {
	color: #f0e6d2;
}

.gp-icon-card--dark p.gp-icon-card__text {
	color: rgba(232, 220, 198, 0.65);
}

/* Icon circles */
.gp-icon-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid rgba(185, 143, 69, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9a742f;
	margin-bottom: 22px;
	flex: none;
}

.gp-icon-card--dark .gp-icon-circle {
	border-color: rgba(198, 161, 91, 0.55);
	color: #d4b26a;
	margin: 0 auto 22px;
}

.gp-icon-card--dark .gp-icon-circle svg {
	width: 30px;
	height: 30px;
}

span.gp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

/* The gp/icon block version of the circle (direct child of a layout group)
   needs element+class specificity to keep its bottom margin. */
span.gp-icon.gp-icon-circle {
	display: flex;
	margin-bottom: 22px;
}

/* Chips (Art of Dim Sum mini-grid) */
.gp-chip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.gp-chip {
	border: 1px solid rgba(185, 143, 69, 0.35);
	border-radius: 6px;
	padding: 14px 18px;
	background: #fffdf8;
	font-size: 14.5px;
	font-weight: 600;
	color: #5c4a2a;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.gp-chip svg {
	width: 16px;
	height: 16px;
	flex: none;
	color: #9a742f;
}

/* Split text column (Art of Dim Sum) */
h2.gp-split__title {
	margin: 0 0 22px;
	font-size: clamp(32px, 3.6vw, 46px);
	line-height: 1.12;
	color: #241c12;
}

p.gp-split__text {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(36, 28, 18, 0.7);
	text-wrap: pretty;
}

p.gp-split__text--last {
	margin-bottom: 30px;
}

/* ---------------------------------------------------------------------------
 * Testimonials
 * ------------------------------------------------------------------------ */

.gp-quote {
	margin: 0;
	background: #fffdf8;
	border: 1px solid rgba(185, 143, 69, 0.28);
	border-radius: 8px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.gp-quote::before {
	content: '\201C';
	font-family: var(--wp--preset--font-family--heading);
	font-size: 56px;
	line-height: 0.6;
	color: #c6a15b;
	display: block;
}

.gp-quote p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.75;
	color: rgba(36, 28, 18, 0.72);
	font-style: italic;
	text-wrap: pretty;
}

.gp-lang-zh .gp-quote p {
	font-style: normal;
	font-size: 15px;
	line-height: 2;
}

.gp-quote cite {
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #9a742f;
	font-style: normal;
}

/* ---------------------------------------------------------------------------
 * Features band (Specialty, 3 columns with dividers)
 * ------------------------------------------------------------------------ */

.gp-band--panel.gp-section--slim {
	padding-top: 64px;
	padding-bottom: 64px;
}

.gp-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
}

.gp-features > .gp-feature {
	text-align: center;
	padding: 0 12px;
}

.gp-features > .gp-feature--mid {
	border-left: 1px solid rgba(198, 161, 91, 0.22);
	border-right: 1px solid rgba(198, 161, 91, 0.22);
}

h3.gp-feature__title {
	margin: 0 0 10px;
	font-size: 26px;
	color: #f0e6d2;
}

p.gp-feature__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(232, 220, 198, 0.65);
	text-wrap: pretty;
}

@media (max-width: 880px) {
	.gp-features > .gp-feature--mid {
		border-left: none;
		border-right: none;
	}
}

/* ---------------------------------------------------------------------------
 * Specialty feature card (Peking Duck)
 * ------------------------------------------------------------------------ */

.wp-block-group.gp-feature-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
	background: #fffdf8;
	border: 1px solid rgba(185, 143, 69, 0.35);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 16px 44px rgba(36, 28, 18, 0.12);
	margin-bottom: 40px;
}

.gp-feature-card__media {
	position: relative;
	min-height: 320px;
}

.gp-feature-card__media .wp-block-image {
	margin: 0;
	position: absolute;
	inset: 0;
}

.gp-feature-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gp-feature-card__body {
	padding: 44px 42px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h3.gp-feature-card__title {
	margin: 0 0 4px;
	font-size: 34px;
	color: #241c12;
}

.gp-feature-card__body p.gp-zh-sub {
	font-size: 17px;
	margin-bottom: 16px;
}

p.gp-feature-card__text {
	margin: 0 0 22px;
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(36, 28, 18, 0.7);
	text-wrap: pretty;
}

.gp-bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gp-bullets li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	font-weight: 600;
	color: #5c4a2a;
}

.gp-bullets li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #b98f45;
	flex: none;
}

@media (max-width: 700px) {
	.gp-feature-card__media {
		min-height: 240px;
	}
	.gp-feature-card__body {
		padding: 32px 26px;
	}
}

/* ---------------------------------------------------------------------------
 * Wedding packages
 * ------------------------------------------------------------------------ */

.gp-pkg {
	display: flex;
	flex-direction: column;
	background: #fffdf8;
	border: 1px solid rgba(185, 143, 69, 0.28);
	border-radius: var(--wp--custom--pkg-radius, 10px);
	padding: 38px 34px;
}

.gp-pkg--featured {
	position: relative;
	z-index: 1;
	border-color: rgba(185, 143, 69, 0.6);
	box-shadow: 0 24px 56px rgba(36, 28, 18, 0.2);
	transform: scale(1.05);
}

.gp-pkg > .gp-pkg__head {
	background: linear-gradient(180deg, #e7bc5b 0%, #c6952f 100%);
	margin: -38px -34px 26px;
	padding: 28px 24px;
	border-radius: 9px 9px 0 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

h3.gp-pkg__name {
	margin: 0;
	font-size: 28px;
	color: #2b1f0e;
	line-height: 1.15;
}

.gp-pkg__head p {
	margin: 0;
}

p.gp-pkg__name-zh {
	font-family: 'Noto Serif SC', 'Noto Serif TC', serif;
	font-size: 17px;
	font-weight: 600;
	color: #2b1f0e;
}

p.gp-pkg__tagline {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #3f2e12;
}

.gp-pkg__items {
	list-style: none;
	margin: 0;
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	border-top: 1px solid rgba(185, 143, 69, 0.25);
	border-bottom: 1px solid rgba(185, 143, 69, 0.25);
	flex: 1;
}

.gp-pkg__items li {
	font-size: 14.5px;
	line-height: 1.5;
	color: rgba(36, 28, 18, 0.85);
}

.gp-pkg__items li .gp-pkg__zh {
	display: block;
	font-family: 'Noto Serif SC', 'Noto Serif TC', serif;
	font-size: 13.5px;
	color: #9a742f;
}

.gp-pkg__price {
	padding-top: 26px;
	text-align: center;
}

.gp-pkg__price p {
	margin: 0;
}

p.gp-pkg__amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}

.gp-pkg__amount strong {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
	font-size: 46px;
	color: #9a742f;
	line-height: 1;
}

.gp-pkg__amount span {
	font-size: 14px;
	color: rgba(36, 28, 18, 0.62);
}

p.gp-pkg__note {
	margin-top: 8px;
	font-size: 13px;
	color: rgba(36, 28, 18, 0.5);
}

@media (max-width: 1100px) {
	.gp-pkg--featured {
		transform: none;
	}
}

/* ---------------------------------------------------------------------------
 * Philosophy band / Chef's special / CTA
 * ------------------------------------------------------------------------ */

.gp-philosophy {
	padding-top: 72px;
	padding-bottom: 72px;
}

p.gp-philosophy__text {
	margin: 0 0 36px;
	font-size: 17.5px;
	line-height: 1.75;
	color: rgba(232, 220, 198, 0.82);
	text-wrap: pretty;
}

.gp-lang-zh .gp-philosophy__text {
	font-size: 17px;
	line-height: 2;
}

.gp-narrow {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.gp-narrow--900 {
	max-width: 900px;
}

h2.gp-cta__title {
	margin: 0 0 18px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.12;
	color: #f7f1e3;
	text-wrap: pretty;
}

.gp-lang-zh h2.gp-cta__title {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: clamp(32px, 3.8vw, 48px);
	line-height: 1.25;
}

p.gp-cta__text {
	margin: 0 0 38px;
	font-size: 17px;
	line-height: 1.65;
	color: rgba(232, 220, 198, 0.72);
	text-wrap: pretty;
}

.gp-lang-zh p.gp-cta__text {
	font-size: 16.5px;
	line-height: 1.9;
}

.gp-chefs-special {
	padding-top: 88px;
	padding-bottom: 88px;
}

h2.gp-chefs-special__title {
	margin: 0 0 18px;
	font-size: clamp(32px, 3.8vw, 46px);
	line-height: 1.12;
	color: #f7f1e3;
}

p.gp-chefs-special__text {
	margin: 0 0 34px;
	font-size: 16.5px;
	line-height: 1.7;
	color: rgba(232, 220, 198, 0.72);
	text-wrap: pretty;
}

/* ---------------------------------------------------------------------------
 * Contact cards + map
 * ------------------------------------------------------------------------ */

.gp-contact-card {
	padding: 40px 34px;
	text-align: center;
	overflow: visible;
}

.gp-contact-card .gp-icon-circle {
	width: 56px;
	height: 56px;
	margin: 0 auto 22px;
}

.gp-contact-card .gp-icon-circle svg {
	width: 22px;
	height: 22px;
}

h3.gp-contact-card__title {
	margin: 0 0 14px;
	font-size: 27px;
	color: #241c12;
}

.gp-lang-zh h3.gp-contact-card__title {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: 24px;
}

p.gp-contact-card__value {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(36, 28, 18, 0.7);
}

p.gp-contact-card__value a {
	color: #9a742f;
	text-decoration: none;
	font-weight: 600;
}

.gp-map {
	border: 1px solid rgba(198, 161, 91, 0.35);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.gp-map iframe {
	display: block;
	border: 0;
	width: 100%;
}

h2.gp-map__title {
	margin: 0 0 12px;
	font-size: clamp(32px, 3.8vw, 46px);
	line-height: 1.12;
	color: #f7f1e3;
}

p.gp-map__address,
.gp-contact-inline--address-line {
	margin: 0;
	font-size: 15.5px;
	font-style: italic;
	color: rgba(232, 220, 198, 0.68);
	text-align: center;
}

.wp-block-group.gp-map-head {
	text-align: center;
	margin-bottom: 44px;
}

/* ---------------------------------------------------------------------------
 * Privacy Policy article
 * ------------------------------------------------------------------------ */

.gp-article {
	padding-top: 88px;
	padding-bottom: 110px;
}

.gp-article h1 {
	margin: 0 0 14px;
	font-size: clamp(40px, 4.8vw, 62px);
	line-height: 1.08;
	color: #f7f1e3;
}

.gp-lang-zh .gp-article h1 {
	font-family: var(--wp--preset--font-family--heading-zh);
}

p.gp-article__org {
	margin: 0 0 6px;
	font-size: 16.5px;
	font-weight: 700;
	color: #d4b26a;
}

p.gp-article__date {
	margin: 0 0 40px;
	font-size: 14.5px;
	color: rgba(232, 220, 198, 0.6);
}

p.gp-article__date strong {
	color: rgba(232, 220, 198, 0.8);
}

.gp-article h2 {
	margin: 0 0 18px;
	padding-top: 8px;
	font-size: 30px;
	color: #d4b26a;
}

.gp-lang-zh .gp-article h2 {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: 27px;
}

.gp-article h3 {
	margin: 0 0 12px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 17px;
	font-weight: 700;
	color: #f0e6d2;
}

.gp-article p {
	margin: 0 0 14px;
	font-size: 15.5px;
	line-height: 1.85;
	color: rgba(232, 220, 198, 0.8);
	text-wrap: pretty;
}

.gp-article p strong {
	color: #f0e6d2;
}

.gp-article p.gp-space-below {
	margin-bottom: 44px;
}

.gp-article ul {
	margin: 0 0 24px;
	padding-left: 22px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 15.5px;
	line-height: 1.8;
	color: rgba(232, 220, 198, 0.8);
	list-style: disc;
}

.gp-article ul.gp-space-below {
	margin-bottom: 44px;
}

.gp-article ul li strong {
	color: #f0e6d2;
}

.gp-article a {
	color: #d4b26a;
}

.gp-policy-box {
	border: 1px solid rgba(198, 161, 91, 0.35);
	border-radius: 8px;
	padding: 26px 30px;
	background: rgba(198, 161, 91, 0.05);
	font-size: 15.5px;
	line-height: 1.85;
	color: rgba(232, 220, 198, 0.85);
}

.gp-policy-box p {
	margin: 0;
	color: rgba(232, 220, 198, 0.85);
}

.gp-policy-box p.gp-policy-box__org {
	font-weight: 700;
	color: #f0e6d2;
	margin-bottom: 6px;
}

.gp-policy-box a {
	color: #d4b26a;
	text-decoration: none;
	font-weight: 600;
}

/* ---------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------ */

.gp-footer {
	background: #100d0a;
	border-top: 1px solid rgba(198, 161, 91, 0.25);
}

.gp-footer__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 72px 28px 40px;
}

.gp-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 48px;
}

.gp-footer__logo {
	display: inline-block;
	margin-bottom: 18px;
}

.gp-footer__logo img {
	height: 84px;
	width: auto;
	display: block;
}

.gp-footer__wordmark {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 28px;
	font-weight: 600;
	color: #d4b26a;
}

.gp-footer__blurb {
	margin: 0 0 20px;
	font-size: 14.5px;
	line-height: 1.7;
	color: rgba(232, 220, 198, 0.6);
	text-wrap: pretty;
}

.gp-lang-zh .gp-footer__blurb {
	line-height: 1.9;
}

.gp-footer__social {
	display: flex;
	gap: 12px;
}

.gp-social {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(198, 161, 91, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d4b26a;
	text-decoration: none;
	transition: background 0.2s ease;
}

.gp-social:hover {
	background: rgba(198, 161, 91, 0.15);
	color: #d4b26a;
}

.gp-social svg {
	width: 17px;
	height: 17px;
}

h3.gp-footer__heading {
	margin: 0 0 20px;
	font-size: 22px;
	color: #d4b26a;
}

.gp-lang-zh h3.gp-footer__heading {
	font-family: var(--wp--preset--font-family--heading-zh);
	font-size: 21px;
}

.gp-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gp-footer__links a {
	color: rgba(232, 220, 198, 0.72);
	text-decoration: none;
	font-size: 14.5px;
	transition: color 0.2s ease;
}

.gp-footer__links a:hover {
	color: #c6a15b;
}

.gp-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(232, 220, 198, 0.72);
}

a.gp-footer__phone {
	color: #d4b26a;
	text-decoration: none;
	font-weight: 600;
}

.gp-footer__bottom {
	margin-top: 56px;
	padding-top: 26px;
	border-top: 1px solid rgba(198, 161, 91, 0.18);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: rgba(232, 220, 198, 0.5);
}

.gp-footer__bottom a {
	color: rgba(232, 220, 198, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

.gp-footer__bottom a:hover {
	color: #c6a15b;
}

/* ---------------------------------------------------------------------------
 * Chinese font swap (locale-driven)
 * ------------------------------------------------------------------------ */

html[lang='zh-CN'] body,
.gp-lang-zh {
	font-family: var(--wp--preset--font-family--body-zh);
}

.gp-lang-zh h1,
.gp-lang-zh h2,
.gp-lang-zh h3,
.gp-lang-zh h4 {
	font-family: var(--wp--preset--font-family--heading-zh);
}

/* Keep the latin serif for latin-only footer bits on zh pages where the
   design retains it (copyright line stays latin). */
.gp-lang-zh .gp-footer__bottom {
	font-family: var(--wp--preset--font-family--body);
}

/* ---------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------ */

@media (max-width: 900px) {
	.gp-header__inner {
		flex-wrap: wrap;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.gp-header__nav {
		order: 3;
		width: 100%;
		gap: 18px;
	}
}

@media (max-width: 781px) {
	.gp-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.gp-hero__content,
	.gp-hero__content--wide {
		padding: 90px 20px 100px;
	}

	.gp-card--h {
		flex-direction: column;
		align-items: stretch;
	}

	.gp-card--h .wp-block-image img {
		width: 100%;
		height: 180px;
	}

	.gp-card--h .gp-card__body {
		padding: 16px 22px 20px;
	}

	.gp-footer__bottom {
		justify-content: center;
		text-align: center;
	}
}
