/* ==========================================================================
   CONAC ENTERPRISE — site styles
   Design tokens follow the handoff spec. Each token declares a hex fallback
   first, then the authoritative oklch value (older browsers ignore the latter).
   ========================================================================== */

/* --------------------------------------------------------------- Tokens -- */
:root {
  --bg:            #FBF8F0;
  --bg:            oklch(98% 0.012 85);
  --surface:       #ffffff;
  --panel:         #EFE9D8;
  --panel:         oklch(94% 0.03 85);

  --navy:          #212B4A;
  --navy:          oklch(24% 0.05 260);
  --navy-deep:     #1A2340;
  --navy-deep:     oklch(20% 0.045 260);
  --navy-darkest:  #131829;
  --navy-darkest:  oklch(15% 0.03 260);
  --navy-card:     #2A3557;
  --navy-card:     oklch(28% 0.05 260);
  --navy-input:    #1F2846;
  --navy-input:    oklch(24% 0.045 260);
  --navy-line:     #3D4869;
  --navy-line:     oklch(40% 0.04 260);

  --text:          #1E2233;
  --text:          oklch(22% 0.02 260);
  --heading:       #222A44;
  --heading:       oklch(24% 0.03 260);
  --body-soft:     #4A4E60;
  --body-soft:     oklch(38% 0.02 260);
  --muted:         #6B6E7D;
  --muted:         oklch(45% 0.02 260);

  --border:        #DEDACD;
  --border:        oklch(88% 0.02 85);
  --nav-border:    #D7D0BC;
  --nav-border:    oklch(85% 0.03 85);

  --cream:         #fdfaf2;
  --on-dark:       #E3E5EC;
  --on-dark:       oklch(90% 0.02 260);
  --on-dark-muted: #BFC2CE;
  --on-dark-muted: oklch(78% 0.02 260);
  --on-dark-faint: #7C8093;
  --on-dark-faint: oklch(55% 0.02 260);

  /* Overridden at runtime from assets/js/config.js */
  --gold:          #C9A227;
  --gold-dark:     #96791D;

  --radius:        6px;
  --radius-lg:     10px;
  --radius-pill:   999px;

  --maxw:          1200px;
  --maxw-narrow:   1000px;
  --maxw-intro:    640px;

  --pad-x:         48px;
  --section-y:     96px;
  --section-y-sm:  72px;

  --shadow-card:   0 12px 32px rgba(26, 35, 64, 0.08);
  --focus-ring:    0 0 0 3px rgba(201, 162, 39, 0.5);

  --hero-gradient: linear-gradient(135deg,
                     oklch(22% 0.06 260) 0%,
                     oklch(28% 0.07 255) 55%,
                     oklch(38% 0.09 90) 130%);
}

@supports (color: color-mix(in oklch, red 75%, black)) {
  :root { --gold-dark: color-mix(in oklch, var(--gold) 75%, black); }
}

/* ------------------------------------------------------------- Baseline -- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: 'Lora', Georgia, 'Times New Roman', serif; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------ Utilities -- */
.wrap        { max-width: var(--maxw); margin: 0 auto; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; }

.section          { padding: var(--section-y) var(--pad-x); }
.section--compact { padding: var(--section-y-sm) var(--pad-x); }
.section--dark    { background: var(--navy); }
.section--deep    { background: var(--navy-deep); }
.section--panel   { background: var(--panel); }

.section-intro {
  max-width: var(--maxw-intro);
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 10px;
}
.section--dark .eyebrow,
.section--deep .eyebrow,
.page-header .eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--heading);
}
.section-title:last-child { margin-bottom: 0; }
.section--dark .section-title,
.section--deep .section-title { color: var(--cream); }

.section-lede {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}
.section--dark .section-lede,
.section--deep .section-lede { color: var(--on-dark-muted); }

