/*
Theme Name: Heritage
Theme URI: https://example.com
Author: Heritage
Description: Heritage Builders NJ — homepage aligned to site/home2.mhtml snapshot.
Version: 0.3.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: heritage
*/

:root {
	--heritage-teal: #193846;
	--heritage-teal-dark: #142d38;
	--heritage-mint: #20da99;
	--heritage-gold: #d3c1a2;
	--heritage-gold-heading: #d3c1a2;
	--heritage-nav-dropdown-bg: #1a1a1a;
	--heritage-nav-dropdown-hover: #355a8c;
	--heritage-text: #262626;
	--heritage-text-muted: #666;
	--heritage-footer-bg: #262626;
	--heritage-footer-text: #f7f7f7;
	--heritage-footer-muted: #ccc;
	--heritage-bg-page: #fff;
	--heritage-bg-soft: #f2f0ec;
	--heritage-max: 75rem;
	--heritage-font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
	--heritage-font-heading: "Poppins", var(--heritage-font);
	--heritage-font-serif: "Cormorant", Georgia, "Times New Roman", serif;
	--heritage-font-raleway: "Raleway", var(--heritage-font);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--heritage-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--heritage-text);
	background: var(--heritage-bg-page);
	-webkit-font-smoothing: antialiased;
}

body.heritage-nav-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--heritage-teal);
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	left: 0.5rem;
	top: 0.5rem;
	margin: 0;
	padding: 0.5rem 1rem;
	background: #fff;
	border: 2px solid var(--heritage-teal);
	z-index: 100000;
	text-decoration: none;
}

/* --- Layout --- */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
	padding: 1.5rem 0 2rem;
}

.site-main--certs {
	padding:0px;
}

.site-main--front {
	padding: 0;
}

.wrap {
	width: 100%;
	max-width: var(--heritage-max);
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* --- Header: dark bar (logo + nav, matches live site) --- */
.site-header {
	background: #262626;
	padding: 0.75rem 0;
	position: relative;
	z-index: 200;
}

.heritage-front .site-header {
	border-bottom: 0;
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 961px) {
	.site-header__inner {
		flex-wrap: nowrap;
 	}
}

.site-branding {
	flex-shrink: 0;
	line-height: 0;
}

.site-branding .custom-logo-link,
.site-branding .custom-logo-link img,
.site-logo-link {
	display: block;
	line-height: 0;
}

.site-branding .custom-logo-link img,
.site-logo-link img {
	max-height: 56px;
	width: auto;
	height: auto;
}

@media (min-width: 961px) {
	.site-branding .custom-logo-link img,
	.site-logo-link img {
		max-height: 64px;
	}
}

/* Mobile nav toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	margin-left: auto;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	height: 3px;
	width: 24px;
	background: #fff;
	border-radius: 2px;
}

/* Primary navigation — live: Montserrat 600, 14px, uppercase, letter-spacing 0.1em */
.main-nav {
	font-family: var(--heritage-font);
	font-size: 0.875rem;
	font-weight: 600;
	flex: 1 1 100%;
}

@media (min-width: 961px) {
	.main-nav {
		flex: 0 1 auto;
		margin-left: auto;
		font-size: 0.875rem;
	}
}

.main-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem clamp(0.75rem, 2vw, 1.35rem);
}

.main-nav__list > li {
	position: relative;
}

/* Top-level links: white; active / ancestor: gold */
.main-nav__list > li > a {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0;
	white-space: nowrap;
}

.main-nav__list > li > a:hover,
.main-nav__list > li > a:focus {
	color: var(--heritage-gold);
}

.main-nav__list > .current-menu-item > a,
.main-nav__list > .current-menu-ancestor > a {
	color: var(--heritage-gold);
}

/* Dropdown chevron (e.g. Services); points up while submenu is open */
.main-nav__list > .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.35em;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	border-bottom: none;
	vertical-align: 0.2em;
	opacity: 0.95;
	transition: border 0.15s ease, vertical-align 0.15s ease;
}

.main-nav__list > .menu-item-has-children:hover > a::after,
.main-nav__list > .menu-item-has-children:focus-within > a::after {
	border-top: none;
	border-bottom: 5px solid currentColor;
	vertical-align: 0.15em;
}

