:root {
  --ph-cream: #F8F4EC;
  --ph-cream-deep: #F0EAE0;
  --ph-linen: #F3EEE4;
  --ph-cocoa: #2C211C;
  --ph-cocoa-mid: #3a2e28;
  --ph-moss: #4A7C59;
  --ph-moss-deep: #3f6b4c;
  --ph-moss-soft: #6a9a76;
  --ph-apricot: #D4A574;
  --ph-apricot-soft: #e4c49a;
  --ph-ink: #2C211C;
  --ph-muted: #6B5E54;
  --ph-line: rgba(44, 33, 28, 0.12);
  --ph-soft: rgba(74, 124, 89, 0.07);
  --ph-shadow: 0 20px 44px rgba(44, 33, 28, 0.10);
  --ph-font-display: "Shippori Mincho", "Cormorant Garamond", serif;
  --ph-font-body: "Noto Sans JP", sans-serif;
  --ph-shell: min(1120px, calc(100% - 2.4rem));
  --ph-ease: cubic-bezier(.22, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--ph-font-body);
  color: var(--ph-ink);
  background:
    radial-gradient(ellipse 720px 420px at 8% 0%, rgba(212, 165, 116, 0.16), transparent 55%),
    radial-gradient(ellipse 560px 360px at 96% 8%, rgba(74, 124, 89, 0.12), transparent 50%),
    linear-gradient(168deg, #fbf8f2 0%, var(--ph-cream) 42%, #f3eee4 72%, #ebe6dc 100%);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--ph-moss); }
button, input, select, textarea { font: inherit; }
h1, h2, h3 {
  font-family: var(--ph-font-display);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.ph-skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ph-cocoa); color: var(--ph-cream);
  padding: 0.7rem 1rem; min-height: 44px; border-radius: 999px;
}
.ph-skip:focus { top: 1rem; }

.ph-shell { width: var(--ph-shell); margin-inline: auto; }

/* —— Sticky L/R header —— */
.ph-bar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ph-bar.is-scrolled {
  border-bottom-color: var(--ph-line);
  box-shadow: 0 8px 24px rgba(44, 33, 28, 0.06);
}
.ph-bar__inner {
  width: var(--ph-shell); margin-inline: auto;
  min-height: 72px; display: flex; align-items: center; gap: 1rem;
}
.ph-brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
  text-decoration: none; min-height: 44px;
}
.ph-brand__text { display: grid; line-height: 1.2; }
.ph-brand__text b {
  font-family: var(--ph-font-display);
  font-size: 1.15rem; letter-spacing: 0.04em;
}
.ph-brand__text small { color: var(--ph-muted); font-size: 0.72rem; }
.ph-nav { margin-left: auto; display: none; gap: 0.2rem; }
.ph-nav__link {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 0.85rem; text-decoration: none; font-size: 0.92rem;
  border-bottom: 1px solid transparent;
}
.ph-nav__link.is-active,
.ph-nav__link[aria-current="page"] {
  border-bottom-color: var(--ph-moss); color: var(--ph-moss);
}
.ph-menu-btn {
  margin-left: auto; width: 44px; height: 44px;
  border: 1px solid var(--ph-line); background: transparent;
  display: grid; place-content: center; gap: 6px; cursor: pointer;
}
.ph-menu-btn i {
  display: block; width: 18px; height: 1px; background: var(--ph-cocoa);
}
.ph-shade {
  position: fixed; inset: 0; background: rgba(44, 33, 28, 0.35); z-index: 45;
}
.ph-drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100%;
  background: var(--ph-cream); z-index: 50;
  transform: translateX(100%); transition: transform 0.28s ease;
  padding: 1.2rem 1.4rem 2rem; border-left: 1px solid var(--ph-line);
}
.ph-drawer.is-open { transform: translateX(0); }
.ph-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem; min-height: 44px;
}
.ph-drawer__head button {
  border: 0; background: transparent; min-height: 44px; min-width: 44px; cursor: pointer;
}
.ph-drawer__nav { display: grid; gap: 0.2rem; }
.ph-drawer__nav a {
  display: flex; align-items: center; min-height: 48px;
  text-decoration: none; border-bottom: 1px solid var(--ph-line);
}
.ph-drawer__meta { margin-top: 1.5rem; font-size: 0.85rem; color: var(--ph-muted); }
body.ph-drawer-open { overflow: hidden; }

/* —— Type & buttons —— */
.ph-kicker {
  position: relative; display: inline-block;
  font: 700 0.68rem/1.3 var(--ph-font-body);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ph-moss); margin: 0 0 14px; padding-bottom: 10px;
}
.ph-kicker:after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 2.2rem; height: 2px;
  background: linear-gradient(90deg, var(--ph-moss), var(--ph-apricot));
  transform-origin: left center; animation: ph-line-grow 1s var(--ph-ease) both;
}
@keyframes ph-line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.ph-lead, .ph-head > p { color: var(--ph-muted); }
.ph-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--ph-moss); letter-spacing: 0.04em; text-decoration: none;
}
.ph-link:hover { color: var(--ph-apricot); }

