/* ============================================================
   Panel Haus — Global Widget Styles
   Design tokens and custom Elementor widget styles.
   Loaded site-wide via panel-haus-elementor plugin.
   ============================================================ */

/* ── Design Tokens ── */
:root {
	--ph-brown: #6B4F3A;
	--ph-tan: #9C7A5A;
	--ph-gold: #C4A882;
	--ph-ink: #1a1916;
	--ph-ink-soft: #3d3530;
	--ph-muted: #6b5f58;
	--ph-faint: #9b9088;
	--ph-border: rgba(107, 79, 58, 0.15);
	--ph-border-md: rgba(107, 79, 58, 0.28);
	--ph-bg: #faf8f5;
	--ph-bg2: #f2ede6;
	--ph-bg3: #e8e0d5;
	--ph-max: 1100px;
	--ph-pad: clamp(1.25rem, 5vw, 3rem);
	--ph-radius: 8px;
	--ph-serif: 'Playfair Display', Georgia, serif;
	--ph-sans: 'Barlow', system-ui, sans-serif;
}

/* ============================================================
   Data Table Widget
   Widget: PH Data Table
   ============================================================ */

.ph-data-table {
	width: 100%;
	border: 1px solid var(--ph-border);
	border-radius: var(--ph-radius);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.ph-data-table thead th {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ph-faint);
	background: var(--ph-bg2);
	padding: 10px 14px;
	border-bottom: 1px solid var(--ph-border);
	border-right: 1px solid var(--ph-border);
	text-align: left;
}

.ph-data-table thead th:last-child {
	border-right: none;
}

.ph-data-table tbody td {
	font-size: 12px;
	color: var(--ph-muted);
	padding: 10px 14px;
	border-bottom: 1px solid var(--ph-border);
	border-right: 1px solid var(--ph-border);
	line-height: 1.65;
}

.ph-data-table tbody td:last-child {
	border-right: none;
}

.ph-data-table tbody tr:last-child td {
	border-bottom: none;
}

.ph-data-table tbody td:first-child {
	font-weight: 500;
	color: var(--ph-ink);
}

.ph-data-table--specs tbody tr:nth-child(even) td {
	background: var(--ph-bg2);
}

.ph-data-table--specs tbody td:first-child {
	min-width: 160px;
}

.ph-data-table .ph-highlight {
	color: var(--ph-brown);
	font-weight: 500;
}

/* ── FAQ ACCORDION ── */
.ph-faq { margin-top: 2rem; border: 1px solid var(--ph-border); border-radius: 8px; overflow: hidden; }
.ph-faq-item { border-bottom: 1px solid var(--ph-border); background: var(--ph-bg); }
.ph-faq-item:last-child { border-bottom: none; }
.ph-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem;
  transition: background 0.15s; user-select: none;
}
.ph-faq-q:hover { background: var(--ph-bg2); }
.ph-faq-q-text { font-size: 14px; font-weight: 500; line-height: 1.4; }
.ph-faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--ph-border-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.15s;
  background: var(--ph-bg);
}
.ph-faq-item.open .ph-faq-icon { transform: rotate(45deg); background: var(--ph-bg2); }
.ph-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 1.5rem;
}
.ph-faq-item.open .ph-faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.ph-faq-a p { font-size: 14px; line-height: 1.8; color: var(--ph-muted); font-weight: 300; margin-bottom: 0; }
.ph-faq-a ul { font-size: 14px; line-height: 1.8; color: var(--ph-muted); font-weight: 300; padding-left: 1.25rem; margin-top: 0.5rem; }
.ph-faq-a li { margin-bottom: 4px; }

