/* Prime Heal Instruments — standalone theme (not Mediron / reference clones) */
@import url("fonts/fonts.css");

:root {
  --gold: #c6a136;
  --gold-mid: #a88428;
  --gold-deep: #7d6319;
  /* Warm text on light backgrounds (replaces harsh black) */
  --ink: #2e261c;
  --ink-soft: #3d3429;
  --paper: #f3f0e8;
  --paper-warm: #e8e4d9;
  --muted: #6b6560;
  --line: rgba(198, 161, 54, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Gold + white surfaces */
  --grad-gold: linear-gradient(135deg, #fffef8 0%, #f4e4ac 22%, #dfc56a 48%, #c6a136 72%, #9a7618 100%);
  --grad-gold-rich: linear-gradient(145deg, #f0d78c 0%, #d4af37 28%, #b8942e 55%, #8a6d1f 82%, #5c4812 100%);
  --grad-gold-deep: linear-gradient(155deg, #c6a136 0%, #9a7618 45%, #6b5410 100%);
  --grad-ribbon: linear-gradient(90deg, #5c4812, #c6a136, #f2e4b0, #c6a136, #5c4812);
  --grad-footer: linear-gradient(180deg, #1f1f1f 0%, #141414 55%, #0f0f0f 100%);
  --on-gold-light: #fffef9;
  --on-gold-muted: rgba(255, 254, 249, 0.88);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--ink);
}

.ph-heading {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

/* Skip link */
.ph-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  font-weight: 600;
  z-index: 100;
}
.ph-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Header — white + gold gradient accent bar */
.ph-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(198, 161, 54, 0.2);
}

.ph-header::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--grad-ribbon);
}

.ph-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ph-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ph-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.ph-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .ph-nav-desktop {
    display: flex;
  }
}

.ph-nav-desktop a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.65rem 1rem;
  border: 2px solid transparent;
}

.ph-nav-desktop a:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.ph-nav-desktop a[aria-current="page"] {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  border-color: var(--gold-mid);
}

.ph-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold-mid);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 960px) {
  .ph-nav-toggle {
    display: none;
  }
}

.ph-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-deep);
  position: relative;
}
.ph-nav-toggle span::before,
.ph-nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold-deep);
}
.ph-nav-toggle span::before {
  top: -7px;
}
.ph-nav-toggle span::after {
  top: 7px;
}

.ph-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--grad-gold);
  color: var(--ink-soft);
  flex-direction: column;
  padding: calc(2rem + env(safe-area-inset-top, 0px))
    calc(1.5rem + env(safe-area-inset-right, 0px))
    calc(2rem + env(safe-area-inset-bottom, 0px))
    calc(1.5rem + env(safe-area-inset-left, 0px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.ph-nav-drawer.is-open {
  display: flex;
}
.ph-nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ph-nav-drawer a {
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.85rem 0;
  min-height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(154, 118, 24, 0.22);
}
.ph-nav-drawer a[aria-current="page"] {
  color: var(--gold-deep);
}
.ph-nav-close {
  align-self: flex-end;
  margin-bottom: 1.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(255, 254, 249, 0.85);
  border: 2px solid var(--gold-mid);
  padding: 0.65rem 1.15rem;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  border-radius: 3px;
}

/* Buttons */
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 2px solid var(--gold-mid);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s;
}

.ph-btn:hover {
  transform: translateY(-2px);
}

.ph-btn--solid {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  border-color: var(--gold-mid);
}

.ph-btn--solid:hover {
  background: #ffffff;
  color: var(--gold-deep);
  border-color: var(--gold);
}

.ph-btn--ghost {
  background: transparent;
  color: var(--ink-soft);
}

.ph-btn--ghost:hover {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  border-color: transparent;
}

.ph-btn--light {
  background: rgba(255, 254, 249, 0.12);
  color: var(--on-gold-light);
  border-color: var(--on-gold-light);
}

.ph-btn--light:hover {
  background: #ffffff;
  color: var(--gold-deep);
  border-color: #ffffff;
}

/* Footer — charcoal / near-black */
.ph-footer {
  background: var(--grad-footer);
  color: rgba(228, 228, 231, 0.88);
  margin-top: 4rem;
}

.ph-footer-ribbon {
  height: 3px;
  background: linear-gradient(90deg, #27272a, #71717a, #27272a);
}

.ph-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .ph-footer-inner {
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1.35fr;
    align-items: start;
  }
}

.ph-footer-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #f4f4f5;
}

.ph-footer-blurb {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(228, 228, 231, 0.72);
  margin: 1rem 0 0;
  max-width: 30ch;
}

.ph-footer-hours {
  margin: 0;
}

.ph-footer-hours dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-top: 0.65rem;
}

.ph-footer-hours dt:first-child {
  margin-top: 0;
}

.ph-footer-hours dd {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: rgba(228, 228, 231, 0.85);
}

.ph-footer-links--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0;
}

.ph-footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.05) contrast(1.02);
}

.ph-footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-top: 1rem;
}

.ph-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
}

.ph-footer-links a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(228, 228, 231, 0.62);
}

.ph-footer-links a:hover {
  color: #ffffff;
}

.ph-footer-address {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(228, 228, 231, 0.78);
  border-left: 3px solid #52525b;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 2px;
}

.ph-footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(228, 228, 231, 0.45);
}

/* Utility */
.ph-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ph-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

/* ── Home: Maxi-style layout flow (facility-led rhythm, Prime Heal brand) ── */
.ph-btn--lg {
  padding: 1.1rem 2rem;
  font-size: 0.78rem;
}

.ph-topbar {
  background: var(--grad-gold-deep);
  color: var(--on-gold-light);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 254, 249, 0.12);
}

.ph-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.ph-topbar-loc,
.ph-topbar-phone {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ph-topbar-phone a {
  color: inherit;
  font-weight: 700;
}

.ph-topbar-phone a:hover {
  text-decoration: underline;
}

.ph-topbar-note {
  opacity: 0.78;
  font-size: 0.72rem;
  margin-left: 0.5rem;
  display: none;
}

@media (min-width: 720px) {
  .ph-topbar-note {
    display: inline;
  }
}

.ph-topbar-cta {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: #ffffff;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
}

.ph-topbar-cta:hover {
  background: var(--paper);
  color: var(--ink-soft);
}

.ph-topbar-icon {
  display: flex;
  opacity: 0.9;
  flex-shrink: 0;
}

/* Hero — bright hall photography, Montserrat copy, portrait anchor right, downward V + gold band */
.ph-hero-split {
  position: relative;
  isolation: isolate;
  font-family: "Montserrat", system-ui, sans-serif;
  min-height: min(88vh, 760px);
  padding: 0 0 clamp(5rem, 12vw, 6.5rem);
  overflow: hidden;
}

.ph-hero-split-toprule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7d6319, #d4af37, #f8ecc8, #d4af37, #7d6319);
  z-index: 8;
}

.ph-hero-split-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}

.ph-hero-split-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/mosaic-medical-bg.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.08);
  filter: blur(11px) saturate(0.92);
}

.ph-hero-split-bgwash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(252, 249, 242, 0.88) 38%,
    rgba(248, 244, 236, 0.45) 55%,
    rgba(240, 236, 228, 0.12) 72%,
    rgba(230, 224, 210, 0) 100%
  );
}

.ph-hero-split-angle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(64px, 11vw, 100px);
  z-index: 2;
  background: linear-gradient(90deg, #6b5410, #b8942e, #f2e4b0, #b8942e, #6b5410);
  clip-path: polygon(0 100%, 0 28%, 50% 0, 100% 28%, 100% 100%);
  pointer-events: none;
}

.ph-hero-split-shell {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  min-height: min(82vh, 700px);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(5rem, 14vw, 7rem);
  max-width: min(52rem, calc(100% - min(380px, 42vw)));
}

@media (min-width: 900px) and (max-width: 1099px) {
  .ph-hero-split-shell {
    max-width: min(42rem, calc(100% - 280px));
  }

  .ph-hero-split-figure {
    max-width: min(42vw, 380px);
    height: min(88%, 520px);
  }
}

.ph-hero-split-copy {
  position: relative;
  max-width: 36rem;
}

