/* ==========================================================================
   Prescribed Beauty — main stylesheet
   Tokens from the approved design. One file, no build step, no framework.
   ========================================================================== */

:root {
	--pb-navy: #29294C;
	--pb-cream: #F7F3EA;
	--pb-white: #FFFFFF;
	--pb-sage: #E7ECE3;
	--pb-sage-deep: #C9D4C0;
	--pb-coral: #E0836A;
	--pb-coral-deep: #CE6E55;
	--pb-gold: #E4C377;
	--pb-rose: #A85B62;
	--pb-line: rgba(41, 41, 76, 0.14);
	--pb-line-soft: rgba(41, 41, 76, 0.12);
	--pb-line-cream: rgba(247, 243, 234, 0.16);
	--pb-ink-70: rgba(41, 41, 76, 0.7);
	--pb-cream-88: rgba(247, 243, 234, 0.88);
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'EB Garamond', Georgia, serif;
	--font-label: 'Jost', system-ui, sans-serif;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--pad-x: 60px;
}

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--pb-cream);
	color: var(--pb-navy);
	font-family: var(--font-body);
	font-size: 17.5px;
	line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: var(--pb-navy); }
a:hover { color: var(--pb-coral-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--pb-coral);
	outline-offset: 2px;
}
input::placeholder, textarea::placeholder { color: rgba(41, 41, 76, 0.45); }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

.pb-skip {
	position: absolute; left: -9999px; top: 0;
	background: var(--pb-navy); color: var(--pb-cream);
	font-family: var(--font-label); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 12px 20px; z-index: 100;
}
.pb-skip:focus { left: 0; color: var(--pb-cream); }

/* Type helpers ------------------------------------------------------------ */
.pb-eyebrow {
	margin: 0 0 14px;
	font-family: var(--font-label); font-size: 12px; font-weight: 400;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--pb-navy); opacity: 0.72;
}
.pb-eyebrow--gold { color: var(--pb-gold); opacity: 1; letter-spacing: 0.2em; }
.pb-h2 {
	margin: 0 0 48px;
	font-family: var(--font-display); font-weight: 400;
	font-size: 42px; line-height: 1.12;
	max-width: 24ch; text-wrap: pretty;
}
.pb-h2--tight { margin-bottom: 22px; }
.pb-h3 {
	margin: 0 0 8px;
	font-family: var(--font-display); font-weight: 400;
	font-size: 34px; line-height: 1.12;
}
.pb-body { margin: 0 0 18px; max-width: 58ch; }
.pb-body--spaced { margin-bottom: 44px; }
.pb-footnote { margin: 26px 0 0; font-style: italic; font-size: 15px; color: var(--pb-ink-70); }
.pb-disclaimer { margin: 40px 0 0; font-style: italic; font-size: 14.5px; color: var(--pb-ink-70); border-top: 1px solid var(--pb-line); padding-top: 18px; }
.pb-creds {
	margin: 0 0 24px;
	font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--pb-rose);
}
.pb-textlink {
	display: inline-block; margin-top: 28px;
	font-family: var(--font-label); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--pb-navy); text-decoration: underline; text-underline-offset: 4px; white-space: nowrap;
}

/* Buttons ------------------------------------------------------------------ */
.pb-btn {
	display: inline-block; text-align: center;
	font-family: var(--font-label); font-size: 13px; font-weight: 500;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--pb-navy); background: var(--pb-coral);
	padding: 16px 32px; border: none; border-radius: 6px;
	text-decoration: none; cursor: pointer;
	transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.pb-btn:hover { background: var(--pb-coral-deep); color: var(--pb-cream); }
.pb-btn--outline {
	background: none; color: var(--pb-navy);
	border: 1px solid rgba(41, 41, 76, 0.4); padding: 15px 31px;
}
.pb-btn--outline:hover { background: none; color: var(--pb-navy); border-color: var(--pb-navy); }
.pb-btn--outline-light {
	background: none; color: var(--pb-cream);
	border: 1px solid rgba(247, 243, 234, 0.45); padding: 15px 31px;
}
.pb-btn--outline-light:hover { background: none; color: var(--pb-cream); border-color: var(--pb-cream); }
.pb-wa-icon { vertical-align: -2.5px; margin-right: 9px; }
.pb-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.pb-actions--center { justify-content: center; position: relative; z-index: 1; }

