/* ==========================================================================
   Donald Oluoch — AI Workflow Engineer
   Blueprint minimalism: OpenCode framed grid × Factory.ai technical brutalism
   × Brittany Chiang editorial restraint.
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Surfaces */
  --bg:            #ffffff;
  --bg-subtle:     #fafafa;
  --bg-inset:      #f4f4f3;

  /* Ink */
  --ink:           #0a0a0a;
  --ink-2:         #1c1c1e;
  --body:          #55555c;
  --muted:         #8a8a90;
  --faint:         #b6b6ba;

  /* Blueprint lines */
  --line:          rgba(10, 10, 10, 0.09);
  --line-2:        rgba(10, 10, 10, 0.14);
  --tick:          rgba(10, 10, 10, 0.28);

  /* Single accent — used sparingly */
  --accent:        #0a66ff;
  --accent-soft:   rgba(10, 102, 255, 0.10);

  /* Type */
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-sans: "Geist", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --frame: 1100px;
  --pad: clamp(20px, 5vw, 60px);
  --radius: 6px;
  --radius-sm: 4px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
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 {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ==========================================================================
   The blueprint frame
   ========================================================================== */
.canvas {
  max-width: var(--frame);
  margin-inline: auto;
  border-inline: 1px solid var(--line);
  position: relative;
}

/* Inner padding helper */
.wrap { padding-inline: var(--pad); }

/* Sections sit inside the frame; horizontal rules divide them */
.section {
  position: relative;
  padding-block: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
}
.section--flush { border-top: 0; }

/* Crosshair "+" ticks at every horizontal-rule × vertical-rule intersection */
.section::before, .section::after,
.site-footer::before, .site-footer::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  z-index: 3;
  background:
    linear-gradient(var(--tick), var(--tick)) center / 9px 1px no-repeat,
    linear-gradient(var(--tick), var(--tick)) center / 1px 9px no-repeat;
}
.section::before, .site-footer::before { left: -5px; }
.section::after,  .site-footer::after  { right: -5px; }
.section--flush::before, .section--flush::after { display: none; }
.site-footer { position: relative; }