.ph-hero-split-tag {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: #c6a136;
  margin: 0 0 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.ph-hero-split-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2c2c2c;
  margin: 0 0 1rem;
}

.ph-hero-split-lede {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: #5a5a5a;
  margin: 0 0 1.75rem;
  max-width: 36rem;
}

.ph-hero-split-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 2rem;
  background: linear-gradient(180deg, #dfc56a 0%, #c6a136 35%, #8f731f 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(107, 84, 18, 0.25);
  transition: transform 0.2s var(--ease-out), filter 0.2s;
}

.ph-hero-split-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #ffffff;
}

.ph-hero-split-figure {
  position: absolute;
  z-index: 5;
  right: max(0px, calc((100vw - 1400px) / 2));
  bottom: 0;
  height: min(92%, 640px);
  width: auto;
  max-width: min(46vw, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.ph-hero-split-figure img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-8px 16px 36px rgba(45, 40, 35, 0.18));
}

@media (max-width: 899px) {
  .ph-hero-split-media {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
  }

  .ph-hero-split-shell {
    min-height: unset;
    max-width: none;
    padding-bottom: 2rem;
    align-items: flex-start;
  }

  .ph-hero-split-copy {
    text-align: center;
    margin-inline: auto;
    padding-inline: 0.5rem;
  }

  .ph-hero-split-tag,
  .ph-hero-split-lede {
    margin-inline: auto;
  }

  .ph-hero-split-cta {
    margin-inline: auto;
  }

  .ph-hero-split-figure {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    max-width: 280px;
    margin: 1.5rem auto 0;
    pointer-events: none;
  }

  .ph-hero-split-figure img {
    height: auto;
    max-height: 380px;
    margin-inline: auto;
  }

  .ph-hero-split-angle {
    height: 48px;
  }
}

.ph-info-strip-wrap {
  position: relative;
  z-index: 12;
  margin-top: clamp(-4.5rem, -8vw, -3rem);
}

.ph-info-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ph-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ph-info-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-info-strip--maxi {
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .ph-info-strip--maxi {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ph-info-card {
  background: #ffffff;
  padding: 1.5rem 1.35rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 45px rgba(46, 38, 28, 0.12);
}

.ph-info-strip--maxi .ph-info-card--maxi {
  border-top: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.ph-info-strip--maxi .ph-info-card--maxi:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 899px) {
  .ph-info-strip--maxi .ph-info-card--maxi:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

.ph-info-card--emergency {
  background: linear-gradient(165deg, #f3e4b8 0%, #e4cf82 45%, #d8bf68 100%);
  color: #ffffff;
}

.ph-info-card--registration {
  background: linear-gradient(165deg, #c6a136 0%, #a88428 48%, #7d6319 100%);
  color: #ffffff;
}

.ph-info-card--hours,
.ph-info-card--timetable {
  background: #ffffff;
  color: #3d3d3d;
}

.ph-info-card--accent {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  border-top-color: rgba(255, 254, 249, 0.85);
}

.ph-info-card-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
}

.ph-info-strip--maxi .ph-info-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.ph-info-card--emergency .ph-info-card-title,
.ph-info-card--registration .ph-info-card-title {
  color: #ffffff;
}

.ph-info-card--hours .ph-info-card-title,
.ph-info-card--timetable .ph-info-card-title {
  color: #2c2c2c;
}

.ph-info-card--accent .ph-info-card-title {
  color: var(--on-gold-light);
}

.ph-info-card-text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.ph-info-strip--maxi .ph-info-card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.ph-info-card--emergency .ph-info-card-text,
.ph-info-card--registration .ph-info-card-text {
  color: rgba(255, 255, 255, 0.92);
}

.ph-info-card--hours .ph-info-card-text,
.ph-info-card--timetable .ph-info-card-text {
  color: #5a5a5a;
}

.ph-info-card--accent .ph-info-card-text {
  color: var(--on-gold-muted);
}

.ph-info-card-link {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.ph-info-card--accent .ph-info-card-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ph-info-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.ph-info-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(168, 132, 40, 0.18);
}

.ph-info-hours li:last-child {
  border-bottom: none;
}

.ph-info-hours--maxi {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
}

.ph-info-hours--maxi li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.ph-info-hours--maxi .ph-info-hours-day {
  font-weight: 600;
  color: #3d3d3d;
}

.ph-info-hours--maxi .ph-info-hours-time {
  font-weight: 500;
  color: #5a5a5a;
}

.ph-welcome-maxi {
  padding: 4rem 0 3rem;
}

.ph-welcome-head {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.ph-welcome-lede {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 1rem 0 0;
  line-height: 1.75;
}

.ph-icon-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .ph-icon-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ph-icon-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-icon-feature {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(198, 161, 54, 0.28);
  border-radius: 4px;
  transition: box-shadow 0.25s var(--ease-out);
}

.ph-icon-feature:hover {
  box-shadow: 0 12px 32px rgba(107, 84, 18, 0.1);
}

.ph-icon-feature-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ph-icon-feature-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.ph-icon-feature p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.ph-appt-band {
  background: linear-gradient(180deg, var(--paper-warm) 0%, #dbd5c9 100%);
  padding: 3.5rem 0;
  margin: 2rem 0 0;
}

.ph-appt-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .ph-appt-inner {
    grid-template-columns: 1fr 1.12fr;
    align-items: start;
    gap: 3rem;
  }
}

.ph-appt-kicker {
  margin-bottom: 0.35rem;
}

.ph-appt-title {
  margin: 0 0 0.75rem;
}

.ph-appt-lede {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.ph-appt-form {
  background: #ffffff;
  padding: 1.75rem;
  border: 2px solid var(--gold-mid);
  box-shadow: 0 16px 40px rgba(46, 38, 28, 0.08);
}

.ph-appt-fields {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.25rem;
}

.ph-appt-field--full {
  grid-column: 1 / -1;
}

.ph-appt-field span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.ph-appt-field input,
.ph-appt-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 2px solid rgba(168, 132, 40, 0.35);
  font-family: inherit;
  font-size: 0.92rem;
}

.ph-appt-field input:focus,
.ph-appt-field textarea:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(198, 161, 54, 0.22);
}

.ph-mosaic-section {
  padding: 4rem 0 3rem;
}

.ph-mosaic-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.ph-mosaic-sub {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

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

@media (min-width: 640px) {
  .ph-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .ph-mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(200px, 1fr));
  }

  .ph-mosaic-card--tall {
    grid-row: span 2;
  }
}

.ph-mosaic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background-image: var(--mosaic-img);
  background-size: cover;
  background-position: center;
  min-height: 200px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.ph-mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 18, 10, 0.88) 100%);
  z-index: 0;
}

.ph-mosaic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(61, 52, 41, 0.28);
}

.ph-mosaic-card > span {
  position: relative;
  z-index: 1;
}

.ph-mosaic-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.88;
}

.ph-mosaic-card-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  margin-top: 0.35rem;
  line-height: 1.25;
}

.ph-mosaic-card--grad {
  background-image: none;
  background: var(--grad-gold-deep);
}

.ph-mosaic-card--grad::before {
  background: linear-gradient(135deg, rgba(255, 254, 249, 0.12) 0%, transparent 55%);
}

/* Products page — Laboratory chapter visual grid (#ch-lab) */
.ph-products-lab-hero {
  margin: 0 0 2.75rem;
}

.ph-products-lab-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .ph-products-lab-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    grid-template-rows: minmax(240px, 1fr) minmax(168px, auto);
    align-items: stretch;
  }

  .ph-products-lab-cell--tall {
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 400px;
  }

  .ph-products-lab-cell--wide {
    grid-column: 2;
    grid-row: 1;
    min-height: 260px;
  }

  .ph-products-lab-cell--short {
    grid-column: 2;
    grid-row: 2;
    min-height: 168px;
  }
}

.ph-products-lab-cell {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.35rem 1.5rem;
  color: #ffffff;
}

.ph-products-lab-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 18, 10, 0.15) 0%, rgba(22, 18, 10, 0.88) 100%);
  z-index: 0;
}

.ph-products-lab-cell-copy {
  position: relative;
  z-index: 1;
}

.ph-products-lab-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 220, 139, 0.95);
}

.ph-products-lab-tag {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 220, 139, 0.95);
}