/* Header ------------------------------------------------------------------- */
.pb-header {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	padding: 22px var(--pad-x);
	background: var(--pb-cream);
	border-bottom: 1px solid rgba(41, 41, 76, 0.1);
	position: relative; z-index: 20;
}
.pb-brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; color: var(--pb-navy); }
.pb-brand:hover { color: var(--pb-navy); }
.pb-brand__name { font-family: var(--font-display); font-size: 25px; font-weight: 500; letter-spacing: 0.03em; }
.pb-brand__sub { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--pb-rose); margin-top: 3px; }
.pb-nav { display: flex; align-items: center; gap: 34px; }
.pb-nav__list { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.pb-nav__list a {
	font-family: var(--font-label); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
	text-decoration: none; color: var(--pb-navy);
}
.pb-nav__list a:hover { color: var(--pb-coral-deep); }
.pb-nav__cta { padding: 14px 26px; }
.pb-nav-toggle { display: none; }

/* Hero (navy) --------------------------------------------------------------- */
.pb-hero {
	position: relative; overflow: hidden;
	background: var(--pb-navy);
	padding: 76px var(--pad-x) 72px;
}
.pb-hero--sub { padding: 72px var(--pad-x) 68px; }
.pb-hero--split {
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 72px; align-items: center;
	padding: 88px var(--pad-x) 96px;
}
.pb-hero__copy, .pb-hero__media { position: relative; z-index: 1; min-width: 0; }
.pb-hero__display {
	margin: 0 0 26px;
	font-family: var(--font-display); font-weight: 400;
	font-size: 68px; line-height: 1.06; letter-spacing: -0.01em;
	color: var(--pb-cream); text-wrap: pretty;
}
.pb-hero__display em { font-style: italic; color: var(--pb-gold); }
.pb-hero__title {
	margin: 0 0 20px; position: relative; z-index: 1;
	font-family: var(--font-display); font-weight: 400;
	font-size: 56px; line-height: 1.08;
	color: var(--pb-cream); max-width: 22ch; text-wrap: pretty;
}
.pb-hero--sub .pb-hero__title { font-size: 54px; margin-bottom: 18px; }
.pb-hero__lede {
	margin: 0; position: relative; z-index: 1;
	max-width: 56ch; font-size: 18.5px; line-height: 1.6;
	color: var(--pb-cream-88);
}
.pb-hero--split .pb-hero__lede { margin-bottom: 36px; max-width: 52ch; font-size: 19px; }
.pb-hero__meta {
	margin: 0; position: relative; z-index: 1;
	font-family: var(--font-label); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--pb-gold);
}
.pb-hero__meta--plain { color: rgba(247, 243, 234, 0.75); letter-spacing: 0.12em; }
.pb-hero__phone {
	margin: 26px 0 0;
	font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.06em;
	color: rgba(247, 243, 234, 0.66);
}
.pb-hero .pb-eyebrow { position: relative; z-index: 1; }
.pb-crumb { margin: 0 0 20px; position: relative; z-index: 1; }
.pb-crumb a {
	font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
	color: rgba(247, 243, 234, 0.66); text-decoration: none;
}
.pb-crumb a:hover { color: var(--pb-cream); }

/* Botanicals ----------------------------------------------------------------- */
.pb-botanical { position: absolute; pointer-events: none; }
.pb-botanical--hero { top: -30px; right: -34px; width: 250px; opacity: 0.22; transform: rotate(10deg); }
.pb-botanical--panel { bottom: -34px; left: -30px; width: 250px; opacity: 0.22; transform: rotate(174deg); }
.pb-botanical--band { bottom: -60px; right: -44px; width: 220px; opacity: 0.55; }
.pb-botanical--card { bottom: -52px; right: -36px; width: 170px; opacity: 0.4; }
.pb-botanical--corner-bl { bottom: -56px; left: -40px; width: 210px; opacity: 0.5; transform: rotate(4deg); }
.pb-botanical--corner-br { bottom: -52px; right: -38px; width: 190px; opacity: 0.45; transform: scaleX(-1); }

