/* ============================================================
   INNER PAGE SHELL  (shared by all non-home pages)
   Page header with breadcrumb and title, clearing the fixed
   solid masthead.
   ============================================================ */

.page-header {
  background: var(--oat);
  padding-top: clamp(6rem, 5rem + 3.5vw, 8rem);
  padding-bottom: clamp(2.5rem, 3.5vw, 3.5rem);
}

/* ---- breadcrumb ---- */
.breadcrumb { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--stone); }
.breadcrumb li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-top: 1.5px solid var(--stone);
  border-right: 1.5px solid var(--stone);
  transform: rotate(45deg);
  opacity: 0.55;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color 0.25s var(--ease); }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb [aria-current="page"] { color: var(--stone); }

/* ---- title block ---- */
.page-overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 1.9rem + 3vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 20ch;
}
.page-title em { font-style: italic; color: var(--wine); }
.page-intro {
  margin-top: var(--space-m);
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* balanced header: title left, intro right, baseline-aligned */
@media (min-width: 900px) {
  .page-head-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
  }
  .page-head-grid .page-intro { margin-top: 0; }
}

/* ---- shared section eyebrow + heading (used across inner pages) ---- */
.s-overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}
.s-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.s-title em { font-style: italic; color: var(--wine); }

/* ============================================================
   PAGE HERO  -  text-led coloured inner-page hero (template)
   Sits below the solid espresso masthead. A warm oat band,
   ruled and type-led, echoing the homepage reviews masthead.
   ============================================================ */
.page-hero {
  background: var(--oat);
  padding-top: clamp(7rem, 5.5rem + 5vw, 9.5rem);
  padding-bottom: clamp(2.8rem, 2.2rem + 2.4vw, 4.25rem);
}

.page-hero .breadcrumb { margin-bottom: clamp(1rem, 0.8rem + 1vw, 1.4rem); }

.page-hero-rule {
  height: 1px;
  background: var(--line);
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.4rem);
}

.page-hero-grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.2rem); }

.page-hero-overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: var(--space-s);
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.7rem + 3.6vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 16ch;
}
.page-hero-title em { font-style: italic; }

.page-hero-intro {
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 46ch;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: var(--space-m);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--stone);
}
.page-hero-meta-rule { flex: none; width: 28px; height: 1px; background: var(--wine); }

@media (min-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }
  /* nudge the intro down so it starts level with the title, not the eyebrow */
  .page-hero-aside { padding-top: 0.5rem; }
}