/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 0;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0;
}
.hero-video-item {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(40%) brightness(0.75) contrast(1.1);
  opacity: 0;
  transition: opacity 1.6s ease;
  pointer-events: none;
  display: block;
}
.hero-video-item.active { opacity: 1; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(200,33,59,0.22) 0%, transparent 55%),
    linear-gradient(to top,  rgba(8,8,9,0.88)   0%, transparent 60%),
    linear-gradient(to right, rgba(8,8,9,0.55)  0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 72% 38%, rgba(184,149,106,0.07) 0%, transparent 65%);
}
.hero-accent-line {
  position: absolute;
  top: 0; right: 18%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 5%, rgba(200,33,59,0.18) 40%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.22;
}
.hero-stat-badge {
  position: absolute;
  top: 120px; right: 60px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.2s forwards;
  z-index: 3;
}
.hero-stat-badge .badge-num {
  font-family: var(--serif);
  font-size: 3.6rem; font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.55);
  letter-spacing: -0.02em;
}
.hero-stat-badge .badge-label {
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.hero-stat-badge .badge-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to left, var(--red), transparent);
}
.hero-img-panel {
  position: absolute;
  top: 0; right: 0;
  width: 36vw; height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.6s forwards;
  z-index: 1;
}
.hero-img-panel::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: transparent;
}
.hero-img-panel img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: grayscale(50%) brightness(0.75) contrast(1.05);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 220px;
  padding-bottom: 60px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 820px;
}
.hero-title .line { display: block; }
.hero-title .line span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 1.2s; color: var(--white); }
.hero-title .line:nth-child(2) span { animation-delay: 1.35s; }
.hero-title .line:nth-child(3) span { animation-delay: 1.5s; }
.hero-title .red-italic { color: var(--red); font-style: italic; }
.hero-body {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}
.hero-scroll {
  position: absolute; bottom: 120px; left: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.4s forwards;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollDrop 1.4s ease-in-out infinite;
}
.hero-fast-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--border);
  opacity: 0;
  animation: fadeIn 0.5s ease 2.4s forwards;
}
.fast-tags {
  display: flex; gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.2s forwards;
  position: relative; z-index: 2;
}
.fast-tag {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--border);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  background: rgba(8,8,9,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fast-tag:hover { background: var(--surface); color: var(--text); }
.fast-tag:last-child { border-right: none; }
.fast-tag .tag-num { color: var(--red); font-weight: 500; }

/* ─── WHAT WE DO (About on homepage) ─── */
#about {
  padding: 160px 0;
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.5s ease;
  filter: grayscale(100%) brightness(0.55) contrast(1.2);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.wwd-placeholder { transition: opacity 0.7s ease; }
.wwd-placeholder.is-hidden { opacity: 0; }
.wwd-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.wwd-video.is-playing { opacity: 1; }
.about-accent-box {
  opacity: 1; transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0s;
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 28px;
}
.about-accent-box .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.about-accent-box .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}
.about-red-bar {
  position: absolute; top: 0; left: -12px;
  width: 3px; height: 80px;
  background: var(--red);
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.pillar {
  background: var(--bg);
  padding: 28px;
  transition: background 0.3s ease;
}
.pillar:hover { background: var(--surface); }
.pillar-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.pillar h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.stats-row {
  display: flex; gap: 48px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
  align-items: center;
  justify-content: space-around;
}
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.stat-item .stat-num span { color: var(--red); }
.stat-item .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── WHY US (Homepage Cards) ─── */
#why-us {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#why-us::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.why-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.why-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;
}
.why-header h2 em { color: var(--red); font-style: italic; }
.why-header-right p {
  font-size: 1.05rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 32px;
}
.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { background: var(--surface2); }
.why-card:hover::after { transform: scaleX(1); }
.why-card-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.2);
  line-height: 1;
  position: absolute; top: 16px; right: 24px;
  user-select: none;
}
.why-card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  color: var(--red);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover .why-card-icon {
  border-color: var(--red);
  background: var(--red-glow);
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}
.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── SERVICES ─── */
#services {
  padding: 160px 0;
  background: var(--bg);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 48px;
}
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 520px;
  line-height: 1.05;
}
.services-header p {
  max-width: 380px;
  font-size: 1rem; line-height: 1.75; color: var(--muted);
}
.service-accordion { display: flex; flex-direction: column; }
.service-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.service-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 0;
  cursor: pointer;
  gap: 20px;
}
.service-header:hover .service-title { color: var(--red); }
.service-left {
  display: flex; align-items: center; gap: 36px; flex: 1;
}
.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--red);
  min-width: 32px;
}
.service-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  line-height: 1.2;
}
.service-tags {
  display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap;
}
.service-tag {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.service-toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.service-toggle svg {
  transition: transform 0.4s ease;
  color: var(--muted);
}
.service-item.open .service-toggle {
  background: var(--red);
  border-color: var(--red);
}
.service-item.open .service-toggle svg {
  transform: rotate(45deg);
  color: #fff;
}
.service-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-body-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 0 0 48px 68px;
}
.service-desc p {
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 28px;
}
.service-features {
  display: flex; flex-direction: column; gap: 12px;
}
.feature-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; line-height: 1.65;
  color: var(--muted);
}
.feature-row::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 16px; height: 1px;
  background: var(--red);
  margin-top: 11px;
}
.service-image {
  aspect-ratio: 4/3; overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}
