/* =============================================
   KOLVREN — Microsoft Copilot Adoption Partner
   styles.css
   500designs-inspired aesthetic
   =============================================
   NOTE: This project uses Tailwind CSS via CDN for
   utility classes. This file contains custom CSS
   overrides, animations, and component styles that
   extend Tailwind. For production, replace the CDN
   with a PostCSS/Tailwind CLI build.
   ============================================= */

/* ---- Google Fonts loaded in <head> ---- */
/* Barlow Condensed: 700, 800, 900 */
/* Barlow: 400, 500, 600, 700 */

/* ---- CSS Custom Properties ---- */
:root {
  --dark:             #111110;
  --dark-2:           #1a1917;
  --cream:            #EDEAE4;
  --cream-2:          #F5F2EC;
  --warm-grey:        #7A7672;
  --warm-grey-light:  #9E9A95;
  --black:            #0A0A09;
  --mid:              #2C2B29;
  --accent:           #C9B99A;
  --border-light:     #E0DDD7;
  --border-dark:      rgba(255, 255, 255, 0.08);
  --nav-h:            68px;
  --max-width:        1180px;
  --transition:       0.2s ease;
  --font-display:     'Barlow Condensed', sans-serif;
  --font-body:        'Barlow', sans-serif;
}

/* ---- 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(--dark);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream); }
.on-light h1, .on-light h2, .on-light h3 { color: var(--black); }

p { line-height: 1.75; }
a { text-decoration: none; transition: color var(--transition); }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section--sm { padding: 72px 0; }

/* ---- Slash Label ---- */
.slash-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav__logo .slash { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
  position: relative;
}
.nav__links a:hover,
.nav__links a.active { color: var(--cream); }
.nav__links a.active::before {
  content: '/ ';
  color: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--cream {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: #fff;
  transform: scale(1.02);
}
.btn--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--cream);
}
.btn--dark:hover {
  background: var(--mid);
  transform: scale(1.02);
}
.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: rgba(255,255,255,0.07);
  transform: scale(1.02);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
  transform: scale(1.02);
}
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }
.btn--sm { padding: 10px 22px; font-size: 0.78rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: -10%;
  right: -5%;
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 900;
  color: rgba(255,255,255,0.018);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 36px;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #a8a49f;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 0;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
  align-items: flex-start;
}
.hero__stat { flex: 1; }
.hero__stat-sep {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  padding: 0 16px;
  margin-top: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ---- Section Headings ---- */
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ---- Service Cards ---- */
.service-card {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px;
  background: var(--cream-2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  background: var(--dark);
  border-color: var(--mid);
}
.service-card:hover .card-title,
.service-card:hover .card-body { color: var(--cream); }
.service-card:hover .card-tag {
  background: var(--mid);
  color: var(--cream);
}
.card-slash { color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--black); margin-bottom: 8px; border-bottom: 1px solid var(--border-light); padding-bottom: 12px; transition: color var(--transition); }
.card-body { font-size: 0.9rem; color: #5a5754; transition: color var(--transition); line-height: 1.7; margin-bottom: 16px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tag { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: var(--dark); color: var(--cream); border-radius: 100px; padding: 4px 12px; transition: background var(--transition), color var(--transition); }

/* ---- Process Steps ---- */
.process-step { border-top: 2px solid var(--accent); padding-top: 24px; }
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--cream); margin-bottom: 10px; }
.step-body { font-family: var(--font-body); font-size: 0.9rem; color: #a8a49f; line-height: 1.7; }

/* ---- Testimonials ---- */
.testimonial-quote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.testimonial-divider { border: none; border-top: 1px solid var(--border-light); margin: 40px 0; }

/* ---- ROI Block ---- */
.roi-stat-block {
  background: var(--dark);
  color: var(--cream);
  border-radius: 4px;
  padding: 40px;
}
.roi-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--border-dark); }
.roi-row:last-child { border-bottom: none; }
.roi-label { font-family: var(--font-body); font-size: 0.85rem; color: var(--warm-grey); }
.roi-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--cream); }
.roi-value.accent { color: var(--accent); }

