/* PAGE HERO */
.page-hero {
  background: var(--darkalt);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap);
  border-bottom: var(--gap) solid var(--dark);
  min-height: 420px;
}
.page-hero-left {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background: var(--darkalt); color: var(--cream);
}
/* Concentric circles decoration */
.page-hero-left::before {
  content: '';
  position: absolute; bottom: -120px; left: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(240,237,228,0.05);
  pointer-events: none;
}
.page-hero-left::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(240,237,228,0.08);
  pointer-events: none;
}
.page-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.page-title {
  font-size: clamp(48px, 5vw, 72px); font-weight: 900;
  line-height: 0.92; letter-spacing: -0.03em; color: var(--cream);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.page-title em { font-style: normal; color: var(--blue); }
.page-sub {
  font-size: 15px; line-height: 1.8; opacity: 0.5; max-width: 440px;
  position: relative; z-index: 1; color: var(--cream);
}
.page-hero-right {
  display: grid; grid-template-rows: 1fr 1fr; gap: var(--gap);
  background: var(--dark);
}
.hero-stat-blue {
  background: var(--blue); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--cream); text-align: center; padding: 40px 20px;
}
.hero-stat-dark {
  background: var(--dark); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--cream); text-align: center; padding: 40px 20px;
}

/* OPENING STATEMENT */
.opening {
  background: var(--dark);
  border-bottom: var(--gap) solid var(--dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap);
}
.opening-left {
  background: var(--cream); color: var(--dark);
  padding: 80px 60px;
}
.opening-left p {
  font-size: 17px; line-height: 1.9; opacity: 0.75; margin-bottom: 20px;
}
.opening-left p:first-of-type { font-size: 20px; font-weight: 600; opacity: 0.85; }
.opening-right {
  background: var(--dark); color: var(--cream);
  padding: 80px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.pull-quote {
  font-size: 26px; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.01em; color: var(--cream); margin-bottom: 20px;
}
.pull-quote em { font-style: normal; color: var(--yellow); }
.pull-attribution {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid);
}

/* JOURNEY TIMELINE */
.journey {
  background: var(--darkalt); color: var(--cream);
  border-bottom: var(--gap) solid var(--dark);
  padding: 80px 60px;
}
.journey-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 56px;
  display: flex; align-items: center; gap: 16px;
}
.journey-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(240,237,228,0.08);
}
.journey-entries { display: flex; flex-direction: column; gap: var(--gap); }
.j-entry {
  display: grid; grid-template-columns: 200px var(--gap) 1fr; gap: 0;
  align-items: stretch;
}
.j-era {
  padding: 32px 32px 32px 0;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.j-era-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
}
.j-era-title { font-size: 15px; font-weight: 800; line-height: 1.2; color: var(--cream); }
.j-entry:nth-child(1) .j-era-label { color: var(--mid); }
.j-entry:nth-child(2) .j-era-label { color: var(--mid); }
.j-entry:nth-child(3) .j-era-label { color: var(--red); }
.j-entry:nth-child(4) .j-era-label { color: var(--blue); }
.j-entry:nth-child(5) .j-era-label { color: var(--yellow); }
.j-line {
  width: var(--gap); background: rgba(240,237,228,0.1); position: relative;
}
.j-line::before {
  content: ''; position: absolute;
  top: 36px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cream); opacity: 0.3;
}
.j-entry:nth-child(3) .j-line::before { background: var(--red); opacity: 1; }
.j-entry:nth-child(4) .j-line::before { background: var(--blue); opacity: 1; }
.j-entry:nth-child(5) .j-line::before { background: var(--yellow); opacity: 1; }
.j-content { padding: 32px 0 32px 40px; }
.j-desc { font-size: 15px; line-height: 1.8; opacity: 0.6; max-width: 620px; }

/* PRACTICES */
.practices {
  background: var(--dark);
  border-bottom: var(--gap) solid var(--dark);
}
.practices-header {
  background: var(--blue); color: var(--cream);
  padding: 32px 52px 28px;
  border-bottom: var(--gap) solid var(--dark);
  display: flex; align-items: baseline; gap: 20px;
}
.practices-header h2 { font-size: 28px; font-weight: 900; }
.practices-header span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.55;
}
.practices-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
  background: var(--dark);
}
.p-tile {
  background: var(--cream); padding: 48px 36px; position: relative;
}
.p-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.p-tile:nth-child(1)::before { background: var(--blue); }
.p-tile:nth-child(2)::before { background: var(--yellow); }
.p-tile:nth-child(3)::before { background: var(--red); }
.p-tile:nth-child(4)::before { background: var(--dark); }
.p-mark { margin-bottom: 20px; }
.p-mark-square { width: 32px; height: 32px; }
.p-mark-circle { width: 32px; height: 32px; border-radius: 50%; }
.p-mark-triangle {
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid var(--red);
}
.p-title { font-size: 18px; font-weight: 900; margin-bottom: 10px; color: var(--dark); }
.p-desc { font-size: 14px; line-height: 1.7; opacity: 0.6; color: var(--dark); }

/* BUILDING */
.building {
  background: var(--dark); color: var(--cream);
  border-bottom: var(--gap) solid var(--dark);
}
.building-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--gap);
  background: var(--dark);
}
.b-sidebar {
  background: var(--yellow); color: var(--dark);
  padding: 56px 40px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.b-sidebar h2 { font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 16px; }
.b-sidebar p { font-size: 14px; line-height: 1.7; opacity: 0.65; }
.b-card { background: var(--darkalt); padding: 48px 36px; }
.b-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 14px;
}
.b-title { font-size: 22px; font-weight: 900; color: var(--cream); margin-bottom: 12px; }
.b-desc { font-size: 14px; line-height: 1.7; color: var(--cream); opacity: 0.55; margin-bottom: 20px; }
.b-link {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; color: var(--yellow);
}

/* MOBILE */
@media (max-width: 768px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-left { padding: 48px 24px; }
  .page-hero-right { grid-template-rows: auto auto; }
  .hero-stat-blue, .hero-stat-dark { padding: 28px 24px; }

  .opening { grid-template-columns: 1fr; }
  .opening-left { padding: 48px 24px; }
  .opening-left p { font-size: 15px; }
  .opening-right { padding: 48px 24px; }
  .pull-quote { font-size: 20px; }

  .journey { padding: 48px 24px; }
  .j-entry { grid-template-columns: 120px var(--gap) 1fr; }
  .j-content { padding: 24px 0 24px 24px; }

  .practices-header { padding: 24px; flex-wrap: wrap; gap: 8px; }
  .practices-header span { display: none; }
  .practices-grid { grid-template-columns: 1fr 1fr; }
  .p-tile { padding: 32px 24px; }

  .building-inner { grid-template-columns: 1fr; }
  .b-sidebar { padding: 36px 24px; }
  .b-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .practices-grid { grid-template-columns: 1fr; }
  .j-entry { grid-template-columns: 100px var(--gap) 1fr; }
}
