/* ─── Page hero override ─── */
.page-hero-body { max-width: 520px; }

/* ─── WHO WE ARE ─── */
#who-we-are {
  padding: 160px 0;
  background: var(--bg);
}
.wwa-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.wwa-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
}
.wwa-header h2 em { color: var(--red); font-style: italic; }
.wwa-header p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }
.wwa-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.wwa-pillar {
  background: var(--bg);
  padding: 56px 48px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.wwa-pillar:hover { background: var(--surface); }
.wwa-pillar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.wwa-pillar:hover::after { transform: scaleX(1); }
.wwa-pillar-img {
  aspect-ratio: 16/9; overflow: hidden; margin-bottom: 40px;
  position: relative;
}
.wwa-pillar-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) brightness(0.75);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.wwa-pillar:hover .wwa-pillar-img img { transform: scale(1.04); filter: grayscale(20%) brightness(0.85); }
.wwa-pillar-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.wwa-pillar:hover .wwa-pillar-icon { border-color: var(--red); background: var(--red-glow); }
.wwa-pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 16px; line-height: 1.25;
}
.wwa-pillar p {
  font-size: 0.95rem; line-height: 1.75; color: var(--muted); flex: 1;
}
.wwa-pillar-num {
  font-family: var(--serif);
  font-size: 5rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.15);
  position: absolute; top: 16px; right: 20px;
  user-select: none; line-height: 1;
}

/* ─── WHAT WE DO (About page) ─── */
#what-we-do {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#what-we-do::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.wwd-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 48px;
}
.wwd-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3rem);
  font-weight: 500; letter-spacing: -0.02em;
  max-width: 520px; line-height: 1.05;
}
.wwd-header h2 em { color: var(--red); font-style: italic; }
.wwd-header p {
  max-width: 380px;
  font-size: 1rem; line-height: 1.75; color: var(--muted);
}
.wwd-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.wwd-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
  display: flex; flex-direction: column;
}
.wwd-card:hover { background: var(--surface2); }
.wwd-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.wwd-card:hover::after { transform: scaleX(1); }
.wwd-card-num {
  font-family: var(--serif);
  font-size: 0.9rem; font-weight: 600; color: var(--red);
  letter-spacing: 0.1em; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.wwd-card-num::after {
  content: ''; display: block; flex: 1; height: 1px; background: var(--border);
}
.wwd-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.wwd-card:hover .wwd-card-icon { border-color: var(--red); background: var(--red-glow); }
.wwd-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 16px; line-height: 1.25; color: var(--text);
}
.wwd-card p {
  font-size: 0.92rem; line-height: 1.75; color: var(--muted); flex: 1;
}

/* ─── WHAT TO EXPECT ─── */
#what-to-expect {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
#what-to-expect::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.wte-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.wte-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3rem);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
}
.wte-header h2 em { color: var(--red); font-style: italic; }
.wte-header p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }
.wte-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.wte-item {
  background: var(--surface);
  padding: 48px;
  display: grid; grid-template-columns: 48px 1fr;
  gap: 40px; align-items: flex-start;
  transition: background 0.3s ease;
}
.wte-item:hover { background: var(--surface2); }
.wte-item-num {
  font-family: var(--serif);
  font-size: 3rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.35);
  line-height: 1; flex-shrink: 0;
  text-align: center;
}
.wte-item-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 16px; line-height: 1.25; color: var(--text);
}
.wte-item-body > p {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 20px;
}
.wte-bullets {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
}
.wte-bullet {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.wte-bullet:last-child { border-bottom: none; }
.wte-bullet:hover { background: var(--bg); }
.wte-bullet::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 16px; height: 1px; background: var(--red);
  margin-top: 10px;
}
.wte-bullet p { font-size: 0.92rem; line-height: 1.65; color: var(--muted); }

/* ─── RUN. ACQUIRE. GROW. BAND ─── */
#rag-band {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#rag-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
#rag-band::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.rag-headline {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}
.rag-headline .section-label {
  justify-content: center;
  margin-bottom: 32px;
}
.rag-headline blockquote {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
}
.rag-headline blockquote em { color: var(--red); font-style: italic; }
.rag-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.rag-col {
  background: var(--bg);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.rag-col:hover { background: var(--surface2); }
.rag-col::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.rag-col:hover::after { transform: scaleX(1); }
.rag-col-word {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  line-height: 1;
  transition: -webkit-text-stroke-color 0.35s ease;
  user-select: none;
  letter-spacing: -0.02em;
}
.rag-col:hover .rag-col-word { -webkit-text-stroke-color: rgba(200,33,59,0.4); }
.rag-col-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.rag-col:hover .rag-col-icon {
  border-color: var(--red); color: var(--red); background: var(--red-glow);
}
.rag-col h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text); margin: 0;
}
.rag-col p {
  font-size: 0.95rem; line-height: 1.75; color: var(--muted); flex: 1;
}
.rag-col-tag {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.8;
}
.rag-col-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.rag-col-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.55) contrast(1.2); transition: transform 0.6s ease, filter 0.5s ease; }
.rag-col:hover .rag-col-img img { transform: scale(1.05); filter: grayscale(70%) brightness(0.65) contrast(1.2); }

