/* ============================================================
   The Piano Tickler — Design System
   Built on Bootstrap 5. Loaded after BS5, overrides where needed.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	/* Colors — brand */
	--pt-brand:           #6B473C;
	--pt-brand-soft:      #917164;
	--pt-brand-hover:     #d49f91;
	--pt-accent-gold:     #FCA311;
	--pt-accent-orange:   #ec5c2a;

	/* Colors — surfaces */
	--pt-bg-page:         #FFFFFF;
	--pt-bg-cream-1:      #FFF9F0;
	--pt-bg-cream-2:      #FDF5EA;
	--pt-bg-card:         #F2FAFF;
	--pt-bg-footer-edge:  #F6F6F6;
	--pt-bg-footer-mid:   #FFFFFF;
	--pt-bg-mobile-menu:  rgb(55, 58, 71);
	--pt-bg-dropdown:     #f0f0f0;
	--pt-bg-navy:         #2C2E3A;
	--pt-bg-card-cream:   #F7E8D6;

	/* Colors — text */
	--pt-text:            #4C4C4C;
	--pt-heading:         #000000;
	--pt-text-on-dark:    #FFFFFF;

	/* Typography */
	--pt-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
	--pt-font-body:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--pt-fs-h1-desktop: 50px;
	--pt-fs-h1-mobile:  25px;
	--pt-fs-h2-desktop: 36px;
	--pt-fs-h2-mobile:  26px;
	--pt-fs-h3-desktop: 26px;
	--pt-fs-h3-mobile:  22px;
	--pt-fs-h4:         22px;
	--pt-fs-h5:         18px;
	--pt-fs-h6:         16px;
	--pt-fs-body:       16px;
	--pt-fs-nav-desktop: 18px;
	--pt-fs-nav-mobile:  16px;

	--pt-lh-heading: 1.1;
	--pt-lh-body:    1.7;

	/* Layout */
	--pt-container-max: 1280px;
	--pt-shell-max:     1720px;

	--pt-shadow-card: 0 0 40px 5px rgba(168, 168, 168, 0.44);
	--pt-radius-card: 12px;
	--pt-border-card-bottom: 6px solid var(--pt-accent-orange);

	/* Spacing scale (multiples of 8px) */
	--pt-space-xs: 8px;
	--pt-space-sm: 16px;
	--pt-space-md: 24px;
	--pt-space-lg: 48px;
	--pt-space-xl: 80px;
	--pt-space-xxl: 120px;
}

/* ---------- Reset / Base ---------- */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

body {
	font-family: var(--pt-font-body);
	font-size: var(--pt-fs-body);
	font-weight: 400;
	line-height: var(--pt-lh-body);
	color: var(--pt-text);
	background-color: var(--pt-bg-page);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--pt-font-heading);
	font-weight: 400;
	line-height: var(--pt-lh-heading);
	color: var(--pt-heading);
	margin-top: 0;
	margin-bottom: 0.6em;
}

h1, .h1 { font-size: var(--pt-fs-h1-desktop); }
h2, .h2 { font-size: var(--pt-fs-h2-desktop); font-weight: 600; }
h3, .h3 { font-size: var(--pt-fs-h3-desktop); }
h4, .h4 { font-size: var(--pt-fs-h4); }
h5, .h5 { font-size: var(--pt-fs-h5); }
h6, .h6 { font-size: var(--pt-fs-h6); }

p { margin-top: 0; margin-bottom: 1em; }

a {
	color: var(--pt-brand);
	text-decoration: underline;
	text-underline-offset: 2px;
}
a:hover, a:focus { color: var(--pt-brand-hover); }

/* Visible focus ring everywhere — WCAG 2.4.7 / 2.4.11 */
:focus-visible {
	outline: 3px solid var(--pt-accent-gold);
	outline-offset: 2px;
}

/* ---------- Container widths ---------- */
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: var(--pt-container-max);
}

