:root {
  --pjh-cocoa: #3d2a22;
  --pjh-cocoa-deep: #2a1c17;
  --pjh-coral: #e07a5f;
  --pjh-coral-deep: #c45d44;
  --pjh-sage: #6a9a82;
  --pjh-gold: #e9b872;
  --pjh-cream: #faf4ec;
  --pjh-cream-deep: #f0e6d8;
  --pjh-paper: #fffaf4;
  --pjh-ink: #2b221c;
  --pjh-muted: #6d6258;
  --pjh-white: #fffdf9;
  --pjh-line: rgba(61, 42, 34, 0.12);
  --pjh-shadow: 0 22px 50px rgba(42, 28, 23, 0.14);
  --pjh-display: "Fraunces", Georgia, serif;
  --pjh-sans: "Manrope", "Segoe UI", sans-serif;
  --pjh-top: 38px;
  --pjh-header: 78px;
  --pjh-radius: 22px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pjh-top) + var(--pjh-header) + 12px);
}

body {
  margin: 0;
  color: var(--pjh-ink);
  background: var(--pjh-cream);
  font-family: var(--pjh-sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.pjh-logo__text {
  font-family: var(--pjh-display);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pjh-cocoa);
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1rem;
}

figure {
  margin: 0;
}

.pjh-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--pjh-top) + var(--pjh-header) + 16px);
}

.pjh-skip {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 80;
  background: var(--pjh-cocoa);
  color: var(--pjh-cream);
  padding: 8px 12px;
  border-radius: 8px;
}

.pjh-skip:focus {
  top: 12px;
}

.pjh-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pjh-coral-deep);
}

.pjh-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--pjh-paper);
}

.pjh-topbar {
  height: var(--pjh-top);
  background: var(--pjh-cocoa-deep);
  color: rgba(250, 244, 236, 0.82);
  font-size: 0.78rem;
}

.pjh-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.pjh-topbar a:hover {
  color: var(--pjh-gold);
}

.pjh-header {
  position: relative;
  height: var(--pjh-header);
  background: var(--pjh-paper);
  color: var(--pjh-cocoa);
  border-bottom: 1px solid var(--pjh-line);
}

.pjh-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(42, 28, 23, 0.1);
}

.pjh-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pjh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pjh-logo__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--pjh-cocoa);
}

.pjh-logo__text {
  margin: 0;
  color: var(--pjh-cocoa);
  font-size: 1.32rem;
}

.pjh-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pjh-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pjh-nav-list a {
  color: var(--pjh-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.pjh-nav-list a:hover,
.pjh-nav-list a.is-active {
  color: var(--pjh-cocoa);
}

.pjh-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.pjh-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--pjh-cocoa);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pjh-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.pjh-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.pjh-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.pjh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pjh-btn--coral {
  background: var(--pjh-coral);
  color: #fff;
}

.pjh-btn--coral:hover {
  background: var(--pjh-coral-deep);
}

.pjh-btn--ghost {
  background: transparent;
  color: var(--pjh-cocoa);
  border: 1px solid rgba(61, 42, 34, 0.22);
}

.pjh-btn--full {
  width: 100%;
}

.pjh-hero {
  position: relative;
  min-height: calc(100vh - var(--pjh-top) - var(--pjh-header));
  display: grid;
  align-items: end;
}

.pjh-hero__media {
  position: absolute;
  inset: 0;
}

.pjh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pjh-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 28, 23, 0.55) 0%, rgba(42, 28, 23, 0.18) 55%, rgba(42, 28, 23, 0.08) 100%);
}

.pjh-hero__card {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
  margin: 0 0 48px 5vw;
  padding: 36px 36px 32px;
  background: rgba(255, 253, 249, 0.94);
  border-radius: var(--pjh-radius);
  box-shadow: var(--pjh-shadow);
}

.pjh-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  max-width: 14ch;
}

.pjh-lead {
  font-size: 1.05rem;
  max-width: 48ch;
  color: var(--pjh-muted);
}

.pjh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 18px;
}

.pjh-hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--pjh-muted);
}

.pjh-hours {
  background: var(--pjh-paper);
  border-bottom: 1px solid var(--pjh-line);
  padding: 22px 0;
}

.pjh-hours__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pjh-hours__label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pjh-sage);
  font-weight: 700;
}

.pjh-hours__value {
  margin: 0;
  font-family: var(--pjh-display);
  color: var(--pjh-cocoa);
}

.pjh-section {
  padding: 92px 0;
}

.pjh-section__intro {
  max-width: 640px;
  margin-bottom: 42px;
}

.pjh-section__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.pjh-about {
  background: var(--pjh-cream);
}

.pjh-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.pjh-about__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.pjh-about__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--pjh-shadow);
}

.pjh-about__media figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--pjh-muted);
}

.pjh-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pjh-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.pjh-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pjh-coral);
}

.pjh-care {
  background: var(--pjh-cream-deep);
}

.pjh-care__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.pjh-card {
  background: var(--pjh-white);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--pjh-shadow);
}