.service-item.open .service-image img { transform: scale(1.04); }

/* ─── CASE STUDIES ─── */
#case-studies {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#case-studies::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cs-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 80px;
}
.cs-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cs-header h2 em { color: var(--red); font-style: italic; }
.cs-header p { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}
.cs-grid-row2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}
.cs-card {
  background: var(--surface);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
  cursor: pointer;
}
.cs-card:hover { background: var(--surface2); }
.cs-card-image {
  aspect-ratio: 16/9; overflow: hidden; margin-bottom: 28px;
  position: relative;
}
.cs-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(40%) brightness(0.8);
}
.cs-card:hover .cs-card-image img { transform: scale(1.06); filter: grayscale(15%) brightness(0.9); }
.cs-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,9,0.5));
}
.cs-chip {
  display: inline-flex;
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--red);
  width: fit-content;
  margin-bottom: 16px;
}
.cs-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.cs-card .outcome {
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 24px;
}
.cs-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
  margin-top: auto;
  width: max-content;
}
.cs-card:hover .cs-link { border-bottom-color: var(--red); }
.cs-link svg { transition: transform 0.2s ease; }
.cs-card:hover .cs-link svg { transform: translateX(4px); }
.cs-card-featured {
  grid-column: span 2;
  flex-direction: row; gap: 48px;
  align-items: center;
}
.cs-card-featured .cs-card-image {
  flex: 1; aspect-ratio: auto; height: 280px;
}
.cs-card-featured .cs-text { flex: 1; }
.cs-card-featured h3 { font-size: 1.8rem; }

/* ─── TESTIMONIAL ─── */
#testimonial {
  padding: 160px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#lion-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.testimonial-inner {
  max-width: 900px; margin: 0 auto;
  position: relative; z-index: 2;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 48px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 8rem;
  color: var(--red);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 32px;
  font-weight: 700;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.testimonial-divider { width: 40px; height: 1px; background: var(--border); }
.testimonial-name {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ─── CTA ─── */
#cta {
  padding: 160px 0;
  background: var(--surface);
  position: relative; overflow: hidden;
}
.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;
}

/* ─── OPERATOR BAND ─── */
#operator-band {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}
#operator-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.op-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.op-band-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.op-band-left h2 em { color: var(--red); font-style: italic; }
.op-band-left p {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 20px;
}
.op-band-left blockquote {
  border-left: 2px solid var(--red);
  padding-left: 20px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 1.05rem; line-height: 1.65;
  color: var(--text); font-style: italic;
}
.op-run-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.op-run-item {
  background: var(--surface2);
  padding: 28px 16px; text-align: center;
  transition: background 0.3s ease;
}
.op-run-item:hover { background: var(--bg); }
.op-run-word {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--red); display: block; margin-bottom: 10px;
}
.op-run-item span.op-run-desc {
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); line-height: 1.5;
}
.op-quote-box {
  padding: 32px; border: 1px solid var(--border); background: var(--bg);
}
.op-quote-box p {
  font-family: var(--serif);
  font-size: 1.2rem; line-height: 1.5;
  color: var(--text); font-weight: 500; margin-bottom: 16px;
}
.op-quote-box cite {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); font-style: normal;
}

