*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #1c1a17;
  --panel:         #2b2720;
  --black:         #ede9e2;
  --grey:          #6b6760;
  --mid:           #a09b93;
  --white:         #f4f0e8;
  --nav-bg:        #232018;
  --accent:        #d4823a;   /* warmer amber — up from #c96b38 */
  --accent-dim:    rgba(212,130,58,0.14);
  --accent-light:  #e8c4a8;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --f: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--f);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ensure content sits above grain */
nav, .page, footer { position: relative; z-index: 1; }

/* ── nav ── */
nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
}

.nav-inner {
  pointer-events: all;
  background: var(--nav-bg);
  border-radius: 100px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 0 0 1px rgba(232,226,214,0.08);
  white-space: nowrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  transition: color .15s, background .15s;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f);
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-link.logo {
  font-weight: 500;
  color: var(--white);
  padding-left: 12px;
  padding-right: 24px;
}

.nav-link.cta {
  color: var(--white);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(61,220,151,0.10);
  border: 1px solid rgba(61,220,151,0.25);
  padding-left: 16px;
  padding-right: 16px;
}
.nav-link.cta:hover {
  background: rgba(61,220,151,0.18);
  border-color: rgba(61,220,151,0.45);
  color: var(--white);
}
.nav-link.cta::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3DDC97;
  box-shadow: 0 0 0 0 rgba(61,220,151,0.6);
  animation: ctaPulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,220,151,0.6); }
  60%  { box-shadow: 0 0 0 5px rgba(61,220,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,151,0); }
}

.nav-link.active {
  background: var(--accent-dim);
  color: var(--accent-light);
}
.nav-link.cta.active {
  background: rgba(61,220,151,0.18);
  border-color: rgba(61,220,151,0.4);
  color: var(--white);
}

/* lang toggle */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 4px 5px;
  margin-left: 2px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.lang-opt {
  font-size: 15px;
  line-height: 1;
  padding: 5px 6px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  opacity: 0.3;
  transition: opacity .15s, background .15s;
}

.lang-opt:hover { opacity: 0.65; background: rgba(255,255,255,0.06); }
.lang-opt.active { opacity: 1; }

/* ── pages ── */
.page { display: none; min-height: 100vh; animation: fadeIn .3s ease; }
.page.active { display: flex; flex-direction: column; justify-content: center; align-items: center; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}

/* ── home ── */
#page-home { text-align: left; padding: 0 48px; justify-content: center; height: 100svh; max-height: 100svh; overflow: hidden; box-sizing: border-box; padding-top: 76px; padding-bottom: 40px; }

.hero-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 600px;
  margin-bottom: 36px;
}

/* mixed weight lines — first line light, last line medium */
.hero-title .hero-line-1 { font-weight: 300; opacity: 0.75; }
.hero-title .hero-line-2 { font-weight: 400; }
.hero-title .hero-line-3 { font-weight: 500; color: var(--accent-light); }

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--bg);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s, box-shadow .2s;
  letter-spacing: -0.01em;
}

.btn-pill:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(212,130,58,0), 0 0 18px rgba(212,130,58,0.35);
}
.btn-pill:active { transform: scale(0.98); }

.hero-sub {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,226,214,0.25);
  transition: color .15s, border-color .15s;
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-sub:hover { color: var(--white); border-color: var(--white); }

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #00DB40;
  flex-shrink: 0;
}

/* ── how it works ── */
#page-info {
  padding: 96px 24px 100px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 32px;
  margin-bottom: 40px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  position: relative;
  padding: 8px 20px 8px 16px;
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(240,233,222,0.1);
  z-index: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  padding: 0;
  text-align: left;
  position: relative;
  cursor: pointer;
}

.step-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(240,233,222,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--grey);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
  margin-top: 12px;
}

.step-item.open .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 4px rgba(212,130,58,0.2);
}

.step-item:not(.open):hover .step-dot {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.step-line {
  flex: 1;
  width: 1px;
  min-height: 16px;
  background: rgba(240,233,222,0.1);
  transition: background .4s ease;
  margin-top: 0;
  margin-bottom: 0;
}

.step-item.open .step-line {
  background: linear-gradient(to bottom, rgba(212,130,58,0.55), rgba(212,130,58,0.08));
}

.step-body { padding: 8px 0 0; }

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
  border-bottom: 1px solid rgba(240,233,222,0.06);
  transition: border-color .15s;
}

.step-item.open .step-header { border-bottom-color: transparent; }

.step-header h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--black);
  transition: color .15s;
}

.step-item.open .step-header h3 { color: var(--accent-light); }
.step-item:not(.open):hover .step-header h3 { color: var(--accent-light); opacity: 0.7; }

.step-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(240,233,222,0.25);
  transition: transform .3s ease, color .15s;
}