/* Header + footer span wider per spec */
.site-header__inner,
.site-footer__top > .container-fluid,
.site-footer__bottom > .container,
.site-footer__middle > .container {
	max-width: var(--pt-shell-max);
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Skip link ---------- */
.skip-link {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10000;
	background: var(--pt-heading);
	color: var(--pt-text-on-dark);
	padding: 12px 16px;
}
.skip-link:focus {
	color: var(--pt-text-on-dark);
}

/* Force #main-content focus to be visually unobtrusive when skipped to */
#main-content:focus { outline: none; }

/* ---------- Buttons ---------- */
.btn,
.pt-btn {
	font-family: var(--pt-font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
	border-radius: 0;
	padding: 12px 24px;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.pt-btn--primary {
	background-color: var(--pt-brand-soft);
	border-color: var(--pt-brand-soft);
	color: var(--pt-text-on-dark);
}
.btn-primary:hover, .btn-primary:focus,
.pt-btn--primary:hover, .pt-btn--primary:focus {
	background-color: var(--pt-brand-hover);
	border-color: var(--pt-brand-hover);
	color: var(--pt-text-on-dark);
}

.pt-btn--hero {
	background-color: #FFFFFF;
	border-color: #FFFFFF;
	color: var(--pt-heading);
}
.pt-btn--hero:hover, .pt-btn--hero:focus {
	background-color: var(--pt-brand-hover);
	border-color: var(--pt-brand-hover);
	color: var(--pt-text-on-dark);
}

/* ---------- Section accent separator (gold bar) ---------- */
.pt-accent-rule {
	display: block;
	width: 100px;
	height: 0;
	margin: 16px auto 24px;
	border: 0;
	border-top: 4px solid var(--pt-accent-gold);
}
.pt-accent-rule--start {
	margin-left: 0;
	margin-right: auto;
}

/* ---------- Cards ---------- */
.pt-card {
	background-color: var(--pt-bg-card);
	border-radius: var(--pt-radius-card);
	padding: var(--pt-space-lg) var(--pt-space-md);
	box-shadow: var(--pt-shadow-card);
}

.pt-card--bordered {
	border-bottom: var(--pt-border-card-bottom);
	border-radius: var(--pt-radius-card);
	overflow: hidden;
	background-color: #FFFFFF;
	box-shadow: var(--pt-shadow-card);
}
.pt-card--bordered .pt-card__body {
	padding: var(--pt-space-md);
}
.pt-card--bordered img {
	width: 100%;
	height: auto;
	display: block;
}

/* ---------- Section surfaces ---------- */
.pt-section {
	padding-top: var(--pt-space-xl);
	padding-bottom: var(--pt-space-xl);
}
.pt-section--cream-1 { background-color: var(--pt-bg-cream-1); }
.pt-section--cream-2 { background-color: var(--pt-bg-cream-2); }
.pt-section--white   { background-color: #FFFFFF; }
.pt-section--brand   { background-color: var(--pt-brand); color: var(--pt-text-on-dark); }
.pt-section--brand h1, .pt-section--brand h2, .pt-section--brand h3,
.pt-section--brand h4, .pt-section--brand h5, .pt-section--brand h6 {
	color: var(--pt-text-on-dark);
}

.pt-section--brown { background-color: var(--pt-brand); color: var(--pt-text-on-dark); }
.pt-section--brown h1, .pt-section--brown h2, .pt-section--brown h3,
.pt-section--brown h4, .pt-section--brown h5, .pt-section--brown h6,
.pt-section--brown p, .pt-section--brown a:not(.btn) { color: var(--pt-text-on-dark); }

.pt-section--rust { background-color: #9C513A; color: var(--pt-text-on-dark); }
.pt-section--rust h1, .pt-section--rust h2, .pt-section--rust h3,
.pt-section--rust h4, .pt-section--rust h5, .pt-section--rust h6,
.pt-section--rust p, .pt-section--rust a:not(.btn) { color: var(--pt-text-on-dark); }

.pt-section--navy { background-color: var(--pt-bg-navy); color: var(--pt-text-on-dark); }
.pt-section--navy h1, .pt-section--navy h2, .pt-section--navy h3,
.pt-section--navy h4, .pt-section--navy h5, .pt-section--navy h6,
.pt-section--navy p, .pt-section--navy a:not(.btn) { color: var(--pt-text-on-dark); }

.pt-section--gradient {
	background-image: repeating-linear-gradient(
		135deg,
		#3a3a3a 0,
		#b8b8b8 120px,
		#3a3a3a 240px
	);
	color: var(--pt-text-on-dark);
}
.pt-section--gradient h1, .pt-section--gradient h2, .pt-section--gradient h3,
.pt-section--gradient h4, .pt-section--gradient h5, .pt-section--gradient h6,
.pt-section--gradient p, .pt-section--gradient a:not(.btn) { color: var(--pt-text-on-dark); }

/* Inner-page hero banner — light background image (set via inline
   `style="background-image: url(...)"`) with default dark text colors.
   Used on inner-page heroes (template 61). The bg image is decorative;
   black headings still read against the soft cream/wash. */
.pt-section--hero-banner {
	background-color: var(--pt-bg-cream-1);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	min-height: 280px;
	display: flex;
	align-items: center;
}
@media (max-width: 991px) {
	.pt-section--hero-banner { min-height: 220px; }
}

/* Dark photo section — moody full-bleed image with text overlay (no full-screen overlay; text just sits on dark areas) */
.pt-section--dark-photo {
	background-size: cover;
	background-position: center;
	color: var(--pt-text-on-dark);
	min-height: 480px;
	display: flex;
	align-items: flex-start !important;
}
@media (min-width: 1200px) {
	.pt-section--dark-photo { align-items: center !important; }
}
.pt-section--dark-photo h1, .pt-section--dark-photo h2, .pt-section--dark-photo h3,
.pt-section--dark-photo p, .pt-section--dark-photo a:not(.btn) { color: var(--pt-text-on-dark); }

/* Floating-card pattern: an image on one side with a white card visually overlapping */
.pt-floating-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: center;
}
.pt-floating-card__media img,
.pt-floating-card__media picture {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 680px;
}
.pt-floating-card__body {
	background: #FFFFFF;
	padding: var(--pt-space-md) var(--pt-space-lg);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
	margin-left: -100px;
	z-index: 2;
	position: relative;
	max-width: 600px;
	align-self: center;
}
.pt-floating-card--media-right { grid-template-columns: 1fr 2fr; }
.pt-floating-card--media-right .pt-floating-card__media { order: 2; }
.pt-floating-card--media-right .pt-floating-card__body { order: 1; margin-left: 5vw; margin-right: -100px; max-width: 480px; justify-self: end; }

@media (max-width: 991px) {
	.pt-floating-card { grid-template-columns: 1fr; }
	.pt-floating-card__body {
		margin: -40px var(--pt-space-md) 0;
		max-width: none;
	}
	.pt-floating-card--media-right .pt-floating-card__body {
		margin: 0 var(--pt-space-md) -40px;
		max-width: none;
	}
	.pt-floating-card__media img { max-height: 360px; }
}

/* Welcome-style stacked heading: huge serif heading left, body right, no image */
.pt-stacked-heading {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: var(--pt-space-lg);
	align-items: start;
}
.pt-stacked-heading h2 {
	font-size: 32px;
	line-height: 1.15;
	font-weight: 400;
}
@media (max-width: 991px) {
	.pt-stacked-heading { grid-template-columns: 1fr; }
}

/* Two-column text pair: each column is a cream square (card) with its own
   heading + body, no images. Used when two short related ideas sit
   side-by-side (e.g. About Us: "Why Regular Tuning Matters" +
   "Additional Expertise"). */
.pt-text-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pt-space-md);
	align-items: stretch;
}
.pt-text-pair > * {
	background-color: var(--pt-bg-cream-1);
	padding: var(--pt-space-lg) var(--pt-space-md);
	color: var(--pt-text);
}
/* Force dark text inside cream cards even when nested in a dark section
   (e.g. pt-section--brown) — otherwise the parent's white-text rule wins. */
.pt-text-pair > * h1,
.pt-text-pair > * h2,
.pt-text-pair > * h3,
.pt-text-pair > * h4,
.pt-text-pair > * h5,
.pt-text-pair > * h6 { color: var(--pt-heading); }
.pt-text-pair > * p { color: var(--pt-text); }
.pt-text-pair > * a:not(.btn) { color: var(--pt-brand); }
.pt-text-pair > * a:not(.btn):hover { color: var(--pt-brand-hover); }
.pt-text-pair > * > h2 {
	margin-bottom: var(--pt-space-sm);
}
.pt-text-pair > * > p:last-child {
	margin-bottom: 0;
}
@media (max-width: 991px) {
	.pt-text-pair { grid-template-columns: 1fr; }
}

/* Three-column heading + list trio — three equal-width columns, each with
   its own H2 + UL. No images, no cards. Used for taxonomy/category list
   pages (e.g. Piano Manufacturers Lists: American / European / Asian). */
.pt-list-trio {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: var(--pt-space-md);
	align-items: stretch;
}
.pt-list-trio > * {
	background-color: #FFFFFF;
	padding: var(--pt-space-lg) var(--pt-space-md);
	box-shadow: var(--pt-shadow-card);
}
.pt-list-trio > * > h2 {
	margin-bottom: var(--pt-space-sm);
}
.pt-list-trio ul {
	list-style: disc;
	padding-left: 1.2em;
	margin-bottom: 0;
}

/* Brown-circle check-mark bullets — replace the default disc with a brown
   filled circle and a white check inside. Reusable on any UL via class. */
.pt-list--check {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.pt-list--check li {
	position: relative;
	padding-left: 36px;
	margin-bottom: 10px;
	line-height: 1.5;
}
.pt-list--check li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	width: 22px;
	height: 22px;
	background-color: var(--pt-brand);
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 13px;
}
@media (max-width: 991px) {
	.pt-list-trio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
	.pt-list-trio { grid-template-columns: 1fr; }
}

/* Manufacturers list — CSS-columns flow for long alphabetical lists.
   H3 letter labels stick with their UL block via break-inside / break-after. */
.pt-manufacturers-list {
	column-count: 4;
	column-gap: var(--pt-space-lg);
}
.pt-manufacturers-list > * { break-inside: avoid-column; }
.pt-manufacturers-list h3 {
	font-size: 28px;
	color: var(--pt-brand);
	margin-top: 0;
	margin-bottom: var(--pt-space-xs);
	break-after: avoid;
}
.pt-manufacturers-list h3:not(:first-child) {
	margin-top: var(--pt-space-md);
}
.pt-manufacturers-list ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: var(--pt-space-md);
}
.pt-manufacturers-list li {
	line-height: 1.5;
	margin-bottom: 2px;
}
@media (max-width: 1199px) { .pt-manufacturers-list { column-count: 3; } }
@media (max-width: 767px) { .pt-manufacturers-list { column-count: 2; } }
@media (max-width: 479px) { .pt-manufacturers-list { column-count: 1; } }

/* Blog card — used on the /blog/ index and category archives. White
   card with featured image on top, category tags + title + excerpt +
   date stacked below. */
.pt-blog-card {
	background-color: #FFFFFF;
	border-radius: var(--pt-radius-card);
	box-shadow: var(--pt-shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pt-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 48px 5px rgba(168, 168, 168, 0.55);
}
.pt-blog-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}
.pt-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pt-blog-card__body {
	padding: var(--pt-space-md);
	display: flex;
	flex-direction: column;
	flex: 1;
}
.pt-blog-card__cats {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pt-brand);
	margin: 0 0 var(--pt-space-xs) 0;
	font-weight: 600;
}
.pt-blog-card__cats a {
	color: inherit;
	text-decoration: none;
}
.pt-blog-card__cats a:hover { color: var(--pt-brand-hover); }
.pt-blog-card__title {
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 var(--pt-space-sm) 0;
}
.pt-blog-card__title a {
	color: var(--pt-heading);
	text-decoration: none;
}
.pt-blog-card__title a:hover { color: var(--pt-brand); }
.pt-blog-card__excerpt {
	color: var(--pt-text);
	line-height: 1.6;
	margin-bottom: var(--pt-space-md);
	flex: 1;
}
.pt-blog-card__excerpt p:last-child { margin-bottom: 0; }
.pt-blog-card__date {
	font-size: 14px;
	color: var(--pt-text);
	margin: 0;
	opacity: 0.7;
}