/* ---- Persona Cards ---- */
.persona-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 28px;
}
.persona-role { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; text-transform: uppercase; color: var(--cream); margin-bottom: 12px; }
.persona-body { font-family: var(--font-body); font-size: 0.88rem; color: #a8a49f; line-height: 1.7; }

/* ---- Team Cards ---- */
.team-card { background: var(--dark-2); border: 1px solid var(--border-dark); border-radius: 4px; overflow: hidden; transition: border-color var(--transition); }
.team-card:hover { border-color: var(--accent); }
.team-photo { height: 180px; background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(237,234,228,0.12); letter-spacing: 0.06em; }
.team-body { padding: 24px; }
.team-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--cream); margin-bottom: 4px; }
.team-role { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.team-bio { font-size: 0.85rem; color: var(--warm-grey); line-height: 1.65; }

/* ---- Value Cards ---- */
.value-card { display: flex; gap: 16px; padding: 28px; background: var(--cream-2); border: 1px solid var(--border-light); border-radius: 4px; }
.value-slash { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; color: var(--accent); flex-shrink: 0; line-height: 1.2; }
.value-title { font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.value-body { font-size: 0.88rem; color: #5a5754; line-height: 1.65; }

/* ---- Contact ---- */
.contact-left { background: var(--dark); padding: 56px; }
.contact-right { background: var(--cream-2); padding: 56px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.contact-value { font-size: 0.92rem; color: var(--cream); font-weight: 500; }
.commit-box { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: 4px; padding: 24px; margin-top: 36px; }
.commit-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--warm-grey); margin-bottom: 10px; }
.commit-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ---- Form ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border-light);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--black);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; background: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---- Accordion ---- */
.accordion { border-top: 1px solid var(--border-light); }
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-trigger { width: 100%; background: transparent; border: none; padding: 22px 0; text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--black); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color var(--transition); }
.accordion-trigger:hover { color: var(--dark); }
.accordion-trigger.active { color: var(--dark); }
.accordion-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; stroke: currentColor; }
.accordion-trigger.active .accordion-chevron { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 0 24px; font-size: 0.92rem; color: #5a5754; line-height: 1.75; }

/* ---- Service Detail (Services page) ---- */
.service-detail-section { padding: 80px 0; border-bottom: 1px solid var(--border-dark); }
.service-detail-section:last-of-type { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-panel { background: var(--dark-2); border: 1px solid var(--border-dark); border-radius: 4px; padding: 40px; }
.service-panel-icon { font-size: 2rem; margin-bottom: 16px; }
.service-panel-title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.service-list { list-style: none; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-dark); font-size: 0.88rem; color: #a8a49f; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '/'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-family: var(--font-display); }

/* ---- Footer ---- */
.footer { background: var(--dark); border-top: 1px solid var(--border-dark); padding: 72px 0 0; position: relative; overflow: hidden; }
.footer__watermark { position: absolute; bottom: 0; left: 0; font-family: var(--font-display); font-weight: 900; font-size: 12vw; color: rgba(255,255,255,0.02); line-height: 0.85; pointer-events: none; user-select: none; white-space: nowrap; }
.footer h5 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 0.9rem; color: var(--warm-grey); transition: color var(--transition); }
.footer ul a:hover { color: var(--cream); }
.footer__bottom { border-top: 1px solid var(--border-dark); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.footer__bottom p { font-size: 0.8rem; color: var(--warm-grey-light); }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--dark); padding: 96px 0; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); text-align: center; }
.cta-banner-headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 5rem); text-transform: uppercase; line-height: 0.93; color: var(--cream); margin-bottom: 20px; }
.cta-banner-sub { font-family: var(--font-body); font-size: 1.05rem; color: var(--warm-grey); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }

/* ---- Page Hero (inner pages) ---- */
.page-hero { padding-top: calc(var(--nav-h) + 72px); padding-bottom: 72px; background: var(--dark); border-bottom: 1px solid var(--border-dark); }
.page-hero .slash-label { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 7rem); line-height: 0.92; margin-bottom: 24px; }
.page-hero__sub { font-size: 1.05rem; color: var(--warm-grey); max-width: 580px; line-height: 1.75; }

/* ---- 404 ---- */
.error-page { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; background: var(--dark); }
.error-code { font-family: var(--font-display); font-weight: 900; font-size: clamp(8rem, 22vw, 18rem); color: rgba(237,234,228,0.04); line-height: 0.85; margin-bottom: 24px; }
.error-h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.error-sub { font-size: 1.05rem; color: var(--warm-grey); margin-bottom: 36px; }

/* ---- Reveal animations ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---- Mobile nav ---- */
.nav__mobile { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border-dark); padding: 28px; display: none; flex-direction: column; gap: 20px; z-index: 999; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; color: var(--warm-grey); text-transform: uppercase; letter-spacing: 0.06em; transition: color var(--transition); text-decoration: none; }
.nav__mobile a:hover { color: var(--cream); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.2s ease; }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 36px 28px; }
  .hero__stat-sep { padding: 0 8px; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: clamp(3rem, 14vw, 5rem); }
  .section-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
}


