/* ================================================
   ST LUKE'S — INNER PAGE STYLES
   ================================================ */

/* Page hero */
.page-hero {
  position: relative;
  padding: 160px 0 150px;
  overflow: hidden;

  /* Photo fills the banner — stays fixed while page scrolls */
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  /* Fallback solid colour shows beneath the image */
  background-color: var(--hero-color, #96AA9A);
}

/* Gradient overlay so text is always readable */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(94,113,139,0.72) 0%,
    rgba(150,170,154,0.55) 100%
  );
  z-index: 1;
}

/* Curved bottom edge */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 44px;
  background: #faf8f6;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* All children sit above the overlays */
.page-hero .container {
  position: relative;
  z-index: 3;
}

/* Fixed attachment doesn't render well on iOS — fall back to scroll */
@media (max-width: 768px) {
  .page-hero {
    background-attachment: scroll;
    padding: 100px 0 90px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #fff; }

.breadcrumb span { color: rgba(255,255,255,0.5); }

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.page-hero-sub {
  font-size: 1.23rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  line-height: 1.65;
}

/* Main content area */
.page-main {
  background: var(--bg-warm, #faf8f6);
  min-height: 60vh;
  padding: 64px 0 80px;
}


/* Prose content */
.prose {
  max-width: 720px;
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--slate, #4a5568);
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--green, #96AA9A);
  padding: 16px 24px;
  margin: 2rem 0;
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.prose blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  font-style: normal;
  color: var(--slate-light, #718096);
}

/* ── Vision & Values layout ── */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}

.vision-divider {
  background: var(--border, #ede9e4);
  align-self: stretch;
}

.vision-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--slate, #5E718B);
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.vision-body {
  font-size: 1.17rem;
  line-height: 1.85;
  color: var(--text-soft, #7a6e68);
  margin-bottom: 28px;
}

.vision-quote {
  border-left: 3px solid var(--sage, #96AA9A);
  padding: 16px 24px;
  margin: 0;
}

.vision-quote p {
  font-size: 1.23rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--slate, #5E718B);
  margin-bottom: 12px;
}

.vision-quote cite {
  font-size: 0.99rem;
  font-style: normal;
  color: var(--text-soft, #7a6e68);
}

.vision-values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vision-values-list li {
  font-size: clamp(1.29rem, 2.34vw, 1.64rem);
  font-weight: 600;
  color: var(--text-soft, #7a6e68);
  display: flex;
  align-items: center;
  gap: 14px;
}

.vision-values-list li svg {
  color: var(--sage, #96AA9A);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vision-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision-divider { height: 1px; width: 100%; }
}

/* ── Values detail ── */
.values-detail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 48px 0 60px;
  border-top: 1px solid var(--border, #ede9e4);
}

.values-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-warm, #faf8f6);
  border: 1px solid var(--border, #ede9e4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage, #96AA9A);
  margin-bottom: 16px;
}

.values-detail-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate, #5E718B);
  margin-bottom: 10px;
}

.values-detail-item p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft, #7a6e68);
}

/* ── Strategy section ── */
.strategy-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0 60px;
  border-top: 1px solid var(--border, #ede9e4);
  justify-items: end;
  justify-content: end;
}

.strategy-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate, #5E718B);
  margin-bottom: 10px;
  line-height: 1.4;
}

.strategy-item h3 span {
  font-weight: 400;
  color: var(--text-soft, #7a6e68);
}

.strategy-item p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft, #7a6e68);
}

.strategy-item {
  background: var(--sage, #96AA9A);
  border-radius: 12px;
  padding: 24px;
}

.strategy-item h3 {
  color: #fff;
}

.strategy-item h3 span {
  color: rgba(255,255,255,0.8);
}

.strategy-item p {
  color: rgba(255,255,255,0.85);
}


@media (max-width: 1024px) {
  .values-detail { grid-template-columns: repeat(3, 1fr); }
  .strategy-detail { grid-template-columns: repeat(2, 1fr); justify-content: end; }
}

@media (max-width: 768px) {
  .values-detail { grid-template-columns: 1fr; }
}

/* Placeholder (removed once content added) */
.content-placeholder {
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #ede9e4;
  padding: 80px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-placeholder h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #5E718B;
  margin-bottom: 10px;
}

.content-placeholder p {
  color: #7a6e68;
  font-size: 1.11rem;
  line-height: 1.65;
}