/* Single blog post — hero is rendered by single.php; the article body
   below stays narrow and readable. */
body.single-post .blog-post {
	max-width: 880px;
	margin: 0 auto;
}
body.single-post .entry-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: var(--pt-radius-card);
}
body.single-post .entry-content h2 {
	margin-top: var(--pt-space-lg);
	font-size: 28px;
}
body.single-post .entry-content ul,
body.single-post .entry-content ol {
	padding-left: 1.4em;
}
body.single-post .entry-content ul li,
body.single-post .entry-content ol li {
	margin-bottom: 6px;
}
/* Hero meta line on single posts: keep links inline with lead text */
body.single-post .pt-section--hero-banner .lead a {
	color: var(--pt-brand);
	text-decoration: none;
}
body.single-post .pt-section--hero-banner .lead a:hover { color: var(--pt-brand-hover); }

/* Contact info block — semantic description list rendered as a 2-column
   grid: labels (with inline icon) on the left, values on the right.
   Never stacks. Uses default body text styling for both columns. */
.pt-contact-info {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: var(--pt-space-md);
	row-gap: var(--pt-space-md);
	margin: 0;
}
.pt-contact-info dt,
.pt-contact-info dd {
	margin: 0;
	font-family: var(--pt-font-body);
	font-size: var(--pt-fs-body);
	line-height: var(--pt-lh-body);
	color: var(--pt-text);
	align-self: center;
}
/* Horizontal rule between rows — drawn on the right (value) column only.
   The left (label) column matches the spacing via padding-top so labels
   stay vertically aligned with their values. */