/* ══════════════════════════════════════════════════════════════════
   KOLVREN — PROFESSIONAL DESIGN OVERRIDES
   Fixes WCAG contrast failures and ensures every section renders
   perfectly. Applied after Tailwind CDN so specificity wins.
   ══════════════════════════════════════════════════════════════════ */

/* ── 1. CREAM SECTIONS: body text must be dark ──────────────────── */
/* warm-grey (#7A7672) on cream-2 (#F5F2EC) = 2.8:1 — WCAG FAIL   */
/* Fix: use near-black #2d2c2a = 11:1 ratio on cream-2             */
.bg-cream-2 p,
.bg-cream   p {
  color: #2d2c2a !important;
}

/* Muted text on cream: #4a4744 = 6.5:1 — WCAG AA pass */
.bg-cream-2 .text-warm-grey,
.bg-cream   .text-warm-grey {
  color: #4a4744 !important;
}

/* Preserve accent, black, cream within cream sections */
.bg-cream-2 .text-accent,
.bg-cream   .text-accent { color: var(--accent) !important; }
.bg-cream-2 .text-black,
.bg-cream   .text-black  { color: #0A0A09   !important; }
/* Service card tags use bg-dark text-cream — keep cream on dark bg */
.bg-cream-2 .bg-dark .text-cream,
.bg-cream   .bg-dark .text-cream { color: var(--cream) !important; }

/* ── 2. DARK SECTIONS: lift muted text for readability ──────────── */
/* warm-grey on dark = 3.5:1 — borderline. Lift to #a8a49f = 6.8:1 */
.bg-dark p.text-warm-grey,
.bg-dark span.text-warm-grey,
.bg-dark .text-warm-grey-light { color: #a8a49f !important; }

/* Persona/ideal-client cards on dark-2 */
.bg-dark-2 p.text-warm-grey { color: #a8a49f !important; }

/* ROI block labels inside dark panel (inside cream section) */
.bg-dark .text-warm-grey { color: #9e9a95 !important; }

/* Testimonial attribution stays warm */
.bg-dark .text-warm-grey.font-semibold { color: #a8a49f !important; }

/* ── 3. SECTION SUB-COPY on dark: slightly lighter ──────────────── */
.cta-banner-sub { color: #a8a49f; }

/* ── 4. REVEAL ANIMATION: bulletproof implementation ────────────── */
/* Default: content visible (no-JS / slow-JS safety) */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
/* When JS runs, it adds .js-loaded to <html> and re-enables animations */
.js-loaded .reveal {
  opacity: 0 !important;
  transform: translateY(18px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.js-loaded .reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── 5. NAV: active link colour ─────────────────────────────────── */
.nav-link.active { color: var(--cream) !important; }
#nav-logo.active { color: var(--cream) !important; }

/* ── 6. FOOTER links — lift slightly on dark ────────────────────── */
.footer ul a { color: #9e9a95; }
.footer__bottom p { color: #7A7672; }

/* ── 7. ACCORDION on cream pages — body text contrast ──────────── */
.accordion-body-inner { color: #3d3b38; }
.accordion-trigger { color: #0A0A09; }

/* ── 8. CONTACT form — label contrast on cream ──────────────────── */
.form-label { color: #0A0A09; }
.form-input, .form-select, .form-textarea { color: #0A0A09; }
.contact-right .commit-item { color: #3d3b38; }

/* ── 9. CARD BODY text already set in CSS class — reinforce ─────── */
.card-body { color: #3d3b38 !important; }
.value-body { color: #3d3b38 !important; }

/* ── 10. ROI section body text on cream ─────────────────────────── */
.roi-label { color: #9e9a95 !important; }

/* ── 11. Refined section spacing — professional editorial feel ───── */
.section-headline { letter-spacing: -0.025em; }
.hero__headline   { letter-spacing: -0.025em; }

/* ── 12. Button hover refinement ────────────────────────────────── */
.btn-hover:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── 13. Nav scroll shadow on light pages ───────────────────────── */
.nav-scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.12) !important; }

/* ── 14. Prefers reduced motion: disable all animations ─────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .js-loaded .reveal { 
    opacity: 1 !important; 
    transform: none !important; 
    transition: none !important; 
  }
}
