/* ============================================================
   PRASAD MISHRA & ASSOCIATES — Main Stylesheet
   Design language reference: bkagarwal.in — white/light backgrounds,
   black text, gold accent (#D4AF37). No navy anywhere. Video banner
   is the one exception that carries a dark overlay, for legibility only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold:        #C9A227;
  --gold-dark:   #A9841D;
  --gold-light:  #E4C65C;
  --gold-pale:   #FBF3D9;
  --black:       #1A1A18;
  --white:       #FFFFFF;
  --cream:       #FAF7EF;
  --text-body:   #2A2A26;
  --text-muted:  #6E6C63;
  --border:      #E7E1CF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --radius:      6px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.08);
  --shadow-lg:   0 16px 44px rgba(0,0,0,0.12);
  --transition:  0.3s ease;

  /* Legacy aliases kept so any leftover inline styles resolve to the light palette */
  --navy:        var(--black);
  --navy-mid:    var(--black);
  --navy-light:  var(--gold-dark);
  --off-white:   var(--cream);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--black);
}

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold    { color: var(--gold-dark); }
.bg-navy      { background: var(--black); }
.bg-off-white { background: var(--cream); }

.section-pad  { padding: 80px 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title.light { color: var(--black); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-subtitle.light { color: var(--text-muted); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}

.divider.center { margin: 20px auto 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER — white, sticky, black text, gold accents
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  display: block;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-dark);
  background: var(--gold-pale);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold-dark); }

/* ============================================================
   FOOTER — light cream, black text, gold accents
   ============================================================ */
.site-footer {
  background: var(--cream);
  color: var(--text-muted);
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.footer-top-rule { height: 3px; background: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-main { font-size: 1.4rem; color: var(--black); }
.footer-brand .logo-sub { color: var(--gold-dark); }
.footer-brand p {
  font-size: 0.875rem;
  margin-top: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-dark); }

.footer-contact li {
  font-size: 0.875rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  color: var(--text-muted);
}

.footer-contact .icon {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  padding: 22px 0;
}

.footer-social a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--black); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold-dark); }

/* ============================================================
   HERO — full-bleed continuous video banner (the one dark exception)
   ============================================================ */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

/* ---- Background video ---- */
.video-hero { min-height: 620px; display: flex; align-items: center; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(10,10,8,0.82) 0%, rgba(20,18,10,0.55) 55%, rgba(10,10,8,0.85) 100%);*/
  z-index: 1;
}

.video-hero .container { position: relative; z-index: 2; }

/* ---- Floating text treatment ---- */
.hero-content-float { animation: heroFloat 7s ease-in-out infinite; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content-float { animation: none; }
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats band, sits directly beneath the hero — light, matches rest of page */
.hero-stats-band {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 44px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats-band .hero-stats { justify-content: space-between; }

.stat-item { text-align: left; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================================
   ONE-PAGE SECTION ANCHORS (offset for sticky header)
   ============================================================ */
section[id] { scroll-margin-top: 76px; }

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.35;
}

.about-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.about-placeholder .big-year {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.about-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 10px 0 0;
}

.about-text .section-title { text-align: left; }
.about-text .divider { margin-left: 0; }

/* ---- Team bio photo frame (smaller & better proportioned than the About panel) ---- */
.team-photo-wrap {
  max-width: 260px;
  margin: 0 auto;
}

.team-photo-wrap::before {
  top: 10px; left: 10px;
  right: -10px; bottom: -10px;
}

.team-photo-frame {
  width: 100%;
  height: 300px;
  padding: 0;
  overflow: hidden;
}

.team-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-photo-frame-contain {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.team-photo-frame-contain img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .team-photo-wrap { max-width: 220px; }
  .team-photo-frame { height: 260px; }
}


.milestones { margin-top: 24px; }

.milestone {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.milestone-year {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 50px;
}

.milestone-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 2px solid var(--border);
  padding-left: 16px;
}

/* ============================================================
   SERVICES — light cards on cream section background
   ============================================================ */
.services-bg { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; stroke: var(--gold-dark); fill: none; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.service-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.service-card-link:hover { color: var(--gold); }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background: var(--cream);
}

.team-photo-placeholder {
  width: 100%;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-photo-placeholder svg {
  width: 60px; height: 60px;
  stroke: var(--gold-dark);
  fill: none;
  opacity: 0.6;
}

.team-photo-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team-info { padding: 22px 20px 24px; }

.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.team-designation {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--gold);
}

/* ============================================================
   CLIENTS / SECTORS
   ============================================================ */
.clients-section { background: var(--cream); }

.client-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.client-cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.client-cat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-cat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.client-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.client-list li:last-child { border-bottom: none; }

.client-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
}

.why-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); fill: none; }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  text-align: left;
}

.contact-blocks { margin-top: 32px; }

.contact-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact-block:last-child { border-bottom: none; }

.contact-block-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-block-icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); fill: none; }

.contact-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.contact-block-value {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   PAGE HERO (service sub-pages and other inner pages) — light
   ============================================================ */
.page-hero {
  background: var(--cream);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--gold-dark); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.timeline { margin-top: 48px; }

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gold-pale);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 1;
  border: 1px solid var(--gold);
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.15));
  margin: 4px 0;
  min-height: 40px;
}

.timeline-item:last-child .timeline-line { display: none; }

.timeline-content {
  padding: 8px 0 36px;
  flex: 1;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SERVICE SUB-PAGES (detail content)
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
}

.service-detail-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--black);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}

.service-detail-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-items li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}

.service-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.service-sub-nav a {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
}

.service-sub-nav a.active,
.service-sub-nav a:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--black);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.16) 0%, transparent 70%);
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-band .btn { position: relative; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .video-hero { min-height: 460px; }
  .hero { padding: 84px 0 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { order: -1; }
  .about-placeholder { height: 280px; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .client-categories { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
}