/* Sections -------------------------------------------------------------------- */
.pb-section { position: relative; overflow: hidden; padding: 96px var(--pad-x); background: var(--pb-cream); }
.pb-section--white { background: var(--pb-white); }
.pb-section--sage { background: var(--pb-sage); }
.pb-section--narrow { padding-left: 0; padding-right: 0; }
.pb-section--narrow .pb-prose, .pb-section--narrow .pb-body, .pb-section--narrow .pb-disclaimer, .pb-section--narrow .pb-pagination {
	max-width: 760px; margin-left: auto; margin-right: auto; padding: 0 24px;
}
.pb-sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.pb-sechead .pb-h2 { margin-bottom: 0; }
.pb-sechead .pb-textlink { margin-top: 0; }

/* Trust strip ------------------------------------------------------------------ */
.pb-truststrip {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	padding: 26px var(--pad-x);
	background: var(--pb-cream); border-bottom: 1px solid rgba(41, 41, 76, 0.1);
}
.pb-truststrip p {
	margin: 0; text-align: center;
	font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
}
.pb-truststrip p + p { border-left: 1px solid rgba(41, 41, 76, 0.16); }

/* Steps ------------------------------------------------------------------------- */
.pb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pb-step { border-top: 2px solid rgba(41, 41, 76, 0.18); padding: 26px 4px 0; }
.pb-step--accent { border-top-color: var(--pb-coral); }
.pb-step__num { margin: 0 0 10px; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; opacity: 0.6; }
.pb-step__title { margin: 0 0 10px; font-family: var(--font-display); font-weight: 500; font-size: 27px; }
.pb-step__body { margin: 0; font-size: 16.5px; line-height: 1.55; }

/* Split sections ------------------------------------------------------------------ */
.pb-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.pb-split--portrait { grid-template-columns: minmax(280px, 440px) minmax(0, 1fr); }
.pb-split__copy, .pb-split__media { position: relative; z-index: 1; min-width: 0; }
.pb-photo { display: block; width: 100%; border-radius: 10px; object-fit: cover; }
.pb-photo--tall { height: 520px; }
.pb-photo--mid { height: 400px; }
.pb-photo--empty {
	background: var(--pb-sage);
	border: 1px dashed rgba(41, 41, 76, 0.25);
}
.pb-hero__media { position: relative; }
.pb-rx-card {
	position: absolute; left: -28px; bottom: -28px;
	display: flex; align-items: center; gap: 18px;
	background: var(--pb-cream); border: 1px solid var(--pb-line); border-radius: 8px;
	padding: 20px 24px;
	box-shadow: 0 10px 32px -8px rgba(18, 18, 40, 0.25);
}
.pb-rx-card--static { position: static; margin-top: 22px; box-shadow: none; background: var(--pb-white); border-color: var(--pb-line-soft); }
.pb-rx-card__glyph { font-family: var(--font-display); font-size: 38px; font-weight: 500; line-height: 1; }
.pb-rx-card__text { display: flex; flex-direction: column; gap: 4px; }
.pb-rx-card__title { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.pb-rx-card__sub { font-family: var(--font-body); font-style: italic; font-size: 14.5px; color: var(--pb-rose); }

/* Quote ---------------------------------------------------------------------------- */
.pb-quote { margin: 36px 0 0; border-left: 2px solid var(--pb-coral); padding: 6px 0 6px 26px; }
.pb-quote blockquote { margin: 0 0 12px; font-style: italic; font-size: 19px; line-height: 1.55; }
.pb-quote figcaption { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(41, 41, 76, 0.65); }

/* Treatment cards --------------------------------------------------------------------- */
.pb-tgrid { display: grid; gap: 22px; }
.pb-tgrid--4 { grid-template-columns: repeat(4, 1fr); }
.pb-tgrid--3 { grid-template-columns: repeat(3, 1fr); }
.pb-tcard {
	display: flex; flex-direction: column; gap: 12px;
	background: var(--pb-white); border: 1px solid rgba(41, 41, 76, 0.1); border-radius: 8px;
	padding: 30px 26px;
	text-decoration: none; color: var(--pb-navy);
	transition: border-color 160ms var(--ease);
}
.pb-section .pb-tcard { background: var(--pb-white); }
.pb-tcard:hover { border-color: var(--pb-coral); color: var(--pb-navy); }
.pb-tcard__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.15; }
.pb-tcard__intro { margin: 0; flex: 1; font-size: 15.5px; line-height: 1.55; color: rgba(41, 41, 76, 0.85); }
.pb-tcard__meta { margin: 6px 0 0; font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.pb-tcard__meta--pom { color: var(--pb-rose); }

/* Navy panel ----------------------------------------------------------------------------- */
.pb-panel { position: relative; overflow: hidden; background: var(--pb-navy); padding: 96px var(--pad-x); text-align: center; }
.pb-panel__inner { position: relative; z-index: 1; }
.pb-panel__title {
	margin: 0 auto 22px; max-width: 24ch;
	font-family: var(--font-display); font-weight: 400; font-size: 42px; line-height: 1.14;
	color: var(--pb-cream); text-wrap: pretty;
}
.pb-panel__body { margin: 0 auto 36px; max-width: 56ch; font-size: 17.5px; line-height: 1.65; color: var(--pb-cream-88); }

/* Deep-sage CTA band ------------------------------------------------------------------------ */
.pb-band { position: relative; overflow: hidden; background: var(--pb-sage-deep); padding: 80px var(--pad-x); text-align: center; }
.pb-band__title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 400; font-size: 44px; line-height: 1.1; }
.pb-band__body { margin: 0 0 30px; font-size: 17.5px; }
.pb-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }

/* Single treatment ---------------------------------------------------------------------------- */
.pb-detail { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 72px; align-items: start; }
.pb-visitlist { display: flex; flex-direction: column; }
.pb-visit { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--pb-line); }
.pb-visit:last-child { border-bottom: 1px solid var(--pb-line); }
.pb-visit__num { margin: 0; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.12em; opacity: 0.6; }
.pb-visit__text { margin: 0; font-size: 16.5px; line-height: 1.55; }
.pb-visit__text strong { font-weight: 500; }
.pb-aside {
	position: sticky; top: 24px;
	background: var(--pb-white); border: 1px solid var(--pb-line-soft); border-radius: 10px;
	padding: 34px 32px;
	display: flex; flex-direction: column;
}
.pb-aside__row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--pb-line-soft); }
.pb-aside__row:last-of-type { border-bottom: 1px solid var(--pb-line-soft); }
.pb-aside__row p { margin: 0; font-size: 16.5px; }
.pb-aside__price { font-family: var(--font-label); font-size: 14px; font-weight: 500; }
.pb-aside__note { margin: 16px 0 26px; font-style: italic; font-size: 14.5px; line-height: 1.55; color: var(--pb-ink-70); }
.pb-aside__ask { margin-top: 12px; }

/* POM card --------------------------------------------------------------------------------------- */
.pb-pomcard {
	position: relative; overflow: hidden;
	max-width: 760px; margin: 0 auto; text-align: center;
	background: var(--pb-white); border: 1px solid var(--pb-line-soft); border-radius: 10px;
	padding: 56px 56px 52px;
}
.pb-pomcard__glyph { display: inline-block; font-family: var(--font-display); font-size: 44px; font-weight: 500; line-height: 1; margin-bottom: 18px; }
.pb-pomcard__title { margin: 0 auto 20px; max-width: 24ch; font-family: var(--font-display); font-weight: 400; font-size: 36px; line-height: 1.16; text-wrap: pretty; }
.pb-pomcard__body { margin: 0 auto 16px; max-width: 52ch; font-size: 17px; line-height: 1.65; }
.pb-pomcard__body:last-of-type { margin-bottom: 34px; }
.pb-pomcard__foot {
	margin: 28px 0 0;
	font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
	color: rgba(41, 41, 76, 0.55);
}