.ph-products-lab-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.ph-products-lab-card-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.ph-products-lab-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.ph-products-lab-text--compact {
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 60ch;
}

.ph-products-lab-cell--pipette {
  background-image: url("images/lab-pipette.jpg");
}

.ph-products-lab-cell--desk {
  background-image: url("images/monitoring-station.jpg");
}

.ph-products-lab-cell--bench {
  background-image: url("images/lab-analyser-bench.jpg");
}

.ph-stats-section {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  padding: 3rem 0;
  margin: 3rem 0 0;
}

.ph-stats-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .ph-stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
}

.ph-stat-label {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 0.45rem;
  display: block;
}

.ph-dept-section {
  position: relative;
  padding: 4rem 0 5rem;
  color: var(--on-gold-light);
  overflow: hidden;
}

.ph-dept-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #231c14 0%, #45361f 42%, #16120d 100%);
}

.ph-dept-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/mosaic-medical-bg.jpg") center / cover;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}

.ph-dept-inner {
  position: relative;
  z-index: 1;
}

.ph-dept-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 254, 249, 0.55);
  margin: 0 0 0.5rem;
}

.ph-dept-title {
  color: var(--on-gold-light);
  max-width: 22ch;
  margin: 0 0 2.5rem;
}

.ph-dept-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .ph-dept-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ph-dept-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  background: rgba(255, 254, 249, 0.06);
  border: 1px solid rgba(255, 254, 249, 0.14);
  padding: 1rem;
  align-items: stretch;
}

.ph-dept-card-media {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  min-height: 100%;
}

.ph-dept-card-body h3 {
  margin: 0 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
}

.ph-dept-card-body p {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--on-gold-muted);
  line-height: 1.55;
}

.ph-dept-card-body a {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.ph-dept-card-body a:hover {
  color: #ffffff;
}

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

  .ph-dept-card-media {
    min-height: 140px;
  }
}

.ph-why-section {
  padding: 4rem 0 3rem;
}

.ph-why-heading {
  margin-bottom: 2rem;
  max-width: 28ch;
}

.ph-why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .ph-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ph-why-card {
  padding: 1.75rem;
  background: #ffffff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 28px rgba(46, 38, 28, 0.06);
}

.ph-why-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
}

.ph-why-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.ph-news-section {
  padding: 3rem 0 2rem;
}

.ph-news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ph-news-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ph-news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .ph-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ph-news-card {
  padding: 2rem;
  background: var(--paper-warm);
  border: 1px solid rgba(198, 161, 54, 0.28);
}

.ph-news-meta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.5rem;
}

.ph-news-card-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.ph-news-card-excerpt {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.ph-news-card-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ph-cta-cluster--home {
  padding-top: 2rem;
}

.ph-micro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.ph-micro-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(166, 132, 40, 0.18);
}

.ph-micro-list li::before {
  content: "◆";
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 0.55rem;
  vertical-align: middle;
}

/* Signal strip — horizontal tokens, not icon cards */
.ph-signal {
  background: var(--grad-ribbon);
  color: var(--on-gold-light);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 254, 249, 0.35);
  border-bottom: 1px solid rgba(255, 254, 249, 0.35);
}

.ph-signal-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ph-signal-track span {
  opacity: 0.92;
  text-shadow: 0 1px 2px rgba(54, 42, 10, 0.35);
}

/* Philosophy — sidebar rail layout */
.ph-rail-section {
  display: grid;
  gap: 2rem;
  padding: 5rem 0;
}

@media (min-width: 960px) {
  .ph-rail-section {
    grid-template-columns: 72px 1fr;
    gap: 3rem;
    padding: 6rem 0;
  }
}

.ph-rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-mid);
  border-right: 3px solid var(--gold-deep);
  padding-right: 1rem;
  display: none;
}

@media (min-width: 960px) {
  .ph-rail {
    display: block;
  }
}

.ph-rail-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin: 0 0 2rem;
}

.ph-rail-columns {
  columns: 1;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .ph-rail-columns {
    columns: 2;
  }
}

.ph-rail-columns p {
  margin: 0 0 1.25rem;
  break-inside: avoid;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

.ph-rail-columns p:nth-child(2) {
  border-left-width: 8px;
}

.ph-rail-columns p:nth-child(3) {
  border-left-width: 2px;
  border-color: var(--gold-mid);
}

/* Bento — asymmetric product ingress */
.ph-bento {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 5rem;
}

@media (min-width: 800px) {
  .ph-bento {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
  .ph-bento-a {
    grid-row: span 2;
  }
}

.ph-bento-cell {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  padding: 2rem 1.75rem;
  min-height: 180px;
  position: relative;
  border: 2px solid rgba(255, 254, 249, 0.35);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.ph-bento-cell:hover {
  border-color: #ffffff;
  box-shadow: 0 12px 40px rgba(107, 84, 18, 0.22);
}

.ph-bento-cell--accent {
  background: #ffffff;
  color: var(--ink-soft);
  border-color: var(--gold-mid);
}

.ph-bento-cell h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.ph-bento-cell p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--on-gold-muted);
}

.ph-bento-cell--accent p {
  color: var(--muted);
}

.ph-bento-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 254, 249, 0.78);
}

.ph-bento-cell--accent .ph-bento-tag {
  color: var(--gold-deep);
}

/* Newspaper discipline block */
.ph-newsprint {
  background: var(--paper-warm);
  padding: 4rem 1.5rem;
  border-top: 4px double var(--gold-mid);
  border-bottom: 4px double var(--gold-mid);
}

.ph-newsprint-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ph-newsprint h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  text-align: center;
  margin: 0 0 2.5rem;
}

.ph-newsprint-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ph-newsprint-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    column-rule: 1px solid rgba(168, 132, 40, 0.22);
  }
}

.ph-newsprint-grid div {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
}

@media (min-width: 768px) {
  .ph-newsprint-grid div:not(:first-child) {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(168, 132, 40, 0.22);
  }
}

.ph-newsprint-grid strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* Framed manifesto — cream inset on gold wash */
.ph-frame-band {
  background: var(--grad-gold);
  color: var(--ink-soft);
  padding: 4rem 1.5rem;
  margin: 4rem 0;
}

.ph-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(255, 254, 249, 0.94);
  border: 2px solid var(--gold-mid);
  outline: 2px solid rgba(255, 254, 249, 0.9);
  outline-offset: 6px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(107, 84, 18, 0.12);
}

.ph-frame p {
  font-size: 1.15rem;
  line-height: 1.85;
  margin: 0;
  font-weight: 500;
  color: var(--ink-soft);
}

/* CTA cluster */
.ph-cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 4rem 1.5rem 5rem;
}

/* About page layouts */
.ph-drop-hero {
  padding: 4rem 0 3rem;
}

.ph-drop-hero .ph-wrap {
  max-width: 780px;
}

.ph-drop-cap::first-letter {
  font-family: "Fraunces", serif;
  font-size: 4.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding-right: 0.65rem;
  margin-top: 0.15rem;
  color: var(--gold-mid);
}

.ph-pull {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  padding: 3rem 1.5rem;
  margin: 4rem 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}

.ph-pillars {
  padding: 4rem 0;
}

.ph-pillar-grid {
  display: grid;
  gap: 0;
  border: 2px solid var(--gold-mid);
}