/* ─── CAPITAL OWNERSHIP ─── */
#capital-ownership {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
#capital-ownership::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cap-own-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.cap-own-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.cap-own-left h2 em { color: var(--red); font-style: italic; }
.cap-own-left p {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 20px;
}
.cap-own-pull {
  border-left: 2px solid var(--red); padding-left: 20px;
  margin-top: 28px; font-size: 1rem; line-height: 1.7;
  color: var(--text);
}
.cap-own-items { display: flex; flex-direction: column; gap: 16px; }
.cap-own-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cap-own-item:hover { border-color: rgba(200,33,59,0.3); background: var(--red-glow); }
.cap-own-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.cap-own-item h4 {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 600; margin-bottom: 6px;
}
.cap-own-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ─── BEYOND TURNAROUND ─── */
#beyond-band {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}
#beyond-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.beyond-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.beyond-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.beyond-text h2 em { color: var(--red); font-style: italic; }
.beyond-text p {
  font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px;
}
.beyond-ident {
  border-left: 2px solid var(--red); padding-left: 20px;
  margin-top: 28px; font-family: var(--serif);
  font-size: 1.05rem; line-height: 1.6; color: var(--text); font-style: italic;
}
.beyond-stats { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.bstat { padding: 28px 32px; background: var(--surface2); transition: background 0.3s ease; }
.bstat:hover { background: var(--bg); }
.bstat-head { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.bstat-head span { color: var(--red); }
.bstat-body { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ─── 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); }

/* ─── SITUATIONS WE LEAD ─── */
#situations {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#situations::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sit-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 64px;
}
.sit-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;
}
.sit-header h2 em { color: var(--red); font-style: italic; }
.sit-header p { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.sit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.sit-card {
  background: var(--surface);
  padding: 40px 36px;
  grid-column: span 2;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
  display: flex; flex-direction: column;
}
.sit-card:nth-child(4) { grid-column: span 3; }
.sit-card:nth-child(5) { grid-column: span 3; }
.sit-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.sit-card:hover { background: var(--surface2); }
.sit-card:hover::after { transform: scaleX(1); }
.sit-card-num {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.2);
  line-height: 1;
  position: absolute; top: 12px; right: 20px;
  user-select: none;
}
.sit-card-icon {
  width: 44px; height: 44px;
  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;
}
.sit-card:hover .sit-card-icon { border-color: var(--red); background: var(--red-glow); }
.sit-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 14px; line-height: 1.3; color: var(--text);
}
.sit-card p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); flex: 1; }

/* ─── HOW WE WORK ─── */
#how-we-work {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
#how-we-work::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.how-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 100px; align-items: start;
}
.how-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.how-text h2 em { color: var(--red); font-style: italic; }
.how-text > p {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 40px;
}
.how-bullets { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.how-bullet {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.how-bullet:last-child { border-bottom: none; }
.how-bullet:hover { background: var(--surface); }
.how-bullet-line {
  width: 20px; height: 1px; background: var(--red);
  flex-shrink: 0; margin-top: 10px;
}
.how-bullet p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }
.how-panel { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.how-panel-item {
  padding: 32px;
  background: var(--surface2);
  transition: background 0.3s ease;
}
.how-panel-item:hover { background: var(--surface); }
.how-panel-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 16px;
}
.how-panel-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.how-panel-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── RELATIONSHIP CAPITAL ─── */
#rel-capital {
  padding: 160px 0;
  background: var(--surface);
  position: relative;
}
#rel-capital::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.rel-cap-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 64px;
}
.rel-cap-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;
}
.rel-cap-header h2 em { color: var(--red); font-style: italic; }
.rel-cap-header p { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.rel-cap-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.rel-cap-col {
  background: var(--surface2);
  padding: 56px 48px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.rel-cap-col:hover { background: var(--bg); }
.rel-cap-col-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px; display: block;
}
.rel-cap-col h3 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 500;
  margin-bottom: 20px; line-height: 1.2;
}
.rel-cap-col p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); }
.rel-cap-col-num {
  font-family: var(--serif);
  font-size: 6rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,33,59,0.1);
  position: absolute; bottom: -12px; right: 16px;
  user-select: none; line-height: 1;
}
.rel-cap-pull {
  border-left: 3px solid var(--red);
  padding: 24px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rel-cap-pull p {
  font-family: var(--serif);
  font-size: 1.15rem; line-height: 1.6;
  color: var(--text); font-weight: 500;
}

/* ─── WHO WE SERVE ─── */
#who-serves {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
}
#who-serves::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.serve-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.serve-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.serve-text h2 em { color: var(--red); font-style: italic; }
.serve-text p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 36px; }
.serve-list {
  display: flex; flex-direction: column;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.serve-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 28px;
  background: var(--surface2);
  transition: background 0.3s ease;
}
.serve-item:hover { background: var(--bg); }
.serve-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-top: 2px;
}
.serve-item p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }
.serve-item p strong { color: var(--text); font-weight: 500; }