.step-item.open .step-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.step-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, opacity .35s ease;
  opacity: 0;
}

.step-item.open .step-detail {
  max-height: 400px;
  opacity: 1;
}

.step-detail p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  padding: 4px 0 12px;
}

.step-detail .step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(212,130,58,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.step-connector { display: none; }

/* ── pricing ── */
#page-pricing { padding: 96px 24px 100px; justify-content: flex-start; }

.pricing-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}

.packages {
  width: 100%;
  max-width: 560px;
  background: var(--panel);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.pkg {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  cursor: pointer;
  border-left: 3px solid transparent;  /* reserve space for featured highlight */
}

.pkg:last-child { border-bottom: none; }

.pkg:hover { background: rgba(212,130,58,0.07); }

/* featured card accent — core/meest gekozen */
.pkg[data-pkg="core"] {
  border-left: 4px solid var(--accent);
  background: rgba(212,130,58,0.07);
  box-shadow: inset 4px 0 20px rgba(212,130,58,0.05);
}

.pkg[data-pkg="core"]:hover { background: rgba(212,130,58,0.11); }

.pkg-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }

.pkg-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: left;
}

.pkg-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
}

.pkg-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  max-width: 340px;
}

.pkg-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  text-align: left;
}

.pkg-meta span {
  color: var(--mid);
  background: rgba(240,233,222,0.09);
  border: 1px solid rgba(240,233,222,0.13);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.pkg-right {
  text-align: right;
  flex-shrink: 0;
  padding-left: 8px;
}

/* price in accent-light — warm premium feel */
.pkg-price {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--accent-light);
  line-height: 1;
}

.pkg-period { font-size: 12px; color: var(--grey); display: block; margin-top: 5px; }

.pricing-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.6;
  text-align: center;
}

/* ── contact ── */
#page-contact { padding: 96px 24px 100px; justify-content: flex-start; }