.main-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 240px;
	background: var(--heritage-nav-dropdown-bg);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	border-radius: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 100;
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav .sub-menu li {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav .sub-menu li:first-child {
	border-top: 0;
}

.main-nav .sub-menu a {
	color: rgba(255, 255, 255, 0.88);
	padding: 0.65rem 1rem;
	display: block;
	white-space: nowrap;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.main-nav .sub-menu a:hover,
.main-nav .sub-menu a:focus {
	color: #fff;
	background: var(--heritage-nav-dropdown-hover);
}

.main-nav .sub-menu .current-menu-item > a,
.main-nav .sub-menu .current-menu-ancestor > a {
	color: #fff;
	background: rgba(53, 90, 140, 0.45);
}

.main-nav .sub-menu .current-menu-item > a:hover,
.main-nav .sub-menu .current-menu-item > a:focus,
.main-nav .sub-menu .current-menu-ancestor > a:hover,
.main-nav .sub-menu .current-menu-ancestor > a:focus {
	background: var(--heritage-nav-dropdown-hover);
}

.main-nav .sub-menu .sub-menu {
	left: 100%;
	top: 0;
	margin-left: -1px;
	z-index: 110;
}

.main-nav .sub-menu .menu-item-has-children > a {
	padding-right: 2rem;
	position: relative;
}

/* Flyout row: chevron on the right, opens to the right (matches live menu) */
.main-nav .sub-menu .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0.75rem;
	top: 50%;
	margin-top: 0;
	margin-left: 0;
	float: none;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid rgba(255, 255, 255, 0.75);
	border-right: none;
	transform: translateY(-50%);
}

/* Submenu toggle (mobile caret) — hidden on desktop; hover/focus still opens */
.submenu-toggle {
	display: none;
}

@media (max-width: 960px) {
	.nav-toggle {
		display: flex;
	}

	.main-nav {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.main-nav.is-open {
		max-height: 80vh;
		overflow-y: auto;
	}

	.main-nav__list {
		flex-direction: column;
		align-items: stretch;
		flex-wrap: nowrap;
		gap: 0;
		padding: 0.5rem 0 0;
		justify-content: flex-start;
	}

	.main-nav__list > li {
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.main-nav__list > li > a {
		white-space: normal;
		padding: 0.85rem 0;
	}

	/* Parent <li> hosts link + caret toggle side-by-side */
	.main-nav .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.main-nav .menu-item-has-children > a {
		flex: 1 1 auto;
		min-width: 0;
	}

	.main-nav .menu-item-has-children > .sub-menu {
		flex: 1 1 100%;
	}

	/* Suppress the CSS chevron on parent links on mobile — JS caret replaces it */
	.main-nav__list > .menu-item-has-children > a::after,
	.main-nav .sub-menu .menu-item-has-children > a::after {
		display: none;
	}

	.submenu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 2.75rem;
		height: 2.75rem;
		padding: 0;
		margin-left: auto;
		background: transparent;
		border: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.12);
		color: #fff;
		cursor: pointer;
	}

	.submenu-toggle__icon {
		display: block;
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 6px solid currentColor;
		transition: transform 0.2s ease;
	}

	.menu-item-has-children.submenu-open > .submenu-toggle .submenu-toggle__icon {
		transform: rotate(180deg);
	}

	.main-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: var(--heritage-nav-dropdown-bg);
		border-radius: 0;
		display: none;
		padding: 0;
		margin: 0 0 0.25rem;
	}

	/* Desktop hover/focus-within rules do not apply here; mobile uses explicit class */
	.main-nav li:hover > .sub-menu,
	.main-nav li:focus-within > .sub-menu {
		display: none;
	}

	.main-nav .menu-item-has-children.submenu-open > .sub-menu {
		display: block;
	}

	.main-nav .sub-menu li {
		border-top-color: rgba(255, 255, 255, 0.08);
	}

	.main-nav .sub-menu a {
		color: rgba(255, 255, 255, 0.88);
		padding: 0.65rem 1rem;
		font-size: 0.75rem;
	}

	.main-nav .sub-menu a:hover,
	.main-nav .sub-menu a:focus {
		background: var(--heritage-nav-dropdown-hover);
	}

	.main-nav .sub-menu .sub-menu {
		margin-left: 0;
		background: #141414;
	}
}

/* Shared buttons — live uses rectangles, Montserrat 400 at 16px, no text-transform */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-family: var(--heritage-font);
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
	border-radius: 0;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
	background: rgb(12, 83, 132);
	color: #fff;
	border-color: rgb(12, 83, 132);
}