/* ─── FOUNDER ─── */
#founder {
  padding: 120px 0;
  background: var(--surface);
  position: relative;
}
#founder .container, #founder-idris .container {
  max-width: 1600px;
}
#founder::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.founder-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 100px; align-items: center;
}
.founder-ident { position: relative; }
.founder-img-wrap {
  aspect-ratio: 3/4; overflow: hidden; width: 100%;
  position: relative;
}
.founder-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: transform 8s ease;
}
.founder-img-wrap:hover img { transform: scale(1.04); }
.founder-red-bar {
  position: absolute; top: 0; left: -12px;
  width: 3px; height: 80px; background: var(--red);
}
.founder-accent {
  position: absolute; bottom: -24px; right: -24px;
  padding: 24px 28px;
  background: var(--surface2); border: 1px solid var(--border);
}
.founder-accent .f-role {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 4px;
}
.founder-accent .f-name {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600; color: var(--text);
}
.founder-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.founder-text h2 em { color: var(--red); font-style: italic; }
.founder-text p {
  font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px;
}
.founder-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); border-bottom: 1px solid transparent;
  padding-bottom: 2px; margin-top: 8px;
  transition: border-color 0.2s ease;
}
.founder-link:hover { border-color: var(--red); }
.founder-link svg { transition: transform 0.2s ease; }
.founder-link:hover svg { transform: translateX(4px); }

/* ─── FOUNDER REVERSED (Idris) ─── */
#founder-idris {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
#founder-idris::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.founder-inner--reverse {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 100px; align-items: center;
}
.founder-inner--reverse .founder-red-bar { left: auto; right: -12px; }
.founder-inner--reverse .founder-accent { right: auto; left: -24px; }

/* ─── WHAT WE DO section ─── */
#what-we-do { padding-block: 120px; }

/* ─── CAPITAL TRANSACTIONS ─── */
#cap-transactions {
  padding-block: 120px;
  position: relative;
  background: var(--surface1);
}
#cap-transactions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/photo-1486406146926-c627a92ad1ab.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.06;
  pointer-events: none;
}
.ctx-inner { max-width: 880px; margin: 0 auto; }
.ctx-header { margin-bottom: 48px; }
.ctx-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 720px;
}
.ctx-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ctx-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.ctx-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--red);
}

/* ─── CAPITAL RELATIONSHIPS ─── */
#cap-relationships {
  padding-block: 120px;
  background: var(--surface);
}
.crn-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.crn-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}
.crn-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 4px;
}
.crn-panel {
  background: var(--surface2);
  padding: 52px 48px 48px;
  position: relative;
  overflow: hidden;
}
.crn-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.crn-panel-num {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--serif);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.crn-panel-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.crn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.crn-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
  font-weight: 400;
}
.crn-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--red);
}
.crn-bridge {
  border: 1px solid var(--border);
  padding: 52px 56px;
  background: var(--bg);
  margin-top: 3px;
}
.crn-bridge-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}
.crn-bridge p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 740px;
}

/* ─── WHY RED LION CAPITAL ─── */
/* WHY RED LION CAPITAL styles moved to css/why-us.css */