/* ── FAQ TABS ── */
.ph-faq-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--ph-border); margin-bottom: 1rem; width: 100%; flex-wrap: wrap; }
.ph-faq-tab { font-family: var(--ph-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; padding: 10px 20px; border: none; background: transparent; color: var(--ph-muted); cursor: pointer; border-bottom: 2px solid transparent; transition: color 0.15s; margin-bottom: -1px; }
.ph-faq-tab.active { color: var(--ph-brown); border-bottom-color: var(--ph-brown); }
.ph-faq-tab:hover { color: var(--ph-ink); }
.ph-faq-panel { display: none; }
.ph-faq-panel.active { display: block; }

/* ── Data Table Responsive ── */
@media (max-width: 560px) {
	.ph-data-table thead {
		display: none;
	}

	.ph-data-table tbody tr {
		display: flex;
		flex-direction: column;
		border-bottom: 1px solid var(--ph-border);
	}

	.ph-data-table tbody tr:last-child {
		border-bottom: none;
	}

	.ph-data-table tbody td {
		border-right: none;
		border-bottom: none;
		padding: 8px 14px;
	}

	.ph-data-table tbody td:first-child {
		padding-top: 12px;
	}

	.ph-data-table tbody td:last-child {
		padding-bottom: 12px;
	}
}

/* ============================================================
   Energy Comparison Bar Widget
   Widget: PH Energy Comparison
   ============================================================ */

.ph-energy-wrap {
	margin: 2rem 0;
	border: 1px solid var(--ph-border);
	border-radius: var(--ph-radius);
	overflow: hidden;
}

.ph-energy-head {
	padding: 1rem 1.5rem;
	background: var(--ph-bg2);
	border-bottom: 1px solid var(--ph-border);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ph-faint);
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.ph-energy-row {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--ph-border);
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--ph-bg);
}

.ph-energy-row:last-child {
	border-bottom: none;
}

.ph-energy-label {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--ph-muted);
	gap: 1rem;
	flex-wrap: wrap;
}

.ph-energy-label strong {
	color: var(--ph-ink);
	font-weight: 500;
}

.ph-energy-label span.ph-energy-highlight {
	color: var(--ph-brown);
	font-weight: 500;
}

.ph-energy-track {
	height: 26px;
	background: var(--ph-bg3);
	border-radius: 4px;
	overflow: hidden;
}

.ph-energy-fill {
	height: 100%;
	border-radius: 4px 0 0 4px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	font-size: 11px;
	font-weight: 500;
	color: #fff;
	transition: width 0.6s ease;
}

/* ── Energy Comparison Responsive ── */
@media (max-width: 560px) {
	.ph-energy-head {
		flex-direction: column;
		gap: 4px;
	}

	.ph-energy-label {
		flex-direction: column;
		gap: 2px;
	}
}

/* ============================================================
   Projects Grid Widget
   Widget: PH Projects Grid
   ============================================================ */

/* ── Filter Bar ── */
.ph-filter-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--ph-border);
	flex-wrap: wrap;
}

.ph-filter-btn {
	font-family: var(--ph-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 6px 16px;
	border-radius: 100px;
	border: 1px solid var(--ph-border-md);
	background: var(--ph-bg);
	color: var(--ph-muted);
	cursor: pointer;
	transition: all 0.15s;
	white-space: nowrap;
}

.ph-filter-btn:hover {
	background: var(--ph-bg2);
	color: var(--ph-ink);
}

.ph-filter-btn.active {
	background: var(--ph-brown);
	color: #fff;
	border-color: var(--ph-brown);
}

/* ── Project Grid ── */
.ph-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--ph-border);
	border: 1px solid var(--ph-border);
	border-radius: var(--ph-radius);
	overflow: hidden;
	margin: 2rem 0;
}

/* ── Project Card ── */
.ph-card {
	background: var(--ph-bg);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	transition: background 0.15s;
	text-decoration: none;
	color: inherit;
}

.ph-card:hover {
	background: var(--ph-bg2);
}

.ph-card-img {
	height: 220px;
	background: var(--ph-bg3);
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--ph-border);
	display: flex;
	align-items: flex-end;
	padding: 12px;
}

.ph-card-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ph-card-type {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 100px;
	background: var(--ph-bg);
	color: var(--ph-tan);
	border: 1px solid var(--ph-border);
	display: inline-block;
	position: relative;
	z-index: 1;
}

