:root {
	--pk-bg: #f8f7f7;
	--pk-surface: #ffffff;
	--pk-surface-soft: #f4eee7;
	--pk-text: #413730;
	--pk-muted: #7b6a5d;
	--pk-line: rgba(83, 67, 55, 0.14);
	--pk-accent: #9d7d68;
	--pk-shadow: 0 24px 60px rgba(80, 61, 49, 0.08);
	--pk-serif: "Cormorant Garamond", Georgia, serif;
	--pk-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pk-shell: min(1300px, calc(100vw - 48px));
	--pk-gap: clamp(20px, 3vw, 34px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pk-bg);
	color: var(--pk-text);
	font-family: var(--pk-sans);
	font-size: 16px;
	line-height: 1.7;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--pk-accent);
}

p {
	margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: var(--pk-serif);
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.15;
}

h1 {
	font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.site-shell {
	width: var(--pk-shell);
	margin-inline: auto;
}

.site-main {
	padding-bottom: 2rem;
}

.content-section {
	padding-block: clamp(36px, 6vw, 88px);
}

.section-rule {
	border-top: 1px solid var(--pk-line);
	padding-top: clamp(30px, 4vw, 48px);
}

.section-rule--tight {
	padding-top: 28px;
}

.eyebrow {
	margin-bottom: 1rem;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pk-muted);
}

.centered-copy,
.section-heading {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.centered-copy--wide {
	max-width: 880px;
}

.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.skip-link.screen-reader-text:focus {
	left: 16px;
	top: 16px;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: #fff;
	border: 1px solid var(--pk-line);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(248, 247, 247, 0.94);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(83, 67, 55, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 18px;
	min-height: 120px;
}

.site-header__nav {
	display: flex;
}

.site-header__nav--right {
	justify-content: flex-end;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.menu li {
	margin: 0;
}

.site-branding {
	text-align: center;
}

.site-branding__text,
.site-footer__title {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.site-branding__text--stacked {
	gap: 0;
	color: #62728c;
	font-family: var(--pk-sans);
	font-size: clamp(1.15rem, 1.5vw, 1.55rem);
	font-weight: 300;
	letter-spacing: 0.18em;
	line-height: 0.95;
	text-transform: uppercase;
}

.site-branding__line {
	display: block;
}

.mobile-nav-toggle {
	display: none;
	justify-self: end;
	align-items: center;
	gap: 0.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--pk-text);
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	cursor: pointer;
}

.mobile-nav-toggle__icon,
.mobile-nav-toggle__icon::before,
.mobile-nav-toggle__icon::after {
	display: block;
	width: 22px;
	height: 1px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
	content: "";
}

.mobile-nav-toggle__icon {
	position: relative;
}

.mobile-nav-toggle__icon::before {
	position: absolute;
	top: -6px;
	left: 0;
}

.mobile-nav-toggle__icon::after {
	position: absolute;
	top: 6px;
	left: 0;
}

body.mobile-menu-open .mobile-nav-toggle__icon {
	background: transparent;
}

body.mobile-menu-open .mobile-nav-toggle__icon::before {
	transform: translateY(6px) rotate(45deg);
}

body.mobile-menu-open .mobile-nav-toggle__icon::after {
	transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
	border-top: 1px solid var(--pk-line);
	background: var(--pk-bg);
}

.mobile-menu__inner {
	padding-block: 24px 30px;
	display: grid;
	gap: 24px;
}

.menu--mobile {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.hero {
	padding-top: clamp(30px, 5vw, 54px);
}

.hero--front-page {
	padding-top: 0;
}

.hero__media img,
.page-entry__featured img,
.single-entry__media img,
.post-card__image img,
.editorial-card__media img {
	border-radius: 2px;
	box-shadow: var(--pk-shadow);
	object-fit: cover;
}

.hero__media img {
	aspect-ratio: 16 / 10;
}

.hero__media--full {
	position: relative;
}

.hero__media--full img {
	width: 100%;
	height: clamp(520px, 78vh, 860px);
	aspect-ratio: auto;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(15, 17, 20, 0.54) 0%, rgba(15, 17, 20, 0.2) 50%, rgba(15, 17, 20, 0.1) 100%);
}

.hero__headline-wrap {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
}

.hero__headline-box {
	max-width: 420px;
	color: #fff;
}

.hero__headline-line {
	display: block;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.92);
}

.hero__headline {
	margin: 22px 0;
	font-family: var(--pk-sans);
	font-size: clamp(2.8rem, 5vw, 5.2rem);
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 0.94;
	text-transform: uppercase;
}

.hero__intro {
	max-width: 820px;
	margin: 34px auto 0;
	text-align: center;
}

.hero__quote {
	font-family: var(--pk-serif);
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	line-height: 1.45;
	color: var(--pk-text);
}

.front-page__statement {
	font-family: var(--pk-serif);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.7;
}

.service-tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 3vw, 46px);
}