.pjh-card--wide {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}

.pjh-card--wide .pjh-card__media img {
  min-height: 280px;
}

.pjh-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.pjh-card__body {
  padding: 22px 22px 26px;
}

.pjh-card__index {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--pjh-coral-deep);
  font-weight: 700;
}

.pjh-card__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--pjh-cocoa);
  border-bottom: 2px solid var(--pjh-gold);
}

.pjh-path {
  background: var(--pjh-cocoa);
  color: var(--pjh-cream);
}

.pjh-path h2,
.pjh-path h3 {
  color: var(--pjh-cream);
}

.pjh-path .pjh-eyebrow {
  color: var(--pjh-gold);
}

.pjh-path__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pjh-path__list li {
  padding: 22px 18px;
  background: rgba(250, 244, 236, 0.07);
  border-radius: 18px;
  border-top: 3px solid var(--pjh-coral);
}

.pjh-path__num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--pjh-display);
  font-size: 1.4rem;
  color: var(--pjh-gold);
}

.pjh-faq__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.pjh-faq__item {
  background: var(--pjh-white);
  border: 1px solid var(--pjh-line);
  margin-bottom: 10px;
  padding: 4px 18px;
  border-radius: 14px;
}

.pjh-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}

.pjh-faq__item summary::-webkit-details-marker {
  display: none;
}

.pjh-faq__item p {
  color: var(--pjh-muted);
  padding-bottom: 12px;
}

.pjh-contact {
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--pjh-cream) 0%, var(--pjh-cream-deep) 100%);
}

.pjh-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.pjh-contact__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.pjh-contact__list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pjh-sage);
  margin-bottom: 4px;
}

.pjh-contact__list a:hover {
  color: var(--pjh-coral-deep);
}

address,
.pjh-contact__list p {
  font-style: normal;
  margin: 0;
}

.pjh-form {
  background: var(--pjh-white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--pjh-shadow);
  display: grid;
  gap: 14px;
}

.pjh-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pjh-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pjh-form input,
.pjh-form textarea,
.pjh-form select {
  width: 100%;
  border: 1px solid var(--pjh-line);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: var(--pjh-cream);
}

.pjh-form input:focus,
.pjh-form textarea:focus,
.pjh-form select:focus {
  outline: 2px solid var(--pjh-sage);
  border-color: transparent;
}

.pjh-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pjh-form__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pjh-muted);
  font-weight: 400;
}

.pjh-form__legal a {
  text-decoration: underline;
  color: var(--pjh-cocoa);
}

.pjh-form__status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 600;
}

.pjh-form__status.is-success {
  color: var(--pjh-sage);
}

.pjh-form__status.is-error {
  color: #9a3b2a;
}

.pjh-map {
  height: 360px;
}

.pjh-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pjh-footer {
  background: var(--pjh-cocoa-deep);
  color: rgba(250, 244, 236, 0.82);
  padding: 64px 0 0;
}

.pjh-footer .pjh-logo__text {
  color: var(--pjh-cream);
}

.pjh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.pjh-footer__heading {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pjh-gold);
  font-weight: 700;
}

.pjh-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pjh-footer__links li {
  margin-bottom: 8px;
}

.pjh-footer a:hover {
  color: var(--pjh-cream);
}

.pjh-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.pjh-footer__bar {
  border-top: 1px solid rgba(250, 244, 236, 0.12);
  padding: 16px 0 22px;
  font-size: 0.88rem;
}

.pjh-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pjh-footer__bar p {
  margin: 0;
}

.pjh-footer__bar a {
  margin-left: 10px;
  text-decoration: underline;
}

.pjh-page {
  padding: 48px 0 88px;
}

.pjh-page__inner {
  max-width: 760px;
}

.pjh-article__header h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pjh-article__body h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.pjh-404 {
  padding: 40px 0 80px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .pjh-about__grid,
  .pjh-care__grid,
  .pjh-path__list,
  .pjh-faq__layout,
  .pjh-contact__grid,
  .pjh-hours__row,
  .pjh-footer__grid {
    grid-template-columns: 1fr;
  }

  .pjh-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .pjh-hero {
    min-height: 0;
  }

  .pjh-hero__media {
    position: relative;
    min-height: 42vh;
  }

  .pjh-hero__card {
    margin: -48px auto 32px;
    width: min(640px, calc(100% - 28px));
  }

  .pjh-about__media img {
    min-height: 280px;
    height: 48vh;
  }
}

@media (max-width: 760px) {
  .pjh-topbar {
    display: none;
  }

  .pjh-toggle {
    display: block;
  }

  .pjh-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--pjh-header);
    background: var(--pjh-paper);
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--pjh-line);
  }

  .pjh-nav.is-open {
    display: flex;
  }

  .pjh-nav-list {
    flex-direction: column;
    gap: 14px;
  }

  .pjh-form__split,
  .pjh-footer__bar-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pjh-section {
    padding: 64px 0;
  }

  .pjh-hero__card {
    padding: 24px;
  }
}
