/* ────────────────────────────────────────────────────────────────────
   Property detail page — single-property.php
   Loaded only on `is_singular('property')` via functions.php.
   Uses the global design tokens defined in style.css (--oh-brand etc.).
   v1.6.0: italic removed from title, right rail dropped, single column.
   ─────────────────────────────────────────────────────────────────── */

.ph-single {
	padding: clamp(24px, 4vw, 56px) var(--oh-gutter) clamp(48px, 8vw, 96px);
	background: var(--oh-bg);
}
.ph-single__inner {
	max-width: var(--oh-content-max);
	margin: 0 auto;
}

/* ─── Breadcrumb ──────────────────────────────────────────── */
.ph-crumb {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	font-size: var(--oh-fs-sm);
	color: var(--oh-text-muted);
	margin: 0 0 28px;
}
.ph-crumb a {
	color: var(--oh-text-muted);
	text-decoration: none;
}
.ph-crumb a:hover { color: var(--oh-brand); }
.ph-crumb__current { color: var(--oh-text); font-weight: 500; }

/* ─── Header (single column, no right-side rating) ────────── */
.ph-header {
	margin: 0 0 28px;
}
.ph-header__eyebrow {
	font-size: var(--oh-fs-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--oh-brand);
	margin: 0 0 10px;
}
.ph-header__title {
	font-family: var(--oh-font);
	font-size: clamp(1.875rem, 4.5vw, 2.75rem);
	font-weight: 700;
	font-style: normal;
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
	color: var(--oh-text);
}
.ph-header__sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	font-size: var(--oh-fs-sm);
	color: var(--oh-text-muted);
}
.ph-header__addr {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ph-header__addr svg { color: var(--oh-brand-accent); }
.ph-header__chips {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ph-header__chips li {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	background: var(--oh-surface);
	border: 1px solid var(--oh-border);
	border-radius: var(--oh-radius-pill);
	font-size: 12px;
	font-weight: 500;
	color: var(--oh-text);
	line-height: 1.3;
	white-space: nowrap;
}

/* ─── Slider container width matches the page band ────────── */
/* The slider itself ships its own inline CSS at max-width 1120px;
   nothing to override here unless we want to bump margin/radius. */
.ph-single .ohps-slider { margin-bottom: 32px; }

/* ─── At-a-glance strip ───────────────────────────────────── */
.ph-glance {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0;
	background: var(--oh-surface);
	border: 1px solid var(--oh-border);
	border-radius: var(--oh-radius-lg);
	margin: 0 0 32px;
	overflow: hidden;
	box-shadow: var(--oh-shadow-sm);
}
.ph-glance__cell {
	padding: 18px 22px;
	border-right: 1px solid var(--oh-border);
}
.ph-glance__cell:last-child { border-right: 0; }
.ph-glance__label {
	font-size: 11px;
	font-weight: 600;
	color: var(--oh-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}
.ph-glance__value {
	font-size: var(--oh-fs-xl);
	font-weight: 700;
	color: var(--oh-text);
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.ph-glance__hint {
	font-size: 11px;
	color: var(--oh-success);
	margin-top: 2px;
}

@media (max-width: 720px) {
	.ph-glance { grid-template-columns: repeat(2, 1fr); }
	.ph-glance__cell {
		border-right: 1px solid var(--oh-border);
		border-bottom: 1px solid var(--oh-border);
	}
	.ph-glance__cell:nth-child(2n) { border-right: 0; }
	.ph-glance__cell:last-child { border-bottom: 0; }
}
@media (max-width: 420px) {
	.ph-glance { grid-template-columns: 1fr; }
	.ph-glance__cell { border-right: 0 !important; }
}

/* ─── Booking widget (homepage-style, full width) ─────────── */
.ph-book {
	margin: 0 0 40px;
}

/* ─── Section eyebrow + title vocab (shared) ──────────────── */
.ph-tonight__eyebrow,
.ph-about__eyebrow,
.ph-rooms__eyebrow,
.ph-gtk__eyebrow {
	font-size: var(--oh-fs-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--oh-brand);
	margin: 0 0 10px;
}
.ph-tonight__title,
.ph-about__title,
.ph-rooms__title,
.ph-gtk__title {
	font-family: var(--oh-font);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--oh-text);
	margin: 0 0 18px;
}
/* `<em>` inside section titles is the *only* italic accent — used
   sparingly for emphasis (e.g. "since 1962", "26 keys"). Title text
   itself is no longer italic. */
.ph-tonight__title em,
.ph-about__title em,
.ph-rooms__title em,
.ph-gtk__title em {
	font-style: italic;
	color: var(--oh-brand-accent);
	font-weight: 600;
}

/* ─── Tonight conditions card ─────────────────────────────── */
.ph-tonight {
	background: var(--oh-brand);
	color: var(--oh-text-on-dark);
	border-radius: var(--oh-radius-lg);
	padding: 24px 26px;
	margin: 0 0 36px;
	box-shadow: var(--oh-shadow-md);
}
.ph-tonight .ph-tonight__eyebrow { color: var(--oh-brand-accent); }
.ph-tonight .ph-tonight__title   { color: var(--oh-text-on-dark); }
.ph-tonight__chips {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
}
.ph-tonight__chip {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: var(--oh-radius-md);
	padding: 10px 14px;
}
.ph-tonight__chip-label {
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin-bottom: 4px;
}
.ph-tonight__chip-value {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--oh-text-on-dark);
	letter-spacing: -0.01em;
	line-height: 1.2;
}

/* ─── About — drop cap ────────────────────────────────────── */
.ph-about {
	margin: 0 0 40px;
	max-width: 760px;
}
.ph-about__body {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--oh-text);
	margin: 0;
}
.ph-about__body::first-letter {
	float: left;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.4em;
	line-height: 0.9;
	font-style: italic;
	color: var(--oh-brand-accent);
	padding: 0.04em 0.08em 0 0;
	margin: 0.02em 0 0;
}

/* ─── Rooms list ──────────────────────────────────────────── */
.ph-rooms { margin: 0 0 40px; }
.ph-rooms__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.ph-roomcard {
	display: flex;
	flex-direction: column;
	background: var(--oh-surface);
	border: 1px solid var(--oh-border);
	border-radius: var(--oh-radius-lg);
	overflow: hidden;
	box-shadow: var(--oh-shadow-sm);
	transition: transform 0.15s var(--oh-ease), box-shadow 0.15s var(--oh-ease), border-color 0.15s var(--oh-ease);
}
.ph-roomcard:hover {
	transform: translateY(-2px);
	box-shadow: var(--oh-shadow-md);
	border-color: var(--oh-border-strong);
}
.ph-roomcard__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--oh-bg-soft);
}
.ph-roomcard__media .ph-roomcard__img,
.ph-roomcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ph-roomcard__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, var(--oh-bg-soft) 0 10px, var(--oh-border) 10px 20px);
}
.ph-roomcard__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 18px 18px;
	flex: 1 1 auto;
}
.ph-roomcard__title {
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.ph-roomcard__title a {
	color: var(--oh-text);
	text-decoration: none;
}
.ph-roomcard__title a:hover { color: var(--oh-brand); }
.ph-roomcard__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--oh-fs-sm);
	color: var(--oh-text-muted);
	margin: 0;
}
.ph-roomcard__meta svg { color: var(--oh-text-muted); }
.ph-roomcard__desc {
	font-size: var(--oh-fs-sm);
	line-height: 1.55;
	color: var(--oh-text-muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ph-roomcard__foot {
	margin-top: auto;
	padding-top: 10px;
}
.ph-roomcard__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: var(--oh-fs-sm);
	font-weight: 600;
	color: var(--oh-brand);
	text-decoration: none;
}
.ph-roomcard__cta:hover { color: var(--oh-brand-dark); }

/* ─── Good to know — two-column tick list ─────────────────── */
.ph-gtk { margin: 0 0 40px; }
.ph-gtk__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.ph-gtk__col-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--oh-text);
}
.ph-gtk__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ph-gtk__list li {
	display: flex;
	gap: 10px;
	padding: 6px 0;
	font-size: var(--oh-fs-sm);
	line-height: 1.5;
	color: var(--oh-text);
}
.ph-gtk__tick {
	flex: 0 0 16px;
	color: var(--oh-success);
	margin-top: 3px;
}
.ph-gtk__list--rules li::before {
	content: "•";
	color: var(--oh-text-muted);
	flex: 0 0 12px;
	font-weight: 700;
}
.ph-gtk__list--rules li svg { display: none; }

@media (max-width: 720px) {
	.ph-gtk__cols { grid-template-columns: 1fr; gap: 24px; }
}