/* Booking page -------------------------------------------------------------------------------------- */
.pb-booking { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 72px; align-items: start; }
.pb-formcard { background: var(--pb-white); border: 1px solid var(--pb-line-soft); border-radius: 10px; padding: 44px 44px 40px; }
.pb-formcard__sub { margin: 0 0 32px; font-size: 16px; color: rgba(41, 41, 76, 0.8); }
.pb-formcard__done { text-align: center; padding: 48px 12px; }
.pb-formcard__check { display: inline-block; font-family: var(--font-display); font-size: 44px; line-height: 1; margin-bottom: 16px; }
.pb-formerror {
	margin: 0 0 24px; padding: 14px 18px;
	background: rgba(224, 131, 106, 0.14); border: 1px solid var(--pb-coral); border-radius: 6px;
	font-size: 15.5px;
}
.pb-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pb-form__hp { position: absolute !important; left: -9999px !important; }
.pb-form__field { display: flex; flex-direction: column; gap: 8px; }
.pb-form__field--wide { grid-column: 1 / -1; }
.pb-form__field > span { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.pb-form__field > span em { font-style: normal; text-transform: none; letter-spacing: 0; opacity: 0.6; }
.pb-form input[type="text"], .pb-form input[type="tel"], .pb-form input[type="email"], .pb-form select, .pb-form textarea {
	font-family: var(--font-body); font-size: 16.5px; color: var(--pb-navy);
	background: var(--pb-cream); border: 1px solid rgba(41, 41, 76, 0.2); border-radius: 6px;
	padding: 13px 14px; width: 100%;
}
.pb-form textarea { resize: vertical; }
.pb-form__consent { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.pb-form__consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--pb-coral); flex: none; }
.pb-form__consent span { font-size: 15px; line-height: 1.55; color: rgba(41, 41, 76, 0.8); }
.pb-form__submit { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
.pb-booking__aside { display: flex; flex-direction: column; gap: 22px; }
.pb-asidecard { position: relative; overflow: hidden; background: var(--pb-white); border: 1px solid var(--pb-line-soft); border-radius: 10px; padding: 32px 34px; }
.pb-asidecard--navy { background: var(--pb-navy); border: none; padding: 36px 34px; }
.pb-asidecard--navy .pb-asidecard__body { color: var(--pb-cream-88); }
.pb-asidecard--sage { background: var(--pb-sage); border: none; }
.pb-asidecard__body { margin: 0 0 22px; font-size: 16.5px; line-height: 1.6; }
.pb-asidecard__body:last-child { margin-bottom: 0; }
.pb-asidecard__actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.pb-asidecard .pb-btn { display: block; }
.pb-scheduler-frame { width: 100%; height: 640px; border: none; border-radius: 6px; margin-top: 8px; }

/* Contact ---------------------------------------------------------------------------------------------- */
.pb-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
.pb-contactlist { display: flex; flex-direction: column; gap: 22px; }
.pb-contactcard {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	background: var(--pb-white); border: 1px solid var(--pb-line-soft); border-radius: 10px;
	padding: 28px 30px; text-decoration: none; color: var(--pb-navy);
	transition: border-color 160ms var(--ease);
}
.pb-contactcard:hover { border-color: var(--pb-coral); color: var(--pb-navy); }
.pb-contactcard__text { display: flex; flex-direction: column; gap: 4px; }
.pb-contactcard__label { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; }
.pb-contactcard__value { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.pb-contactcard__arrow { font-size: 22px; color: var(--pb-rose); }
.pb-facts { margin-top: 44px; border-top: 1px solid var(--pb-line); }
.pb-facts--framed { margin-top: 0; }
.pb-facts__row { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--pb-line); }
.pb-facts--framed .pb-facts__row { grid-template-columns: 220px 1fr; padding: 20px 0; }
.pb-facts__label { margin: 0; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; }
.pb-facts__value { margin: 0; font-size: 16.5px; line-height: 1.6; }
.pb-facts__value em { color: var(--pb-ink-70); }
.pb-maplink { display: block; }
.pb-mapnote { margin: 14px 0 30px; font-style: italic; font-size: 14.5px; color: var(--pb-ink-70); }

/* About ------------------------------------------------------------------------------------------------- */
.pb-about { display: grid; grid-template-columns: minmax(300px, 460px) minmax(0, 1fr); gap: 72px; align-items: start; }
.pb-about__media { position: sticky; top: 24px; }
.pb-about__media .pb-photo--tall { height: 560px; }
.pb-promises { background: var(--pb-white); }
.pb-promises__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 1; }
.pb-promise { background: var(--pb-sage); border-radius: 8px; padding: 30px 28px; }
.pb-promise__title { margin: 0 0 10px; font-family: var(--font-display); font-weight: 500; font-size: 25px; }
.pb-promise__body { margin: 0; font-size: 16px; line-height: 1.6; }