@media (min-width: 700px) {
  .ph-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .ph-pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-pillar-cell {
  padding: 2rem 1.5rem;
  border-bottom: 2px solid var(--gold-mid);
  background: var(--paper);
}

@media (min-width: 700px) {
  .ph-pillar-cell {
    border-right: 2px solid var(--gold-mid);
  }
  .ph-pillar-cell:nth-child(2n) {
    border-right: none;
  }
}

@media (min-width: 1000px) {
  .ph-pillar-cell {
    border-right: 2px solid var(--gold-mid);
  }
  .ph-pillar-cell:nth-child(4n) {
    border-right: none;
  }
}

.ph-pillar-cell:nth-last-child(-n + 2) {
  border-bottom: 2px solid var(--gold-mid);
}

@media (min-width: 1000px) {
  .ph-pillar-cell:nth-last-child(-n + 4) {
    border-bottom: none;
  }
}

.ph-pillar-num {
  font-size: 2.5rem;
  font-family: "Fraunces", serif;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ph-zig-timeline {
  padding: 4rem 0 5rem;
}

.ph-zig-item {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 900px;
}

@media (min-width: 768px) {
  .ph-zig-item {
    grid-template-columns: 120px 1fr;
    align-items: start;
  }
  .ph-zig-item:nth-child(even) .ph-zig-year {
    order: 2;
    text-align: right;
  }
  .ph-zig-item:nth-child(even) .ph-zig-copy {
    order: 1;
    text-align: right;
    border-right: 4px solid var(--gold);
    border-left: none;
    padding-right: 1.5rem;
    padding-left: 0;
  }
}

.ph-zig-year {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--gold-deep);
}

.ph-zig-copy {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

.ph-zig-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.ph-zig-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Products — datasheet shell */
.ph-page-intro {
  padding: 3.5rem 0 2rem;
  border-bottom: 3px solid var(--gold-mid);
}

.ph-page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}

.ph-home-maxhealth .ph-products-catalogue {
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 216, 138, 0.32), transparent 30rem),
    linear-gradient(180deg, #fffdf7 0%, #f7edcf 48%, #fffdf7 100%);
  color: #2d271f;
}

.ph-datasheet {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 5rem;
}

@media (min-width: 960px) {
  .ph-datasheet {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.ph-datasheet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: linear-gradient(180deg, #fff7df 0%, #f3d680 100%);
  border: 1px solid #d9b459;
  box-shadow: 0 18px 40px rgba(107, 84, 18, 0.16);
  padding: 1.25rem;
}

@media (min-width: 960px) {
  .ph-datasheet-nav {
    position: sticky;
    top: 88px;
  }
}

.ph-datasheet-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(143, 95, 16, 0.22);
  color: #3a3128;
}

.ph-datasheet-nav a:hover,
.ph-datasheet-nav a:focus {
  color: #b27a18;
  padding-left: 0.5rem;
}

.ph-spec-block {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid #f1e4c7;
  box-shadow: 0 18px 42px rgba(45, 39, 31, 0.1);
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.ph-spec-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 4px solid #c89424;
  display: inline-block;
  color: #1f1c18;
}

.ph-spec-lede {
  color: #5c5144;
  max-width: 76ch;
  margin-bottom: 1.5rem;
}

.ph-spec-feature {
  display: grid;
  gap: 0;
  align-items: stretch;
  margin: 0 0 1.35rem;
  background: #171717;
  border: 1px solid rgba(200, 148, 36, 0.36);
  box-shadow: 0 16px 30px rgba(45, 39, 31, 0.14);
  overflow: hidden;
}

@media (min-width: 700px) {
  .ph-spec-feature {
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.05fr);
    height: 520px;
  }

  .ph-spec-feature-media,
  .ph-spec-feature-media img {
    min-height: 0;
    height: 100%;
  }

  .ph-spec-feature-copy {
    min-height: 0;
    height: 100%;
    overflow-y: auto;
  }
}

.ph-spec-feature-media {
  height: 100%;
  min-height: 240px;
  margin: 0;
}

.ph-spec-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.ph-spec-feature-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  background: #171717;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255, 254, 249, 0.9);
}

.ph-spec-kicker {
  margin: 0 0 0.55rem;
  color: #f5d88a;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-spec-feature-copy h3 {
  margin: 0 0 0.75rem;
  color: #fffef9;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.28;
}

.ph-spec-feature-copy p {
  margin: 0;
  color: rgba(255, 254, 249, 0.84);
  font-size: 0.92rem;
  line-height: 1.72;
}

.ph-spec-points {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.ph-spec-points li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(255, 254, 249, 0.88);
  font-size: 0.86rem;
  line-height: 1.55;
}

.ph-spec-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  background: #c89424;
  transform: rotate(45deg);
}

.ph-table-wrap {
  overflow-x: auto;
  border: 1px solid #d9b459;
  background: #fffdf7;
}

.ph-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.ph-table th,
.ph-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(200, 148, 36, 0.18);
  color: #3a3128;
}

.ph-table th {
  background: linear-gradient(180deg, #f3d680 0%, #c89424 100%);
  color: #2d271f;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.ph-table tr:nth-child(even) td {
  background: rgba(247, 237, 207, 0.62);
}

/* Services — alternating offset bands */
.ph-band {
  padding: 3.5rem 1.5rem;
}

.ph-band--cream {
  background: var(--paper-warm);
}

.ph-band--dark {
  background: var(--grad-gold-deep);
  color: var(--on-gold-light);
}

.ph-band-inner {
  max-width: 900px;
}

.ph-band--dark .ph-band-inner h2 {
  color: var(--on-gold-light);
}

.ph-service-row {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 720px) {
  .ph-service-row {
    grid-template-columns: 100px 1fr;
  }
}

.ph-service-tag {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  color: var(--gold-mid);
}

.ph-band--dark .ph-service-tag {
  color: rgba(255, 254, 249, 0.82);
}

.ph-service-row h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.ph-service-row p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.ph-band--dark .ph-service-row p {
  color: var(--on-gold-muted);
}

.ph-band--dark .ph-service-row h3 {
  color: var(--on-gold-light);
}

/* Contact — pillar layout */
.ph-contact-shell {
  padding: 3rem 0 5rem;
}

.ph-contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .ph-contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.ph-contact-card {
  background: var(--grad-gold-rich);
  color: var(--on-gold-light);
  padding: 2.5rem 2rem;
  border: 2px solid rgba(255, 254, 249, 0.45);
}

.ph-contact-card h2 {
  color: var(--on-gold-light);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.ph-contact-lines {
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
  line-height: 2;
  color: var(--on-gold-muted);
}

.ph-contact-lines strong {
  display: block;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.ph-contact-lines strong:first-child {
  margin-top: 0;
}

.ph-form {
  display: grid;
  gap: 1.25rem;
}

.ph-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.ph-field input,
.ph-field textarea,
.ph-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--gold-mid);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
}

.ph-field input:focus,
.ph-field textarea:focus,
.ph-field select:focus {
  outline: none;
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(198, 161, 54, 0.25);
}

.ph-map-placeholder {
  height: 220px;
  background: repeating-linear-gradient(
    90deg,
    var(--paper-warm),
    var(--paper-warm) 12px,
    rgba(198, 161, 54, 0.08) 12px,
    rgba(198, 161, 54, 0.08) 13px
  );
  border: 2px dashed var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Homepage — Maxi Health–style layout (body.ph-home-maxhealth only)
   ═══════════════════════════════════════════════════════════════════════════ */
.ph-home-maxhealth {
  font-family: "Montserrat", system-ui, sans-serif;
  background: #fffdf7;
  color: #2d271f;
}

.ph-home-maxhealth .ph-skip {
  background: #c89424;
  color: #fff;
}

.ph-mh-header {
  position: relative;
}

.ph-mh-head-top {
  background: #ffffff;
  border-bottom: 1px solid #f1e4c7;
}

.ph-mh-head-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
}

.ph-mh-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.ph-mh-head-contact {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .ph-mh-head-contact {
    display: flex;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .ph-mh-head-contact {
    gap: 1.35rem;
  }

  .ph-mh-brand img {
    height: 46px;
  }
}

.ph-mh-head-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ph-mh-head-item > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.ph-mh-head-ico {
  color: #c89424;
  flex-shrink: 0;
}

.ph-mh-head-ico svg {
  display: block;
}

.ph-mh-head-contact .ph-mh-head-item:first-of-type .ph-mh-head-ico svg {
  width: 22px;
  height: 22px;
}

.ph-mh-head-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a8489;
}

.ph-mh-head-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: #3a3128;
}

.ph-site-address {
  font-style: normal;
  margin: 0;
}

/* Exactly two lines in the header: no mid-line wrapping from a narrow max-width */
.ph-mh-head-value.ph-mh-head-address-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06rem;
  max-width: none;
}

.ph-mh-head-address-row {
  display: block;
  white-space: nowrap;
  font-size: clamp(0.62rem, 0.55vw + 0.52rem, 0.78rem);
  font-weight: 500;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.ph-mh-head-contact .ph-mh-head-item:first-of-type {
  flex-shrink: 0;
  min-width: min-content;
}

.ph-mh-prefoot-box .ph-site-address {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.52;
  color: inherit;
}

.ph-mh-inner-contact-strip .ph-site-address {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5c5144;
}

.ph-mh-contact-dd .ph-site-address {
  color: inherit;
}

.ph-mh-head-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: #b27a18;
}