.service-tile {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--pk-surface-soft);
	min-height: 420px;
	max-height: 500px !important;
}

.service-tile__image {
	width: 100%;
	height: 100%;
	min-height: 510px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.service-tile:hover .service-tile__image,
.service-tile:focus-visible .service-tile__image {
	transform: scale(1.03);
}

.service-tile__panel {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: min(68%, 360px);
	padding: 2rem 1.75rem;
	background: rgb(255 255 255 / 66%);
	backdrop-filter: blur(5px);
	transform: translate(-50%, -50%);
	text-align: center;
}

.service-tile__kicker {
	font-size: 0.8rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.service-tile__rule {
	display: block;
	width: min(160px, 60%);
	height: 2px;
	margin: 0.9rem 0;
	background: #6b8ba0;
}

.service-tile__title {
	font-family: var(--pk-sans);
	font-size: clamp(2.1rem, 4vw, 4rem);
	font-weight: 300;
	letter-spacing: 0.06em;
	line-height: 0.95;
	text-transform: uppercase;
	color: #5b8095;
}

.cards-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--pk-gap);
}

.service-card,
.post-card,
.contact-card {
	padding: clamp(24px, 3vw, 34px);
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--pk-line);
}

.service-card h2,
.post-card h2,
.post-card h3,
.editorial-card h3 {
	margin-bottom: 0.4rem;
}

.service-card p:last-child,
.post-card p:last-child {
	margin-bottom: 0;
	color: var(--pk-muted);
}

.editorial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 34px);
	margin-top: 42px;
}

.editorial-card__media img {
	aspect-ratio: 4 / 5;
	margin-bottom: 16px;
}

.post-card__image img {
	aspect-ratio: 4 / 3;
}

.post-card__content {
	padding-top: 16px;
}

.page-entry__header,
.single-entry__header {
	max-width: 860px;
	margin-inline: auto;
	margin-bottom: 32px;
	text-align: center;
}

.page-entry__intro,
.page-entry__lead {
	max-width: 700px;
	margin-inline: auto;
}

.page-entry__intro {
	font-family: var(--pk-serif);
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	line-height: 1.5;
}

.page-entry__lead {
	color: var(--pk-muted);
}

.page-entry__featured,
.single-entry__media {
	margin-bottom: 38px;
}

.page-entry__content {
	max-width: 820px;
	margin-inline: auto;
}

.page-id-16 .page-entry__content {
	max-width: none;
}

.page-entry__content--contact {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.page-entry__content--contact-single {
	display: block;
}

.entry-copy {
	font-size: 1.03rem;
}

.entry-copy h2,
.entry-copy h3 {
	margin-top: 2rem;
}

.default-text-block + .default-text-block,
.default-text-block + .menu-section,
.menu-section + .menu-section,
.feature-grid,
.legal-copy {
	margin-top: 2.25rem;
}

.editorial-quote {
	margin: 2rem 0;
	padding: 2rem 0;
	border-top: 1px solid var(--pk-line);
	border-bottom: 1px solid var(--pk-line);
	font-family: var(--pk-serif);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	line-height: 1.55;
	text-align: center;
}

.editorial-quote p:last-child {
	margin-bottom: 0;
}

.menu-section h2 {
	margin-bottom: 1.4rem;
	text-align: center;
}

.menu-groups {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px 32px;
}

.menu-group {
	padding: 1.4rem 1.5rem;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--pk-line);
}

.menu-group h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-family: var(--pk-sans);
}

.menu-list {
	margin: 0;
	padding-left: 1.15rem;
}

.menu-list li + li {
	margin-top: 0.75rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.feature-grid__item {
	padding: 1.6rem;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid var(--pk-line);
}

.feature-grid__item h3 {
	margin-bottom: 0.6rem;
}

.legal-copy {
	font-size: 0.98rem;
}

.entry-copy img {
	margin-block: 1.5rem;
}

.contact-card h2 {
	margin-bottom: 1rem;
	font-size: 2rem;
}

.contact-block {
	display: grid;
	grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
	margin-top: 2.75rem;
}

.contact-form-wrap {
	padding: clamp(30px, 4vw, 42px);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(83, 67, 55, 0.1);
	box-shadow: var(--pk-shadow);
}

.contact-card {
	position: sticky;
	top: 132px;
	padding: clamp(30px, 4vw, 42px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(248, 244, 240, 0.88) 100%);
	border: 1px solid rgba(83, 67, 55, 0.1);
	box-shadow: var(--pk-shadow);
}

.contact-card__eyebrow {
	margin-bottom: 0.9rem;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--pk-muted);
}

.contact-card__intro {
	max-width: 28ch;
	margin-bottom: 1.75rem;
	color: var(--pk-muted);
}

.contact-card__meta {
	display: grid;
	gap: 1rem;
}

.contact-card__meta p {
	margin: 0;
	font-size: 1.02rem;
}

