/* Inner page styles — About, Services, Service Detail, Contact */

.whp-page-hero { padding: 80px var(--section-padding-x) 60px; }
.whp-page-hero--cream { background: var(--color-cream); }
.whp-page-hero--dark {
  background: radial-gradient(
    ellipse 60% 50% at center 50%,
    var(--color-warm-glow) 0%,
    var(--color-dark-base) 100%
  );
  color: var(--color-white);
}
.whp-page-hero__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}
.whp-page-hero__title {
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-red-primary);
  margin: 32px 0 24px;
  line-height: 1.05;
}
.whp-page-hero__title--white { color: var(--color-white); }
.whp-page-hero__lede {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-ink-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.whp-page-hero__lede--muted { color: var(--color-muted-white); }
.whp-page-hero__breadcrumb {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 24px;
}
.whp-page-hero__breadcrumb a { color: var(--color-red-primary); }
.whp-page-hero__breadcrumb a:hover { color: var(--color-red-button-hover); }
.whp-page-hero__breadcrumb span[aria-hidden] { margin: 0 12px; color: var(--color-ink-muted); }

/* About full page */
.whp-about-full { background: var(--color-cream); padding: 60px var(--section-padding-x) 100px; }
.whp-about-full__container { max-width: var(--container-max-width); margin: 0 auto; }
.whp-about-full__intro {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.whp-about-full__logo-box {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse 70% 70% at center 50%,
    var(--color-warm-glow) 0%,
    #141414 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.whp-about-full__logo-box::before,
.whp-about-full__logo-box::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-red-primary);
}
.whp-about-full__logo-box::before {
  top: 14px; left: 14px;
  border-right: none; border-bottom: none;
}
.whp-about-full__logo-box::after {
  bottom: 14px; right: 14px;
  border-left: none; border-top: none;
}
.whp-about-full__logo-box img { width: 78%; }
.whp-about-full__text-box p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-ink);
  margin-bottom: 24px;
}
.whp-about-full__founder {
  border-top: 2px solid var(--color-cream-border);
  padding-top: 80px;
  margin-bottom: 100px;
}
.whp-about-full__founder h2 {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-red-primary);
  text-align: center;
  margin: 32px 0 48px;
}
.whp-about-full__founder-bio { max-width: 720px; margin: 0 auto; }
.whp-about-full__founder-bio p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-ink);
  margin-bottom: 20px;
}
.whp-about-full__values {
  border-top: 2px solid var(--color-cream-border);
  padding-top: 80px;
}
.whp-about-full__values h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-ink-bold);
  text-align: center;
  margin-bottom: 56px;
}
.whp-values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.whp-values-list li {
  background: var(--color-cream-dark);
  border: 1px solid var(--color-cream-border);
  padding: 32px;
  position: relative;
}
.whp-values-list h3 {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-red-primary);
  margin: 16px 0 12px;
}
.whp-values-list p { font-size: 1rem; line-height: 1.6; color: var(--color-ink); }

/* Services full page (legacy) */
.whp-services-full {
  background: var(--color-dark-services);
  color: var(--color-white);
  padding: 60px var(--section-padding-x) 100px;
}
.whp-services-full__container { max-width: var(--container-max-width); margin: 0 auto; }
.whp-services-full__detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 80px;
}
.whp-service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-dark-border-bright);
  padding: 40px 32px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.whp-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-red-primary);
}
.whp-service-card h3 {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-red-primary);
  margin: 0 0 16px;
}
.whp-service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted-white);
  margin-bottom: 24px;
  flex: 1;
}
.whp-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red-primary);
}

/* Service detail (legacy) */
.whp-service-detail { background: var(--color-cream); padding: 80px var(--section-padding-x) 100px; }
.whp-service-detail__container { max-width: 800px; margin: 0 auto; }
.whp-service-detail h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-red-primary);
  margin: 64px 0 24px;
}
.whp-service-detail h3 {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-ink-bold);
  margin: 40px 0 16px;
}
.whp-service-detail p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-ink);
  margin-bottom: 24px;
}
.whp-service-detail ul { list-style: disc; padding-left: 24px; margin-bottom: 24px; }
.whp-service-detail ul li { font-size: 1.125rem; line-height: 1.7; color: var(--color-ink); margin-bottom: 8px; }

/* Page-level CTA */
.whp-page-cta {
  background: var(--color-cream-dark);
  padding: 80px var(--section-padding-x);
  text-align: center;
}
.whp-page-cta--dark { background: var(--color-dark-services); color: var(--color-white); }
.whp-page-cta__container { max-width: 720px; margin: 0 auto; }
.whp-page-cta h2 {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-red-primary);
  margin: 0 0 24px;
}
.whp-page-cta--dark h2 { color: var(--color-white); }
.whp-page-cta p {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  margin-bottom: 32px;
}
.whp-page-cta--dark p { color: var(--color-muted-white); }

/* Contact page — dark hero with hussar backdrop + cream form section */
.whp-contact-hero {
  position: relative;
  background: radial-gradient(
    ellipse 60% 50% at center 50%,
    var(--color-warm-glow) 0%,
    var(--color-dark-base) 100%
  );
  color: var(--color-white);
  padding: 100px var(--section-padding-x) 120px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.whp-contact-hero__backdrop {
  position: absolute;
  inset: 0;
  background-image: var(--whp-hero-mark);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(720px, 70vw) auto;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.whp-contact-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.whp-contact-hero__title {
  font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 11rem);
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin: 0;
  line-height: 1;
  text-align: center;
}
.whp-contact-hero__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin: 24px 0 0;
  text-align: center;
}
.whp-contact-form-section {
  background: var(--color-cream);
  padding: 70px var(--section-padding-x) 50px;
}
.whp-contact-form-section__container { max-width: 800px; margin: 0 auto; }

/* Default page styling */
.whp-page-default { background: var(--color-cream); padding: 80px var(--section-padding-x); }
.whp-page-default__container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
}
.whp-page-default__container p { margin-bottom: 24px; }

/* Responsive */
@media (max-width: 900px) {
  .whp-page-hero { padding: 60px var(--section-padding-x) 40px; }
  .whp-about-full__intro { grid-template-columns: 1fr; gap: 40px; }
  .whp-about-full__logo-box { width: 100%; max-width: 400px; height: auto; aspect-ratio: 1; }
}
@media (max-width: 600px) {
  .whp-contact-hero { padding: 60px var(--section-padding-x) 70px; }
}

/* Round 7 — Contact dedicated page hero matches Insights hero dimensions */
.whp-contact-hero {
  padding: 120px var(--section-padding-x) 140px !important;
}
.whp-contact-hero__backdrop {
  background-size: min(900px, 80vw) auto !important;
  opacity: 0.12 !important;
}
