/*
 * Platine Consultation — compiled stylesheet
 * Hand-authored to ship without a build step. Mirrors the Tailwind tokens
 * defined in tailwind.config.js. If you later run `tailwindcss -i input.css
 * -o style.css`, this file will be regenerated automatically.
 */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
::selection { background: #C9A84C; color: #1A1F36; }
[x-cloak] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Typography ---------- */
h1 { font-size: 32px; line-height: 40px; font-weight: 700; color: #1A1F36; letter-spacing: -0.02em; }
h2 { font-size: 28px; line-height: 36px; font-weight: 600; color: #1A1F36; letter-spacing: -0.01em; }
h3 { font-size: 24px; line-height: 28px; font-weight: 600; color: #1A1F36; }
h4 { font-size: 20px; line-height: 24px; font-weight: 600; color: #1A1F36; }
@media (min-width: 1024px) {
  h1 { font-size: 48px; line-height: 56px; }
  h2 { font-size: 36px; line-height: 44px; }
  h3 { font-size: 28px; line-height: 32px; }
  h4 { font-size: 24px; line-height: 28px; }
}

/* ---------- Layout helpers ---------- */
.container-page { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 1024px) { .container-page { padding: 0 48px; } }
.section { padding: 48px 0; }
@media (min-width: 1024px) { .section { padding: 64px 0; } }

.max-w-7xl { max-width: 1280px; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Flex / Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.gap-xs { gap: 4px; } .gap-sm { gap: 8px; } .gap-md { gap: 16px; } .gap-lg { gap: 24px; } .gap-xl { gap: 32px; } .gap-2xl { gap: 48px; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline { display: inline; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:items-center { align-items: center; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:inline { display: inline; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:gap-lg { gap: 24px; }
  .lg\:py-3xl { padding-top: 64px; padding-bottom: 64px; }
  .lg\:px-2xl { padding-left: 48px; padding-right: 48px; }
  .lg\:w-auto { width: auto; }
}

.w-full { width: 100%; }
.w-12 { width: 48px; } .h-12 { height: 48px; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Spacing */
.p-xs{padding:4px}.p-sm{padding:8px}.p-md{padding:16px}.p-lg{padding:24px}.p-xl{padding:32px}.p-2xl{padding:48px}
.px-md{padding-left:16px;padding-right:16px}.px-lg{padding-left:24px;padding-right:24px}.px-xl{padding-left:32px;padding-right:32px}
.py-xs{padding-top:4px;padding-bottom:4px}.py-sm{padding-top:8px;padding-bottom:8px}.py-md{padding-top:16px;padding-bottom:16px}.py-lg{padding-top:24px;padding-bottom:24px}.py-2xl{padding-top:48px;padding-bottom:48px}.py-3xl{padding-top:64px;padding-bottom:64px}
.pt-sm{padding-top:8px}.pt-lg{padding-top:24px}.pt-2xl{padding-top:48px}.pt-3xl{padding-top:64px}
.pb-lg{padding-bottom:24px}.pb-2xl{padding-bottom:48px}
.pl-sm{padding-left:8px}.pl-md{padding-left:16px}
.-mr-sm{margin-right:-8px}
.mt-xs{margin-top:4px}.mt-sm{margin-top:8px}.mt-md{margin-top:16px}.mt-lg{margin-top:24px}.mt-3xl{margin-top:64px}
.mb-xs{margin-bottom:4px}.mb-sm{margin-bottom:8px}.mb-md{margin-bottom:16px}.mb-lg{margin-bottom:24px}.mb-xl{margin-bottom:32px}.mb-2xl{margin-bottom:48px}
.mt-0\.5{margin-top:2px}
.space-y-sm > * + * { margin-top: 8px; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-full { top: 100%; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.overflow-y-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }

/* Z-index */
.z-raised{z-index:1}.z-overlay{z-index:10}.z-modal{z-index:20}.z-fixedNav{z-index:40}.z-mobileMenu{z-index:50}

/* Sizing */
.h-\[60px\] { height: 60px; }
.w-\[480px\] { width: 480px; }
.w-\[320px\] { width: 320px; }
.w-\[85\%\] { width: 85%; }

/* Text */
.text-xs{font-size:12px;line-height:16px}.text-sm{font-size:14px;line-height:20px}.text-base{font-size:16px;line-height:24px}.text-lg{font-size:18px;line-height:28px}.text-xl{font-size:20px;line-height:28px}.text-2xl{font-size:24px;line-height:32px}.text-3xl{font-size:30px;line-height:36px}.text-4xl{font-size:36px;line-height:40px}.text-5xl{font-size:48px;line-height:1.1}
.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}
.uppercase{text-transform:uppercase}
.tracking-tight{letter-spacing:-0.025em}.tracking-wide{letter-spacing:0.025em}.tracking-\[0\.15em\]{letter-spacing:0.15em}
.text-center{text-align:center}.text-left{text-align:left}
.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}
.whitespace-nowrap{white-space:nowrap}
.italic{font-style:italic}

/* Colors */
.text-white { color: #ffffff; }
.text-navy { color: #1A1F36; }
.text-gold { color: #C9A84C; }
.text-blue { color: #2D6CDF; }
.text-darkgray { color: #6B7280; }
.text-charcoal { color: #374151; }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }

.bg-white { background-color: #ffffff; }
.bg-navy { background-color: #1A1F36; }
.bg-navy-900 { background-color: #0F1219; }
.bg-gold { background-color: #C9A84C; }
.bg-blue { background-color: #2D6CDF; }
.bg-lightgray { background-color: #F7F8FA; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-black\/50 { background-color: rgba(0,0,0,0.5); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-transparent { background-color: transparent; }

/* Borders */
.border { border-width: 1px; border-style: solid; border-color: #E5E7EB; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #E5E7EB; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #E5E7EB; }
.border-l { border-left-width: 1px; border-left-style: solid; border-left-color: #E5E7EB; }
.border-gray-200 { border-color: #E5E7EB; }
.border-navy { border-color: #1A1F36; }
.border-gold { border-color: #C9A84C; }
.border-white { border-color: #ffffff; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/40 { border-color: rgba(255,255,255,0.4); }

.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-subtle { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-light  { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md, .shadow-medium { box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06); }
.shadow-heavy  { box-shadow: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04); }

/* Transitions & transform */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 200ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-duration: 300ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:text-gold:hover { color: #C9A84C; }
.hover\:text-blue:hover { color: #2D6CDF; }
.hover\:text-navy:hover { color: #1A1F36; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-navy:hover { background-color: #1A1F36; }
.hover\:bg-gold-dark:hover { background-color: #B89940; }
.hover\:border-white:hover { border-color: #ffffff; }
.hover\:no-underline:hover { text-decoration: none; }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:shadow-medium:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06); }
.translate-x-0 { transform: translateX(0); }
.translate-x-full { transform: translateX(100%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-full { transform: translateY(100%); }

/* Buttons (component classes) */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px;
  background: #C9A84C; color: #1A1F36; font-weight: 600; font-size: 16px;
  border: 0; cursor: pointer;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.btn-primary:hover { background: #B89940; transform: translateY(-2px); }
.btn-primary:focus { outline: 2px solid #C9A84C; outline-offset: 2px; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 6px;
  background: #ffffff; color: #1A1F36; font-weight: 600; font-size: 16px;
  border: 2px solid #1A1F36; cursor: pointer;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.btn-secondary:hover { background: #1A1F36; color: #ffffff; transform: translateY(-2px); }

.btn-secondary-on-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 6px;
  background: transparent; color: #ffffff; font-weight: 600; font-size: 16px;
  border: 2px solid rgba(255,255,255,0.4); cursor: pointer;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.btn-secondary-on-dark:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

.btn-tertiary {
  display: inline-flex; align-items: center; gap: 4px;
  color: #2D6CDF; font-weight: 600;
  transition: color 200ms;
  text-decoration: none;
}
.btn-tertiary:hover { color: #1A1F36; }

/* Skip link */
.skip-link {
  position: absolute; left: 0; top: 0;
  transform: translateY(-100%);
  background: #C9A84C; color: #1A1F36;
  padding: 8px 16px; font-weight: 600;
  z-index: 60;
  transition: transform 200ms;
}
.skip-link:focus { transform: translateY(0); }

/* Card */
.card {
  border-radius: 8px; border: 1px solid #E5E7EB; background: #ffffff;
  padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
}
.card-hover:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06); transform: translateY(-4px); }

.eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: #C9A84C;
}

/* Form inputs */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #ffffff;
  font-size: 16px;
  transition: border-color 200ms, box-shadow 200ms;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #1A1F36;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.4);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================================================
   Editorial design system — display typography, hero, services, marquee
   ====================================================================== */

.font-serif { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; }
.italic { font-style: italic; }

/* Display scale — color intentionally inherits so .text-white can override.
   Element defaults (h1/h2/h3) still set navy on light backgrounds. */
.display-1 { font-size: 48px; line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; }
.display-2 { font-size: 40px; line-height: 1.1;  font-weight: 700; letter-spacing: -0.025em; }
.display-3 { font-size: 32px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
@media (min-width: 768px) {
  .display-1 { font-size: 68px; }
  .display-2 { font-size: 52px; }
  .display-3 { font-size: 40px; }
}
@media (min-width: 1024px) {
  .display-1 { font-size: 88px; }
  .display-2 { font-size: 64px; }
  .display-3 { font-size: 48px; }
}

/* Hero */
.hero-editorial {
  position: relative;
  background: linear-gradient(135deg, #0F1219 0%, #1A1F36 55%, #1A1F36 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 96px 0 80px;
}
@media (min-width: 768px) {
  .hero-editorial { padding: 128px 0 96px; min-height: 86vh; display: flex; align-items: center; }
}
@media (min-width: 1024px) {
  .hero-editorial { padding: 160px 0 128px; }
}
.hero-editorial .display-1 { color: #ffffff; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 35%, rgba(201,168,76,0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(45,108,223,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
}
.hero-lede {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 620px;
  font-weight: 400;
}
@media (min-width: 768px) { .hero-lede { font-size: 22px; line-height: 1.55; } }

/* Trust strip */
.trust-strip { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .trust-strip { padding-top: 48px; margin-top: 24px; } }
.trust-strip__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.trust-strip__names {
  display: flex; flex-wrap: wrap; gap: 16px 32px; margin-top: 16px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.88);
  letter-spacing: -0.005em;
}
@media (min-width: 768px) { .trust-strip__names { font-size: 17px; gap: 16px 48px; } }

/* Section header */
.section-header { max-width: 720px; margin-bottom: 48px; }
@media (min-width: 1024px) { .section-header { margin-bottom: 72px; } }
.section-header .eyebrow { display: block; margin-bottom: 16px; }

/* Editorial service card */
.svc-card {
  position: relative;
  display: block;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 300ms cubic-bezier(0.4,0,0.2,1),
              border-color 300ms;
  overflow: hidden;
  height: 100%;
}
.svc-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: #C9A84C;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 400ms cubic-bezier(0.4,0,0.2,1);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(26,31,54,0.18);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleY(1); transform-origin: top; }
.svc-card__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px; color: #C9A84C; font-weight: 600;
  letter-spacing: 0.08em; font-style: italic;
}
.svc-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.12); color: #1A1F36;
  margin-top: 8px;
  font-size: 22px;
}
.svc-card__title {
  font-size: 22px; font-weight: 600; color: #1A1F36;
  margin-top: 20px; line-height: 1.25; letter-spacing: -0.01em;
}
.svc-card__desc {
  color: #6B7280; margin-top: 12px; line-height: 1.65; font-size: 15px;
}
.svc-card__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  color: #1A1F36; font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
}
.svc-card__cta i { transition: transform 200ms; }
.svc-card:hover .svc-card__cta { color: #2D6CDF; }
.svc-card:hover .svc-card__cta i { transform: translateX(4px); }

/* Big stat numerals */
.stat-num {
  font-size: 56px; font-weight: 700; letter-spacing: -0.04em;
  line-height: 1; color: #C9A84C; font-feature-settings: "tnum";
}
@media (min-width: 768px) { .stat-num { font-size: 76px; } }
@media (min-width: 1024px) { .stat-num { font-size: 96px; } }
.stat-label {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65); font-weight: 600; margin-top: 12px;
}
.stat-divider { height: 1px; background: rgba(255,255,255,0.08); }

/* Philosophy pull quote */
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; line-height: 1.3; font-weight: 400;
  color: #1A1F36; letter-spacing: -0.015em;
}
@media (min-width: 768px) { .pull-quote { font-size: 44px; line-height: 1.25; } }
@media (min-width: 1024px) { .pull-quote { font-size: 56px; } }
.pull-quote em { color: #C9A84C; font-style: italic; font-weight: 600; }

/* Client marquee */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap; width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 22px; font-weight: 600; color: #1A1F36;
  letter-spacing: -0.01em; opacity: 0.5; transition: opacity 200ms;
  font-feature-settings: "ss01";
}
.marquee-item:hover { opacity: 1; }
@media (min-width: 768px) { .marquee-item { font-size: 28px; } }

/* CTA dark section */
.cta-section {
  background: linear-gradient(135deg, #1A1F36 0%, #0F1219 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-section { padding: 128px 0; } }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(201,168,76,0.14), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(45,108,223,0.10), transparent 55%);
  pointer-events: none;
}

/* Button variants */
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  background: transparent; color: #ffffff; font-weight: 600; font-size: 16px;
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* Pillar / value prop */
.pillar-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px; color: #C9A84C; letter-spacing: 0.08em;
  font-style: italic; font-weight: 600;
}
.pillar-title {
  font-size: 22px; font-weight: 600; color: #1A1F36;
  margin-top: 16px; letter-spacing: -0.01em;
}
.pillar-desc {
  color: #6B7280; margin-top: 12px; line-height: 1.65; font-size: 15px;
}
.pillar-rule {
  width: 40px; height: 2px; background: #C9A84C; margin-top: 24px;
}

/* Section paddings */
.section-lg { padding: 80px 0; }
@media (min-width: 1024px) { .section-lg { padding: 128px 0; } }

/* Misc utilities used in homepage */
.relative-z { position: relative; z-index: 2; }
.text-balance { text-wrap: balance; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.opacity-60 { opacity: 0.6; }

/* Force header above hero glow */
header.sticky { z-index: 50; }

/* Testimonial cards */
.testimonial-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 40px 32px 32px;
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 300ms cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(26,31,54,0.14);
}
.testimonial-quote-mark {
  position: absolute; top: 12px; left: 24px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 96px; line-height: 1; color: #C9A84C; opacity: 0.35;
  font-style: italic; font-weight: 400;
  pointer-events: none;
}
.testimonial-quote {
  position: relative; z-index: 1;
  font-size: 18px; line-height: 1.6; color: #1A1F36;
  font-weight: 400; margin: 0;
  letter-spacing: -0.005em;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 19px; } }
.testimonial-attr {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}
.testimonial-author { font-weight: 600; color: #1A1F36; font-size: 15px; }
.testimonial-role   { font-size: 14px; color: #6B7280; margin-top: 2px; }
.testimonial-context {
  font-size: 12px; color: #C9A84C; font-weight: 600;
  letter-spacing: 0.05em; margin-top: 6px;
  text-transform: uppercase;
}