.ph-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; min-width: 44px; padding: 14px 22px;
  border: 0; border-radius: 999px; text-decoration: none; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.06em;
  transition: transform 0.3s var(--ph-ease), background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.ph-btn:hover { transform: translateY(-2px); }
.ph-btn--apricot {
  background: linear-gradient(145deg, var(--ph-apricot), #c99762);
  color: var(--ph-cocoa); box-shadow: 0 12px 28px rgba(212, 165, 116, 0.35);
}
.ph-btn--apricot:hover { background: #c99762; color: var(--ph-cocoa); }
.ph-btn--gold {
  background: var(--ph-apricot); color: var(--ph-cocoa);
}
.ph-btn--gold:hover { background: #c99762; color: var(--ph-cocoa); }
.ph-btn--moss {
  background: var(--ph-moss); color: #fff; box-shadow: 0 12px 28px rgba(74, 124, 89, 0.28);
}
.ph-btn--moss:hover { background: var(--ph-moss-deep); color: #fff; }
.ph-btn--sage { background: var(--ph-moss); color: #fff; }
.ph-btn--sage:hover { background: var(--ph-moss-deep); color: #fff; }
.ph-btn--ghost {
  background: transparent; border: 1px solid var(--ph-line); color: var(--ph-ink);
}
.ph-btn--ghost:hover { background: var(--ph-soft); color: var(--ph-cocoa); }
.ph-btn--ghost-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45); box-shadow: none;
}
.ph-btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.ph-btn--light {
  background: var(--ph-cream); color: var(--ph-moss-deep);
  box-shadow: 0 12px 28px rgba(44, 33, 28, 0.12);
}
.ph-btn--light:hover { background: #fff; color: var(--ph-moss-deep); }
.ph-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* —— Full-bleed cinematic hero —— */
.ph-hero {
  position: relative;
  min-height: min(92vh, 900px);
  height: min(92vh, 900px);
  max-height: 900px;
  display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.ph-hero__media { position: absolute; inset: 0; }
.ph-hero__track, .ph-hero__slide { position: absolute; inset: 0; }
.ph-hero__slide {
  margin: 0; opacity: 0;
  transition: opacity 1.1s var(--ph-ease);
}
.ph-hero__slide.is-active { opacity: 1; }
.ph-hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  max-width: none;
}
.ph-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44, 33, 28, 0.28) 0%, rgba(44, 33, 28, 0.12) 35%, rgba(44, 33, 28, 0.68) 100%),
    linear-gradient(90deg, rgba(74, 124, 89, 0.32), transparent 55%);
}
.ph-hero__copy {
  position: relative; z-index: 2;
  width: var(--ph-shell); margin: 0 auto;
  padding: 100px 0 72px;
}
.ph-hero .ph-kicker { color: var(--ph-apricot-soft); }
.ph-hero .ph-kicker:after {
  background: linear-gradient(90deg, var(--ph-apricot-soft), var(--ph-cream));
}
.ph-brand-hero {
  margin: 0 0 8px;
  font: 700 clamp(2.4rem, 7.5vw, 4.6rem)/1 var(--ph-font-display);
  letter-spacing: 0.12em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  animation: ph-rise 0.9s var(--ph-ease) both;
}
.ph-hero h1 {
  margin: 0 0 16px;
  font: 600 clamp(1.35rem, 3.6vw, 2.1rem)/1.45 var(--ph-font-display);
  letter-spacing: 0.04em;
  animation: ph-rise 0.9s 0.08s var(--ph-ease) both;
}
.ph-hero .ph-lead {
  max-width: 34rem; margin: 0;
  font-size: 0.98rem; line-height: 1.9; color: rgba(248, 244, 236, 0.92);
  animation: ph-rise 0.9s 0.14s var(--ph-ease) both;
}
.ph-hero .ph-actions { animation: ph-rise 0.9s 0.2s var(--ph-ease) both; }
@keyframes ph-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.ph-hero__dots {
  position: absolute; z-index: 3;
  right: max(20px, calc((100% - var(--ph-shell)) / 2));
  bottom: 36px;
  display: flex; flex-direction: column; gap: 8px;
}
.ph-hero__dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.ph-hero__dots button.is-active { background: #fff; transform: scale(1.15); }

/* —— Window-sill light meters —— */
.ph-sill { padding: 72px 0 48px; }
.ph-sill__intro { max-width: 36rem; margin-bottom: 40px; }
.ph-sill__intro h2 {
  margin: 0 0 12px;
  font: 600 clamp(1.6rem, 3vw, 2.2rem)/1.35 var(--ph-font-display);
}
.ph-sill__intro p { margin: 0; color: var(--ph-muted); }
.ph-sill__row {
  position: relative;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding: 28px 8px 18px;
}
.ph-sill__ledge {
  position: absolute; left: 4%; right: 4%; bottom: 8px;
  height: 10px; border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.35), rgba(44, 33, 28, 0.18)),
    linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
  box-shadow: 0 6px 16px rgba(44, 33, 28, 0.08);
}
.ph-pane-stat {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(88px, 18vw, 128px);
  aspect-ratio: 0.85 / 1;
  border-radius: 50% / 42%;
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.5), transparent 48%),
    linear-gradient(155deg, #e8e0d4, #cfc5b6);
  border: 1px solid rgba(74, 124, 89, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 14px 28px rgba(44, 33, 28, 0.12);
  text-align: center;
  transition: transform 0.45s var(--ph-ease);
}
.ph-pane-stat:nth-child(odd) { transform: translateY(10px); }
.ph-pane-stat:nth-child(even) { transform: translateY(-8px); }
.ph-pane-stat--1 {
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.45), transparent 48%),
    linear-gradient(155deg, #d4e4d8, var(--ph-moss-soft));
}
.ph-pane-stat--2 {
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.45), transparent 48%),
    linear-gradient(155deg, #f0e6d4, var(--ph-apricot-soft));
}
.ph-pane-stat--3 {
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.4), transparent 48%),
    linear-gradient(155deg, #e4dcc8, #b8a890);
}
.ph-pane-stat--4 {
  background:
    radial-gradient(ellipse at 32% 28%, rgba(255, 255, 255, 0.3), transparent 48%),
    linear-gradient(155deg, #6a9a76, var(--ph-moss-deep));
  color: #fff;
}
.ph-pane-stat--4 span { color: rgba(248, 244, 236, 0.85); }
.ph-pane-stat strong {
  display: block;
  font: 700 clamp(1.15rem, 2.4vw, 1.55rem)/1 var(--ph-font-display);
  color: var(--ph-ink);
}
.ph-pane-stat--4 strong { color: #fff; }
.ph-pane-stat span {
  display: block; margin-top: 6px;
  font-size: 0.68rem; letter-spacing: 0.1em; color: var(--ph-muted);
}

/* —— Trust marquee —— */
.ph-trust {
  overflow: hidden; padding: 18px 0;
  border-block: 1px solid var(--ph-line);
  background: rgba(248, 244, 236, 0.55);
}
.ph-trust__track {
  display: flex; gap: 28px; width: max-content;
  animation: ph-marquee 32s linear infinite;
  font: 600 0.78rem/1 var(--ph-font-body);
  letter-spacing: 0.14em; color: var(--ph-muted);
}
.ph-trust__track i { opacity: 0.4; color: var(--ph-apricot); }
@keyframes ph-marquee { to { transform: translateX(-50%); } }

/* —— Section washes + grain —— */
.ph-section { position: relative; padding: 88px 0; }
.ph-section--cream {
  background: linear-gradient(180deg, #fff9f2 0%, var(--ph-cream) 55%, #f5efe6 100%);
}
.ph-section--linen,
.ph-section--soft {
  background: linear-gradient(180deg, #f7f3ec 0%, var(--ph-linen) 48%, #efebe3 100%);
}
.ph-section--mosswash {
  background:
    radial-gradient(ellipse 80% 70% at 12% 20%, rgba(74, 124, 89, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 88% 80%, rgba(212, 165, 116, 0.14), transparent 55%),
    linear-gradient(180deg, #f4f7f4 0%, var(--ph-cream) 55%, #eef2ee 100%);
}
.ph-section--cocoa,
.ph-section--timber {
  background: linear-gradient(152deg, #3a2e28 0%, #2C211C 48%, #241a16 100%);
  color: #f4eee4;
}
.ph-section--cocoa .ph-kicker,
.ph-section--timber .ph-kicker { color: var(--ph-apricot-soft); }
.ph-section--cocoa .ph-kicker:after,
.ph-section--timber .ph-kicker:after {
  background: linear-gradient(90deg, var(--ph-apricot-soft), var(--ph-cream));
}
.ph-section--cocoa .ph-head > p,
.ph-section--timber .ph-head > p { color: rgba(244, 238, 228, 0.72); }
.ph-section--checklist {
  background: linear-gradient(160deg, #f7f3ec 0%, #efebe3 100%);
}
.ph-section--grain:before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px; mix-blend-mode: multiply;
}
.ph-section--cocoa.ph-section--grain:before {
  opacity: 0.06; mix-blend-mode: soft-light;
}
.ph-section--grain > .ph-shell { position: relative; z-index: 1; }

.ph-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: 36px;
}
.ph-head h2 {
  margin: 0;
  font: 600 clamp(1.55rem, 3vw, 2.15rem)/1.35 var(--ph-font-display);
}
.ph-head > p { max-width: 28rem; margin: 0; color: var(--ph-muted); }
.ph-head--light h2,
.ph-head--on-cocoa h2 { color: #f8f4ec; }
.ph-head--on-cocoa > p { color: rgba(244, 238, 228, 0.72); }

/* —— Media frames —— */
.ph-media { overflow: hidden; border-radius: 22px; position: relative; }
.ph-media img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.7s var(--ph-ease);
}
a:hover .ph-media img,
.ph-media:hover img { transform: scale(1.035); }
.ph-media--tall img { aspect-ratio: 4 / 5; }
.ph-media--soft { border-radius: 28px 12px 28px 12px; }
.ph-media--frame {
  box-shadow: 0 0 0 1px var(--ph-line);
  outline: 1px solid rgba(74, 124, 89, 0.22);
  outline-offset: 8px;
}
.ph-media--pane { box-shadow: inset 0 0 0 1px rgba(248, 244, 236, 0.25); }

/* —— Philosophy —— */
.ph-philosophy__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.ph-philosophy h2 {
  margin: 0 0 14px;
  font: 600 clamp(1.55rem, 3vw, 2.15rem)/1.35 var(--ph-font-display);
}
.ph-philosophy__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.ph-philosophy__list li {
  display: grid; gap: 4px; padding: 16px 18px;
  border-left: 3px solid var(--ph-moss);
  background: rgba(248, 244, 236, 0.72);
}
.ph-philosophy__list strong {
  font: 600 0.95rem/1.3 var(--ph-font-display); letter-spacing: 0.04em;
}
.ph-philosophy__list span { font-size: 0.9rem; color: var(--ph-muted); }
.ph-philosophy__media { min-height: 420px; }
.ph-philosophy__media img { min-height: 420px; aspect-ratio: auto; }

/* —— Full-bleed menu Swiper —— */
.ph-menu-section .ph-shell { margin-bottom: 1.5rem; }
.ph-menu-swiper-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 2.5rem;
  --swiper-theme-color: #4A7C59;
  --swiper-navigation-size: 18px;
}
.ph-menu-swiper {
  width: 100%;
  overflow: hidden;
  padding: 0.35rem 0 1rem;
}
.ph-menu-swiper .swiper-slide {
  width: min(920px, 86vw);
  height: auto;
}
.ph-menu-band {
  height: 100%;
}
.ph-menu-band a {
  display: block; border-radius: 0;
  box-shadow: none; text-decoration: none; color: inherit;
}
.ph-menu-swiper .swiper-slide-active .ph-menu-band a {
  box-shadow: 0 22px 48px rgba(44, 33, 28, 0.14);
}
.ph-menu-band__media {
  position: relative; overflow: hidden;
  min-height: clamp(280px, 42vw, 460px); isolation: isolate;
  border-radius: 1.15rem;
}
.ph-menu-band__media img {
  width: 100%; height: 100%; min-height: clamp(280px, 42vw, 460px);
  max-width: none; object-fit: cover; aspect-ratio: auto;
  transition: transform 0.7s var(--ph-ease);
}
.ph-menu-band a:hover .ph-menu-band__media img { transform: scale(1.04); }
.ph-menu-band__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 28, 24, 0.06) 0%, rgba(30, 28, 24, 0.28) 42%, rgba(30, 28, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(44, 33, 28, 0.5), transparent 55%);
}
.ph-menu-band__body {
  position: absolute; inset: auto 0 0 0;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1rem 1.5rem; padding: 1.6rem 1.6rem 1.35rem; color: #fff;
}
.ph-menu-band__label { position: static; max-width: 36rem; padding: 0; }
.ph-menu-band__label span {
  display: block; margin-bottom: 8px;
  font: 600 0.7rem/1 var(--ph-font-body);
  letter-spacing: 0.16em; color: var(--ph-apricot-soft);
}
.ph-menu-band__label h3 {
  margin: 0 0 8px;
  font: 600 clamp(1.25rem, 2.6vw, 1.85rem)/1.35 var(--ph-font-display);
  color: #fff;
}
.ph-menu-band__label p {
  margin: 0; font-size: 0.92rem; opacity: 0.92; line-height: 1.7; max-width: 34rem;
}
.ph-menu-band__meta {
  display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;
  padding: 0.55rem 0.7rem 0.55rem 0.55rem;
  background: rgba(248, 244, 236, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(20, 30, 40, 0.18);
  margin: 0;
}
.ph-menu-band__time {
  font: 600 0.68rem/1 var(--ph-font-body); letter-spacing: 0.08em;
  color: var(--ph-moss-deep); padding: 7px 11px; border-radius: 999px;
  background: rgba(74, 124, 89, 0.16);
}
.ph-menu-band__meta b {
  font: 700 1rem/1 var(--ph-font-display); color: var(--ph-ink); margin-left: 0;
}
.ph-menu-band__meta em {
  font-style: normal; font-size: 0.78rem; font-weight: 700;
  color: var(--ph-moss-deep); padding: 0 0.35rem 0 0.15rem;
}
.ph-menu-band a:hover .ph-menu-band__meta { background: #fff; }
.ph-menu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 33, 28, 0.14);
  border-radius: 50%;
  background: rgba(248, 244, 236, 0.94);
  color: var(--ph-cocoa);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(44, 33, 28, 0.1);
  display: grid;
  place-items: center;
  padding: 0;
}
.ph-menu-nav:hover { background: #fff; color: var(--ph-moss-deep); }
.ph-menu-nav--prev { left: max(0.75rem, calc((100vw - min(1120px, 100% - 2.4rem)) / 2 - 0.5rem)); }
.ph-menu-nav--next { right: max(0.75rem, calc((100vw - min(1120px, 100% - 2.4rem)) / 2 - 0.5rem)); }
.ph-menu-pagination {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.ph-menu-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  background: var(--ph-moss-deep);
  margin: 0 !important;
}
.ph-menu-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ph-moss);
  transform: scale(1.15);
}

/* —— Day-flow ribbon —— */
.ph-ribbon {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 8px;
}
.ph-ribbon__line {
  position: absolute; left: 8%; right: 8%; top: 118px; height: 2px;
  background: linear-gradient(90deg, var(--ph-moss), var(--ph-apricot), var(--ph-moss-deep));
  opacity: 0.45;
}
.ph-ribbon__bead { position: relative; z-index: 1; text-align: center; }
.ph-ribbon__photo {
  width: 100%; aspect-ratio: 5 / 4; margin-bottom: 16px;
  border-radius: 50% 50% 18px 18px / 42% 42% 18px 18px;
  outline: 1px solid rgba(74, 124, 89, 0.18); outline-offset: 6px;
}
.ph-ribbon__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
.ph-ribbon__bead time {
  display: inline-block; margin-bottom: 8px;
  padding: 4px 12px; border-radius: 999px;
  font: 700 0.72rem/1 var(--ph-font-body); letter-spacing: 0.12em;
  color: var(--ph-moss-deep); background: rgba(248, 244, 236, 0.88);
  border: 1px solid var(--ph-line);
}
.ph-ribbon__bead h3 { margin: 0 0 6px; font: 600 1rem/1.35 var(--ph-font-display); }
.ph-ribbon__bead p { margin: 0; font-size: 0.85rem; color: var(--ph-muted); }

/* —— Asymmetric voices —— */
.ph-voices-asym {
  display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 20px; align-items: stretch;
}
.ph-voices-asym blockquote {
  margin: 0; padding: 28px 26px;
  background: rgba(248, 244, 236, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px 24px 4px 24px;
  color: var(--ph-ink);
  box-shadow: var(--ph-shadow);
}
.ph-voices-asym__lead {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100%; padding: 40px 36px !important;
  background:
    linear-gradient(145deg, rgba(248, 244, 236, 0.98), rgba(232, 220, 200, 0.8)) !important;
}
.ph-voices-asym__lead:before {
  content: "“"; display: block;
  font: 700 3.2rem/1 var(--ph-font-display);
  color: var(--ph-moss); opacity: 0.55; margin-bottom: 4px;
}
.ph-voices-asym__lead p:not(.ph-quote-note) {
  margin: 0 0 20px;
  font: 500 clamp(1.05rem, 2vw, 1.28rem)/1.85 var(--ph-font-display);
}
.ph-quote-note {
  margin: 0 0 14px;
  font: 600 0.68rem/1 var(--ph-font-body);
  letter-spacing: 0.14em; color: var(--ph-apricot);
}
.ph-voices-asym__side { display: grid; gap: 16px; }
.ph-voices-asym__side blockquote p {
  margin: 0 0 14px; font-size: 0.92rem; line-height: 1.8;
}
.ph-voices-asym cite {
  font-style: normal; font-size: 0.78rem; color: var(--ph-muted); letter-spacing: 0.04em;
}

/* —— Checklist FAQ —— */
.ph-check-layout {
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: start;
}
.ph-check-layout h2 {
  margin: 0 0 10px;
  font: 600 clamp(1.5rem, 3vw, 2rem)/1.35 var(--ph-font-display);
}
.ph-check-layout > header p { margin: 0; color: var(--ph-muted); }
.ph-checklist {
  position: relative;
  padding: 28px 22px 18px;
  background: linear-gradient(180deg, #faf6ef 0%, #f3eee4 100%);
  border: 1px solid rgba(74, 124, 89, 0.14);
  border-radius: 4px 18px 4px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 18px 40px rgba(44, 33, 28, 0.08);
}
.ph-checklist__clip {
  position: absolute; left: 50%; top: -10px; transform: translateX(-50%);
  width: 72px; height: 18px; border-radius: 4px;
  background: linear-gradient(180deg, var(--ph-moss-soft), var(--ph-moss-deep));
  box-shadow: 0 4px 10px rgba(74, 124, 89, 0.25);
}
.ph-checklist__row {
  border-bottom: 1px dashed rgba(74, 124, 89, 0.18); padding: 12px 4px;
}
.ph-checklist__row:last-child { border-bottom: 0; }
.ph-checklist__row summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 600; position: relative; padding-right: 24px;
}
.ph-checklist__row summary::-webkit-details-marker { display: none; }
.ph-checklist__row summary:after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--ph-moss); font-weight: 700;
}
.ph-checklist__row[open] summary:after { content: "–"; }
.ph-checklist__box {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px;
  border: 2px solid var(--ph-moss); border-radius: 4px; background: #fff;
  transition: background 0.25s, border-color 0.25s;
}
.ph-checklist__row[open] .ph-checklist__box {
  background: var(--ph-moss);
  box-shadow: inset 0 0 0 2px #fff;
  border-color: var(--ph-moss-deep);
}
.ph-checklist__q { flex: 1; }
.ph-checklist__row p { margin: 10px 0 4px 30px; color: var(--ph-muted); font-size: 0.92rem; }

/* —— Finale CTA —— */
.ph-cta {
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  margin: 20px auto 40px; padding: 36px 40px;
  background: linear-gradient(135deg, var(--ph-moss) 0%, var(--ph-moss-deep) 100%);
  color: var(--ph-cream); border-radius: 24px; box-shadow: var(--ph-shadow);
}
.ph-cta--finale { margin-bottom: 48px; }
.ph-cta h2 {
  margin: 0 0 8px;
  font: 600 clamp(1.35rem, 2.6vw, 1.85rem)/1.4 var(--ph-font-display);
  color: #fff;
}
.ph-cta p { margin: 0; opacity: 0.9; max-width: 34rem; color: rgba(248, 244, 236, 0.9); }
.ph-cta .ph-kicker { color: var(--ph-apricot-soft); }
.ph-cta .ph-kicker:after { background: var(--ph-apricot-soft); }

/* —— Inner pages (shared) —— */
.ph-page-hero { padding: 3rem 0 1rem; border-bottom: 1px solid var(--ph-line); }
.ph-page-hero__grid { display: grid; gap: 1rem; }
.ph-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }

