/* =========================================
   SHOHRE SESSIONS PAGE
   ========================================= */

/* ── HERO ── */
.sh-hero {
  background: var(--cream);
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

.sh-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0 4rem;
  align-items: center;
  padding: 4rem 2.5rem 0;
}

.sh-hero-text { padding-bottom: 3rem; }

.sh-hero-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.sh-hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.sh-hero-role {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.sh-hero-intro {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.3vw, 0.97rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 500px;
  margin-bottom: 2.4rem;
  letter-spacing: 0.03em;
}

.sh-hero-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sh-hero-nav-btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.28s ease;
}

.sh-hero-nav-btn--primary {
  background: var(--forest);
  color: var(--cream);
}
.sh-hero-nav-btn--primary:hover { background: var(--ink); }

.sh-hero-nav-btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(61,30,29,0.25);
}
.sh-hero-nav-btn--secondary:hover {
  background: rgba(61,30,29,0.05);
  border-color: rgba(61,30,29,0.45);
}

/* Photo column */
.sh-hero-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: end;
}

.sh-hero-arch {
  width: 340px;
  height: 440px;
  overflow: hidden;
  border-radius: 170px 170px 0 0;
  position: relative;
}

.sh-hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}


/* ── OFFERING SECTIONS ── */
.sh-offering {
  padding: 6rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.sh-offering--light { background: var(--cream); }

.sh-offering--dark {
  background: var(--forest);
  color: var(--cream);
}

.sh-offering-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section header */
.sh-offering-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
  padding: 5px 14px;
  border: 1px solid rgba(122,21,21,0.3);
  border-radius: var(--radius-full);
}

.sh-offering--dark .sh-offering-eyebrow {
  color: rgba(195,162,145,0.85);
  border-color: rgba(195,162,145,0.30);
}

.sh-offering-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.sh-offering--dark .sh-offering-title { color: var(--cream); }

.sh-offering-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

.sh-offering--dark .sh-offering-tagline { color: #c3a291; }

.sh-offering-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 1.2rem 0 2rem;
}

.sh-offering--dark .sh-offering-rule {
  background: rgba(195,162,145,0.55);
  opacity: 1;
}

.sh-intro-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}

.sh-offering--dark .sh-intro-text { color: rgba(250,248,239,0.78); }


/* ── SUBSECTIONS ── */
.sh-subsection { margin-bottom: 3rem; }

.sh-subsection-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}

.sh-offering--dark .sh-subsection-title { color: var(--cream); }

.sh-subsection-text {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.3vw, 0.97rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  margin-bottom: 1.6rem;
}

.sh-offering--dark .sh-subsection-text { color: rgba(250,248,239,0.75); }


/* ── PILLAR CARDS ── */
.sh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.sh-pillar {
  padding: 1.5rem 1.25rem;
  border-radius: 8px;
  border-top: 2px solid var(--gold);
}

.sh-offering--light .sh-pillar {
  background: var(--cream-dark);
}

.sh-offering--dark .sh-pillar {
  background: rgba(250,248,239,0.06);
  border-top-color: rgba(195,162,145,0.55);
}

.sh-pillar-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.sh-offering--dark .sh-pillar-name { color: #c3a291; }

.sh-pillar-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.sh-offering--dark .sh-pillar-desc { color: rgba(250,248,239,0.68); }


/* ── TWO-COL LISTS ── */
.sh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0 2rem;
}

.sh-list-block-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.sh-offering--dark .sh-list-block-title { color: rgba(195,162,145,0.75); }

.sh-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sh-check-list li {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  padding-left: 1.4rem;
  position: relative;
  letter-spacing: 0.02em;
}

.sh-offering--dark .sh-check-list li { color: rgba(250,248,239,0.75); }

.sh-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.sh-offering--dark .sh-check-list li::before { background: rgba(195,162,145,0.7); }

/* Single full-width list */
.sh-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sh-bullet-list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-mid);
  padding-left: 1.5rem;
  position: relative;
  letter-spacing: 0.02em;
}

.sh-offering--dark .sh-bullet-list li { color: rgba(250,248,239,0.75); }

.sh-bullet-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}

.sh-offering--dark .sh-bullet-list li::before { color: rgba(195,162,145,0.7); }


/* ── PHILOSOPHY QUOTE ── */
.sh-philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,239,0.88);
  line-height: 1.65;
  border-left: 2px solid rgba(195,162,145,0.45);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}


/* ── CTA BUTTON ── */
.sh-offering-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.28s ease;
}

.sh-offering--light .sh-offering-cta {
  background: var(--forest);
  color: var(--cream);
}
.sh-offering--light .sh-offering-cta:hover { background: var(--ink); }

.sh-offering--dark .sh-offering-cta {
  background: var(--cream);
  color: var(--forest);
}
.sh-offering--dark .sh-offering-cta:hover {
  background: rgba(250,248,239,0.88);
}


/* ── CLOSING CTA ── */
.sh-closing {
  background: var(--cream);
  padding: 5rem 2.5rem 6rem;
  text-align: center;
}

.sh-closing-inner {
  max-width: 560px;
  margin: 0 auto;
}

.sh-closing-leaf {
  width: 38px;
  margin: 0 auto 1.6rem;
  opacity: 0.5;
}
.sh-closing-leaf svg { width: 100%; height: auto; }

.sh-closing-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin: 0.5rem 0 1.2rem;
}

.sh-closing-heading em {
  font-style: italic;
  color: var(--forest);
}

.sh-closing-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.sh-closing-btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.28s ease;
}
.sh-closing-btn:hover { background: var(--ink); }

.sh-back-link {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sh-back-link:hover { color: var(--forest); }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sh-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }

  .sh-hero-text { padding-bottom: 0; }

  .sh-hero-intro { margin-left: auto; margin-right: auto; }

  .sh-hero-nav { justify-content: center; }

  .sh-hero-photo-col { margin-top: 2.5rem; }

  .sh-hero-arch {
    width: 280px;
    height: 360px;
    border-radius: 140px 140px 0 0;
  }

  .sh-pillars { grid-template-columns: 1fr; }

  .sh-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .sh-offering { padding: 4rem 1.5rem 4rem; }
  .sh-closing { padding: 4rem 1.5rem 5rem; }
  .sh-hero-inner { padding: 3rem 1.5rem 0; }
}

/* ── ACTION PHOTO ── */
.sh-action-photo {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.sh-action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