.pt-contact-info dd:not(:first-of-type) {
	border-top: 1px solid #E5E5E5;
}
.pt-contact-info dt:not(:first-of-type),
.pt-contact-info dd:not(:first-of-type) {
	padding-top: var(--pt-space-md);
}
.pt-contact-info dt {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: var(--pt-heading);
}
.pt-contact-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--pt-brand);
	color: var(--pt-text-on-dark);
	flex-shrink: 0;
}
.pt-contact-info__icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
	display: block;
}
.pt-contact-info dd a { color: var(--pt-brand); text-decoration: none; }
.pt-contact-info dd a:hover { color: var(--pt-brand-hover); }

/* Centered single-column variant — contact page with the form removed. */
.pt-contact-info--center {
	max-width: 420px;
	margin-inline: auto;
}

/* Contact form — branded HTML form with labels stacked above inputs.
   Falls back to a mailto: action when Gravity Forms isn't available. */
.pt-contact-form {
	background-color: var(--pt-bg-cream-1);
	border-radius: var(--pt-radius-card);
	padding: var(--pt-space-lg);
}
.pt-contact-form .form-label {
	font-weight: 500;
	color: var(--pt-heading);
	margin-bottom: 6px;
}
.pt-contact-form .form-control {
	border: 1px solid #cccccc;
	border-radius: 0;
	padding: 12px 14px;
	font-family: var(--pt-font-body);
	font-size: 16px;
	background-color: #FFFFFF;
}
.pt-contact-form .form-control:focus {
	border-color: var(--pt-brand);
	box-shadow: 0 0 0 3px rgba(107, 71, 60, 0.18);
	outline: none;
}
.pt-contact-form textarea.form-control { min-height: 140px; resize: vertical; }
.pt-contact-form .form-text { color: #6c757d; font-size: 14px; }

/* Numbered fact list — two large white rounded boxes side-by-side.
   Facts flow continuously down the left box first, then continue at
   the top of the right box. A thin horizontal rule sits between each
   pair of consecutive facts within a box. Stacks to one box on small
   screens (or two stacked boxes if the markup keeps two .pt-fact-list
   containers). */
.pt-fact-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pt-space-md);
}
.pt-fact-list {
	background-color: #FFFFFF;
	color: var(--pt-text);
	border-radius: var(--pt-radius-card);
	box-shadow: var(--pt-shadow-card);
	padding: var(--pt-space-lg);
}
.pt-fact-item {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: var(--pt-space-md);
	align-items: start;
	padding: var(--pt-space-md) 0;
}
.pt-fact-item:first-child { padding-top: 0; }
.pt-fact-item:last-child { padding-bottom: 0; }
.pt-fact-item + .pt-fact-item {
	border-top: 1px solid #E5E5E5;
}
.pt-fact-item__num {
	font-family: var(--pt-font-body);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--pt-brand);
	letter-spacing: -0.02em;
	min-width: 1.3em;
	text-align: right;
}
.pt-fact-item p {
	color: var(--pt-text);
	line-height: 1.65;
	margin: 0;
	align-self: center;
}
@media (max-width: 767px) {
	.pt-fact-cols { grid-template-columns: 1fr; }
	.pt-fact-list { padding: var(--pt-space-md); }
	.pt-fact-item__num { font-size: 36px; }
}

