/*
Theme Name: Vixita People Solutions
Theme URI: https://vixita.com
Author: Vixita
Description: Modern HR consulting theme — navy & gold edition with Customizer support
Version: 3.0
*/

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

/* ─── VARIABLES ────────────────────────────────────────── */
:root {
  --navy:         #0B1828;
  --navy-mid:     #152236;
  --navy-light:   #1E3250;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-pale:    rgba(201,168,76,0.12);
  --cream:        #F7F2EA;
  --warm-white:   #FDFAF5;
  --text:         #1A2B3C;
  --muted:        #6B7A8D;
  --border:       rgba(201,168,76,0.18);
  --ff-display:   'Cormorant Garamond', serif;
  --ff-body:      'DM Sans', sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.35s var(--ease);
  --radius:       4px;
  --shadow:       0 8px 40px rgba(11,24,40,0.12);
}

/* ─── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ─── LAYOUT ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 780px; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--navy); }
.section--cream { background: var(--cream); }

/* ─── TYPOGRAPHY AIDS ──────────────────────────────────── */
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.gold-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}
.section-heading em { font-style: italic; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover::before { transform: scaleX(1); }
.btn svg { transition: transform var(--transition); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn--gold  { color: var(--gold); }
.btn--gold:hover  { color: var(--navy); }
.btn--cream { color: var(--cream); }
.btn--cream:hover { color: var(--navy); }
.btn--dark  { color: var(--navy); }
.btn--dark:hover  { color: var(--warm-white); }

/* ─── HEADER ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#site-header.scrolled {
  background: rgba(11,24,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
  padding: 0.85rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  z-index: 1001;
}
.site-logo img { height: 38px; width: auto; }
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--gold); }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.72);
  padding: 0.5rem 0.85rem;
  display: block;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.85rem; right: 0.85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav > li > a:hover { color: var(--cream); }
.main-nav > li > a:hover::after { transform: scaleX(1); }
.main-nav .nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: background var(--transition), color var(--transition);
}
.main-nav .nav-cta:hover { background: var(--gold); color: var(--navy) !important; }
.main-nav .nav-cta::after { display: none; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  padding: 0.4rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: rgba(247,242,234,0.75);
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown li a:hover { background: var(--navy-light); color: var(--gold); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
  margin: 0 auto;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.75);
  padding: 0.75rem 2rem;
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav-overlay a:hover { color: var(--gold); }
.mobile-nav-overlay .mobile-nav-cta {
  margin-top: 1rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.75rem 2.5rem;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  transition: opacity 0.5s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(11,24,40,0.5) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-watermark {
  position: absolute;
  right: -1rem;
  bottom: 5%;
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(7rem, 15vw, 10rem) 0 clamp(5rem, 10vw, 7rem);
}
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow-wrap::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow-wrap span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-heading em { font-style: italic; color: var(--gold); }
.hero-subtext {
  font-size: clamp(0.93rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: rgba(247,242,234,0.62);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247,242,234,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s 1.5s infinite;
}

/* ─── STATS BAR ────────────────────────────────────────── */
.stats-bar { background: var(--gold); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2vw, 2rem);
  text-align: center;
  border-right: 1px solid rgba(11,24,40,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: clamp(0.6rem, 1.2vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,24,40,0.6);
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services-section { background: var(--warm-white); }
.services-intro { max-width: 560px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services-intro .section-heading { margin-bottom: 1rem; }
.services-intro p { color: var(--muted); font-size: 0.97rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.service-icon svg { width: 22px; color: var(--gold); transition: color var(--transition); }
.service-card:hover .service-icon { background: var(--gold); border-color: var(--gold); }
.service-card:hover .service-icon svg { color: var(--navy); }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 1.75rem;
}
.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.85rem; }
.service-num {
  position: absolute;
  bottom: 1.25rem; right: 1.75rem;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(11,24,40,0.05);
  line-height: 1;
  pointer-events: none;
}

/* ─── WHY VIXITA ───────────────────────────────────────── */
.why-section { background: var(--navy); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
/* Visual side */
.why-visual { position: relative; }
.why-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}
.why-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.why-photo:hover img { transform: scale(1.04); }
.why-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}
.why-photo-placeholder svg { width: 80px; opacity: 0.15; }
.why-accent-box {
  position: absolute;
  bottom: -1.25rem; left: -1.25rem;
  width: 100px; height: 100px;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
}
.why-badge {
  position: absolute;
  top: -1rem; right: -1.25rem;
  background: var(--gold);
  padding: 0.85rem 1.1rem;
  text-align: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
/* Content side */
.why-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.why-content h2 strong { font-weight: 600; }
.why-content > p {
  color: rgba(247,242,234,0.58);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.pillar-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.13);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.pillar:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.04); }
.pillar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.pillar h4 {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}
.pillar p { font-size: 0.81rem; color: rgba(247,242,234,0.48); line-height: 1.6; }

/* ─── PROCESS ──────────────────────────────────────────── */
.process-section { background: var(--warm-white); }
.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.process-header .gold-rule { margin: 0.6rem auto 1.5rem; }
.process-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.process-header p { color: var(--muted); font-size: 0.95rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 1rem; }
.step-badge {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--warm-white);
  position: relative; z-index: 1;
  transition: background var(--transition), color var(--transition);
}
.process-step:hover .step-badge { background: var(--gold); color: var(--navy); }
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ─── BLOG ─────────────────────────────────────────────── */
.blog-section { background: var(--navy); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-card {
  background: var(--navy-mid);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.blog-card:hover { background: var(--navy-light); }
.blog-card-thumb {
  height: 160px;
  margin: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.blog-card--featured .blog-card-thumb { height: 200px; }
.blog-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-tag {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: block;
}
.blog-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 0.75rem;
  flex: 1;
}
.blog-card--featured h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.blog-card h3           { font-size: clamp(1rem, 1.8vw, 1.15rem); }
.blog-card p {
  font-size: 0.86rem;
  color: rgba(247,242,234,0.48);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}
.blog-meta {
  font-size: 0.7rem;
  color: rgba(247,242,234,0.32);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: auto;
}
.blog-meta::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CTA ──────────────────────────────────────────────── */
.cta-section {
  background: var(--gold);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.1rem;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  line-height: 1.2;
}
.cta-inner p {
  color: rgba(11,24,40,0.62);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}
.cta-inner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────── */
#site-footer {
  background: #070d17;
  color: rgba(247,242,234,0.5);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-logo { margin-bottom: 1.1rem; display: block; }
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(247,242,234,0.4);
  max-width: 270px;
}
.footer-col h4 {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a {
  font-size: 0.84rem;
  color: rgba(247,242,234,0.45);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(247,242,234,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── INNER PAGES ──────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: clamp(9rem, 18vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .overline { color: var(--gold); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  max-width: 700px;
  position: relative; z-index: 1;
}
.entry-content { padding: clamp(4rem, 8vw, 6rem) 0; }
.entry-content h2, .entry-content h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 0.85rem;
}
.entry-content h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); }
.entry-content h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.entry-content p  { margin-bottom: 1.25rem; color: var(--text); line-height: 1.85; }
.entry-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; color: var(--text); }

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3) { border-top: 1px solid var(--border); grid-column: span 2; }
  .service-card:nth-child(3) .service-num { font-size: 5rem; }
  .why-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual         { display: none; }
  .blog-grid          { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card:last-child { display: none; }
  .process-steps      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-inner        { grid-template-columns: 1fr; }
  .founder-wrap       { position: static !important; max-width: 360px; }
}

@media (max-width: 768px) {
  /* Nav — hide desktop, show hamburger */
  .main-nav           { display: none !important; }
  .menu-toggle        { display: flex; }

  /* Hero */
  .hero-heading       { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-actions       { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn  { width: 100%; justify-content: center; }
  .hero-watermark     { display: none; }

  /* Stats */
  .stats-grid         { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid      { grid-template-columns: 1fr; border: none; gap: 1px; }
  .service-card       { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:nth-child(3) { grid-column: span 1; border-top: none; }

  /* Blog */
  .blog-grid          { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { display: flex; }

  /* Process */
  .process-steps      { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-inner .btn-group { flex-direction: column; align-items: center; }
  .cta-inner .btn-group .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .process-steps      { grid-template-columns: 1fr; }
  .hero-heading       { font-size: 2.4rem; }
  .blog-header        { flex-direction: column; align-items: flex-start; }
}

/* ─── ACCESSIBILITY ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .hero-content > * { opacity: 1 !important; transform: none !important; }
}