.ph-mh-head-phone:hover {
  color: #8f5f10;
}

.ph-mh-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  background: linear-gradient(180deg, #e8c568, #c89424);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 960px) {
  .ph-mh-burger {
    display: none;
  }
}

.ph-mh-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}

.ph-mh-burger span::before,
.ph-mh-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
}

.ph-mh-burger span::before {
  top: -7px;
}
.ph-mh-burger span::after {
  top: 7px;
}

.ph-mh-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.12);
  background: linear-gradient(180deg, #fff7df 0%, #f3d680 100%);
  border-top: 1px solid #f4e5bc;
  border-bottom: 1px solid #d9b459;
}

.ph-mh-navbar-inner {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

@media (min-width: 960px) {
  .ph-mh-navbar-inner {
    display: flex;
    justify-content: flex-start;
  }
}

.ph-mh-navbar-inner a {
  display: block;
  padding: 1rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d271f;
  border-bottom: 3px solid transparent;
}

.ph-mh-navbar-inner a:hover {
  background: rgba(200, 148, 36, 0.12);
  border-bottom-color: rgba(184, 123, 24, 0.45);
}

.ph-mh-navbar-inner a[aria-current="page"] {
  background: rgba(200, 148, 36, 0.16);
  border-bottom-color: #c89424;
}

.ph-home-maxhealth .ph-mh-drawer {
  background: linear-gradient(165deg, #c89424 0%, #4a3320 100%);
}

.ph-home-maxhealth .ph-mh-drawer a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.ph-home-maxhealth .ph-mh-drawer a[aria-current="page"] {
  color: #f5d88a;
}

.ph-home-maxhealth .ph-nav-close {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ph-mh-hero {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 600px);
  padding: 0;
  overflow: visible;
  margin-bottom: 0;
}

/* Readable text without a heavy box — cream ramp + soft bottom veil keeps photography visible */
.ph-mh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      rgba(255, 253, 247, 0.97) 0%,
      rgba(255, 253, 247, 0.88) 18%,
      rgba(255, 253, 247, 0.42) 36%,
      rgba(255, 253, 247, 0.08) 52%,
      transparent 64%
    ),
    linear-gradient(to top, rgba(29, 24, 18, 0.42) 0%, rgba(29, 24, 18, 0.08) 35%, transparent 55%);
}

.ph-mh-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ph-mh-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #eef7fb;
}

.ph-mh-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(12px) brightness(1.08);
  animation: phHeroSlide 15s infinite;
}

.ph-mh-hero-slide--one {
  background-image: url("images/hero-slide-pexels-7089029.jpeg");
  animation-delay: 0s;
}

.ph-mh-hero-slide--two {
  background-image: url("images/hero-slide-unsplash-170794.jpg");
  animation-delay: 5s;
}

.ph-mh-hero-slide--three {
  background-image: url("images/hero-slide-pexels-7789685.jpeg");
  animation-delay: 10s;
}

@keyframes phHeroSlide {
  0%,
  100% {
    opacity: 0;
  }

  6%,
  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }
}


.ph-mh-hero-wash {
  display: none;
}

/* Triangle V-shape — overlaps hero bottom; top V-notch shows hero bg */
.ph-mh-vee {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: -100px;
  position: relative;
  z-index: 20;
}

.ph-mh-vee-svg {
  display: block;
  width: 100%;
  height: clamp(80px, 11vw, 145px);
}

.ph-mh-hero-shell {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: min(64vh, 520px);
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  max-width: 100%;
  text-align: left;
}

/* Full-bleed hero text row (not limited to .ph-wrap 1400px) */
.ph-mh-hero .ph-mh-hero-shell.ph-wrap {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

.ph-mh-hero-copy {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.ph-mh-hero-kicker {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #b27a18;
  margin: 0 0 0.65rem;
  letter-spacing: 0.06em;
  text-shadow: none;
}

.ph-mh-hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f1c18;
  line-height: 1.1;
  margin: 0 0 1rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.ph-mh-hero-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a433a;
  margin: 0 0 1.75rem;
  max-width: none;
  margin-inline: 0;
  text-shadow: none;
}

.ph-mh-hero-btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: linear-gradient(180deg, #f7dc8b 0%, #e4bd55 55%, #c89424 100%);
  color: #2d271f !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(143, 95, 16, 0.22);
  box-shadow: 0 10px 26px rgba(184, 123, 24, 0.24);
}

.ph-mh-hero-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.ph-mh-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  overflow: hidden;
}

.ph-mh-hero-person {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  animation: phHeroSlide 15s infinite;
}

.ph-mh-hero-person--one {
  animation-delay: 0s;
  object-position: 74% center;
}

.ph-mh-hero-person--two {
  animation-delay: 5s;
  object-position: center;
}

.ph-mh-hero-person--three {
  animation-delay: 10s;
  object-position: 68% center;
}

@media (max-width: 959px) {
  .ph-mh-navbar-inner {
    display: none !important;
  }

  .ph-mh-hero::before {
    background:
      linear-gradient(
        165deg,
        rgba(255, 253, 247, 0.96) 0%,
        rgba(255, 253, 247, 0.82) 35%,
        rgba(255, 253, 247, 0.28) 58%,
        transparent 78%
      ),
      linear-gradient(to top, rgba(29, 24, 18, 0.38) 0%, transparent 50%);
  }

  .ph-mh-hero-shell {
    min-height: min(56vh, 460px);
    max-width: none;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: clamp(5rem, 13vw, 7rem);
    padding-bottom: clamp(1.25rem, 5vw, 2.25rem);
  }

  .ph-mh-hero-copy {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .ph-mh-hero-text {
    margin-inline: auto;
    margin-bottom: 1.35rem;
  }

  .ph-mh-hero-title {
    margin-bottom: 0.75rem;
  }

  .ph-mh-hero .ph-mh-hero-btn {
    margin-inline: auto;
    padding: 0.62rem 1.35rem;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    box-shadow: 0 6px 16px rgba(184, 123, 24, 0.2);
  }

  .ph-mh-hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    max-width: none;
    margin: 0;
  }

  .ph-mh-hero-person {
    height: 100%;
    max-height: none;
    margin: 0;
    object-position: center right;
  }

}

/* Hero → content: full-width 6+6 gold columns + CTA */
.ph-mh-about-cta {
  position: relative;
  z-index: 15;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #f7f1e3;
  margin-top: -1px;
}

.ph-mh-about-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  align-items: stretch;
}

@media (min-width: 900px) {
  .ph-mh-about-cta-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .ph-mh-about-cta-copy {
    grid-column: span 6;
  }

  .ph-mh-about-cta-panel {
    grid-column: span 6;
  }
}

.ph-mh-about-cta-copy {
  background: linear-gradient(165deg, #f7f1e3 0%, #faf6ea 52%, #f5efdf 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}

.ph-mh-about-cta-heading {
  text-align: left;
  margin-bottom: clamp(1.15rem, 2.5vw, 1.5rem);
}

@media (min-width: 900px) {
  .ph-mh-about-cta-heading {
    text-align: right;
    max-width: 42rem;
    margin-left: auto;
  }
}

.ph-mh-about-cta-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d2926;
  margin: 0 0 0.45rem;
  line-height: 1.12;
}

.ph-mh-about-cta-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.58rem, 1.05vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #18181b;
  margin: 0;
  line-height: 1.4;
}

.ph-mh-about-cta-lede,
.ph-mh-about-cta-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #5c5144;
}

.ph-mh-about-cta-body {
  margin-top: 1rem;
}

.ph-mh-about-cta-panel {
  background: #dfc56a;
  color: #fffef9;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ph-mh-about-cta-panel-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fffef9;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.ph-mh-about-cta-panel-text {
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 254, 249, 0.92);
}

.ph-mh-about-cta-primary {
  display: inline-block;
  text-align: center;
  padding: 0.95rem 1.65rem;
  background: #ffffff;
  color: #2d271f !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid rgba(45, 39, 31, 0.18);
  margin-bottom: 1.15rem;
  transition: background 0.2s ease;
  box-shadow: 0 6px 18px rgba(45, 39, 31, 0.1);
}