.contact-card__meta a {
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-card__meta a:hover,
.contact-card__meta a:focus-visible {
	border-color: currentColor;
}

.contact-form-wrap p:last-child {
	margin-bottom: 0;
}

.contact-form-wrap label,
.contact-form-wrap .wpcf7-form label {
	display: block;
	margin-bottom: 1.1rem;
	font-size: 0.95rem;
	color: var(--pk-text);
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	margin-top: 0.45rem;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(83, 67, 55, 0.18);
	background: rgba(255, 255, 255, 0.96);
	font: inherit;
	color: var(--pk-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form-wrap textarea {
	min-height: 220px;
	resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap .wpcf7-form-control:focus {
	outline: none;
	border-color: rgba(91, 128, 149, 0.7);
	box-shadow: 0 0 0 4px rgba(107, 139, 160, 0.12);
	background: #fff;
}

.contact-form-wrap .wpcf7-submit,
.contact-form-wrap input[type="submit"],
.contact-form-wrap button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.6rem;
	border: 1px solid transparent;
	background: #5f7f95;
	color: #fff;
	font: inherit;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wrap .wpcf7-submit:hover,
.contact-form-wrap .wpcf7-submit:focus-visible,
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap input[type="submit"]:focus-visible,
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap button[type="submit"]:focus-visible {
	background: #4f7087;
	box-shadow: 0 16px 30px rgba(95, 127, 149, 0.2);
	transform: translateY(-1px);
}

.contact-form-wrap .wpcf7-spinner {
	margin-left: 0.75rem;
}

.contact-form-wrap .wpcf7-response-output {
	margin: 1.25rem 0 0;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(83, 67, 55, 0.14);
	font-size: 0.95rem;
}

.contact-form-wrap .wpcf7-not-valid-tip {
	margin-top: 0.4rem;
	font-size: 0.88rem;
}

[data-aos="pk-fade"] {
	opacity: 0;
	transform: none !important;
	transition-property: opacity !important;
	transition-duration: 0.8s !important;
	transition-timing-function: ease-out;
}

[data-aos="pk-fade"].aos-animate {
	opacity: 1;
	transform: none !important;
}

.single-entry__content {
	max-width: 760px;
	margin-inline: auto;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: 760px;
	margin: 52px auto 0;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.archive-description {
	color: var(--pk-muted);
}

.pagination-wrap {
	margin-top: 36px;
	text-align: center;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--pk-line);
	background: rgba(255, 255, 255, 0.72);
}

.page-numbers.current,
.button-link {
	background: var(--pk-text);
	color: #fff;
}

.site-footer {
	padding-block: 36px 52px;
}

.site-footer__top {
	padding-bottom: 32px;
	text-align: center;
}

.site-footer__contact {
	max-width: 520px;
	margin: 22px auto 0;
}

.footer-showcase {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.footer-showcase__item,
.footer-feed__item {
	display: block;
	overflow: hidden;
}

.footer-showcase__item img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow: var(--pk-shadow);
	transition: transform 0.35s ease;
}

.footer-feed {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.footer-feed__item img {
	aspect-ratio: 1;
	object-fit: cover;
	box-shadow: var(--pk-shadow);
	transition: transform 0.35s ease;
}

.footer-showcase__item:hover img,
.footer-feed__item:hover img {
	transform: scale(1.03);
}

.site-footer__bottom {
	padding-top: 26px;
	text-align: center;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pk-muted);
}

.not-found {
	text-align: center;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	background: rgba(10, 12, 15, 0.88);
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox__image {
	max-width: min(92vw, 1400px);
	max-height: 88vh;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.lightbox__close {
	position: absolute;
	top: 20px;
	right: 24px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	cursor: pointer;
}

body.lightbox-open {
	overflow: hidden;
}

@media (max-width: 920px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 92px;
	}

	.site-header__nav {
		display: none;
	}

	.mobile-nav-toggle {
		display: inline-flex;
	}

	.site-branding {
		justify-self: center;
	}

	.cards-grid,
	.post-grid,
	.editorial-grid,
	.service-tiles,
	.footer-showcase,
	.menu-groups,
	.feature-grid,
	.page-entry__content--contact,
	.contact-block,
	.footer-feed {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--pk-shell: min(100vw - 28px, 1180px);
	}

	.hero__media img {
		aspect-ratio: 4 / 5;
	}

	.hero__media--full img {
		height: 72vh;
	}

	.hero__headline-box {
		max-width: 280px;
	}

	.hero__headline {
		font-size: clamp(2rem, 10vw, 3.5rem);
	}

	.contact-card {
		position: static;
	}

	.service-tile {
		min-height: 320px;
	}

	.service-tile__image {
		min-height: 510px;
	}

	.service-tile__panel {
		left: 50%;
		width: calc(100% - 36px);
		min-width: auto;
		transform: translate(-50%, -50%);
	}

	.site-branding__text--stacked {
		font-size: 1rem;
	}

	.post-navigation {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
.page.page-id-20 p.page-entry__intro {
    display: none;
}