/* ─── EXCELLENCE / STATS ─── */
#excellence {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#excellence::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.exc-header {
  text-align: center;
  margin-bottom: 80px;
}
.exc-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.exc-header h2 em { color: var(--red); font-style: italic; }
.exc-header p {
  font-size: 1.05rem; line-height: 1.8; color: var(--muted);
  max-width: 600px; margin: 0 auto;
}
.exc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}
.exc-grid-row2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}
.exc-stat {
  background: var(--surface2);
  padding: 56px 48px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: background 0.3s ease;
  position: relative; overflow: hidden;
}
.exc-stat:hover { background: var(--bg); }
.exc-stat-img {
  width: 48px; height: 48px; margin-bottom: 28px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.exc-stat:hover .exc-stat-img { border-color: var(--red); background: var(--red-glow); }
.exc-stat-num {
  font-family: var(--serif);
  font-size: 3.2rem; font-weight: 700;
  line-height: 1; color: var(--text); margin-bottom: 6px;
}
.exc-stat-num span { color: var(--red); }
.exc-stat-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px; font-weight: 500;
}
.exc-stat-desc {
  font-size: 0.88rem; line-height: 1.65; color: var(--muted);
}
.exc-stat-bg-num {
  font-family: var(--serif);
  font-size: 6rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.08);
  position: absolute; bottom: -12px; right: 16px;
  user-select: none; line-height: 1;
}

/* ─── CTA ─── */
#cta {
  padding: 160px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cta-bg-text {
  position: absolute; bottom: -20px; left: -20px;
  font-family: var(--serif);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.25);
  white-space: nowrap;
  user-select: none; pointer-events: none; line-height: 1;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.cta-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.cta-left h2 em { color: var(--red); font-style: italic; }
.cta-left p { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.cta-right {
  display: flex; flex-direction: column; gap: 20px;
  padding-left: 60px;
  border-left: 1px solid var(--border);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-item:hover { border-color: rgba(200,33,59,0.3); background: var(--red-glow); }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.contact-item-text .label {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-item-text .value { font-size: 1rem; color: var(--text); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

/* ─── Responsive (about-specific) ─── */
@media (max-width: 1100px) {
  #who-we-are, #what-we-do, #what-to-expect, #excellence, #cta { padding: 120px 0; }
  #rag-band { padding: 120px 0; }
  .rag-headline { margin-bottom: 56px; }
  .wwa-header, .wte-header { grid-template-columns: 1fr; gap: 32px; }
  .wwd-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .reveal-bottom-left {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) scale(1) !important;
  }
}
@media (max-width: 768px) {
  #who-we-are, #what-we-do, #what-to-expect, #excellence, #cta { padding: 80px 0; }
  #rag-band { padding: 80px 0; }
  .rag-cols { grid-template-columns: 1fr; }
  .rag-col { padding: 40px 32px; }
  .wwa-pillars { grid-template-columns: 1fr; }
  .wwd-grid { grid-template-columns: 1fr 1fr; }
  .exc-grid, .exc-grid-row2 { grid-template-columns: 1fr 1fr; }
  .wte-item { grid-template-columns: 1fr; gap: 20px; padding: 32px; }
  .wte-item-num { font-size: 2rem; }
}
@media (max-width: 480px) {
  #who-we-are, #what-we-do, #what-to-expect, #excellence, #cta { padding: 60px 0; }
  #rag-band { padding: 60px 0; }
  .rag-col { padding: 32px 24px; }
  .rag-col-word { font-size: 3rem; }
  .page-hero-content { padding-top: 88px; }
  .wwd-grid { grid-template-columns: 1fr; }
  .exc-grid, .exc-grid-row2 { grid-template-columns: 1fr; }
  .exc-stat { padding: 36px 28px; }
  .exc-stat-num { font-size: 2.4rem; }
}
