﻿/* ========================================================================
   Passing Conversations — editorial parchment + hero (body.passing-body)
   Matches Finding Your Footing / Growing Your Strength / Going Forward chrome.
   Scoped so other tier pages are untouched.
   ======================================================================== */

/* ----- 1. Header logo = transparent mark (no cream box) ----- */
body.passing-body .header__logo {
  position: relative;
  display: inline-block;
  line-height: 0;
}

body.passing-body .header__logo img {
  display: block;
  width: auto;
  height: auto;
  opacity: 0;
}

body.passing-body .header__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #3d5668;
  -webkit-mask-image: url("../images/Logos/CORNER-LOGO-transparent.png");
  mask-image: url("../images/Logos/CORNER-LOGO-transparent.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  pointer-events: none;
}

body.passing-body .header::after {
  display: none !important;
  content: none !important;
}

/* Active nav underline (reference) */
body.passing-body .menu__link[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 1px;
}

/* ----- 2. Blue editorial footer ----- */
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial {
  background: linear-gradient(180deg, #2a4f6e 0%, #1f3f5c 100%) !important;
  padding-top: 1.35rem !important;
  padding-bottom: 1.45rem !important;
  color: rgba(255, 250, 245, 0.9);
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial::before {
  display: none;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__legal a,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__legal-sep,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__tagline,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__copyright {
  color: rgba(255, 250, 245, 0.86);
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__legal a:hover,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__legal a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__logo {
  display: block;
  line-height: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 0.15rem;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__logo::before,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__logo::after {
  content: none !important;
  display: none !important;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-home-footer__logo img {
  display: block;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1;
  max-height: 2.95rem;
  width: auto;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-site-support-invite__actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.75rem 1rem !important;
  width: auto !important;
  max-width: none !important;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-site-support-btn--harbor,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-site-support-btn--sent {
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  color: rgba(255, 250, 245, 0.96) !important;
  border: 1px solid rgba(255, 250, 245, 0.55) !important;
  box-shadow: none !important;
}

body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-site-support-btn--harbor:hover,
body.passing-body .footer.gh-home-footer.gh-home-footer--editorial .gh-site-support-btn--sent:hover {
  background: rgba(255, 252, 248, 0.1) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
}

/* ----- 3–5. Hero architecture -----
   Deferred to css/gh-footing-editorial.css (Grace Harbor Hero Standard).
   Page-specific photo URL lives there; do not reintroduce tall-hero hacks. */
main.page.gh-tier-page.passing-page .gh-tier-eyebrow {
  display: block !important;
}

/* ----- 6. Parchment body + botanicals -----
   Body tuck/spacing comes from shared Hero Standard.
   Keep Passing botanicals and content chrome below. */


/* Side botanical flourishes */
.passing-botanicals {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.passing-botanicals__left,
.passing-botanicals__right {
  position: absolute;
  top: 8%;
  width: clamp(7.5rem, 16vw, 13.5rem);
  height: min(72%, 38rem);
  opacity: 0.42;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 12%,
    #000 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 12%,
    #000 78%,
    transparent 100%
  );
}

.passing-botanicals__left {
  left: clamp(-1.5rem, -1vw, 0.25rem);
  background-image: url("../images/Passing%20Conversations/Grass%20Flowers.png");
  background-position: left top;
}

.passing-botanicals__right {
  right: clamp(-1.5rem, -1vw, 0.25rem);
  background-image: url("../images/Passing%20Conversations/Pampas%20Grass.png");
  background-position: right top;
  transform: scaleX(-1);
  opacity: 0.36;
}

/* ----- 7. Library card + featured two-column ----- */
main.page.gh-tier-page.passing-page .passing-wrap {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

main.page.gh-tier-page.passing-page .passing-video-card {
  position: relative;
  overflow: visible;
  margin: 0 auto 1.65rem;
  max-width: 100%;
  width: 100%;
  padding: 0;
  text-align: center;
  border-radius: 22px !important;
  border: 1px solid rgba(108, 74, 46, 0.52) !important;
  outline: 1px solid rgba(120, 85, 55, 0.4);
  outline-offset: -0.55rem;
  background:
    linear-gradient(
      180deg,
      rgba(254, 249, 240, 0.98) 0%,
      rgba(252, 244, 230, 0.96) 100%
    ) !important;
  box-shadow:
    0 0 0 1px rgba(255, 252, 248, 0.55) inset,
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 30px rgba(90, 58, 36, 0.12),
    0 4px 12px rgba(90, 58, 36, 0.07) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

main.page.gh-tier-page.passing-page .passing-video-card > *:not(.gh-home-corner-accents) {
  position: relative;
  z-index: 1;
}

main.page.gh-tier-page.passing-page .gh-home-corner-accents {
  position: absolute;
  inset: 0.85rem;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) top left / 14px 1px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) top left / 1px 14px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) top right / 14px 1px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) top right / 1px 14px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) bottom left / 14px 1px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) bottom left / 1px 14px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) bottom right / 14px 1px no-repeat,
    linear-gradient(rgba(178, 150, 112, 0.5), rgba(178, 150, 112, 0.5)) bottom right / 1px 14px no-repeat;
}

main.page.gh-tier-page.passing-page .passing-video-card__heading {
  margin: 0;
  padding: clamp(1.55rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.85rem) 0.55rem;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #173d5a;
  background: none !important;
  border: none !important;
}

/* Obsolete library strip — hide (duplicate of featured title; caused blue band clutter) */
main.page.gh-tier-page.passing-page .passing-video-card__subheading {
  display: none !important;
}

main.page.gh-tier-page.passing-page .passing-video-card__body {
  padding: clamp(1.25rem, 2.8vw, 1.75rem) clamp(1.15rem, 2.8vw, 1.75rem) clamp(1.45rem, 3vw, 1.85rem);
}

/* Featured row: landscape video | readable copy (never a ~200px text strip) */
.passing-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.passing-featured__media {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.passing-featured__copy {
  min-width: 0;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.passing-featured__title {
  margin: 0;
  width: 100%;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  color: #173d5a;
}

.passing-featured__text {
  margin: 0;
  width: 100%;
  max-width: none;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  line-height: 1.72;
  color: #595348;
  overflow-wrap: break-word;
  word-break: normal;
}

.passing-featured__copy .passing-youtube-btn {
  align-self: flex-start;
  position: static;
  float: none;
  margin: 0.15rem 0 0;
}

main.page.gh-tier-page.passing-page .passing-video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #0a1628;
  border: 1px solid rgba(108, 74, 46, 0.22);
  filter: none !important;
  -webkit-filter: none !important;
  isolation: isolate;
}

main.page.gh-tier-page.passing-page .passing-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

main.page.gh-tier-page.passing-page .passing-youtube-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  cursor: pointer;
  padding: 0.6rem 1.4rem;
  min-height: 44px;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1.5px solid rgba(47, 113, 148, 0.55);
  background: rgba(254, 249, 240, 0.95);
  color: #173d5a;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  position: static !important;
  float: none !important;
  transform: none !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

main.page.gh-tier-page.passing-page .passing-youtube-btn:hover {
  background: rgba(139, 107, 69, 0.1);
  border-color: rgba(47, 113, 148, 0.75);
}

/* Library grid — 3 / 2 / 1 (CSS only; JS click/YouTube unchanged) */
main.page.gh-tier-page.passing-page .passing-library {
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(120, 85, 55, 0.16);
  text-align: center;
}

main.page.gh-tier-page.passing-page .passing-library__heading {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Baskerville, Georgia, serif;
  color: #173d5a;
  font-size: 1.08rem;
  font-weight: 600;
}

main.page.gh-tier-page.passing-page .passing-library__intro {
  margin: 0 auto 1rem;
  font-size: 0.92rem;
  color: #5c6358;
  line-height: 1.55;
  max-width: 560px;
}

main.page.gh-tier-page.passing-page .passing-library__grid {
  display: grid;
  /* Wide desktop: 4 across */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  max-height: none;
  overflow: visible;
  padding: 0.15rem 0 0.25rem;
  width: 100%;
}

main.page.gh-tier-page.passing-page .passing-library__item {
  border: 1px solid rgba(108, 74, 46, 0.28);
  border-radius: 8px;
  background: rgba(254, 249, 240, 0.88);
  cursor: pointer;
  padding: 0.4rem 0.45rem 0.5rem;
  text-align: left;
  color: #424A36;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

main.page.gh-tier-page.passing-page .passing-library__item:hover {
  border-color: rgba(108, 74, 46, 0.5);
  background: #fff;
}

main.page.gh-tier-page.passing-page .passing-library__item--active {
  border-color: #8f9a7c;
  background: rgba(47, 113, 148, 0.08);
  box-shadow: 0 1px 6px rgba(47, 113, 148, 0.1);
}

main.page.gh-tier-page.passing-page .passing-library__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  background: #E7D8C1;
  filter: none !important;
  -webkit-filter: none !important;
}

main.page.gh-tier-page.passing-page .passing-library__title {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Disclaimer + return — quiet note, not a card */
main.page.gh-tier-page.passing-page .passing-disclaimer {
  position: relative;
  overflow: visible;
  margin: 28px auto 24px;
  max-width: 760px;
  width: 100%;
  padding: 0 !important;
  text-align: center;
  border-radius: 0 !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

main.page.gh-tier-page.passing-page .passing-disclaimer__text {
  margin: 0 auto;
  font-size: 0.78rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  color: rgba(70, 78, 76, 0.62);
  text-align: center;
  max-width: 42rem;
}
}

main.page.gh-tier-page.passing-page .passing-return-btn {
  display: inline-block;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  font: inherit;
  cursor: pointer;
  padding: 0.65rem 1.35rem;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #2a4f6e;
  background: #2a4f6e;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

main.page.gh-tier-page.passing-page .passing-return-btn:hover {
  background: #1f3f5c;
  border-color: #1f3f5c;
}

main.page.gh-tier-page.passing-page .gh-tier-actions {
  text-align: center;
  margin: 0 0 0.5rem !important;
}

/* ----- 8. Responsive ----- */
@media (max-width: 1200px) {
  main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .passing-featured {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 1fr);
  }
}

@media (max-width: 900px) {
  main.page.gh-tier-page.passing-page .passing-wrap {
    padding: 0;
  }

  /* Tablet: 2 across */
  main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-height: none;
    overflow: visible;
  }

  main.page.gh-tier-page.passing-page .passing-video-card {
    outline-offset: -0.45rem;
  }

  main.page.gh-tier-page.passing-page .gh-home-corner-accents {
    inset: 0.65rem;
    opacity: 0.48;
  }

  .passing-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .passing-featured__copy {
    align-items: center;
  }

  .passing-featured__copy .passing-youtube-btn {
    align-self: center;
  }

  .passing-featured__text {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }

  .passing-botanicals__left,
  .passing-botanicals__right {
    width: clamp(5.5rem, 18vw, 9rem);
    opacity: 0.28;
  }
}

@media (max-width: 767px) {
  main.page.gh-tier-page.passing-page .passing-wrap {
    padding: 0;
  }

  main.page.gh-tier-page.passing-page h1.gh-tier-headline,
  main.page.gh-tier-page.passing-page h1.gh-tier-script-title {
    font-size: clamp(2.45rem, 11vw, 3.4rem) !important;
  }

  main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    max-height: none;
  }

  main.page.gh-tier-page.passing-page .passing-library__title {
    font-size: 0.8rem;
  }

  .passing-botanicals__left {
    left: -2.75rem;
    width: 6.5rem;
    opacity: 0.22;
  }

  .passing-botanicals__right {
    right: -2.75rem;
    width: 6.25rem;
    opacity: 0.18;
  }
}

@media (max-width: 520px) {
  /* Mobile: 1 across */
  main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
}

/* ========================================================================
   Tablet / mobile — library + wrap only (hero heights from Hero Standard)
   ======================================================================== */
@media (max-width: 1024px) {
  html body.passing-body main.page.gh-tier-page.passing-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: clip;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-scene {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    margin: 0 !important;
    top: auto !important;
    overflow: visible !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-scene .gh-tier-hero {
    position: relative !important;
    inset: auto !important;
    width: min(94%, 38rem) !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin-inline: auto !important;
    overflow: visible !important;
    transform: none !important;
    text-align: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-scene .gh-tier-hero > * {
    max-width: 100%;
    transform: none !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    max-height: none !important;
    overflow: visible !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .passing-library__item,
  html body.passing-body main.page.gh-tier-page.passing-page .passing-library__title {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 767px) {
  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-eyebrow {
    margin-top: 0 !important;
    font-size: clamp(0.88rem, 3.9vw, 1rem) !important;
    line-height: 1.45 !important;
  }

  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-headline,
  html body.passing-body main.page.gh-tier-page.passing-page .gh-tier-script-title {
    font-size: clamp(2.75rem, 12.5vw, 3.8rem) !important;
    line-height: 0.98 !important;
  }

  /* Keep 2-up through phone-landscape / half-desktop; 1-up only ≤520 */
  html body.passing-body main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 520px) {
  html body.passing-body main.page.gh-tier-page.passing-page .passing-library__grid {
    grid-template-columns: 1fr !important;
    gap: 0.7rem;
  }
}

/* ========================================================================
   20260802 — Grace Harbor Hero Standard (terminal) — Passing Conversations
   Match Footing / Strength / Restoring Your Horizon: title on photo,
   soft parchment fade, intro BELOW hero. Frame lighthouse + bench.
   ======================================================================== */
/* Site nav only — never bare `header` (matches <header class="gh-tier-hero">) */
body.passing-body .header,
body.passing-body .site-header,
body.passing-body header.header {
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: #fffdfb !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body.passing-body .header::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
body.passing-body main.page,
body.passing-body main {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background: transparent !important;
}
main.page.passing-page.gh-tier-page {
  padding: 0 !important;
  padding-top: 0 !important;
  background: #f4e6d4;
  min-height: 70vh;
}
body.passing-body .gh-tier-scene__coast { display: none !important; opacity: 0 !important; }
body.passing-body .gh-tier-scene__wash {
  inset: 0 !important;
  top: 0 !important;
  background: transparent !important;
  background-image: none !important;
}
body.passing-body .gh-tier-scene,
body.passing-body .gh-tier-hero-band,
body.passing-body .gh-tier-wrap {
  border: none !important;
  border-top: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  background-color: transparent !important;
}
/* Kill cream/white title panel on hero <header> (was painted by bare `header` rule) */
body.passing-body main.page.passing-page .gh-tier-hero,
body.passing-body main.page.passing-page .gh-tier-hero-band,
body.passing-body main.page.passing-page .gh-tier-hero-band--compact,
main.page.gh-tier-page.passing-page .gh-tier-hero,
main.page.passing-page.gh-tier-page .gh-tier-hero {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
/* Divider + center dot — hide on Passing only (other tiers already hide via layout) */
body.passing-body main.page.passing-page .gh-tier-divider,
body.passing-body main.page.passing-page .gh-tier-divider__line,
body.passing-body main.page.passing-page .gh-tier-divider__mark,
main.page.gh-tier-page.passing-page .gh-tier-hero .gh-tier-divider,
main.page.passing-page.gh-tier-page .gh-tier-hero .gh-tier-divider,
main.page.gh-tier-page.passing-page .gh-tier-divider::before,
main.page.gh-tier-page.passing-page .gh-tier-divider::after,
main.page.gh-tier-page.passing-page h1.gh-tier-script-title::after,
main.page.passing-page.gh-tier-page h1.gh-tier-script-title::after {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
body.passing-body .gh-tier-scene__photo,
main.page.gh-tier-page.passing-page .gh-tier-scene__photo,
main.page.passing-page.gh-tier-page .gh-tier-scene__photo {
  inset: auto !important;
  left: 0 !important;
  right: 0 !important;
  top: -32px !important;
  bottom: 0 !important;
  height: calc(100% + 32px) !important;
  margin-top: 0 !important;
  background-size: cover !important;
  /* Must beat shared footing photo rule (center 52%) without editing that shared file */
  background-position: center 58% !important; /* keep bench + shoreline in frame */
}
main.page.passing-page.gh-tier-page .gh-tier-eyebrow {
  text-transform: uppercase !important;
  font-size: 1.288rem !important;
  letter-spacing: 0.07em !important;
}
main.page.passing-page.gh-tier-page h1.gh-tier-script-title {
  font-size: clamp(3.57rem, 10.93vw, 6.04rem) !important;
}
/* Scene tall enough for harbor porch subjects; not a full-viewport blank */
main.page.passing-page.gh-tier-page .gh-tier-scene {
  min-height: clamp(640px, 72vh, 920px) !important;
}
main.page.passing-page.gh-tier-page .gh-tier-hero-band,
main.page.passing-page.gh-tier-page .gh-tier-hero-band--compact {
  min-height: clamp(360px, 48vh, 560px) !important;
}
/* Soft tuck into parchment — same family as approved tiers */
main.page.passing-page.gh-tier-page .gh-tier-body {
  margin-top: -72px !important;
  padding-top: 110px !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
  main.page.passing-page.gh-tier-page .gh-tier-eyebrow { font-size: 1.173rem !important; }
  main.page.passing-page.gh-tier-page h1.gh-tier-script-title {
    font-size: clamp(3.05rem, 9.2vw, 4.43rem) !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-scene {
    min-height: clamp(560px, 66vh, 780px) !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-hero-band,
  main.page.passing-page.gh-tier-page .gh-tier-hero-band--compact {
    padding-top: calc(max(6.75rem, 7vh + 4rem)) !important;
    min-height: clamp(320px, 46vh, 500px) !important;
    padding-bottom: 2.35rem !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-hero { transform: none !important; }
  body.passing-body .gh-tier-scene__photo,
  main.page.gh-tier-page.passing-page .gh-tier-scene__photo,
  main.page.passing-page.gh-tier-page .gh-tier-scene__photo {
    background-position: center 56% !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-body {
    margin-top: -64px !important;
    padding-top: 96px !important;
  }
}
@media (max-width: 767px) {
  main.page.passing-page.gh-tier-page .gh-tier-scene {
    min-height: clamp(480px, 62vh, 640px) !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-hero-band,
  main.page.passing-page.gh-tier-page .gh-tier-hero-band--compact {
    padding-top: calc(max(5.75rem, 6vh + 3.5rem)) !important;
    min-height: clamp(280px, 42vh, 420px) !important;
    padding-bottom: 2rem !important;
  }
  /* Bias toward bench / shoreline on narrow screens */
  body.passing-body .gh-tier-scene__photo,
  main.page.gh-tier-page.passing-page .gh-tier-scene__photo {
    background-position: 62% 52% !important;
  }
  main.page.passing-page.gh-tier-page .gh-tier-body {
    margin-top: -64px !important;
    padding-top: 96px !important;
  }
}
@media (min-width: 1200px) {
  main.page.passing-page.gh-tier-page .gh-tier-scene {
    min-height: 860px !important;
  }
  body.passing-body .gh-tier-scene__photo,
  main.page.gh-tier-page.passing-page .gh-tier-scene__photo,
  main.page.passing-page.gh-tier-page .gh-tier-scene__photo {
    top: -32px !important;
    height: calc(100% + 32px) !important;
    background-position: center 58% !important;
  }
}
@media (min-width: 1400px) {
  main.page.passing-page.gh-tier-page .gh-tier-scene {
    min-height: 920px !important;
  }
}

/* ========================================================================
   20260803 — Full-page layout repair (Passing only)
   Causes verified:
   - White hero panel: shared .gh-tier-hero::before cream scrim + former bare
     `header` cream (nav now scoped to header.header)
   - Narrow ~600px library: .gh-tier-wrap max-width:1000px + .passing-wrap 90%
     + featured grid minmax(0,24rem)/1fr leaving ~212px copy column
   - Compressed grid: 3-col inside 626px + max-height scroll box
   - Pill YouTube control looked detached in the squeezed copy column
   ======================================================================== */

/* Kill soft cream mist panel behind hero title (Passing only) */
main.page.gh-tier-page.passing-page .gh-tier-hero::before,
main.page.passing-page.gh-tier-page .gh-tier-hero::before,
body.passing-body main.page.passing-page .gh-tier-hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  filter: none !important;
}

/* Beat any residual bare-header cream on the hero title wrapper */
body.passing-body header.gh-tier-hero,
body.passing-body main header.gh-tier-hero {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Widen content plane past gh-tier-layout 1000px wrap (Passing only) */
main.page.gh-tier-page.passing-page .gh-tier-wrap {
  max-width: min(1320px, calc(100vw - 48px)) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 2.5vw, 1.75rem) !important;
  padding-right: clamp(1rem, 2.5vw, 1.75rem) !important;
  box-sizing: border-box !important;
}

main.page.gh-tier-page.passing-page .gh-tier-scene__inner {
  max-width: min(48rem, 100%) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

/* Desktop breakout — match Footing/Strength outer card width family */
@media (min-width: 1025px) {
  main.page.gh-tier-page.passing-page .passing-video-card {
    width: min(1320px, calc(100vw - 64px)) !important;
    max-width: none !important;
    margin-left: calc(50% - min(660px, calc(50vw - 32px))) !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  main.page.gh-tier-page.passing-page .passing-video-card__body {
    padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.55rem, 3vw, 2rem) !important;
  }

  .passing-featured {
    grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 1fr) !important;
  }
}

/* Prevent going-forward mobile card side-squeeze */
@media (max-width: 767px) {
  main.page.passing-page .gh-tier-card,
  main.page.passing-page .passing-video-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  main.page.gh-tier-page.passing-page .passing-video-card__body {
    padding: 1.1rem 0.95rem 1.25rem !important;
  }

  .passing-featured__text {
    max-width: none !important;
  }

  main.page.gh-tier-page.passing-page .passing-youtube-btn {
    white-space: normal;
  }
}

/* Intro stays on parchment (no white field) */
main.page.gh-tier-page.passing-page .gh-tier-chapter-intro,
main.page.gh-tier-page.passing-page .gh-tier-chapter-intro__title,
main.page.gh-tier-page.passing-page .gh-tier-chapter-intro__text {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Library readability */
main.page.gh-tier-page.passing-page .passing-library__intro {
  max-width: 42rem;
}

main.page.gh-tier-page.passing-page .passing-library__title {
  font-size: 0.86rem;
  -webkit-line-clamp: 3;
}

main.page.gh-tier-page.passing-page .passing-library__item {
  padding: 0.5rem 0.55rem 0.6rem;
}

/* Half-screen / narrow desktop: stack feature before copy collapses */
@media (max-width: 1024px) {
  .passing-featured {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .passing-featured__copy {
    align-items: center;
  }

  .passing-featured__copy .passing-youtube-btn {
    align-self: center;
  }
}