.btn--primary:hover {
	background: rgb(14, 105, 161);
	color: #fff;
	border-color: rgb(14, 105, 161);
}

.btn--secondary {
	background: transparent;
	color: var(--heritage-text);
	border-color: #ccc;
	padding: 0.65rem 1.5rem;
	min-height: 3.125rem;
}

.btn--secondary:hover {
	background: var(--heritage-text);
	color: #fff;
	border-color: var(--heritage-text);
}

/* --- Content (interior) --- */
.entry-header {
	margin-bottom: 1.25rem;
}

.entry-title {
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
	line-height: 1.25;
}

.entry-meta {
	font-size: 0.875rem;
	color: var(--heritage-text-muted);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

/* --- Footer --- */
.site-footer {
	margin-top: auto;
	background: var(--heritage-footer-bg);
	color: var(--heritage-footer-text);
	font-size: 0.9375rem;
}

.site-footer a {
	color: var(--heritage-footer-muted);
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-footer__main {
	padding: 3rem 1.25rem 0;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
	gap: 2rem 1.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

.site-footer__logo .custom-logo-link,
.site-footer__logo a {
	display: inline-block;
	line-height: 0;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
	max-width: 220px;
	height: auto;
}

.site-footer__tagline {
	color: var(--heritage-footer-muted);
	font-size: 0.875rem;
	line-height: 1.6;
	margin: 1rem 0;
}

.site-footer__heading {
	font-family: var(--heritage-font-heading);
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
	color: var(--heritage-gold-heading);
	margin: 0 0 0.75rem;
}

.site-footer__text {
	margin: 0 0 0.5rem;
	color: var(--heritage-footer-muted);
	font-size: 0.875rem;
}

.site-footer__nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__nav li {
	margin: 0 0 0.5rem;
}

.site-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	color: var(--heritage-gold);
	transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__social svg {
	width: 60%;
	height: 60%;
	fill: currentColor;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
	background: rgba(0, 0, 0, 0.2);
	color: var(--heritage-gold);
}

.site-footer__inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	margin-right: 0.4rem;
	vertical-align: middle;
	color: var(--heritage-gold);
}

.site-footer__inline-icon svg {
	width: 100%;
	height: 100%;
}

.site-footer__licenses {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__licenses li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.1rem;
}

.site-footer__license-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	color: var(--heritage-gold);
}

.site-footer__license-icon svg,
.site-footer__license-icon svg path {
	fill: currentColor;
}

.site-footer__license-icon svg {
	width: 50%;
	height: 50%;
}

.site-footer__license-body {
	display: flex;
	flex-direction: column;
}

.site-footer__license-title {
	display: block;
	color: var(--heritage-footer-text);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	margin-bottom: 0.15rem;
}

.site-footer__license-num {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	color: var(--heritage-footer-muted);
}

/* Email signup form in footer */
.site-footer__email-form {
	margin-top: 0.25rem;
	max-width: 280px;
}

.site-footer__email-form input {
	width: 100%;
	padding: 0.75rem 0.9rem;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	color: #fff;
	font-family: var(--heritage-font);
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
}

.site-footer__email-form input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__email-form .btn {
	width: 100%;
}

.site-footer__consent {
	padding: 1.5rem 1.25rem;
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.65);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__consent p {
	margin: 0;
}

.site-footer__copy {
	text-align: center;
	padding: 1.25rem 1.25rem 2rem;
	font-size: 0.8125rem;
	color: var(--heritage-footer-muted);
}

.site-footer__copy p {
	margin: 0;
}

.site-footer__copy a {
	color: var(--heritage-footer-muted);
}

/* ── Shared section typography (used by testimonials, etc.) ───────── */

.section__eyebrow {
	text-align: center;
	margin: 0 0 0.35rem;
	font-family: var(--heritage-font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--heritage-text);
}

.section__heading {
	margin: 0 0 2rem;
	text-align: center;
	font-family: var(--heritage-font-serif);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.1;
	color: var(--heritage-text);
}

@media (min-width: 768px) {
	.section__heading {
		font-size: 3.75rem;
	}
}

/* ── Testimonials ─────────────────────────────────────────────────── */

.section--testimonials {
	padding-bottom: 3rem;
	background: var(--heritage-bg-soft);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

.testimonial-video video {
	width: 100%;
	display: block;
	border-radius: 4px;
	background: #111;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ── Split sections (Why Choose, etc.) ───────────────────────────── */

.section--split .split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

.section--split-bleed {
	padding: 5rem 0;
	background: var(--heritage-bg-soft);
}

.section--split-bleed .split--50 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.section--split-bleed .split--50 {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
}

.split--why {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
}

@media (min-width: 768px) {
	.split--why {
		grid-template-columns: 1fr 1fr;
	}
}

.split__col--image {
	min-height: 350px;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

@media (min-width: 768px) {
	.split__col--image {
		min-height: 540px;
	}
}

.section--split-bleed .split__col--text {
	display: flex;
	align-items: center;
	padding: 0 1.25rem;
}

@media (min-width: 768px) {
	.section--split-bleed .split__col--text {
		padding: 0 4.5rem;
	}
}

.split__col-inner {
	max-width: 34rem;
}

.split__col--text h2 {
	margin: 0 0 1rem;
	font-family: var(--heritage-font-serif);
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.1;
	color: var(--heritage-text);
}

@media (min-width: 768px) {
	.split__col--text h2 {
		font-size: 3.75rem;
	}
}

.section--why .split__col--text h2 {
	font-size: 2.3125rem;
}

@media (min-width: 768px) {
	.section--why .split__col--text h2 {
		font-size: 2.875rem;
	}
}

.split__text {
	margin: 0 0 1.25rem;
	font-family: var(--heritage-font);
	font-size: 1rem;
	line-height: 2;
	color: #565656;
}

/* ── Accordion ────────────────────────────────────────────────────── */

.heritage-accordion {
	margin-top: 1rem;
}

.heritage-accordion__item {
	background: #f5f4f0;
	margin-bottom: 0.75rem;
}

.heritage-accordion__summary {
	list-style: none;
	cursor: pointer;
	padding: 1rem 1.25rem;
	font-family: var(--heritage-font);
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgb(12, 83, 132);
	display: flex;
	align-items: center;
	gap: 1rem;
	letter-spacing: 0.03em;
}

.heritage-accordion__summary::-webkit-details-marker {
	display: none;
}

.heritage-accordion__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgb(12, 83, 132);
}

.heritage-accordion__icon svg {
	width: 100%;
	height: 100%;
}

.heritage-accordion__label {
	flex: 1;
}

.heritage-accordion__chevron {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgb(12, 83, 132);
	transition: transform 0.2s ease;
}

.heritage-accordion__chevron svg {
	width: 100%;
	height: 100%;
}

.heritage-accordion__item[open] .heritage-accordion__chevron {
	transform: rotate(180deg);
}

.heritage-accordion__panel {
	padding: 0 1.25rem 1rem calc(28px + 1.25rem + 1rem);
}

.heritage-accordion__panel p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #565656;
}

/* ── Contact strip (reused on all pages) ─────────────────────────── */

.section--contact-strip {
	padding: 3rem 0;
	background: #fff;
	border-top: 1px solid #eee;
}

.contact-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1.5rem;
}

@media (min-width: 900px) {
	.contact-strip {
		grid-template-columns: repeat(4, 1fr);
	}
}

.contact-strip__item {
	text-align: center;
}

.contact-strip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 0.75rem;
	background: #f2f0ec;
	border-radius: 50%;
	color: rgb(12, 83, 132);
}

.contact-strip__icon svg {
	width: 47%;
	height: 55%;
}

.contact-strip__label {
	margin: 0 0 0.35rem;
	font-family: var(--heritage-font);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	color: var(--heritage-text);
}

.contact-strip__value {
	margin: 0;
	font-family: var(--heritage-font);
	font-size: 0.75rem;
	text-align: center;
	color: var(--heritage-text);
	line-height: 1.5;
}

@media (min-width: 768px) {
	.contact-strip__value {
		font-size: 0.875rem;
	}
}

.contact-strip__value a {
	color: inherit;
	text-decoration: none;
}

.contact-strip__value a:hover {
	text-decoration: underline;
}

/* ── Gallery lightbox ─────────────────────────────────────────────── */

.pf-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.92);
	align-items: center;
	justify-content: center;
}

.pf-lightbox.is-open {
	display: flex;
}

.pf-lightbox__img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	display: block;
}

.pf-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
}

.portfolio-photo-grid__item {
	cursor: pointer;
}