/* Journal ------------------------------------------------------------------------------------------------ */
.pb-journal { display: flex; flex-direction: column; max-width: 860px; }
.pb-post {
	display: block; padding: 34px 4px;
	border-top: 1px solid var(--pb-line);
	text-decoration: none; color: var(--pb-navy);
}
.pb-post:last-of-type { border-bottom: 1px solid var(--pb-line); }
.pb-post:hover { color: var(--pb-navy); }
.pb-post__date { margin: 0 0 10px; font-family: var(--font-label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.pb-post__title { margin: 0 0 10px; font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 1.15; transition: color 160ms var(--ease); }
.pb-post:hover .pb-post__title { color: var(--pb-coral-deep); }
.pb-post__excerpt { margin: 0 0 14px; max-width: 62ch; font-size: 16.5px; line-height: 1.6; color: rgba(41, 41, 76, 0.85); }
.pb-post__more { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.pb-pagination { margin-top: 44px; font-family: var(--font-label); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.pb-pagination .nav-links { display: flex; gap: 22px; }
.pb-pagination a, .pb-pagination span { color: var(--pb-navy); text-decoration: none; }
.pb-pagination a:hover { color: var(--pb-coral-deep); }
.pb-pagination .current { color: var(--pb-rose); }

/* Prose (block editor content) ------------------------------------------------------------------------------ */
.pb-prose { font-size: 17.5px; line-height: 1.68; }
.pb-prose--flush p:first-child { margin-top: 0; }
.pb-prose > * { max-width: 62ch; }
.pb-prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.18; margin: 44px 0 16px; }
.pb-prose h3 { font-family: var(--font-display); font-weight: 500; font-size: 25px; line-height: 1.2; margin: 36px 0 12px; }
.pb-prose p { margin: 0 0 18px; }
.pb-prose ul, .pb-prose ol { margin: 0 0 18px; padding-left: 24px; }
.pb-prose li { margin-bottom: 8px; }
.pb-prose a { text-decoration: underline; text-underline-offset: 3px; }
.pb-prose blockquote { margin: 28px 0; border-left: 2px solid var(--pb-coral); padding: 4px 0 4px 24px; font-style: italic; }
.pb-prose blockquote p { margin: 0; }
.pb-prose table { border-collapse: collapse; width: 100%; margin: 0 0 24px; font-size: 16px; }
.pb-prose th, .pb-prose td { border: 1px solid var(--pb-line); padding: 10px 14px; text-align: left; }
.pb-prose th { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.pb-prose img { border-radius: 10px; }
.pb-prose hr { border: none; border-top: 1px solid var(--pb-line); margin: 40px 0; }

/* Footer -------------------------------------------------------------------------------------------------------- */
.pb-footer { background: var(--pb-navy); color: var(--pb-cream); padding: 64px var(--pad-x) 40px; }
.pb-footer a { color: rgba(247, 243, 234, 0.85); text-decoration: none; }
.pb-footer a:hover { color: var(--pb-cream); text-decoration: underline; }
.pb-footer__top {
	display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
	padding-bottom: 40px; border-bottom: 1px solid var(--pb-line-cream);
}
.pb-footer__name { margin: 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: 0.03em; }
.pb-footer__sub { margin: 3px 0 14px; font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--pb-gold); }
.pb-footer__addr { margin: 0; font-size: 15.5px; line-height: 1.6; color: rgba(247, 243, 234, 0.75); }
.pb-footer__tag { margin: 14px 0 0; font-style: italic; font-size: 14px; line-height: 1.6; color: rgba(247, 243, 234, 0.6); max-width: 34ch; }
.pb-footer__cols { display: flex; gap: 64px; }
.pb-footer__head { margin: 0 0 16px; font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pb-gold); }
.pb-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; }
.pb-footer__hours { margin: 18px 0 0; font-size: 14px; line-height: 1.6; color: rgba(247, 243, 234, 0.6); }
.pb-footer__badges {
	display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
	padding: 26px 0 24px; border-bottom: 1px solid var(--pb-line-cream);
}
.pb-badge {
	display: inline-flex; align-items: center; gap: 10px;
	border: 1px solid rgba(247, 243, 234, 0.28); border-radius: 6px; padding: 10px 16px;
	transition: border-color 160ms var(--ease);
}
.pb-badge:hover { border-color: rgba(247, 243, 234, 0.6); text-decoration: none; }
.pb-badge__text { display: flex; flex-direction: column; gap: 2px; }
.pb-badge__eyebrow { font-family: var(--font-label); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247, 243, 234, 0.6); }
.pb-badge__name { font-family: var(--font-label); font-size: 12.5px; letter-spacing: 0.06em; font-weight: 500; color: var(--pb-cream); }
.pb-footer__eco { margin: 0; font-style: italic; font-size: 13.5px; line-height: 1.5; color: rgba(247, 243, 234, 0.5); max-width: 44ch; }
.pb-footer__legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 24px; }
.pb-footer__copy { margin: 0; font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.04em; color: rgba(247, 243, 234, 0.55); }
.pb-footer__legallist { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 20px; }
.pb-footer__legallist a { font-family: var(--font-label); font-size: 11.5px; letter-spacing: 0.06em; color: rgba(247, 243, 234, 0.7); }