/* Brand list — flat UL flowed across CSS columns for a numbered/annotated
   brand reference (e.g. Piano Makers & Brands "Brand List 1–137"). Pair
   with .pt-list--check (combined `class="pt-brand-list pt-list--check"`)
   to get the brown-circle check-mark bullets. */
.pt-brand-list {
	column-count: 3;
	column-gap: var(--pt-space-lg);
}
.pt-brand-list li {
	break-inside: avoid;
}
@media (max-width: 991px) { .pt-brand-list { column-count: 2; } }
@media (max-width: 575px) { .pt-brand-list { column-count: 1; } }

/* Tabs group — Bootstrap 5 nav-tabs styled to match the original BB
   PowerPack tabs: brown tabs in a light-gray strip, peach on hover,
   active tab keeps the brown but gets a peach underline that connects
   visually to the white panel below. Bootstrap JS bundle is enqueued
   site-wide so `data-bs-toggle="tab"` just works. */
.pt-tabs-group .nav-tabs {
	background-color: #f5f5f5;
	border: 4px solid #f5f5f5;
	border-bottom: 0;
	gap: 2px;
	padding: 0;
}
.pt-tabs-group .nav-tabs .nav-item {
	flex: 1;
}
.pt-tabs-group .nav-tabs .nav-link {
	width: 100%;
	color: var(--pt-text-on-dark);
	background-color: var(--pt-brand);
	border: 0;
	border-radius: 0;
	font-family: var(--pt-font-body);
	font-weight: 500;
	padding: 15px 18px 12px;
	text-align: left;
}
.pt-tabs-group .nav-tabs .nav-link:hover,
.pt-tabs-group .nav-tabs .nav-link:focus {
	color: var(--pt-text-on-dark);
	background-color: var(--pt-brand-hover);
}
.pt-tabs-group .nav-tabs .nav-link.active {
	color: var(--pt-text-on-dark);
	background-color: var(--pt-brand);
	box-shadow: inset 0 -4px 0 0 var(--pt-brand-hover);
}
.pt-tabs-group .tab-content {
	padding: 30px;
	background-color: #FFFFFF;
	border: 0;
}
.pt-tabs-group .tab-pane p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
	.pt-tabs-group .nav-tabs { flex-wrap: wrap; }
	.pt-tabs-group .nav-tabs .nav-item { flex: 1 1 100%; }
}

/* Accordion — Bootstrap 5 accordion styled to the brand. Used for
   FAQ-style stacked content or any "open one section at a time"
   pattern. Active button bg = brown, inactive = brand-soft, body = white. */
