/*
Theme Name: Ajay Pandey Personal Brand
Theme URI: https://ajaypandey.com.np
Author: Ajay Pandey
Author URI: https://ajaypandey.com.np
Description: Personal brand theme for Ajay Pandey — Personal Brand Consultant, Trainer, and Speaker based in Nepal. Built around the B.R.A.N.D. Framework.
Version: 2.0
License: Private
Text Domain: ajaypandey
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --ap-black:       #0a0a0a;
  --ap-deep:        #111108;
  --ap-white:       #f9f6f0;
  --ap-cream:       #edf2fb;
  --ap-gold:        #004aad;
  --ap-gold-light:  #3a7dff;
  --ap-gold-pale:   #dce8fa;
  --ap-muted:       #5a6a80;
  --ap-border:      rgba(0, 74, 173, 0.18);
  --ap-border-solid:#b8ccf0;
  --ap-orange:      #ff5b25;
  --ap-orange-light:#ff8a5c;
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --shadow-card:    0 2px 24px rgba(0,0,0,0.07);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.13);
  --max-width:      1160px;
  --section-pad:    5rem 1.5rem;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ap-white);
  color: var(--ap-black);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }
.section-dark {
  background: var(--ap-deep);
  color: var(--ap-white);
}
.section-cream { background: var(--ap-cream); }
.section-gold-pale { background: var(--ap-gold-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */
.display-xl { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.05; }
.display-lg { font-size: clamp(2.2rem, 4.5vw, 3.5rem); line-height: 1.1; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; }
.display-sm { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.3; }
.body-lg     { font-size: 1.125rem; line-height: 1.8; }
.body-md     { font-size: 1rem; line-height: 1.75; }
.body-sm     { font-size: 0.875rem; line-height: 1.6; }
.text-muted  { color: var(--ap-muted); }
.text-gold   { color: var(--ap-gold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ap-gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-gold {
  background: var(--ap-orange);
  color: #fff;
}
.btn-gold:hover {
  background: #e04a18;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,91,37,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--ap-gold);
  border: 1.5px solid var(--ap-gold);
}
.btn-outline:hover {
  background: var(--ap-gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--ap-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--ap-white);
}

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.2rem 0;
  transition: all 0.35s ease;
}
#site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--ap-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ap-white);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--ap-gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--ap-gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--ap-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ap-white);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--ap-deep);
  color: var(--ap-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 1.5rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-section {
  background: var(--ap-deep);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0,74,173,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,74,173,0.12);
  border: 1px solid var(--ap-border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--ap-gold-light);
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ap-gold);
  display: block;
}
.hero h1 { color: var(--ap-white); margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: normal;
  color: var(--ap-gold);
}
.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ap-border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ap-gold);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.25rem;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(15%);
}
.hero-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ap-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--ap-white);
}
.hero-image-badge strong {
  display: block;
  font-size: 1rem;
  font-family: var(--font-display);
}
.hero-image-badge span {
  font-size: 0.8rem;
  color: var(--ap-gold-light);
}

/* =============================================
   BRAND STRIP
   ============================================= */
.brand-strip {
  background: var(--ap-gold);
  padding: 1.2rem 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.brand-strip-item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand-strip-item::after {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 5px solid var(--ap-white);
  box-shadow: var(--shadow-card);
}
.about-floater {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--ap-deep);
  color: var(--ap-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--ap-border);
}
.about-floater .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ap-gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-floater .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 0.25rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--ap-muted); margin-bottom: 1.25rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--ap-gold-pale);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-highlight-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ap-black);
}
.about-highlight-text span {
  font-size: 0.8rem;
  color: var(--ap-muted);
}

/* =============================================
   BRAND FRAMEWORK
   ============================================= */
.brand-framework { background: var(--ap-deep); color: var(--ap-white); }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.framework-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ap-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.framework-card:hover {
  background: rgba(0,74,173,0.08);
  border-color: rgba(0,74,173,0.5);
  transform: translateY(-4px);
}
.framework-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ap-gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.framework-word {
  font-weight: 600;
  font-size: 1rem;
  color: var(--ap-white);
  display: block;
  margin-bottom: 0.5rem;
}
.framework-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--ap-white);
  border: 1px solid var(--ap-border-solid);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ap-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--ap-gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ap-black);
}
.service-card p { font-size: 0.9rem; color: var(--ap-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-card .service-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ap-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 0.75rem; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--ap-gold); padding: 4rem 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--ap-white);
  border: 1px solid var(--ap-border-solid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--ap-gold-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ap-muted);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--ap-border-solid);
  padding-top: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ap-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ap-gold);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 500; font-size: 0.9rem; color: var(--ap-black); }
.testimonial-role { font-size: 0.78rem; color: var(--ap-muted); }

/* =============================================
   BOOKS
   ============================================= */
.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.book-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}
.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  background: var(--ap-gold-pale);
}
.book-cover-placeholder {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--ap-gold-pale) 0%, var(--ap-gold-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.book-cover-placeholder .book-title-on-cover {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ap-deep);
  line-height: 1.3;
}
.book-cover-placeholder .book-author-on-cover {
  font-size: 0.75rem;
  color: var(--ap-muted);
  margin-top: 0.5rem;
}
.book-info { padding: 1rem 0 0; }
.book-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ap-black);
  margin-bottom: 0.25rem;
}
.book-info span { font-size: 0.8rem; color: var(--ap-muted); }

/* =============================================
   BLOG POSTS
   ============================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.post-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ap-white);
  border: 1px solid var(--ap-border-solid);
  transition: all 0.3s ease;
}
.post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.post-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--ap-cream);
  display: block;
}
.post-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--ap-cream) 0%, var(--ap-gold-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.5;
}
.post-body { padding: 1.5rem; }
.post-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ap-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.post-body h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--ap-black);
}
.post-body p { font-size: 0.87rem; color: var(--ap-muted); line-height: 1.65; margin-bottom: 1rem; }
.post-meta { font-size: 0.78rem; color: var(--ap-muted); }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--ap-orange);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,74,173,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--ap-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-band .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #080808;
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--ap-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.footer-social a:hover {
  border-color: var(--ap-gold);
  color: var(--ap-gold);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--ap-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--ap-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ap-black); margin-bottom: 0.15rem; }
.contact-detail span { font-size: 0.9rem; color: var(--ap-muted); }
.contact-form-wrap {
  background: var(--ap-white);
  border: 1px solid var(--ap-border-solid);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ap-black);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--ap-border-solid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ap-black);
  background: var(--ap-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ap-gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--ap-deep);
  color: var(--ap-white);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}
.page-hero h1 { color: var(--ap-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* =============================================
   ASSESSMENT PAGE
   ============================================= */
.assessment-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.assessment-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.question-block {
  background: var(--ap-white);
  border: 1px solid var(--ap-border-solid);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.question-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ap-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.question-block h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  color: var(--ap-black);
}
.radio-options { display: flex; flex-direction: column; gap: 0.75rem; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ap-border-solid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.radio-option:hover { border-color: var(--ap-gold); background: var(--ap-gold-pale); }
.radio-option input[type="radio"] { accent-color: var(--ap-gold); }

/* =============================================
   MEDIA MENTIONS
   ============================================= */
.media-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.media-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ap-muted);
  opacity: 0.7;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.media-item:hover { opacity: 1; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
  .framework-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4,
  .services-grid, .testimonials-grid,
  .books-grid, .posts-grid,
  .stats-inner, .framework-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .display-xl { font-size: 2.4rem; }
  .display-lg { font-size: 1.9rem; }
}

/* =============================================
   WORDPRESS SPECIFIC
   ============================================= */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