.ph-split { display: grid; gap: 2rem; align-items: center; }
.ph-pillars { display: grid; gap: 0; margin-top: 1.6rem; }
.ph-pillars li {
  display: grid; grid-template-columns: 2.2rem 1fr; gap: 0.85rem;
  padding: 1rem 0; border-top: 1px solid var(--ph-line);
}
.ph-pillars li:last-child { border-bottom: 1px solid var(--ph-line); }
.ph-pillars b { font-family: var(--ph-font-display); color: var(--ph-apricot); font-size: 0.9rem; }
.ph-pillars h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.ph-pillars p { margin: 0; color: var(--ph-muted); font-size: 0.92rem; }

.ph-checks { display: grid; gap: 0; }
.ph-check {
  display: grid; grid-template-columns: 48px 1fr; gap: 0.9rem;
  padding: 1.05rem 0; border-top: 1px solid var(--ph-line);
}
.ph-check:last-child { border-bottom: 1px solid var(--ph-line); }
.ph-check__box {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--ph-line); color: var(--ph-moss);
  font-family: var(--ph-font-display); font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.35); border-radius: 8px;
}
.ph-check h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.ph-check p { margin: 0; color: var(--ph-muted); font-size: 0.94rem; }
.ph-note { margin-top: 1.4rem; font-size: 0.85rem; color: var(--ph-muted); }