.ph-mh-about-cta-primary:hover {
  background: #fffdf7;
}

.ph-mh-about-cta-phone {
  font-size: 1.12rem;
  font-weight: 700;
  color: #fffef9 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(45, 39, 31, 0.18);
}

.ph-mh-about-cta-phone:hover {
  text-decoration: underline;
}

.ph-mh-about-cta-hours {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 254, 249, 0.82);
}

.ph-mh-about-cta-hours strong {
  color: rgba(255, 254, 249, 0.95);
  font-weight: 700;
}

.ph-mh-welcome {
  padding: 4rem 1.5rem 4.5rem;
  background: #ffffff;
}

.ph-mh-welcome-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .ph-mh-welcome-grid {
    grid-template-columns: 1fr 380px;
    align-items: stretch;
    gap: 3rem;
  }

  .ph-mh-appt-card {
    height: 100%;
  }
}

.ph-mh-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2d271f;
  margin: 0 0 1rem;
}

.ph-mh-welcome-lede {
  margin: 0 0 2rem;
  color: #5c5144;
  line-height: 1.75;
  font-size: 0.95rem;
}

.ph-mh-features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 520px) {
  .ph-mh-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ph-mh-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ph-mh-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #f4d681;
  color: #b27a18;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-mh-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #2d271f;
}

.ph-mh-feature p {
  margin: 0;
  font-size: 0.82rem;
  color: #7f8c8d;
  line-height: 1.55;
}

.ph-mh-welcome-foot {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ecf0f1;
}

.ph-mh-welcome-foot p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5c5144;
}

.ph-mh-welcome-foot a {
  color: #9a7618;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ph-mh-welcome-foot a:hover {
  color: #7d6319;
}

.ph-mh-appt-card {
  border: 1px solid #e5e7eb;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.ph-mh-appt-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 0.35rem;
  color: #111827;
}

.ph-mh-appt-intro {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.ph-mh-appt-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.ph-mh-appt-field span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: #374151;
  margin-bottom: 0.35rem;
}

.ph-mh-appt-opt {
  font-style: normal;
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.8125rem;
}

.ph-mh-appt-form input,
.ph-mh-appt-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: #111827;
  background: #ffffff;
  box-sizing: border-box;
}

.ph-mh-appt-form input:focus,
.ph-mh-appt-form textarea:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.25);
}

.ph-mh-appt-form textarea {
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.5;
}

.ph-mh-appt-submit {
  justify-self: start;
  padding: 0.65rem 1.35rem;
  background: #374151;
  color: #ffffff !important;
  border: none;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  margin-top: 0.25rem;
}

.ph-mh-appt-submit:hover {
  background: #1f2937;
  filter: none;
}

.ph-mh-cta-strip {
  background: linear-gradient(90deg, #f7dc8b, #d8aa3b);
  padding: 1.35rem 1.5rem;
}

.ph-mh-cta-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ph-mh-cta-strip-text {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #2d271f;
}

.ph-mh-cta-strip-btn {
  padding: 0.75rem 1.75rem;
  background: #ffffff;
  color: #2d271f !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

.ph-mh-cta-strip-btn:hover {
  background: #fff8e4;
}

.ph-section-eyebrow {
  margin: 0 0 0.65rem;
  color: #b27a18;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-original-flow {
  display: grid;
  gap: 2.5rem;
  padding: 4.5rem 1.5rem;
  background: #fffdf7;
}

@media (min-width: 960px) {
  .ph-original-flow {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
  }
}

.ph-original-flow-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #2d271f;
  margin: 0 0 1rem;
}

.ph-original-flow-copy > p {
  color: #5c5144;
  line-height: 1.75;
  margin: 0;
}

.ph-flow-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ph-flow-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  padding: 1rem;
  background: #fff8e4;
  border: 1px solid #f0e0bb;
}

.ph-flow-steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #f7dc8b, #d8aa3b);
  color: #2d271f;
  font-size: 0.72rem;
  font-weight: 800;
}

.ph-flow-steps strong {
  color: #2d271f;
  font-size: 0.95rem;
}

.ph-flow-steps p {
  color: #5c5144;
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.ph-original-flow-art {
  margin: 0;
}

.ph-original-flow-art img {
  display: block;
  width: 100%;
  height: auto;
}

.ph-bundles {
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(circle at 10% 10%, rgba(247, 220, 139, 0.34), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fff8e4 100%);
}

/* Our products tiles first; Equipment desk copy + CTA follows in .ph-bundles.ph-mh-showcase-intro */
.ph-mh-showcase {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3rem, 5vw, 4rem);
}

.ph-mh-showcase + .ph-bundles {
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
}

.ph-mh-showcase-top {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
  .ph-mh-showcase-top {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 3rem;
    align-items: start;
  }
}

.ph-mh-showcase-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #52525b;
  margin: 0 0 0.75rem;
}

.ph-mh-showcase-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #18181b;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.ph-mh-showcase-lede,
.ph-mh-showcase-body {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: #3f3f46;
}

.ph-mh-showcase-body {
  margin-top: 1rem;
}

.ph-mh-showcase-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.ph-mh-showcase-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #52525b;
}

.ph-mh-showcase-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #18181b;
}

.ph-mh-showcase-cta {
  background: #171717;
  color: #d4d4d8;
  padding: 2rem 1.75rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ph-mh-showcase-cta-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fafafa;
  margin: 0 0 0.65rem;
}

.ph-mh-showcase-cta-text {
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #a1a1aa;
}

.ph-mh-showcase-cta-primary {
  display: inline-block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  background: #fafafa;
  color: #18181b !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 0.65rem;
  transition: background 0.2s ease;
}

.ph-mh-showcase-cta-primary:hover {
  background: #ffffff;
}

.ph-mh-showcase-cta-secondary {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e4e4e7 !important;
  border-bottom: 1px solid rgba(228, 228, 231, 0.35);
  padding-bottom: 2px;
}

.ph-mh-showcase-cta-secondary:hover {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.ph-mh-showcase-tiles-outer {
  max-width: 1400px;
  margin: 0 auto;
}

.ph-mh-products-intro {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.35rem);
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.ph-mh-products-intro-main {
  max-width: 68ch;
}

@media (min-width: 768px) {
  .ph-mh-products-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
  }

  .ph-mh-products-intro-action {
    justify-self: end;
  }
}

.ph-mh-products-enquire {
  display: block;
  text-align: center;
  padding: 0.88rem 1.65rem;
  background: #171717;
  color: #fafafa !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.ph-mh-products-enquire:hover {
  background: #404040;
}

@media (min-width: 768px) {
  .ph-mh-products-enquire {
    display: inline-block;
    white-space: nowrap;
  }
}

.ph-mh-products-heading {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #18181b;
  margin: 0 0 0.85rem;
  line-height: 1.18;
}

.ph-mh-products-intro-text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: #3f3f46;
}

.ph-mh-showcase-tiles {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

.ph-mh-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  min-height: 200px;
  color: #fafafa !important;
  isolation: isolate;
}

.ph-mh-tile:focus-visible {
  outline: 2px solid #fafafa;
  outline-offset: 3px;
}