.pt-accordion .accordion-item {
	background-color: transparent;
	border: 0;
	margin-bottom: 6px;
}
.pt-accordion .accordion-button {
	background-color: var(--pt-brand-soft);
	color: var(--pt-text-on-dark);
	font-family: var(--pt-font-heading);
	font-weight: 400;
	font-size: 20px;
	padding: 16px 20px;
	border-radius: 0;
	box-shadow: none;
}
.pt-accordion .accordion-button:not(.collapsed) {
	background-color: var(--pt-brand);
	color: var(--pt-text-on-dark);
	box-shadow: none;
}
.pt-accordion .accordion-button:hover { background-color: var(--pt-brand-hover); }
.pt-accordion .accordion-button:focus {
	border-color: transparent;
	box-shadow: 0 0 0 3px var(--pt-accent-gold);
}
.pt-accordion .accordion-button::after {
	filter: brightness(0) invert(1);
}
.pt-accordion .accordion-body {
	background-color: #FFFFFF;
	padding: var(--pt-space-md);
}
.pt-accordion .accordion-body p:last-child,
.pt-accordion .accordion-body ol:last-child,
.pt-accordion .accordion-body ul:last-child { margin-bottom: 0; }

/* Bleed-right pattern: text block left (with padding), image full-bleed right edge */
.pt-section--bleed-right {
	padding: 0;
	overflow: hidden;
}
.pt-section--bleed-right > .row {
	margin: 0;
	min-height: 460px;
}
.pt-section--bleed-right > .row > [class*="col-"] { padding: 0; }
.pt-section--bleed-right .pt-bleed__text {
	padding: var(--pt-space-xl);
	padding-left: max(var(--pt-space-xl), calc((100vw - 1280px) / 2 + var(--pt-space-md)));
	padding-right: var(--pt-space-lg);
	max-width: 720px;
	margin: 0;
}
.pt-section--bleed-right .pt-bleed__media,
.pt-section--bleed-right .pt-bleed__media picture,
.pt-section--bleed-right .pt-bleed__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 991px) {
	.pt-section--bleed-right .pt-bleed__text {
		padding: var(--pt-space-lg) var(--pt-space-md);
		margin: 0 auto;
	}
	.pt-section--bleed-right > .row { min-height: auto; }
	.pt-section--bleed-right .pt-bleed__media img { max-height: 360px; }
}

/* Split section: brown panel + cream panel side by side (Piano Benches pattern) */
.pt-section--split {
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
}
.pt-section--split > * {
	display: flex;
	align-items: center;
	padding: var(--pt-space-lg) var(--pt-space-md);
}
.pt-section--split .pt-split-brown {
	background-color: var(--pt-brand);
	color: var(--pt-text-on-dark);
	justify-content: center;
}
.pt-section--split .pt-split-brown img,
.pt-section--split .pt-split-brown picture {
	max-width: 100%;
	height: auto;
}
.pt-section--split .pt-split-cream {
	background-color: var(--pt-bg-cream-1);
}
@media (max-width: 991px) {
	.pt-section--split { grid-template-columns: 1fr; }
}

/* Service cards — white tiles on darker beige section */
.pt-service-card {
	background-color: #FFFFFF;
	border-radius: var(--pt-radius-card);
	padding: var(--pt-space-md);
	text-align: center;
	height: 100%;
}
/* Services section bg overrides cream-1 with the slightly-darker beige */
.pt-section--services-bg { background-color: var(--pt-bg-card-cream); }
.pt-service-card img { max-width: 80px; height: auto; margin: 0 auto var(--pt-space-sm); }
.pt-service-card h3 {
	color: var(--pt-brand);
	font-family: var(--pt-font-heading);
	font-style: italic;
	font-size: 22px;
	margin-top: var(--pt-space-sm);
}
.pt-service-card p { font-size: 15px; line-height: 1.55; }

.pt-section--bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--pt-text-on-dark);
	position: relative;
}
.pt-section--bg-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
}
.pt-section--bg-image > .container,
.pt-section--bg-image > * {
	position: relative;
	z-index: 1;
}
.pt-section--bg-image h1, .pt-section--bg-image h2, .pt-section--bg-image h3 {
	color: var(--pt-text-on-dark);
}

/* Flat hero (composite image on white background) */
.pt-hero-flat {
	background: #FFFFFF;
	padding: 30px 0 30px;
	text-align: center;
}
.pt-hero-flat__media {
	margin: 0 auto 24px;
	max-width: 100%;
}
.pt-hero-flat__media img,
.pt-hero-flat__media picture { width: 100%; }
.pt-hero-flat__media img,
.pt-hero-flat__media picture {
	width: 100%;
	height: auto;
	display: block;
}
.pt-btn--outline-dark {
	background-color: #FFFFFF;
	border: 1px solid var(--pt-heading);
	color: var(--pt-heading);
}
.pt-btn--outline-dark:hover,
.pt-btn--outline-dark:focus {
	background-color: var(--pt-brand-hover);
	border-color: var(--pt-brand-hover);
	color: var(--pt-text-on-dark);
}