/* Responsive -------------------------------------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	:root { --pad-x: 40px; }
	.pb-hero__display { font-size: 54px; }
	.pb-hero__title { font-size: 46px; }
	.pb-tgrid--4 { grid-template-columns: repeat(2, 1fr); }
	.pb-tgrid--3 { grid-template-columns: repeat(2, 1fr); }
	.pb-split, .pb-split--portrait, .pb-detail, .pb-booking, .pb-contact, .pb-about { grid-template-columns: 1fr; gap: 44px; }
	.pb-about__media { position: static; max-width: 460px; }
	.pb-aside { position: static; }
	.pb-steps, .pb-promises__grid { grid-template-columns: 1fr; }
	.pb-truststrip { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
	.pb-truststrip p:nth-child(3) { border-left: none; }
}

@media (max-width: 720px) {
	:root { --pad-x: 24px; }
	body { font-size: 16.5px; }
	.pb-section, .pb-panel { padding-top: 64px; padding-bottom: 64px; }
	.pb-hero, .pb-hero--split, .pb-hero--sub { padding-top: 56px; padding-bottom: 56px; }
	.pb-hero--split { grid-template-columns: 1fr; gap: 48px; }
	.pb-hero__display { font-size: 42px; }
	.pb-hero__title, .pb-hero--sub .pb-hero__title { font-size: 38px; }
	.pb-h2 { font-size: 32px; margin-bottom: 32px; }
	.pb-panel__title { font-size: 32px; }
	.pb-band__title { font-size: 34px; }
	.pb-tgrid--4, .pb-tgrid--3 { grid-template-columns: 1fr; }
	.pb-form { grid-template-columns: 1fr; }
	.pb-formcard { padding: 28px 22px; }
	.pb-pomcard { padding: 40px 24px; }
	.pb-sechead { flex-direction: column; align-items: flex-start; gap: 12px; }
	.pb-rx-card { left: 12px; bottom: -20px; padding: 14px 18px; }
	.pb-photo--tall { height: 420px; }
	.pb-facts__row, .pb-facts--framed .pb-facts__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
	.pb-footer__top { flex-direction: column; }
	.pb-footer__cols { flex-direction: column; gap: 36px; }
	.pb-botanical--hero { width: 170px; right: -40px; }

	/* Mobile nav */
	.pb-nav-toggle {
		display: inline-flex; align-items: center; gap: 10px;
		background: none; border: 1px solid rgba(41, 41, 76, 0.3); border-radius: 6px;
		padding: 10px 14px; cursor: pointer;
		font-family: var(--font-label); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
		color: var(--pb-navy);
	}
	.pb-nav-toggle__bars { display: block; width: 16px; height: 2px; background: currentColor; box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor; }
	.pb-nav {
		display: none;
		position: absolute; top: 100%; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: var(--pb-cream); border-bottom: 1px solid rgba(41, 41, 76, 0.1);
		padding: 8px 24px 24px;
	}
	.pb-header.is-open .pb-nav { display: flex; }
	.pb-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.pb-nav__list a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(41, 41, 76, 0.08); }
	.pb-nav__cta { margin-top: 18px; text-align: center; }
}