/* -------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
              border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--primary:hover { background: var(--gold-dark); color: var(--cream); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--cream);
  font-weight: 600;
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--cream); }

.btn--navy {
  background: var(--navy-card);
  color: var(--cream);
  width: 100%;
}
.btn--navy:hover { background: var(--navy-deep); }

.btn--block { display: block; width: 100%; }

.inline-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.inline-link:hover { border-bottom-color: var(--gold-dark); }

/* ------------------------------------------------------------------ Nav -- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad-x);
  background: rgba(251, 248, 240, 0.9);
  border-bottom: 1px solid var(--nav-border);
}
@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .nav {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.nav__brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #2C3A66;
  color: oklch(30% 0.06 260);
  white-space: nowrap;
}

/* Brand left · links centred · language + CTA right */
.nav__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav__link {
  color: #4E5262;
  color: oklch(35% 0.02 260);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--heading); border-bottom-color: var(--gold); }
.nav__link[aria-current='page'] {
  color: var(--heading);
  font-weight: 700;
  border-bottom-color: var(--gold);
}

.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(107, 110, 125, 0.4);
  border-radius: var(--radius);
  padding: 6px 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #4E5262;
  color: oklch(35% 0.02 260);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.lang-toggle:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

.nav__cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.nav__cta:hover { background: var(--gold-dark); color: var(--cream); }

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(107, 110, 125, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--heading);
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero -- */
.hero {
  background: var(--navy-deep);
  background: var(--hero-gradient);
  padding: 120px var(--pad-x) 100px;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(38, 48, 82, 0.5);
  border: 1px solid rgba(201, 162, 39, 0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(32px, 5.2vw, 50px);
  line-height: 1.14;
  font-weight: 700;
  color: var(--cream);
  margin: 22px 0 20px;
  max-width: 680px;
}

.hero__sub {
  font-size: 18px;
  color: var(--on-dark);
  max-width: 560px;
  margin: 0 0 34px;
}

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

/* --------------------------------------------------------- Page headers -- */
.page-header {
  background: var(--navy-deep);
  background: var(--hero-gradient);
  padding: 80px var(--pad-x) 64px;
  text-align: center;
}
.page-header__title {
  font-size: clamp(30px, 4.6vw, 42px);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 16px;
  line-height: 1.15;
}
.page-header__title:last-child { margin-bottom: 0; }
.page-header__lede {
  font-size: 16px;
  color: var(--on-dark);
  max-width: 560px;
  margin: 0 auto;
}

/* ------------------------------------------------------- Service cards --- */
.service-grid {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.service-card__num {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #E4E7F0;
  background: oklch(94% 0.03 260);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: #4A5580;
  color: oklch(35% 0.07 260);
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-card__desc { font-size: 14px; color: var(--muted); margin: 0; }

.center-link { text-align: center; margin-top: 36px; }

/* --------------------------------------------------------------- Steps --- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step { padding: 0 8px; }
.step__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.step__title { font-size: 17px; font-weight: 600; color: var(--cream); margin: 0 0 8px; font-family: inherit; }
.step__desc  { font-size: 14px; color: var(--on-dark-muted); margin: 0; }

/* ------------------------------------------------------------- Pricing --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.pricing-card__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-card__amount {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(38px, 6vw, 48px);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.pricing-card__note { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 0 0 32px;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #3A3E52;
  color: oklch(30% 0.02 260);
}
.check-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* -------------------------------------------------------------- Why us --- */
.why { max-width: 760px; margin: 0 auto; }
.why__title { font-size: clamp(26px, 4vw, 34px); font-weight: 700; margin: 0 0 18px; color: var(--heading); }
.why__body  { font-size: 16px; color: var(--body-soft); margin: 0 0 24px; }

.reason-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.reason { display: flex; gap: 14px; align-items: flex-start; }
.reason::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.reason__title { font-weight: 600; font-size: 15px; color: var(--heading); margin-bottom: 2px; }
.reason__desc  { font-size: 14px; color: var(--muted); }

/* ------------------------------------------------------- Services page --- */
.service-detail-list {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.service-detail__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.service-detail__title {
  font-size: clamp(21px, 3vw, 26px);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-detail__desc { font-size: 15px; color: #575B6D; color: oklch(42% 0.02 260); margin: 0 0 18px; max-width: 640px; }

.sub-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.sub-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.5;
  color: #43475A;
  color: oklch(32% 0.02 260);
}
.sub-list li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }

/* ---------------------------------------------------------- About page --- */
.story { max-width: 820px; margin: 0 auto; padding: 80px var(--pad-x); }
.story__title { font-size: clamp(24px, 3.4vw, 28px); font-weight: 600; margin: 0 0 16px; color: var(--heading); }
.story p { font-size: 16px; color: var(--body-soft); margin: 0 0 16px; }
.story p:last-child { margin-bottom: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.value-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; color: var(--heading); }
.value-card p  { font-size: 14px; color: var(--muted); margin: 0; }

/* -------------------------------------------------------- Contact page --- */
.contact { max-width: 900px; margin: 0 auto; text-align: center; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: left;
}
.contact-card {
  background: var(--navy-card);
  border: 1px solid #5A648A;
  border: 1px solid oklch(45% 0.04 260);
  border-radius: 8px;
  padding: 20px 16px;
}
.contact-card__label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 6px;
}
.contact-card__value { font-size: 14px; color: var(--on-dark); overflow-wrap: anywhere; }
.contact-card__value--address { font-size: 13px; line-height: 1.5; }
.contact-card a { border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.contact-card a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--navy-line);
  background: var(--navy-input);
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(253, 250, 242, 0.55); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
}
.contact-form button { border: none; }

.form-status {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--on-dark);
  min-height: 1.2em;
}
.form-status[data-state='error'] { color: #F4B3A8; }
.form-status[data-state='success'] { color: var(--gold); font-weight: 600; }
.form-status a { text-decoration: underline; }

/* --------------------------------------------------------------- Footer -- */
.footer { background: var(--navy-darkest); padding: 40px var(--pad-x); }
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  color: #D3D5DD;
  color: oklch(85% 0.02 260);
  margin-bottom: 6px;
}
.footer__tagline { font-size: 13px; color: var(--on-dark-faint); }
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #B0B3C0;
  color: oklch(70% 0.02 260);
}
.footer__links a { border-bottom: 1px solid transparent; }
.footer__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.footer__legal {
  max-width: var(--maxw);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333B54;
  border-top: 1px solid oklch(28% 0.03 260);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #74788B;
  color: oklch(50% 0.02 260);
}
.footer__meta {
  max-width: var(--maxw);
  margin: 12px auto 0;
  text-align: center;
  font-size: 12px;
  color: #74788B;
  color: oklch(50% 0.02 260);
}
.footer__meta code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ---------------------------------------------------------- Responsive -- */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; --section-y: 80px; --section-y-sm: 64px; }
  .hero { padding: 96px var(--pad-x) 80px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid    { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .value-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; position: relative; }
  .nav__burger { display: block; }

  .nav__menu {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .nav__menu.is-open { display: flex; }

  .nav__links {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    font-size: 16px;
  }
  .nav__link {
    padding: 12px 4px;
    border-bottom: 1px solid var(--nav-border);
  }
  .nav__link[aria-current='page'] { border-bottom-color: var(--gold); }

  .nav__actions {
    justify-content: space-between;
    padding: 14px 0 4px;
  }
  .nav__cta { flex: 1; text-align: center; margin-left: 12px; padding: 12px 20px; }
}

@media (max-width: 680px) {
  :root { --pad-x: 20px; --section-y: 64px; --section-y-sm: 56px; }

  body { font-size: 15px; }

  .hero { padding: 72px var(--pad-x) 64px; }
  .hero__sub { font-size: 17px; }
  .hero__ctas .btn { width: 100%; }

  .section-intro { margin-bottom: 40px; }

  .service-grid,
  .step-grid,
  .value-grid,
  .contact-cards { grid-template-columns: 1fr; }

  .pricing-card { padding: 32px 24px; }

  .service-detail-list { padding: 56px var(--pad-x); gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; padding-bottom: 36px; }
  .service-detail__num { font-size: 32px; }
  .sub-list li { font-size: 16px; }

  .story { padding: 56px var(--pad-x); }

  .footer__legal { flex-direction: column; }
}

/* ------------------------------------------------------------- Printing -- */
@media print {
  .nav, .skip-link, .hero__ctas, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark, .section--deep, .hero, .page-header, .footer {
    background: #fff !important;
    color: #000 !important;
  }
  .section--dark *, .section--deep *, .hero *, .page-header *, .footer * { color: #000 !important; }
}
