/* ==========================================================================
   Sub-pages: editorial page hero + active navigation states.
   Loaded after the main stylesheets; used by /experience, /occasions,
   /menus, /chef and /journal.
   ========================================================================== */

.page-hero {
  position: relative;
  color: var(--cream);
  background: var(--ink);
  padding: clamp(170px, 22vh, 260px) var(--gutter) clamp(90px, 12vh, 150px);
  overflow: hidden;
}

.page-hero__picture,
.page-hero__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__picture img {
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.85);
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 17, 0.82), rgba(23, 23, 17, 0.55) 62%, rgba(23, 23, 17, 0.78));
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero__inner .kicker {
  color: #e0d5c2;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 0 0 34px;
  max-width: 1250px;
}

.page-hero__lead {
  max-width: 640px;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  line-height: 1.4;
  color: #e9e1d2;
  margin: 0 0 44px;
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.page-hero__actions .underlink {
  color: #e0d5c2;
  border-color: rgba(255, 255, 255, 0.5);
}

.primary-nav a[aria-current="page"],
.site-footer__nav a[aria-current="page"] {
  color: var(--ember);
}

.mobile-menu nav a[aria-current="page"] span {
  color: var(--ember);
}

.brand__logo {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

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

/* ---- journal posts ---- */
.journal-item__link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.journal-item__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-empty {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: #8b8376;
  font-size: 1.05rem;
}

.post-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  background: var(--cream);
}

.post-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #3c382f;
  margin: 0 0 22px;
}

.post-body h2,
.post-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 46px 0 16px;
}

.post-body h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.post-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.post-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 28px 0;
}

.post-body blockquote {
  margin: 30px 0;
  padding-left: 22px;
  border-left: 2px solid var(--clay);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
  color: #4d483f;
}

.post-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d3cab9;
}

@media (max-width: 760px) {
  .page-hero {
    padding: 150px var(--gutter) 80px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .page-hero__lead {
    font-size: 1.15rem;
  }
}