.ph-mh-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.ph-mh-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.25) 20%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.ph-mh-tile-copy {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

.ph-mh-tile-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f7dc8b;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

.ph-mh-tile-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  margin: 0;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.ph-mh-tile-desc {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.72rem, 1.35vw, 0.84rem);
  font-weight: 500;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.ph-mh-tile--c .ph-mh-tile-desc,
.ph-mh-tile--d .ph-mh-tile-desc {
  max-width: 36ch;
  font-size: clamp(0.68rem, 1.25vw, 0.78rem);
}

.ph-mh-tile:hover img {
  transform: scale(1.04);
}

@media (min-width: 900px) {
  .ph-mh-showcase-tiles {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: minmax(170px, 18vw) minmax(170px, 16vw) minmax(190px, 18vw);
    gap: 0.65rem;
  }

  .ph-mh-tile--a {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .ph-mh-tile--b {
    grid-column: 5 / 13;
    grid-row: 1 / 2;
    min-height: 0;
  }

  .ph-mh-tile--c {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
    min-height: 0;
  }

  .ph-mh-tile--d {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
    min-height: 0;
  }

  .ph-mh-tile--e {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
    min-height: 0;
  }

  .ph-mh-tile--f {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
    min-height: 0;
  }
}

.ph-mh-prefoot {
  background: #252525;
  padding: 2rem 1.5rem;
}

.ph-mh-prefoot-inner {
  display: grid;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ph-mh-prefoot-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

.ph-mh-prefoot-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f4f5;
}

.ph-mh-prefoot-box > div {
  flex: 1;
  min-width: 0;
}

.ph-mh-prefoot-box .ph-site-address {
  display: block;
  margin: 0;
  font-style: normal;
  font-size: clamp(0.72rem, 0.9vw + 0.45rem, 0.84rem);
  font-weight: 600;
  line-height: 1.48;
  color: inherit;
  max-width: 100%;
}

.ph-mh-prefoot-ico {
  flex-shrink: 0;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ph-mh-prefoot-box strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.ph-mh-prefoot-box a {
  color: #f4f4f5 !important;
  font-weight: 700;
  display: block;
  max-width: 100%;
  line-height: 1.48;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ph-mh-footer {
  background: #171717;
  color: #c4c4cc;
}

.ph-mh-footer-inner {
  display: grid;
  gap: 2rem;
  padding: 3rem 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ph-mh-footer-inner {
    grid-template-columns: minmax(220px, 1.15fr) minmax(140px, 0.75fr) minmax(290px, 1.35fr);
    column-gap: clamp(2rem, 4vw, 4rem);
  }
}

.ph-mh-footer-col {
  min-width: 0;
}

.ph-mh-footer-about {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 1rem 0 0;
}

.ph-mh-footer-h {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1rem;
}

.ph-mh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ph-mh-footer-links a {
  color: #ecf0f1 !important;
  font-size: 0.88rem;
}

.ph-mh-footer-links a:hover {
  color: #ffffff !important;
}

.ph-mh-footer-news-text {
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.ph-mh-news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

.ph-mh-news-form input {
  flex: 1;
  min-width: 160px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #3f3f46;
  background: #262626;
  color: #fafafa;
  font-family: inherit;
}

.ph-mh-news-form input::placeholder {
  color: #71717a;
}

.ph-mh-news-form button {
  padding: 0.65rem 1.25rem;
  background: #e4e4e7;
  border: none;
  color: #18181b;
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.ph-mh-news-form button:hover {
  background: #fafafa;
}

.ph-mh-footer-bar {
  background: #0a0a0a;
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
  color: #71717a;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Inner pages — shared header/footer (body.ph-home-maxhealth)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero banner */
.ph-mh-inner-hero {
  position: relative;
  min-height: min(50vw, 360px);
  max-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background-size: cover;
  background-position: center;
}
.ph-mh-inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,39,31,0.4) 0%, rgba(29,24,18,0.86) 100%);
}
.ph-mh-inner-hero .ph-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
}
.ph-mh-inner-hero--about,
.ph-mh-inner-hero--contact,
.ph-mh-inner-hero--services,
.ph-mh-inner-hero--products {
  background-image: url("images/hero-professional-wide.jpg");
  background-position: center top;
}

.ph-mh-inner-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5d88a;
  margin: 0 0 0.6rem;
}
.ph-mh-inner-kicker--warm { color: #b27a18; }

.ph-mh-inner-h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fffef9;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 34ch;
}
.ph-mh-inner-lede {
  margin: 0;
  max-width: 76ch;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255,254,249,0.9);
}

/* Bands */
.ph-mh-inner-band {
  padding: clamp(3rem, 5.5vw, 4.5rem) 0;
}
.ph-mh-inner-band--wash {
  background: #fffdf7;
  border-block: 1px solid #f1e4c7;
}
.ph-mh-inner-band--dark {
  background: linear-gradient(165deg, #4a3320 0%, #2d271f 100%);
  color: rgba(255,254,249,0.92);
}
.ph-mh-inner-band--dark .ph-mh-inner-h2 { color: #fffef9; }
.ph-mh-inner-band--dark .ph-mh-inner-kicker { color: #f5d88a; }
.ph-mh-inner-band--dark .ph-mh-inner-prose { color: rgba(255,254,249,0.85); }

/* Section headings & prose */
.ph-mh-inner-h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1f1c18;
  margin: 0 0 1rem;
}
.ph-mh-inner-prose {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5c5144;
  max-width: 60ch;
}
.ph-mh-inner-prose + .ph-mh-inner-prose { margin-top: 1rem; }

/* About page — compact editorial layout */
.ph-about-compact {
  padding-block: clamp(2.4rem, 4.6vw, 3.4rem);
}

.ph-about-intro-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 900px) {
  .ph-about-intro-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }
}

.ph-about-image-card {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 36, 0.28);
  background: #171717;
  box-shadow: 0 16px 36px rgba(45, 39, 31, 0.12);
}

.ph-about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .ph-about-image-card--tall img {
    min-height: 420px;
  }
}

.ph-about-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fffdf7;
  border: 1px solid #f1e4c7;
  border-top: 4px solid #c89424;
  padding: clamp(1.35rem, 3vw, 2.15rem);
  box-shadow: 0 16px 36px rgba(45, 39, 31, 0.08);
}

.ph-about-stat-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

@media (min-width: 640px) {
  .ph-about-stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ph-about-stat-row span {
  display: block;
  border-left: 3px solid #c89424;
  background: #ffffff;
  padding: 0.75rem 0.85rem;
  color: #5c5144;
  font-size: 0.78rem;
  line-height: 1.45;
}

.ph-about-stat-row strong {
  display: block;
  color: #171717;
  font-size: 1.2rem;
  line-height: 1.1;
}

.ph-about-mv-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

@media (min-width: 760px) {
  .ph-about-mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ph-about-mv-card {
  min-height: 260px;
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-top: 4px solid #c89424;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.ph-about-mv-card--dark {
  background: #171717;
  border-color: rgba(255, 255, 255, 0.12);
  color: #c4c4cc;
}

.ph-about-mv-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #b27a18;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ph-about-mv-card--dark .ph-about-mv-label {
  color: #f5d88a;
}

.ph-about-mv-card h3 {
  margin: 0 0 0.75rem;
  color: #171717;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.28;
}

.ph-about-mv-card--dark h3 {
  color: #ffffff;
}

.ph-about-mv-card p {
  margin: 0;
  color: #5c5144;
  font-size: 0.9rem;
  line-height: 1.72;
}

.ph-about-mv-card--dark p {
  color: #c4c4cc;
}

.ph-about-section-head {
  display: grid;
  gap: 1rem;
  align-items: end;
}

@media (min-width: 860px) {
  .ph-about-section-head {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }
}

.ph-about-pillars {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

@media (min-width: 760px) {
  .ph-about-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ph-about-pillars article {
  background: #ffffff;
  border: 1px solid #f1e4c7;
  padding: 1rem;
  min-height: 210px;
}

.ph-about-pillars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(180deg, #f3d680 0%, #c89424 100%);
  color: #171717;
  font-size: 0.64rem;
  font-weight: 800;
}

.ph-about-pillars h3 {
  margin: 0 0 0.45rem;
  color: #171717;
  font-size: 0.92rem;
}

.ph-about-pillars p {
  margin: 0;
  color: #5c5144;
  font-size: 0.82rem;
  line-height: 1.62;
}

.ph-about-visual-band {
  background: #171717;
  color: #c4c4cc;
}

.ph-about-visual-band .ph-mh-inner-h2 {
  color: #ffffff;
}

.ph-about-visual-band .ph-mh-inner-prose {
  color: #c4c4cc;
}

.ph-about-work-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .ph-about-work-grid {
    grid-template-columns: 1fr 0.9fr 0.9fr;
  }
}

/* Two-column split */
.ph-mh-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .ph-mh-split { grid-template-columns: 1fr 1fr; }
  .ph-mh-split--flip > :first-child { order: 2; }
  .ph-mh-split--flip > :last-child  { order: 1; }
}

/* Images */
.ph-mh-inner-figure { margin: 0; }
.ph-mh-inner-figure img {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(45,39,31,0.12);
}
.ph-mh-inner-figure figcaption {
  font-size: 0.76rem;
  line-height: 1.5;
  color: #5c5144;
  margin-top: 0.55rem;
}

/* Pull quote */
.ph-mh-inner-pull-wrap {
  display: flex;
  justify-content: center;
}
.ph-mh-inner-pull {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.55;
  color: #2d271f;
  margin: 0;
  max-width: 42ch;
  text-align: center;
  padding: 1.25rem 2rem;
  border-inline: 3px solid #c89424;
}

/* Pillar cards */
.ph-mh-inner-pillars {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 720px) {
  .ph-mh-inner-pillars { grid-template-columns: repeat(2, 1fr); }
}
.ph-mh-inner-pillar {
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-left: 3px solid #d9b459;
  padding: 1.3rem 1.2rem;
  border-radius: 2px;
}
.ph-mh-inner-pillar-num {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #b27a18;
  margin-bottom: 0.4rem;
}
.ph-mh-inner-pillar h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #2d271f;
}
.ph-mh-inner-pillar p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #5c5144;
}