.ph-seasons { display: grid; gap: 1.4rem; }
.ph-season__name {
  display: inline-block; margin-top: 0.85rem; color: var(--ph-apricot);
  letter-spacing: 0.14em; font-size: 0.78rem;
}
.ph-season h3 { font-size: 1.15rem; }
.ph-season p { color: var(--ph-muted); margin: 0; font-size: 0.94rem; }

.ph-menu { display: grid; gap: 1.3rem; }
.ph-menu__item a {
  display: grid; gap: 0.95rem; text-decoration: none; color: inherit; padding: 0;
}
.ph-menu__body span {
  display: block; font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--ph-apricot); margin-bottom: 0.35rem;
}
.ph-menu__body h3 { color: #f8f4ec; }
.ph-menu__body p { color: rgba(244, 238, 228, 0.72); font-size: 0.92rem; }
.ph-menu__body b { color: var(--ph-apricot); font-weight: 600; }
.ph-menu__body small { color: rgba(244, 238, 228, 0.62); font-weight: 400; }

.ph-process { display: grid; gap: 1.2rem; }
.ph-process__item {
  padding: 1.2rem 0 0.4rem; border-top: 1px solid var(--ph-line);
}
.ph-process__item span {
  display: inline-block; font-family: var(--ph-font-display);
  color: var(--ph-moss); letter-spacing: 0.08em; margin-bottom: 0.45rem;
}
.ph-process__item h3 { font-size: 1.15rem; }
.ph-process__item p { margin: 0; color: var(--ph-muted); font-size: 0.94rem; }

.ph-voices { display: grid; gap: 1.2rem; }
.ph-voice {
  margin: 0; padding: 1.4rem 0 0.2rem; border-top: 1px solid var(--ph-line);
}
.ph-voice:last-child { border-bottom: 1px solid var(--ph-line); padding-bottom: 1.4rem; }
.ph-voice p {
  font-family: var(--ph-font-display); font-size: 1.08rem; line-height: 1.7; margin-bottom: 1rem;
}
.ph-voice footer {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: baseline;
}
.ph-voice cite { font-style: normal; font-weight: 600; font-size: 0.92rem; }
.ph-voice span { color: var(--ph-muted); font-size: 0.85rem; }

.ph-journal { display: grid; gap: 1.5rem; }
.ph-journal a { text-decoration: none; color: inherit; }
.ph-journal time, .ph-tag {
  display: inline-block; font-size: 0.78rem; color: var(--ph-moss);
  margin: 0.7rem 0.5rem 0.2rem 0;
}
.ph-journal h3 { font-size: 1.1rem; }
.ph-journal p { color: var(--ph-muted); font-size: 0.92rem; margin: 0; }

.ph-faq-wrap { display: grid; gap: 1.5rem; }
.ph-faq details { border-top: 1px solid var(--ph-line); padding: 0.2rem 0; }
.ph-faq details:last-child { border-bottom: 1px solid var(--ph-line); }
.ph-faq summary {
  list-style: none; cursor: pointer; min-height: 52px;
  display: flex; align-items: center;
  font-family: var(--ph-font-display); font-size: 1.05rem; padding-right: 1rem;
}
.ph-faq summary::-webkit-details-marker { display: none; }
.ph-faq p { color: var(--ph-muted); padding-bottom: 1rem; }

.ph-visit { padding: 4.5rem 0 5.5rem; }
.ph-visit__grid { display: grid; gap: 1.8rem; align-items: center; }
.ph-visit dl { margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.ph-visit dt { font-size: 0.78rem; color: var(--ph-moss); letter-spacing: 0.08em; }
.ph-visit dd { margin: 0.15rem 0 0; }
.ph-route {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  margin: 1rem 0 1.4rem; font-size: 0.88rem;
}
.ph-route span, .ph-route b {
  border: 1px solid var(--ph-line); padding: 0.45rem 0.7rem;
  min-height: 44px; display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, 0.35); border-radius: 10px;
}
.ph-route i { color: var(--ph-apricot); }

.ph-values { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.ph-values > div { padding-top: 0.85rem; border-top: 1px solid var(--ph-line); }
.ph-values b { color: var(--ph-apricot); font-size: 0.78rem; letter-spacing: 0.1em; }
.ph-values h3 { font-size: 1.05rem; margin: 0.25rem 0; }
.ph-values p { margin: 0; color: var(--ph-muted); font-size: 0.9rem; }
.ph-meta-list { display: grid; gap: 0.85rem; margin: 1.2rem 0 0; }
.ph-meta-list dt { font-size: 0.78rem; color: var(--ph-moss); }
.ph-meta-list dd { margin: 0.2rem 0 0; }

.ph-service-list { display: grid; gap: 2.4rem; }
.ph-service {
  display: grid; gap: 1.2rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--ph-line);
}
.ph-service span { color: var(--ph-moss); font-size: 0.8rem; letter-spacing: 0.08em; }
.ph-service ul { margin: 0.8rem 0; }
.ph-service li {
  padding: 0.45rem 0; border-top: 1px solid var(--ph-line); font-size: 0.94rem;
}
.ph-service small { color: var(--ph-muted); }
.ph-plain li { padding: 0.55rem 0; border-top: 1px solid var(--ph-line); }
.ph-feature {
  display: grid; gap: 1.2rem; margin-bottom: 2.4rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--ph-line);
}

