:root {
  color-scheme: light dark;
  --bg: #fbf7ef;
  --paper: #fffdf8;
  --ink: #20232a;
  --muted: #686158;
  --gold: #bd8e38;
  --gold-dark: #946c24;
  --line: #ded0b7;
  --charcoal: #202126;
  --shadow: 0 18px 50px rgba(44, 35, 23, .10);
  --button-shadow: 0 12px 24px rgba(148, 108, 36, .20);
  --max-blue: #1677ff;
  --site-max: 1360px;
  --site-gutter: clamp(16px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 170px; }

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(189, 142, 56, .10), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 46%, #f4eddf 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(148, 108, 36, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 108, 36, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 70%);
}

body::after {
  z-index: 0;
  background: url("/static/assets/hero/yazev-glass-logo-bg.png") center 52% / min(1720px, 106vw) auto no-repeat;
  opacity: .13;
  filter: saturate(.84) brightness(1.04);
}

a { color: inherit; }

.top {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  width: 100%;
  margin: 0;
  padding: 18px max(18px, calc((100vw - var(--site-max)) / 2 + 18px));
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 248, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand > span {
  min-width: 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: end;
  min-width: 0;
  gap: 8px;
  font-size: 13px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-toggle {
  display: none;
}

.footer a,
.linkbtn {
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 6px;
  border: 1px solid rgba(189, 142, 56, .34);
  border-radius: 6px;
  background: rgba(255, 253, 248, .50);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(44, 35, 23, .045);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.nav-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 142, 56, .80);
  background: rgba(255, 253, 248, .84);
  box-shadow: 0 13px 24px rgba(44, 35, 23, .10);
}

.nav-cta,
.btn {
  border-radius: 6px;
  border: 1px solid var(--gold);
  padding: 0 18px;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background: rgba(255, 253, 248, .64);
  box-shadow: 0 8px 18px rgba(44, 35, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(180deg, #c89a42, #ad7d2d);
  border-color: #b98531;
  color: #fffdf8;
  box-shadow: var(--button-shadow);
}

.nav-cta {
  min-width: 150px;
  padding-inline: 12px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--gold-dark);
  box-shadow: 0 14px 26px rgba(44, 35, 23, .12);
}

.btn.primary:hover,
.nav-cta:hover {
  box-shadow: 0 16px 32px rgba(148, 108, 36, .26);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.linkbtn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:disabled,
.btn.disabled {
  pointer-events: none;
  opacity: .48;
  background: rgba(104, 97, 88, .12);
  border-color: rgba(104, 97, 88, .25);
  color: var(--muted);
  box-shadow: none;
}

.btn svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.max-logo-img {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(22, 119, 255, .20);
}

.max-btn,
.max-link {
  align-items: center;
}

.max-btn {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(35, 127, 255, .36);
  box-shadow: 0 10px 22px rgba(22, 119, 255, .10);
}

.max-nav {
  padding-left: 10px;
}

main,
.footer,
.maintenance {
  position: relative;
  z-index: 1;
}

main { min-height: 70vh; }

.hero {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max));
  display: block;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 990px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px) 0;
  text-align: center;
}

.hero h1,
.maintenance h1 {
  margin: 0;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.02;
  color: #252b36;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-name {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead,
.maintenance-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(189, 142, 56, .32);
  border-radius: 999px;
  background: rgba(255, 253, 248, .52);
  color: var(--muted);
  font-size: 14px;
}

.crest {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 30px;
}

.crest img {
  width: min(100%, 410px);
  filter: drop-shadow(0 26px 38px rgba(139, 97, 29, .18));
}

.directions {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .62);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.directions article,
.direction-card {
  padding: 32px clamp(22px, 3vw, 46px);
  border-right: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.directions article:last-child,
.direction-card:last-child { border-right: 0; }

.direction-card:hover {
  background: rgba(255, 253, 248, .84);
  box-shadow: inset 0 0 0 1px rgba(189, 142, 56, .18);
}

.directions h2,
.page h1,
.page h2 {
  margin-top: 0;
  font-weight: 500;
  color: #2c3038;
}

.directions p,
.page p,
.content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(189, 142, 56, .42);
  border-radius: 8px;
  background: rgba(255, 253, 248, .58);
  color: var(--gold-dark);
  box-shadow: 0 10px 22px rgba(44, 35, 23, .06);
}

.icon-badge svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-band {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max));
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .56fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin: 0 auto 34px;
  padding: clamp(36px, 5vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .66), rgba(255, 253, 248, .18));
}