.form-intro-text {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: center;
  max-width: 480px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.intake-form {
  width: 100%;
  max-width: 480px;
  background: var(--panel);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

form { display: flex; flex-direction: column; gap: 0; }
form .f-field:first-child { border-top: none; }
.f-field select option { background: var(--panel); color: var(--black); }

.f-field {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 14px;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .15s, border-color .15s;
  gap: 4px;
}

.f-field:focus-within {
  background: rgba(212,130,58,0.06);
  border-bottom-color: rgba(212,130,58,0.3);
}

.label-opt {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey);
  opacity: 0.9;
  margin-left: 4px;
}

.f-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.f-field input,
.f-field select,
.f-field textarea {
  font-family: var(--f);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  width: 100%;
  letter-spacing: -0.01em;
}

.f-field input::placeholder,
.f-field textarea::placeholder { color: rgba(240,233,222,0.3); }

.f-field select {
  cursor: pointer;
  color: rgba(240,233,222,0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}

.f-field select.has-value { color: var(--black); }
.f-field select option { background: var(--panel); color: var(--black); }

.f-field textarea { resize: none; min-height: 56px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.form-row .f-field:first-child { border-right: 1px solid rgba(255,255,255,0.07); }
.form-row .f-field:last-child  { padding-left: 24px; }

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 24px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.btn-submit {
  width: 100%;
  background: var(--white);
  color: var(--bg);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s, box-shadow .2s;
}

.btn-submit:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 18px rgba(212,130,58,0.3);
}
.btn-submit:active { transform: scale(0.99); }

.wa-alt {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,226,214,0.2);
  padding-bottom: 2px;
  transition: color .15s;
}

.wa-alt:hover { color: var(--white); }

.form-note { font-size: 12px; color: var(--grey); text-align: center; }

/* success */
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.visible { display: block; }
.form-success h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--mid); }

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 64px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 13px;
  color: var(--grey);
  background: linear-gradient(
    to top,
    rgba(28,26,23,1)    0%,
    rgba(28,26,23,1)    40%,
    rgba(28,26,23,0.92) 60%,
    rgba(28,26,23,0.4)  82%,
    rgba(28,26,23,0)    100%
  );
  -webkit-mask-image: linear-gradient(to top, black 55%, transparent 100%);
  mask-image: linear-gradient(to top, black 55%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

/* re-enable clicks on links inside footer */
footer a, footer span { pointer-events: all; }

footer a { color: var(--grey); text-decoration: none; }
footer a:hover { color: var(--black); }

/* ── tablet ── */
@media (max-width: 768px) {
  .steps-list, .packages { max-width: 100%; }
  .intake-form { max-width: 100%; }
}

/* ── mobile ── */
@media (max-width: 600px) {
  nav {
    top: 12px;
    left: 12px; right: 12px;
    transform: none;
    width: auto;
  }
  .nav-inner {
    padding: 5px;
    gap: 1px;
    width: 100%;
    justify-content: stretch;
  }
  .nav-link {
    padding: 8px 0;
    font-size: 12px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-link.cta { padding: 8px 10px; flex: none; }
  .nav-link.logo { padding-left: 0; padding-right: 0; font-size: 12px; }
  /* hide dot on cta — saves ~14px */
  .nav-link.cta::before { display: none; }
  /* hide brand label — logo icon alone is enough */
  .nav-brand-text { display: none; }
  .nav-brand { padding: 6px 8px; }

  .nav-lang { padding: 3px 4px; margin-left: 1px; border-left: 1px solid rgba(255,255,255,0.06); }
  .lang-opt { font-size: 13px; padding: 4px; }

  #page-home {
    padding: 76px 20px 120px;
    height: 100svh;
    max-height: 100svh;
    overflow: hidden;
    justify-content: flex-start;
    padding-top: max(96px, 26vh);
    align-items: flex-start;
  }
  /* shrink logomark on mobile so it doesn't eat vertical space */
  .hero-logomark { margin-bottom: 16px; }
  .hero-logomark .logo-img { width: 28px; height: 28px; }
  #page-info    { padding: 90px 20px 110px; align-items: flex-start; }
  #page-pricing { padding: 90px 20px 110px; align-items: flex-start; }
  #page-contact { padding: 90px 20px 110px; align-items: flex-start; }

  .hero-title { font-size: clamp(24px, 7.5vw, 34px); text-align: left; margin-bottom: 24px; }
  .hero-actions { align-items: flex-start; gap: 14px; }
  .btn-pill { padding: 14px 28px; font-size: 14px; }

  .section-label { margin-bottom: 28px; }
  .steps-list { padding: 4px 12px 4px 8px; padding-bottom: 8px; }
  .steps-list::before { left: 21px; }
  .step-detail p { font-size: 13px; }
  .step-header h3 { font-size: 15px; }
  .step-dot { width: 26px; height: 26px; font-size: 9px; margin-top: 10px; }
  .step-line { min-height: 12px; }

  .pricing-title { text-align: left; font-size: clamp(19px, 6vw, 28px); margin-bottom: 24px; }
  .packages { border-radius: 12px; }
  .pkg { gap: 12px; padding: 20px; grid-template-columns: 1fr auto; }
  .pkg-name { font-size: 14px; }
  .pkg-desc { font-size: 12px; }
  .pkg-price { font-size: 17px; }
  .pkg-period { font-size: 11px; }
  .pkg-meta { gap: 5px; }
  .pkg-badge { font-size: 9px; }
  .pricing-note { text-align: left; font-size: 12px; margin-top: 20px; }

  .form-intro-text { font-size: 16px; text-align: left; margin-bottom: 32px; line-height: 1.5; }
  .intake-form { padding: 0; border-radius: 12px; }
  form { gap: 0; }
  .f-field { padding: 13px 16px; }
  .label-opt { font-size: 10px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; color: var(--grey); opacity: 0.9; margin-left: 4px; }
  .f-field label { font-size: 10px; letter-spacing: 0.07em; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .f-field:first-child { border-right: none; }
  .form-row .f-field:last-child  { padding-left: 18px; }
  .f-field input, .f-field select, .f-field textarea { font-size: 16px; }
  .f-field textarea { min-height: 44px; }
  .form-actions { gap: 12px; margin-top: 0; padding: 16px 16px 20px; }
  .btn-submit { padding: 16px; font-size: 14px; }
  .wa-alt { font-size: 13px; }

  footer { flex-direction: column; align-items: flex-start; gap: 4px; padding: 28px 20px 16px; font-size: 12px; }
}

@media (max-width: 380px) {
  .nav-link { font-size: 11px; padding: 7px 0; }
  .hero-title { font-size: 20px; margin-bottom: 20px; }
  .pkg-name { font-size: 13px; }
  .pkg-price { font-size: 16px; }
}

/* pakket field highlight flash */
@keyframes fieldFlash {
  0%   { background: rgba(212,130,58,0.18); border-color: var(--accent); }
  60%  { background: rgba(212,130,58,0.18); border-color: var(--accent); }
  100% { background: var(--bg); border-color: var(--border-strong); }
}
.f-field.highlight { animation: fieldFlash 1.4s ease forwards; }

/* logo — terracotta tint to match brand accent */
.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(57%) sepia(55%) saturate(500%) hue-rotate(340deg) brightness(95%);
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f);
  padding: 8px 12px;
  border-radius: 100px;
  transition: background .15s;
}

.nav-brand:hover { background: rgba(240,233,222,0.07); }

.nav-brand-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(70%);
}

.hero-logomark { margin-bottom: 28px; }

.hero-logomark .logo-img {
  width: 44px;
  height: 44px;
}