.ph-card-body {
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ph-card-name {
	font-family: var(--ph-serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.ph-card-location {
	font-size: 12px;
	color: var(--ph-faint);
	margin-bottom: 0.75rem;
}

.ph-card-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--ph-border);
	border: 1px solid var(--ph-border);
	border-radius: 5px;
	overflow: hidden;
	margin-top: auto;
}

.ph-card-stat {
	background: var(--ph-bg2);
	padding: 8px 10px;
}

.ph-card-stat-val {
	font-size: 13px;
	font-weight: 500;
	color: var(--ph-brown);
}

.ph-card-stat-key {
	font-size: 10px;
	color: var(--ph-faint);
	line-height: 1.3;
	margin-top: 1px;
}

.ph-card-link {
	font-size: 12px;
	font-weight: 500;
	color: var(--ph-tan);
	letter-spacing: 0.04em;
	margin-top: 1rem;
	display: inline-block;
	transition: color 0.15s;
}

.ph-card:hover .ph-card-link {
	color: var(--ph-brown);
}

/* ── Projects Grid Responsive ── */
@media (max-width: 900px) {
	.ph-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.ph-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Project Stats Shortcode
   [ph_project_stats]
   ============================================================ */
.ph-stats-bar {
	display: grid;
	gap: 1px;
	background: var(--ph-border);
	border: 1px solid var(--ph-border);
	border-radius: var(--ph-radius);
	overflow: hidden;
	margin: 2rem 0;
}
.ph-stat {
	background: var(--ph-bg2);
	padding: 1.25rem 1.5rem;
}
.ph-stat-val {
	font-family: var(--ph-serif);
	font-size: 26px;
	font-weight: 400;
	color: var(--ph-brown);
	line-height: 1;
	margin-bottom: 5px;
}
.ph-stat-key {
	font-size: 11px;
	color: var(--ph-faint);
	letter-spacing: 0.04em;
	line-height: 1.4;
}

@media (max-width: 900px) {
	.ph-stats-bar { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
	.ph-stats-bar { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Project Gallery Shortcode
   [ph_project_gallery]
   ============================================================ */
.ph-gallery {
	display: grid;
	gap: 6px;
	margin: 2rem 0;
}

.ph-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--ph-radius);
	aspect-ratio: 4 / 3;
	background: var(--ph-bg3);
	display: block;
	cursor: pointer;
}

.ph-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.ph-gallery-item:hover img {
	transform: scale(1.05);
	filter: brightness(0.88);
}

/* ── Gallery Responsive ── */
@media (max-width: 900px) {
	.ph-gallery { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
	.ph-gallery { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Lightbox
   ============================================================ */
.ph-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ph-lightbox.active {
	opacity: 1;
	visibility: visible;
}

.ph-lightbox-content {
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ph-lightbox-content img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.ph-lightbox-caption {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--ph-sans);
	font-size: 13px;
	margin-top: 12px;
	text-align: center;
}

.ph-lightbox-close,
.ph-lightbox-prev,
.ph-lightbox-next {
	position: absolute;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: color 0.2s, transform 0.2s;
	z-index: 10;
	padding: 0;
}

.ph-lightbox-close:hover,
.ph-lightbox-prev:hover,
.ph-lightbox-next:hover {
	color: #fff;
	transform: scale(1.15);
}

.ph-lightbox-close {
	top: 20px;
	right: 24px;
	font-size: 36px;
	line-height: 1;
}

.ph-lightbox-prev,
.ph-lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	font-size: 52px;
	line-height: 1;
}

.ph-lightbox-prev:hover,
.ph-lightbox-next:hover {
	transform: translateY(-50%) scale(1.15);
}

.ph-lightbox-prev { left: 20px; }
.ph-lightbox-next { right: 20px; }

/* ============================================================
   Construction Timeline Shortcode
   [ph_project_timeline]
   ============================================================ */
.ph-timeline { border: 1px solid var(--ph-border); border-radius: 8px; overflow: hidden; }
.ph-tl-row { display: grid; grid-template-columns: 180px 110px 1fr; border-bottom: 1px solid var(--ph-border); }
.ph-tl-row:last-child { border-bottom: none; }
.ph-tl-row.header { background: var(--ph-bg2); }
.ph-tl-cell { padding: 10px 14px; font-size: 12px; color: var(--ph-muted); border-right: 1px solid var(--ph-border); }
.ph-tl-cell:last-child { border-right: none; }
.ph-tl-row.header .ph-tl-cell { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ph-faint); }
.ph-tl-row:not(.header) .ph-tl-cell:first-child { font-weight: 500; color: var(--ph-ink); }
.ph-tl-duration { color: var(--ph-brown); font-weight: 500; }

@media (max-width: 560px) {
  .ph-tl-row { grid-template-columns: 1fr; }
  .ph-tl-cell { border-right: none; border-bottom: 1px solid var(--ph-border); }
  .ph-tl-cell:last-child { border-bottom: none; }
}

/* ============================================================
   Technical Specifications Shortcode
   [ph_project_tech_specs]
   ============================================================ */
.ph-spec-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--ph-border); border-radius: 8px; overflow: hidden; }
.ph-spec-row { display: grid; grid-template-columns: 160px 1fr; border-bottom: 1px solid var(--ph-border); background: var(--ph-bg); }
.ph-spec-row:last-child { border-bottom: none; }
.ph-spec-row:nth-child(even) { background: var(--ph-bg2); }
.ph-spec-key { padding: 10px 14px; font-size: 12px; font-weight: 500; color: var(--ph-muted); border-right: 1px solid var(--ph-border); }
.ph-spec-val { padding: 10px 14px; font-size: 12px; color: var(--ph-ink); }

@media (max-width: 560px) {
  .ph-spec-row { grid-template-columns: 1fr; }
  .ph-spec-key { border-right: none; border-bottom: 1px solid var(--ph-border); }
}

/* ============================================================
   System Card Shortcode
   [ph_project_system_card]
   ============================================================ */
.ph-sidebar-card { border: 1px solid var(--ph-border); border-radius: 8px; overflow: hidden; background: var(--ph-bg); }
.ph-sidebar-card-head { padding: 1rem 1.25rem 0.75rem; border-bottom: 1px solid var(--ph-border); background: var(--ph-bg2); }
.ph-sidebar-card-title { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ph-faint); }
.ph-sidebar-card-body { padding: 1.25rem; }

/* System info */
.ph-system-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 6px; background: var(--ph-bg3); border: 1px solid var(--ph-border); margin-bottom: 1rem; }
.ph-system-badge-label { font-size: 13px; font-weight: 500; color: var(--ph-brown); }
.ph-system-features { display: flex; flex-direction: column; gap: 7px; }
.ph-system-feature { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; color: var(--ph-muted); line-height: 1.5; }
.ph-system-feature::before { content: '✓'; color: var(--ph-tan); font-weight: 500; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   Related Projects Shortcode
   [ph_related_projects]
   ============================================================ */
.ph-related { display: flex; flex-direction: column; gap: 1px; background: var(--ph-border); overflow: hidden; }
.ph-related-item { display: flex; gap: 12px; align-items: center; background: var(--ph-bg); padding: 12px; cursor: pointer; transition: background 0.15s; text-decoration: none; }
.ph-related-item:hover { background: var(--ph-bg2); }
.ph-related-thumb { width: 52px; height: 44px; background: var(--ph-bg3); border-radius: 4px; flex-shrink: 0; overflow: hidden; position: relative; }
.ph-related-thumb img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.ph-related-name { font-size: 13px; font-weight: 500; color: var(--ph-ink); line-height: 1.2; margin-bottom: 2px; }
.ph-related-sub { font-size: 11px; color: var(--ph-faint); }
.ph-related-arrow { margin-left: auto; font-size: 14px; color: var(--ph-faint); flex-shrink: 0; }

/* ============================================================
   Contact Form Widget
   Widget: PH Contact Form
   ============================================================ */

/* ── Type Selector ── */
.ph-cf-type-heading p {
	font-size: 12px;
	font-weight: 500;
	color: var(--ph-muted);
	letter-spacing: 0.03em;
	margin-bottom: 0.75rem;
}

.ph-type-selector {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--ph-border);
	border: 1px solid var(--ph-border);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.ph-type-btn {
	background: var(--ph-bg);
	border: none;
	padding: 1rem 0.75rem;
	cursor: pointer;
	text-align: center;
	transition: background 0.15s;
	font-family: var(--ph-sans);
}

.ph-type-btn:hover {
	background: var(--ph-bg2);
}

.ph-type-btn.active {
	background: var(--ph-brown);
}

.ph-type-btn-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--ph-ink);
	display: block;
	line-height: 1.3;
	transition: color 0.15s;
}