.landing-band h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.landing-band p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.business-list {
  display: grid;
  gap: 10px;
}

.business-list span {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(130px, .34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 11px 14px;
  border: 1px solid rgba(189, 142, 56, .34);
  border-radius: 6px;
  background: rgba(255, 253, 248, .62);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(44, 35, 23, .045);
}

.business-list i {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(189, 142, 56, .46);
  border-radius: 50%;
  color: var(--gold-dark);
  font-style: normal;
  font-size: 14px;
  line-height: 1;
}

.business-list strong {
  line-height: 1.2;
}

.business-list em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.page {
  width: min(calc(100% - var(--site-gutter) * 2), 1180px);
  margin: 0 auto;
  padding: 56px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.principle-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .60);
  box-shadow: var(--shadow);
}

.principle-card h2 {
  margin-bottom: 12px;
}

.list { display: grid; gap: 14px; }

.row {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.row span { color: var(--muted); }

.form {
  max-width: 860px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .66);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.form p,
.form-field {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: 16px Arial, sans-serif;
}

.form textarea { min-height: 150px; }

.form label {
  color: var(--ink);
  font-weight: 600;
}

.form input[type="checkbox"] {
  width: auto;
  padding: 0;
}

.check-field label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-weight: 400;
  line-height: 1.45;
}

.check-field a {
  color: var(--gold-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.captcha-field {
  margin-top: 4px;
}

.email-verify {
  min-width: 0;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.email-row .btn {
  min-height: 42px;
  padding: 0 13px;
  white-space: nowrap;
}

.email-code-box {
  display: none;
  gap: 7px;
  margin-top: 4px;
}

.email-verify.is-code-visible .email-code-box {
  display: grid;
}

.mini-check {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.35;
}

.verify-status {
  min-height: 18px;
  color: var(--gold-dark);
  font: 14px/1.35 Arial, sans-serif;
}

.email-missing {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 248, .62);
  white-space: nowrap;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.form .errorlist,
.crm-form .errorlist {
  margin: 0 0 6px;
  padding-left: 18px;
  color: #9f2f24;
  font: 14px/1.35 Arial, sans-serif;
}

.captcha-box {
  margin-top: 4px;
  max-width: 100%;
  overflow: hidden;
}

.footer {
  width: min(calc(100% - var(--site-gutter) * 2), var(--site-max));
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(250px, .72fr) minmax(280px, .86fr);
  gap: 28px;
  align-items: start;
  margin: 34px auto 22px;
  padding: 24px 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #f7efe0;
}

.footer span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 239, 224, .72);
}

.footer-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer .linkbtn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f7efe0;
  text-align: left;
}

.footer-requisites {
  display: grid;
  gap: 4px;
  color: rgba(247, 239, 224, .76);
  font-size: 14px;
  line-height: 1.45;
}

.footer-requisites span {
  margin: 0;
}

.maintenance-body {
  min-height: 100vh;
  overflow-x: hidden;
}

.maintenance {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px clamp(16px, 4vw, 56px);
}

.maintenance-top {
  display: flex;
  justify-content: space-between;
}

.maintenance-brand {
  padding: 14px 18px;
  border: 1px solid rgba(222, 208, 183, .86);
  border-radius: 8px;
  background: rgba(255, 253, 248, .72);
  box-shadow: var(--shadow);
}

.maintenance-hero {
  display: block;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 6vh, 72px) 0;
}

.maintenance-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(20px, 4vw, 42px) 0;
}

.ornament {
  width: min(430px, 74vw);
  height: 1px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--bg);
  transform: translateY(-4px) rotate(45deg);
}

.maintenance-lead {
  margin: 16px 0 0;
}

.email-line {
  margin-top: 18px;
  font-size: 17px;
}

.email-line span:last-child {
  color: var(--ink);
  font-weight: 600;
}

.privacy-line {
  margin-top: 18px;
  font-size: 15px;
}