.ph-contact { display: grid; gap: 2rem; }
.ph-form {
  border: 1px solid var(--ph-line); padding: 1.4rem;
  background: rgba(255, 255, 255, 0.4); border-radius: 16px;
}
.ph-field { margin-bottom: 1rem; }
.ph-field label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; }
.ph-field em { color: var(--ph-moss); font-style: normal; font-size: 0.78rem; }
.ph-field input,
.ph-field select,
.ph-field textarea {
  width: 100%; min-height: 44px; border: 1px solid var(--ph-line);
  background: #fff; padding: 0.65rem 0.8rem; border-radius: 10px;
}
.ph-field input:focus,
.ph-field select:focus,
.ph-field textarea:focus {
  outline: 2px solid rgba(74, 124, 89, 0.35); outline-offset: 1px;
}
.ph-field--pair { display: grid; gap: 0.8rem; }
.ph-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  margin: 0.8rem 0 1.1rem; font-size: 0.88rem;
}
.ph-consent input { width: 20px; height: 20px; margin-top: 0.15rem; }
.ph-success { text-align: left; padding: 0.5rem 0; }
.ph-success span {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--ph-moss); color: var(--ph-moss);
  margin-bottom: 0.8rem; border-radius: 50%;
}

.ph-404 { padding: 5rem 0 6rem; text-align: left; }
.ph-404__pane {
  width: 88px; height: 88px; border: 1px solid var(--ph-line);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  font-family: var(--ph-font-display); color: var(--ph-moss); border-radius: 12px;
}