.ph-type-btn-sub {
	font-size: 11px;
	color: var(--ph-faint);
	display: block;
	margin-top: 3px;
	transition: color 0.15s;
}

.ph-type-btn.active .ph-type-btn-label {
	color: #fff;
}

.ph-type-btn.active .ph-type-btn-sub {
	color: rgba(255, 255, 255, 0.6);
}

/* ── Form Layout ── */
.ph-cf-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ph-cf-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.ph-cf-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ph-cf-field label {
	font-size: 12px;
	font-weight: 500;
	color: var(--ph-muted);
	letter-spacing: 0.03em;
}

.ph-cf-field label span {
	color: var(--ph-tan);
	margin-left: 2px;
}

.ph-cf-field input,
.ph-cf-field select,
.ph-cf-field textarea {
	font-family: var(--ph-sans);
	font-size: 14px;
	color: var(--ph-ink);
	background: var(--ph-bg);
	border: 1px solid var(--ph-border-md);
	border-radius: 5px;
	padding: 10px 14px;
	transition: border-color 0.15s, box-shadow 0.15s;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
}

.ph-cf-field input:focus,
.ph-cf-field select:focus,
.ph-cf-field textarea:focus {
	outline: none;
	border-color: var(--ph-tan);
	box-shadow: 0 0 0 3px rgba(156, 122, 90, 0.12);
}