.privacy-line a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.maintenance-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 1280px) {
  [id] { scroll-margin-top: 24px; }

  :root {
    --site-gutter: 24px;
  }

  .top,
  .intro-grid,
  .principles,
  .footer {
    grid-template-columns: 1fr;
  }

  .top {
    position: static;
    z-index: 50;
    display: grid;
    width: min(calc(100% - var(--site-gutter) * 2), var(--site-max));
    margin: 14px auto 0;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    backdrop-filter: none;
  }

  .nav {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(148px, auto);
    gap: 10px;
    align-items: stretch;
    width: 100%;
  }

  .nav-toggle {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 15px;
    border: 1px solid rgba(189, 142, 56, .42);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(44, 35, 23, .055);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: currentColor;
  }

  .nav-toggle-lines {
    position: relative;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-lines::before { top: -6px; }
  .nav-toggle-lines::after { top: 6px; }

  .nav.is-open .nav-toggle-lines {
    background: transparent;
  }

  .nav.is-open .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav.is-open .nav-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 1;
    backdrop-filter: none;
  }

  .nav.is-open .nav-menu {
    display: grid;
  }

  .nav-btn,
  .nav-cta {
    width: 100%;
    min-height: 48px;
  }

  .nav-menu .nav-btn {
    background: var(--paper);
  }

  .directions,
  .landing-band { grid-template-columns: 1fr; }
  .directions article,
  .direction-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .directions article:last-child,
  .direction-card:last-child { border-bottom: 0; }

  .actions,
  .footer-actions,
  .maintenance-actions { display: grid; }
  .btn { width: 100%; }

  .business-list span {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 5px;
  }

  .business-list em {
    grid-column: 2;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .email-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  :root {
    --site-gutter: 24px;
  }

  body::before {
    background-size: 58px 58px;
  }

  body::after {
    background-position: center 42%;
    background-size: min(760px, 150vw) auto;
    opacity: .10;
  }

  .maintenance {
    padding: 12px 14px 18px;
  }

  .maintenance-brand {
    width: 100%;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    max-width: 220px;
    font-size: 13px;
    line-height: 1.25;
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    order: -1;
  }

  .nav-menu {
    top: calc(48px + 10px + 48px + 8px);
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 44px;
  }

  .hero-name {
    font-size: 15px;
    letter-spacing: .06em;
  }

  .maintenance-hero {
    gap: 18px;
    padding: 28px 0 12px;
  }

  .maintenance h1 {
    font-size: clamp(34px, 10.8vw, 44px);
    line-height: 1.04;
  }

  .maintenance-copy p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.14;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 17px;
    line-height: 1.5;
  }

  .crest {
    min-height: 220px;
    padding: 10px;
  }

  .crest img {
    width: min(72vw, 260px);
  }

  .ornament {
    width: 86%;
    margin-bottom: 24px;
  }

  .maintenance-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
    line-height: 1.18;
    text-align: center;
  }

  .form {
    padding: 18px;
  }

  .form-actions {
    display: grid;
  }

  .principle-card {
    padding: 22px;
  }

  .max-btn {
    min-height: 54px;
  }

  .max-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .email-line,
  .privacy-line {
    text-align: center;
  }

  .email-line {
    font-size: 16px;
  }

}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171717;
    --paper: #222226;
    --ink: #f4efe5;
    --muted: #c8bda8;
    --gold: #c99a42;
    --gold-dark: #d8ad58;
    --line: rgba(211, 175, 105, .28);
    --charcoal: #111113;
    --shadow: 0 18px 54px rgba(0, 0, 0, .28);
    --button-shadow: 0 14px 30px rgba(201, 154, 66, .22);
  }

  body {
    background:
      radial-gradient(circle at 76% 22%, rgba(201, 154, 66, .12), transparent 33%),
      linear-gradient(180deg, #1f1f22 0%, #171717 52%, #101011 100%);
  }

  body::before {
    background-image:
      linear-gradient(rgba(211, 175, 105, .07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(211, 175, 105, .07) 1px, transparent 1px);
  }

  body::after {
    opacity: .12;
    filter: saturate(.86) brightness(.82);
  }

  .top,
  .maintenance-brand,
  .directions,
  .landing-band,
  .nav-btn,
  .nav-toggle,
  .nav-menu,
  .hero-points span,
  .business-list span,
  .icon-badge,
  .principle-card,
  .form {
    background: rgba(34, 34, 38, .78);
  }

  @media (max-width: 1280px) {
    .top,
    .nav-toggle,
    .nav-menu,
    .nav-menu .nav-btn {
      background: var(--paper);
    }
  }

  .max-btn {
    background: rgba(244, 239, 229, .06);
  }

  .hero h1,
  .maintenance h1,
  .directions h2,
  .page h1,
  .page h2 {
    color: var(--ink);
  }

  .btn {
    background: rgba(244, 239, 229, .04);
  }

  .ornament::before {
    background: var(--bg);
  }

}