/* —— Footer —— */
.ph-foot {
  border-top: 1px solid var(--ph-line);
  padding: 2.4rem 0 2rem;
  background: rgba(240, 234, 224, 0.55);
}
.ph-foot__bar {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  justify-content: space-between; align-items: center; margin-bottom: 1.2rem;
}
.ph-foot__brand {
  display: inline-flex; gap: 0.7rem; align-items: center; text-decoration: none;
}
.ph-foot__brand b { display: block; font-family: var(--ph-font-display); }
.ph-foot__brand small { color: var(--ph-muted); font-size: 0.78rem; }
.ph-foot__nav { display: flex; flex-wrap: wrap; gap: 0.2rem 0.9rem; }
.ph-foot__nav a {
  min-height: 44px; display: inline-flex; align-items: center;
  text-decoration: none; font-size: 0.9rem;
}
.ph-foot__tag, .ph-disclaimer { color: var(--ph-muted); font-size: 0.85rem; }
.ph-foot__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--ph-line);
  font-size: 0.82rem; color: var(--ph-muted);
}

/* —— Reveal: visible by default; hide only after main.js sets .ph-ready —— */
[data-reveal] { opacity: 1; transform: none; }
.ph-ready [data-reveal]:not(.is-in) {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ph-ease), transform 0.7s var(--ph-ease);
}
.ph-ready [data-reveal].is-in { opacity: 1; transform: none; }