/* ----- Eyebrow / section label ----- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow .idx { color: var(--accent); }
.eyebrow::after { content: ""; flex: 1; }

.section-title {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 20ch;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand .dot { width: 7px; height: 7px; background: var(--accent); border-radius: var(--radius-pill); flex: none; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--body);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-inset); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #fff !important;
  background: var(--ink);
  padding: 8px 15px !important;
  border-radius: var(--radius-sm);
  transition: opacity 0.18s var(--ease) !important;
}
.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); width: 38px; height: 38px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -5px; } .nav-toggle span::after { top: 5px; }

.mobile-menu { display: none; border-bottom: 1px solid var(--line); background: var(--bg); }
.mobile-menu a {
  display: block; font-family: var(--font-mono); font-size: 15px; color: var(--ink-2);
  padding: 14px var(--pad); border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu.open { display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
/* faded dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(var(--line-2) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(120% 90% at 75% 0%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 90% at 75% 0%, #000 0%, transparent 62%);
  opacity: 0.7;
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }

.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: -0.01em;
  color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line-2);
  padding: 6px 13px; border-radius: var(--radius-pill);
  margin-bottom: 30px;
}
.status .pulse {
  width: 7px; height: 7px; border-radius: var(--radius-pill); background: #16a34a; flex: none;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero h1 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink);
  max-width: 14ch;
}
.hero h1 .accent { color: var(--accent); }

.hero .lede {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--body);
}
.hero .lede strong { color: var(--ink-2); font-weight: 600; }

.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

/* ----- Buttons ----- */
.btn {
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 400; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: var(--radius-sm); border: 1px solid var(--ink);
  transition: transform 0.16s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #2a2a2a; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   Credibility stat-bar (full-frame band)
   ========================================================================== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.metrics .metric {
  padding: clamp(24px, 4vw, 40px) var(--pad);
  border-left: 1px solid var(--line);
}
.metrics .metric:first-child { border-left: 0; }
.metric .m-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.metric .m-label {
  margin-top: 12px;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

/* ==========================================================================
   Selected work — editorial rows
   ========================================================================== */
.work-list { margin-top: 4px; }
.work-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.25s var(--ease);
}
.work-card:first-child { border-top: 0; }
.work-card:hover { padding-left: 12px; }

.work-meta-col { padding-top: 5px; }
.work-index { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.work-tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: -0.01em;
  color: var(--body); border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 3px 10px;
}

.work-title {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(20px, 2.4vw, 25px); letter-spacing: -0.03em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.work-title .ext { color: var(--faint); transition: transform 0.18s var(--ease), color 0.18s var(--ease); font-size: 0.7em; }
.work-card:hover .work-title { color: var(--accent); }
.work-card:hover .work-title .ext { color: var(--accent); transform: translate(2px, -2px); }
.work-sub { margin-top: 6px; font-size: 14.5px; color: var(--body); }

.io-grid { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; max-width: 56ch; }
.io-grid .io-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 3px;
}
.io-grid .io-val { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

.work-view {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  align-self: center; white-space: nowrap; transition: color 0.18s var(--ease);
}
.work-card:hover .work-view { color: var(--accent); }

.stretched::after { content: ""; position: absolute; inset: 0; }

/* ==========================================================================
   How I work — process
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 4px;
}
.step {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}
.step:hover { background: var(--bg-subtle); }
.step .num { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); margin-bottom: 16px; }
.step h3 { font-family: var(--font-mono); font-size: 15px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 13.5px; line-height: 1.5; color: var(--body); }

/* ==========================================================================
   Principles
   ========================================================================== */
.principles { list-style: none; padding: 0; margin-top: 4px; }
.principles li {
  position: relative;
  padding: 22px 0 22px 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 21px);
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.principles li:first-child { border-top: 0; }
.principles li .pn {
  position: absolute; left: 0; top: 24px;
  font-size: 12px; letter-spacing: 0; color: var(--accent);
}

/* ==========================================================================
   Stack
   ========================================================================== */
.stack-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.stack-chip {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: -0.01em; color: var(--ink-2);
  border: 1px solid var(--line-2); background: var(--bg);
  border-radius: var(--radius-sm); padding: 7px 13px;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.stack-chip:hover { border-color: var(--ink); }

.note {
  margin-top: 36px; border: 1px solid var(--line-2); border-left: 2px solid var(--ink);
  border-radius: var(--radius); background: var(--bg-subtle);
  padding: 22px 24px; max-width: 70ch;
}
.note .note-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}
.note p { font-size: 14px; line-height: 1.55; color: var(--body); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact h2 {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(30px, 5.5vw, 56px); line-height: 1.0; letter-spacing: -0.05em;
  color: var(--ink); max-width: 16ch;
}
.contact p { margin-top: 20px; max-width: 48ch; font-size: 16.5px; color: var(--body); }
.contact-links {
  margin-top: 32px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; max-width: 560px;
}
.contact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg); padding: 17px 20px; border-top: 1px solid var(--line);
  transition: background 0.18s var(--ease);
}
.contact-row:first-child { border-top: 0; }
a.contact-row:hover { background: var(--bg-subtle); }
.contact-row .k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.contact-row .v { font-family: var(--font-mono); font-size: 14px; letter-spacing: -0.01em; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
a.contact-row:hover .v { color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding-block: 32px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: -0.01em; color: var(--muted);
}
.footer-inner a:hover { color: var(--ink); }

/* ==========================================================================
   Case study pages
   ========================================================================== */
.cs-back {
  font-family: var(--font-mono); font-size: 13px; color: var(--body);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px;
  transition: color 0.18s var(--ease), gap 0.18s var(--ease);
}
.cs-back:hover { color: var(--ink); gap: 12px; }

.cs-header { padding-top: clamp(44px, 7vw, 76px); }
.cs-header h1 {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(30px, 5.5vw, 52px); line-height: 1.0; letter-spacing: -0.05em;
  color: var(--ink); max-width: 16ch;
}
.cs-summary { margin-top: 20px; font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: var(--body); max-width: 56ch; }
.cs-status-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: -0.01em; color: var(--body);
  background: var(--bg-inset); border-radius: var(--radius-pill); padding: 5px 12px;
}

.cs-body { border-top: 1px solid var(--line); }
.cs-body .wrap {
  display: grid; grid-template-columns: 180px 1fr; gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(44px, 7vw, 76px);
}
.cs-block + .cs-block { margin-top: 44px; }
.cs-block h2 {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.cs-block p { max-width: 62ch; line-height: 1.6; }
.cs-block p + p { margin-top: 13px; }
.cs-side { position: sticky; top: 88px; align-self: start; height: max-content; }
.cs-side .cs-side-title { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.cs-side ul { list-style: none; padding: 0; }
.cs-side li { font-size: 13.5px; color: var(--ink-2); padding: 7px 0; border-top: 1px solid var(--line); }
.cs-side li:first-child { border-top: 0; }

.tick-list { list-style: none; padding: 0; max-width: 62ch; }
.tick-list li { position: relative; padding: 5px 0 5px 24px; color: var(--ink-2); font-size: 14.5px; }
.tick-list li::before { content: "→"; position: absolute; left: 0; top: 5px; font-family: var(--font-mono); color: var(--accent); font-size: 12px; }

.flow-diagram { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; }
.flow-diagram .node { border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 8px 13px; color: var(--ink); background: var(--bg-subtle); }
.flow-diagram .sep { color: var(--accent); }

.cs-next {
  border-top: 1px solid var(--line); padding-block: 44px;
}
.cs-next .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cs-next .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.cs-next a { font-family: var(--font-mono); font-weight: 500; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink); letter-spacing: -0.03em; transition: color 0.18s var(--ease); }
.cs-next a:hover { color: var(--accent); }

/* ==========================================================================
   CV preview modal
   ========================================================================== */
.cv-modal[hidden] { display: none; }
.cv-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 40px);
}
.cv-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  animation: cv-fade 0.2s var(--ease);
}
.cv-modal__panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: min(880px, 100%); height: min(92vh, 1100px);
  background: var(--bg); border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.3);
  animation: cv-rise 0.24s var(--ease);
}
.cv-modal__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-bottom: 1px solid var(--line); flex: none;
}
.cv-modal__title {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: -0.01em; color: var(--ink);
}
.cv-modal__actions { display: flex; align-items: center; gap: 8px; }
.cv-modal__btn {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: -0.01em;
  color: var(--ink); border: 1px solid var(--line-2); background: var(--bg);
  border-radius: var(--radius-sm); padding: 7px 12px;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.cv-modal__btn:hover { border-color: var(--ink); }
.cv-modal__btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.cv-modal__btn--primary:hover { background: #2a2a2a; }
.cv-modal__close {
  font-family: var(--font-mono); font-size: 13px; line-height: 1; cursor: pointer;
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--body); background: var(--bg); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.cv-modal__close:hover { border-color: var(--ink); color: var(--ink); }
.cv-modal__viewer { flex: 1; min-height: 0; background: var(--bg-inset); }
.cv-modal__frame { width: 100%; height: 100%; border: 0; display: block; }

@keyframes cv-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cv-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
  .cv-modal__title { display: none; }
  .cv-modal__actions { flex: 1; justify-content: space-between; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 820px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics .metric:nth-child(3) { border-left: 0; }
  .metrics .metric:nth-child(n+3) { border-top: 1px solid var(--line); }
  .work-card { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .work-meta-col { display: flex; align-items: center; gap: 12px; padding-top: 0; }
  .work-tag { margin-top: 0; }
  .work-view { display: none; }
  .cs-body .wrap { grid-template-columns: 1fr; }
  .cs-side { position: static; order: -1; }
}

@media (max-width: 600px) {
  .nav-links, .nav > .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .io-grid { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; align-items: flex-start; gap: 5px; }
  /* soften ticks on small screens */
  .section::before, .section::after, .site-footer::before, .site-footer::after { opacity: 0.6; }
}