/* ---------- Hero (legacy full-bleed photo overlay — kept for inner pages) ---------- */
.pt-hero {
	background-size: cover;
	background-position: center;
	color: var(--pt-text-on-dark);
	min-height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: var(--pt-space-xxl) 0;
}
.pt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}
.pt-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}
.pt-hero h1 {
	color: var(--pt-text-on-dark);
	margin-bottom: var(--pt-space-md);
}
.pt-hero p {
	color: var(--pt-text-on-dark);
	font-size: 18px;
	margin-bottom: var(--pt-space-lg);
}

/* ---------- Site Header ---------- */
.site-header {
	background-color: #FFFFFF;
	padding: 16px 24px;
	border-bottom: 0;
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__row {
	display: flex;
	align-items: center;
	gap: var(--pt-space-md);
}
.site-header__brand {
	flex: 0 0 auto;
	margin-right: auto;
}
.site-header__brand img {
	max-height: clamp(40px, 4.5vw, 52px);
	width: auto;
	height: auto;
}
.site-header__title-link,
.site-header__brand a {
	font-family: var(--pt-font-heading);
	font-size: clamp(26px, 1.5vw + 20px, 38px);
	font-weight: 400;
	color: var(--pt-heading);
	text-decoration: none;
	letter-spacing: 0.01em;
	line-height: 1.1;
}
.site-header__title-link:hover,
.site-header__title-link:focus,
.site-header__brand a:hover,
.site-header__brand a:focus {
	color: var(--pt-brand);
	text-decoration: none;
}
.site-nav {
	flex: 0 0 auto;
}
.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--pt-space-md);
	justify-content: flex-end;
}
.site-nav__list a {
	font-size: 15px;
	color: var(--pt-heading);
	text-decoration: none;
	padding: 8px 4px;
}
.site-nav__list a:hover,
.site-nav__list a:focus,
.site-nav__list .current-menu-item > a {
	color: var(--pt-brand);
}
/* Dropdown indicator for parent items */
.site-nav__list .menu-item-has-children > a::after {
	content: "▾";
	display: inline-block;
	margin-left: 6px;
	font-size: 27px;
	line-height: 1;
	font-weight: 700;
	color: inherit;
	vertical-align: -2px;
	transition: transform 0.15s ease;
}
.site-nav__list .menu-item-has-children:hover > a::after,
.site-nav__list .menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}
.site-nav__list .menu-item-has-children {
	position: relative;
}
.site-nav__list .sub-menu {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 320px;
	background: var(--pt-bg-dropdown);
	border: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	display: none;
	z-index: 10;
}
.site-nav__list .sub-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}
.site-nav__list .menu-item-has-children:hover > .sub-menu,
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}
.site-nav__list .sub-menu a {
	display: block;
	padding: 14px 24px;
	font-size: 16px;
	color: var(--pt-heading);
	border-bottom: 0;
}
.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus {
	background: var(--pt-brand);
	color: var(--pt-text-on-dark);
}

.site-header__phone {
	flex: 0 0 auto;
	font-size: 16px;
}
.site-header__phone a {
	color: var(--pt-brand);
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.site-header__phone-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: currentColor;
	flex-shrink: 0;
}
.site-header__phone-icon svg { width: 100%; height: 100%; fill: currentColor; }
.site-header__phone a:hover { color: var(--pt-brand-hover); }

.site-header__toggle {
	background: transparent;
	border: 0;
	padding: 8px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	cursor: pointer;
}
.site-header__toggle-bar {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--pt-heading);
}