/* ─── Responsive (index-specific) ─── */
@media (max-width: 1100px) {
  #about, #why-us, #services, #case-studies, #testimonial, #cta,
  #operator-band, #capital-ownership, #beyond-band, #what-we-do,
  #situations, #how-we-work, #rel-capital, #track-record,
  #who-serves, #founder, #founder-idris, #rag-band { padding: 120px 0; }
  .rag-cols { grid-template-columns: 1fr; }
  .rag-col { padding: 40px 32px; }
  .rag-headline { margin-bottom: 56px; }
  .op-band-inner, .cap-own-inner, .beyond-inner, .how-inner,
  .founder-inner, .founder-inner--reverse { grid-template-columns: 1fr; gap: 48px; }
  .founder-inner--reverse .founder-ident { order: -1; }
  .sit-header, .rel-cap-header, .serve-inner { grid-template-columns: 1fr; gap: 32px; }
  .rel-cap-cols { grid-template-columns: 1fr; }
  .crn-header { grid-template-columns: 1fr; gap: 28px; }
  .crn-panels { grid-template-columns: 1fr; }
  /* .wrc-* responsive rules moved to css/why-us.css */
  .hero-number { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 100%; }
  .why-header { grid-template-columns: 1fr; gap: 32px; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid-row2 { grid-template-columns: 1fr; }
  .cs-card-featured { flex-direction: column; grid-column: span 1; }
  .cs-header { grid-template-columns: 1fr; gap: 24px; }
  .reveal-bottom-left {
    opacity: 1 !important;
    transform: translateX(0px) translateY(0px) scale(1) !important;
    transform-origin: bottom left;
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal-bottom-left .about-accent-box {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.9s;
  }
  .reveal-bottom-right {
    opacity: 1 !important;
    transform: inherit !important;
    transform-origin: bottom right;
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
}

@media (max-width: 768px) {
  #about, #why-us, #services, #case-studies, #testimonial, #cta,
  #operator-band, #capital-ownership, #beyond-band, #what-we-do,
  #situations, #how-we-work, #rel-capital, #track-record,
  #who-serves, #founder, #founder-idris, #rag-band { padding: 80px 0; }
  .rag-col { padding: 40px 28px; }
  .op-run-grid { grid-template-columns: 1fr; }
  .sit-grid { grid-template-columns: 1fr; }
  .wrc-grid { grid-template-columns: 1fr; }
  /* .wrc-grid responsive rules moved to css/why-us.css */
  .crn-bridge { padding: 36px 28px; }
  .sit-card, .sit-card:nth-child(4), .sit-card:nth-child(5) { grid-column: span 1; }
  .hero-content { padding-top: 130px; padding-bottom: 40px; }
  .hero-stat-badge { display: none; }
  .hero-img-panel { display: none; }
  .hero-title { max-width: 100%; }
  .hero-body { max-width: 100%; font-size: 0.95rem; }
  .hero-scroll { display: none; }
  .fast-tags { flex-direction: column; }
  .fast-tag { border-right: none; border-bottom: 1px solid var(--border); }
  .about-inner { gap: 80px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-accent-box { right: 0; bottom: -20px; width: 160px; padding: 20px; }
  .about-accent-box .num { font-size: 2.6rem; }
  .stats-row { flex-direction: row; gap: 24px; }
  .why-cards { grid-template-columns: 1fr; }
  .why-card { padding: 36px 28px; }
  .service-body-inner { grid-template-columns: 1fr; padding-left: 0; gap: 32px; }
  .service-image { display: none; }
  .cs-grid { grid-template-columns: 1fr; }
  .cs-card { padding: 36px 28px; }
  .service-tags { display: none; }
  .cta-bg-text { font-size: clamp(60px, 18vw, 100px); }
  #what-we-do { padding-block: 50px; }
  /* #why-rl-capital responsive override moved to css/why-us.css */
}

@media (max-width: 480px) {
  #about, #why-us, #services, #case-studies, #testimonial, #cta,
  #operator-band, #capital-ownership, #beyond-band, #what-we-do,
  #situations, #how-we-work, #rel-capital, #track-record,
  #who-serves, #founder, #founder-idris, #rag-band { padding: 60px 0; }
  .rag-col { padding: 32px 24px; }
  .rag-col-word { font-size: 3rem; }
  .founder-accent { display: none; }
  .hero-content { padding-top: 88px; padding-bottom: 32px; }
  .hero-eyebrow { font-size: 0.65rem; margin-bottom: 20px; }
  .hero-body { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fast-tag { padding: 14px 20px; font-size: 0.65rem; }
  .about-inner { gap: 60px; }
  .stats-row { gap: 20px; }
  .stat-item .stat-num { font-size: 2rem; }
  .why-card { padding: 28px 20px; }
  .why-card h3 { font-size: 1.2rem; }
  .service-header { padding: 20px 0; }
  .cs-card { padding: 28px 20px; }
  .cs-card h3 { font-size: 1.2rem; }
}