.ph-fx-ch {
  display: inline-block;
  animation: ph-fx-rise 0.55s ease both;
  animation-delay: calc(var(--i) * 18ms);
}
.ph-fx-ch--space { width: 0.35em; }
@keyframes ph-fx-rise {
  from { opacity: 0.35; transform: translateY(0.35em); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ph-trust__track, .ph-brand-hero, .ph-hero h1, .ph-hero .ph-lead,
  .ph-hero .ph-actions, .ph-fx-ch, .ph-kicker:after { animation: none; }
  .ph-ready [data-reveal]:not(.is-in),
  .ph-ready [data-reveal].is-in {
    opacity: 1; transform: none; transition: none;
  }
}

@media (max-width: 960px) {
  .ph-philosophy__grid,
  .ph-voices-asym,
  .ph-ribbon,
  .ph-check-layout { grid-template-columns: 1fr; }
  .ph-ribbon { grid-template-columns: 1fr 1fr; }
  .ph-ribbon__line { display: none; }
  .ph-cta { flex-direction: column; align-items: flex-start; padding: 28px; }
  .ph-sill__row { flex-wrap: wrap; justify-content: center; }
  .ph-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --ph-shell: min(100%, calc(100% - 28px)); }
  .ph-section { padding: 64px 0; }
  .ph-hero { min-height: min(88vh, 760px); height: min(88vh, 760px); }
  .ph-hero__copy { padding: 88px 0 64px; }
  .ph-ribbon { grid-template-columns: 1fr; }
  .ph-pane-stat { width: 42%; aspect-ratio: 0.9; }
  .ph-menu-band__body { padding: 1.15rem 1.05rem 1rem; gap: 0.85rem; }
  .ph-menu-band__meta { width: 100%; justify-content: flex-start; }
  .ph-menu-nav { display: none; }
  .ph-menu-swiper .swiper-slide { width: 88vw; }
  .ph-hero__dots { bottom: 24px; right: 16px; }
}