/* Timeline (horizontal on desktop) */
.ph-mh-inner-timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 720px) {
  .ph-mh-inner-timeline { grid-template-columns: repeat(3, 1fr); }
}
.ph-mh-inner-mile {
  padding-left: 1rem;
  border-left: 3px solid #d9b459;
}
.ph-mh-inner-mile-tag {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5d88a;
  margin-bottom: 0.3rem;
}
.ph-mh-inner-mile h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fffef9;
}
.ph-mh-inner-mile p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255,254,249,0.82);
}

/* Photo grid */
.ph-mh-inner-photo-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 720px) {
  .ph-mh-inner-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
.ph-mh-inner-photo-card { margin: 0; }
.ph-mh-inner-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.ph-mh-inner-photo-card figcaption {
  font-size: 0.76rem;
  line-height: 1.5;
  color: #5c5144;
  margin-top: 0.4rem;
}

/* Service cards */
.ph-service-compact {
  padding-block: clamp(2.4rem, 4.6vw, 3.4rem);
}

.ph-service-programmes {
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 216, 138, 0.28), transparent 26rem),
    #fffdf7;
}

.ph-mh-service-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.45rem;
}
@media (min-width: 900px) {
  .ph-mh-service-grid { grid-template-columns: repeat(3, 1fr); }
}
.ph-mh-service-card {
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-top: 4px solid #c89424;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 2px;
  min-height: 185px;
  box-shadow: 0 12px 28px rgba(45, 39, 31, 0.07);
}
.ph-mh-service-tag {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b27a18;
  margin-bottom: 0.4rem;
}
.ph-mh-service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2d271f;
  margin: 0 0 0.4rem;
}
.ph-mh-service-card p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #5c5144;
  margin: 0;
}

.ph-service-feature-section .ph-mh-split {
  align-items: stretch;
}

.ph-service-feature-section .ph-mh-split > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-left: 4px solid #c89424;
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  box-shadow: 0 14px 32px rgba(45, 39, 31, 0.08);
}

.ph-service-image-card {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 36, 0.28);
  background: #171717;
  box-shadow: 0 16px 36px rgba(45, 39, 31, 0.12);
}

.ph-service-image-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: none;
}

.ph-service-image-card figcaption {
  padding: 0.55rem 0.65rem 0.65rem;
  margin-top: 0;
  background: #171717;
  color: #c4c4cc;
}

/* Contact info strip */
.ph-contact-compact {
  padding-block: clamp(2.4rem, 4.6vw, 3.4rem);
}

.ph-contact-facts-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 216, 138, 0.26), transparent 25rem),
    #fffdf7;
}

.ph-mh-inner-contact-strip {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .ph-mh-inner-contact-strip { grid-template-columns: repeat(3, 1fr); }
}
.ph-mh-inner-contact-strip article {
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-top: 4px solid #c89424;
  padding: 1.25rem;
  border-radius: 2px;
  min-height: 170px;
  box-shadow: 0 12px 28px rgba(45, 39, 31, 0.07);
}
.ph-mh-inner-contact-strip .ph-contact-strip-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.ph-mh-inner-contact-strip .ph-contact-strip-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 1px;
  color: #c89424;
  background: rgba(200, 148, 36, 0.12);
  border: 1px solid rgba(200, 148, 36, 0.35);
  border-radius: 2px;
}

.ph-mh-inner-contact-strip .ph-contact-strip-ico--sm {
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.12rem;
}

.ph-mh-inner-contact-strip h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c89424;
  margin: 0;
  padding-top: 0.35rem;
  line-height: 1.35;
}
.ph-mh-inner-contact-strip p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5c5144;
}
.ph-mh-inner-contact-strip a { color: #b27a18; font-weight: 600; }

.ph-contact-strip-channels {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ph-contact-strip-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  line-height: 1.5;
}

.ph-contact-strip-line a {
  word-break: break-word;
}

.ph-contact-feature-section .ph-mh-split {
  align-items: stretch;
}

.ph-contact-feature-section .ph-mh-split > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #f1e4c7;
  border-left: 4px solid #c89424;
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  box-shadow: 0 14px 32px rgba(45, 39, 31, 0.08);
}

.ph-contact-image-card {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 36, 0.28);
  background: #171717;
  box-shadow: 0 16px 36px rgba(45, 39, 31, 0.12);
}

.ph-contact-image-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: none;
}

.ph-contact-image-card figcaption {
  padding: 0.55rem 0.65rem 0.65rem;
  margin-top: 0;
  background: #171717;
  color: #c4c4cc;
}

/* Contact 2-col layout */
.ph-contact-form-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(245, 216, 138, 0.25), transparent 24rem),
    #fffdf7;
}

.ph-contact-form-intro {
  margin-bottom: 1.5rem;
}

.ph-mh-contact-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .ph-mh-contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.ph-contact-info-panel,
.ph-mh-inner-form {
  background: #ffffff;
  border: 1px solid #f1e4c7;
  box-shadow: 0 16px 36px rgba(45, 39, 31, 0.09);
}
.ph-contact-info-panel {
  border-top: 4px solid #c89424;
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}
.ph-mh-contact-info-h {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d271f;
  margin: 0 0 1.25rem;
  border-bottom: 2px solid #f1e4c7;
  padding-bottom: 0.65rem;
}
.ph-mh-contact-dl {
  display: grid;
  gap: 1.1rem;
  margin: 0;
}
.ph-mh-contact-dt {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c89424;
  margin-bottom: 0.2rem;
}
.ph-mh-contact-dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5c5144;
}
.ph-mh-contact-dd a,
a.ph-mh-contact-dd {
  color: #b27a18;
  font-weight: 600;
}

/* Map placeholder */
.ph-mh-inner-map {
  min-height: 200px;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.94), rgba(23, 23, 23, 0.78)),
    repeating-linear-gradient(45deg, rgba(200, 148, 36, 0.22) 0 1px, transparent 1px 18px);
  border: 1px solid #d9b459;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding: 1rem;
}
.ph-mh-inner-map .ph-mh-inner-map-address {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.55;
  color: #ffffff;
  text-align: center;
  max-width: 22rem;
}

/* Enquiry form */
.ph-mh-inner-form {
  display: grid;
  gap: 1rem;
  border-top: 4px solid #171717;
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}
.ph-mh-inner-form-note {
  background: #171717;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: #c4c4cc;
  margin: 0 0 0.5rem;
}
.ph-mh-inner-field label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: #5c5144;
}
.ph-mh-inner-field input,
.ph-mh-inner-field textarea,
.ph-mh-inner-field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #d9b459;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  color: #2d271f;
  border-radius: 2px;
}
.ph-mh-inner-field input:focus,
.ph-mh-inner-field textarea:focus,
.ph-mh-inner-field select:focus {
  outline: none;
  border-color: #c89424;
  box-shadow: 0 0 0 3px rgba(200,148,36,0.18);
}

/* CTA row */
.ph-mh-inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ph-mh-hero-btn--ghost {
  background: transparent;
  border: 2px solid #c89424;
  color: #2d271f !important;
  box-shadow: none;
}
.ph-mh-hero-btn--ghost:hover {
  background: rgba(200,148,36,0.12);
}
.ph-mh-hero-btn--submit {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  justify-content: center;
}