/* ---------- Off-canvas mobile menu ---------- */
.site-mobile-menu {
	background-color: var(--pt-bg-dropdown);
	color: var(--pt-text);
}
.site-mobile-menu .offcanvas-header {
	border-bottom: 0;
	justify-content: flex-end;
	padding: 12px 16px;
}
.site-mobile-menu__close {
	position: absolute;
	top: 12px;
	right: 16px;
}
.site-mobile-menu .offcanvas-body {
	display: flex;
	flex-direction: column;
	padding-top: 0;
}
.site-mobile-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
.site-mobile-menu__list li {
	position: relative;
}
.site-mobile-menu__list .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.site-mobile-menu__list a {
	display: block;
	padding: 14px 0;
	color: var(--pt-heading);
	font-size: var(--pt-fs-nav-mobile);
	text-decoration: none;
	border-bottom: 0;
	text-align: center;
}
.site-mobile-menu__list .sub-menu {
	list-style: none;
	padding: 8px 0;
	margin: 0;
	display: none;
	flex: 1 0 100%;
	background: #ffffff;
}
.site-mobile-menu__list .menu-item-has-children.is-open > .sub-menu {
	display: block;
}
.site-mobile-menu__list .sub-menu a {
	font-size: 14px;
	padding: 12px 24px;
	color: var(--pt-heading);
}
.site-mobile-menu__list .sub-menu a:hover,
.site-mobile-menu__list .sub-menu a:focus {
	background: var(--pt-brand);
	color: var(--pt-text-on-dark);
}
.site-mobile-menu__chevron {
	padding: 14px 6px;
	background: transparent;
	border: 0;
	color: var(--pt-heading);
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
}
.site-mobile-menu__chevron-icon {
	display: inline-block;
	transition: transform 0.2s ease;
}
.site-mobile-menu__list .menu-item-has-children.is-open > .site-mobile-menu__chevron .site-mobile-menu__chevron-icon {
	transform: rotate(180deg);
}
.site-mobile-menu__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: var(--pt-space-md) auto 0;
	padding: 12px 24px;
	background: var(--pt-brand-soft);
	color: var(--pt-text-on-dark) !important;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
}
.site-mobile-menu__phone-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	color: currentColor;
	flex-shrink: 0;
}
.site-mobile-menu__phone-icon svg { width: 100%; height: 100%; fill: currentColor; }

/* ---------- Site Footer ---------- */
.site-footer { color: var(--pt-text); }

.site-footer__top {
	background-color: var(--pt-bg-footer-edge);
	padding: var(--pt-space-lg) 0;
}
.site-footer__brand img { display: block; height: auto; max-width: 100%; }
.site-footer__logo img { width: 100%; max-width: 420px; }
.site-footer__paypal-block { text-align: center; }
.site-footer__paypal-block img { width: 100px; height: 100px; }
.site-footer__contact p { margin-bottom: var(--pt-space-xs); }
.site-footer__contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--pt-space-xs);
}
.site-footer__icon { color: var(--pt-brand); flex-shrink: 0; }
.site-footer__intro { font-size: 14px; margin-top: var(--pt-space-sm); margin-bottom: 0; }
.site-footer__contact a { color: var(--pt-brand); text-decoration: none; }
.site-footer__contact a:hover,
.site-footer__contact a:focus { text-decoration: underline; }

.site-footer__middle {
	background-color: var(--pt-bg-footer-mid);
	padding: var(--pt-space-lg) 0;
}
.site-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer__list a {
	display: inline-block;
	padding: 4px 0;
	color: var(--pt-text);
	text-decoration: none;
}
.site-footer__list a:hover,
.site-footer__list a:focus {
	color: var(--pt-brand);
	text-decoration: underline;
}

.site-footer__bottom {
	background-color: var(--pt-bg-footer-edge);
	padding: var(--pt-space-md) 0;
	text-align: center;
}
.site-footer__copyright {
	margin: 0;
	font-size: 14px;
	color: var(--pt-text);
}

/* ---------- Layout helpers ---------- */
.pt-stack > * + * { margin-top: var(--pt-space-md); }
.pt-stack--lg > * + * { margin-top: var(--pt-space-lg); }

.pt-text-eyebrow {
	font-family: var(--pt-font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pt-brand);
	margin-bottom: 8px;
}

/* Image wrappers — full-bleed responsive */
.pt-img,
img.pt-img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1365px) {
	:root { --pt-fs-h1-desktop: 44px; --pt-fs-h2-desktop: 30px; --pt-fs-h3-desktop: 24px; }
}

@media (max-width: 1000px) {
	:root { --pt-fs-h1-desktop: 36px; --pt-fs-h2-desktop: 30px; }
	.pt-section { padding-top: var(--pt-space-lg); padding-bottom: var(--pt-space-lg); }
	.pt-hero { min-height: 55vh; padding: var(--pt-space-xl) 0; }
}

/* Hide the desktop phone whenever the hamburger appears (Bootstrap lg = 992px). */
@media (max-width: 991.98px) {
	.site-header__phone { display: none; }
}

@media (max-width: 768px) {
	h1, .h1 { font-size: var(--pt-fs-h1-mobile); }
	h2, .h2 { font-size: var(--pt-fs-h2-mobile); }
	h3, .h3 { font-size: var(--pt-fs-h3-mobile); }
	.site-nav__list a { font-size: var(--pt-fs-nav-mobile); }
	.site-header { padding: 12px 16px; }
	.pt-hero { min-height: 50vh; }
}

@media (max-width: 480px) {
	:root { --pt-space-xl: 56px; --pt-space-xxl: 80px; }
	.pt-card { padding: var(--pt-space-md) var(--pt-space-sm); }
}

/* Print */
@media print {
	.site-header__toggle, .site-mobile-menu, .skip-link { display: none !important; }
	body { background: #FFFFFF; color: #000000; }
}