@media (min-width: 720px) {
  .ph-seasons { grid-template-columns: repeat(2, 1fr); }
  .ph-menu { grid-template-columns: repeat(2, 1fr); }
  .ph-journal { grid-template-columns: repeat(2, 1fr); }
  .ph-process { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2rem; }
  .ph-voices { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .ph-voice { border-top: 0; border-left: 1px solid var(--ph-line); padding: 0 0 0 1.2rem; }
  .ph-voice:first-child { border-left: 0; padding-left: 0; }
  .ph-voice:last-child { border-bottom: 0; padding-bottom: 0; }
  .ph-page-hero__grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
  .ph-split, .ph-visit__grid, .ph-contact, .ph-feature, .ph-service {
    grid-template-columns: 1fr 1fr;
  }
  .ph-split--rev > :first-child { order: 2; }
  .ph-service--rev > :first-child { order: 2; }
  .ph-field--pair { grid-template-columns: 1fr 1fr; }
  .ph-values { grid-template-columns: repeat(3, 1fr); }
  .ph-faq-wrap { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

@media (min-width: 980px) {
  .ph-nav { display: flex; }
  .ph-menu-btn { display: none; }
  .ph-seasons { grid-template-columns: repeat(4, 1fr); }
  .ph-journal { grid-template-columns: repeat(3, 1fr); }
  .ph-process { grid-template-columns: repeat(4, 1fr); }
}