.ph-cf-field textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.6;
}

.ph-cf-field select {
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239b9088' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

/* ── Submit Buttons ── */
.ph-cf-submit-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 0.5rem;
}

.ph-cf-wrap button.ph-cf-submit-btn {
	font-family: var(--ph-sans);
	font-size: 14px;
	font-weight: 500;
	padding: 14px 20px;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity 0.15s, background 0.15s;
	letter-spacing: 0.02em;
	text-align: center;
	border: none;
	line-height: 1.4;
	outline: none;
	box-shadow: none;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
}

.ph-cf-wrap button.ph-cf-submit-primary {
	background: var(--ph-brown);
	color: #fff;
}

.ph-cf-wrap button.ph-cf-submit-primary:hover {
	opacity: 0.88 !important;
}

.ph-cf-wrap button.ph-cf-submit-secondary {
	background: var(--ph-bg);
	color: var(--ph-brown);
	border: 1px solid var(--ph-border-md);
}

.ph-cf-wrap button.ph-cf-submit-secondary:hover {
	background: var(--ph-bg2) !important;
}

/* ── Privacy Note ── */
.ph-cf-privacy {
	font-size: 11px;
	color: var(--ph-faint);
	line-height: 1.6;
	margin-top: 0.5rem;
}

.ph-cf-privacy p {
	font-size: 11px;
	color: inherit;
	line-height: 1.6;
	margin: 0;
}

/* ── Success State ── */
.ph-cf-success {
	display: none;
	text-align: center;
	padding: 3rem 2rem;
}

.ph-cf-success-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--ph-bg2);
	border: 1px solid var(--ph-border-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.ph-cf-success-h {
	font-family: var(--ph-serif);
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.ph-cf-success-body {
	font-size: 14px;
	color: var(--ph-muted);
	line-height: 1.7;
	max-width: 380px;
	margin: 0 auto;
}

.ph-cf-success-body p {
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	margin: 0;
}

/* ── Contact Form Responsive ── */
@media (max-width: 900px) {
	.ph-cf-row {
		grid-template-columns: 1fr;
	}
	.ph-cf-submit-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.ph-type-selector {
		grid-template-columns: 1fr;
	}
	.ph-cf-dynamic {
		grid-template-columns: 1fr !important;
	}
}
