

:root {
  --ink: #111417;
  --ink-2: #171b1f;
  --ink-3: #20262b;
  --ink-4: #2a3137;
  --yellow: #ffd900;
  --yellow-2: #f4cb00;
  --paper: #f6f6f6;
  --muted: #c9ced1;
  --line: rgba(255, 217, 0, 0.72);
  --white-line: rgba(255, 255, 255, 0.24);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--paper);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
iframe,
video,
svg,
table,
pre {
  max-width: 100%;
}

img,
iframe,
video {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.captured-site {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 106px;
  color: #fff;
  background: rgba(17, 20, 23, 0.78);
  backdrop-filter: blur(5px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr);
  align-items: center;
  height: 100%;
  padding: 0 38px;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 31px;
}

.primary-nav a,
.header-actions a,
.menu-details summary {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-transform: none;
}

.primary-nav a {
  position: relative;
  padding: 41px 0;
}

.primary-nav a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.primary-nav a:hover::after {
  transform: rotate(45deg) translate(2px, 0);
}

.brand-mark {
  justify-self: center;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.brand-mark strong {
  position: relative;
  display: block;
  width: 118px;
  height: 48px;
  border: 3px solid #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 42px;
}

.brand-mark strong::before,
.brand-mark strong::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 3px;
  background: #fff;
}

.brand-mark strong::before {
  right: 100%;
}

.brand-mark strong::after {
  left: 100%;
}

.brand-mark span {
  display: block;
  margin-top: 8px;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  line-height: 11px;
  text-transform: uppercase;
}

.header-actions {
  justify-content: flex-end;
  gap: 18px;
}

.contact-button {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #111417 !important;
  background: var(--yellow);
  font-size: 17px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.search-link {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -999px;
}

.search-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.search-link::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  background: #fff;
  transform: translate(13px, 13px) rotate(45deg);
}

.menu-details {
  position: relative;
}

.menu-details summary {
  display: inline-flex;
  min-width: 94px;
  min-height: 54px;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.menu-details summary::-webkit-details-marker {
  display: none;
}

.menu-icon {
  position: relative;
  width: 27px;
  height: 18px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  border-top: 3px solid #fff;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 27px;
}

.menu-icon::before {
  top: 6px;
}

.menu-icon::after {
  top: 15px;
}

.menu-panel {
  position: absolute;
  top: 74px;
  right: -38px;
  display: grid;
  width: min(520px, calc(100vw - 32px));
  padding: 34px;
  gap: 13px;
  background: rgba(17, 20, 23, 0.97);
  border-top: 5px solid var(--yellow);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.32);
}

.menu-panel a {
  display: block;
  padding: 12px 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Drawer close (X) button + dimmer overlay (functional hamburger). */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(8, 10, 12, 0.62);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  display: none;
}

.menu-details[open] .menu-overlay {
  display: block;
}

.menu-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background: #fff;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-close:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(90deg);
}

.menu-close:hover::before,
.menu-close:hover::after {
  background: #111417;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  min-height: 750px;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background-color: #242a2f;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(11, 13, 15, 0.84), rgba(11, 13, 15, 0.42) 55%, rgba(11, 13, 15, 0.82));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.12), rgba(17, 20, 23, 0.72));
}

.hero-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 148px 34px 78px;
}

.hero-frame {
  position: relative;
  width: fit-content;
  max-width: 910px;
  margin: 0 auto;
  padding-left: 0;
}

.hero-frame::before {
  content: "";
  position: absolute;
  top: -68px;
  bottom: -190px;
  left: -28px;
  width: 5px;
  background: var(--yellow);
}

.hero-box {
  display: inline-block;
  border: 4px solid var(--yellow);
  padding: 24px 38px 21px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 71px;
  font-weight: 800;
  line-height: 74px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 760px;
  margin: 30px 0 0 38px;
  color: #fff;
  font-size: 22px;
  line-height: 32px;
}

.yellow-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  margin-top: 24px;
  padding: 0 30px;
  color: #111417;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.yellow-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.section {
  position: relative;
  padding: 106px 32px;
  background: var(--ink);
}

.section.alt {
  background: var(--ink-2);
}

.section-header,
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 44px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
}

.section h2,
.intro-copy h2 {
  margin: 0;
  color: #f6f6f6;
  font-size: 78px;
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-header p,
.intro-copy p,
.rich-content p,
.footer-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.6fr);
  gap: 72px;
  align-items: center;
}

.intro-copy {
  position: relative;
  padding-left: 34px;
}

.intro-copy::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 0;
  width: 5px;
  background: var(--yellow);
}

.media-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #303841;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
}

.media-card::after,
.tile-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.08), rgba(17, 20, 23, 0.68));
  pointer-events: none;
}

.image-outline {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 46%;
  height: 46%;
  border: 5px solid var(--yellow);
  pointer-events: none;
}

.select-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.select-card {
  position: relative;
  min-height: 300px;
  padding: 38px;
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.select-card::before {
  content: attr(data-ghost);
  position: absolute;
  right: -18px;
  bottom: -12px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 148px;
  font-weight: 800;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
}

.select-card h3 {
  position: relative;
  margin: 0 0 22px;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 42px;
  text-transform: uppercase;
}

.select-card h3::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 22px;
  background: var(--yellow);
}

.select-card p,
.select-card ul {
  position: relative;
  margin: 0 0 25px;
  color: var(--muted);
}

.select-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.select-card li {
  padding-left: 20px;
}

.select-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px 2px -20px;
  background: var(--yellow);
}

.text-link {
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  margin-left: 12px;
  background: var(--yellow);
  vertical-align: middle;
  transition: width 160ms ease;
}

.text-link:hover::after {
  width: 54px;
}

.tile-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.tile-card {
  position: relative;
  display: flex;
  min-height: 275px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-3);
}

.tile-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06);
  opacity: 0.74;
  transition: transform 450ms ease, filter 450ms ease, opacity 450ms ease;
}

.tile-card:hover img {
  transform: scale(1.06);
  filter: grayscale(45%) contrast(1.04);
  opacity: 0.9;
}

.tile-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 34px;
}

.tile-card-content::before {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--yellow);
}

.tile-card h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 29px;
  text-transform: uppercase;
}

.tile-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 23px;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.95), rgba(17, 20, 23, 0.74));
}

.feature-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px;
  border: 5px solid var(--yellow);
  background: rgba(17, 20, 23, 0.76);
}

.feature-card h2 {
  font-size: 62px;
}

.index-page .hero,
.detail-page .hero,
.contact-page .hero,
.plain-page .hero {
  min-height: 650px;
}

.content-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.outlined-panel {
  position: relative;
  max-width: 930px;
  margin: -88px auto 72px;
  padding: 52px;
  border: 5px solid var(--yellow);
  background: var(--ink-2);
  z-index: 4;
}

.outlined-panel h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 50px;
  text-transform: uppercase;
}

.outlined-panel p:last-child {
  margin-bottom: 0;
}

.rich-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.28fr);
  gap: 42px;
  align-items: start;
}

.rich-content {
  padding: 0;
  color: var(--muted);
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.rich-content h2 {
  margin: 0 0 22px;
  font-size: 42px;
  line-height: 48px;
}

.rich-content h3 {
  margin: 42px 0 18px;
  font-size: 28px;
  line-height: 34px;
}

.rich-content h4 {
  margin: 34px 0 14px;
  font-size: 22px;
  line-height: 28px;
}

.rich-content ul,
.rich-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
  color: var(--muted);
}

.rich-content li {
  margin-bottom: 10px;
}

.sidebar-panel {
  position: sticky;
  top: 28px;
  padding: 32px;
  background: var(--ink-3);
  border-top: 5px solid var(--yellow);
}

.sidebar-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 32px;
  text-transform: uppercase;
}

.sidebar-panel a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 21px;
}

.sidebar-panel a:hover {
  color: var(--yellow);
}

.contact-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.3fr);
  gap: 44px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%), linear-gradient(135deg, var(--yellow) 50%, transparent 50%);
  background-position: calc(100% - 22px) 22px, calc(100% - 14px) 22px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.contact-form select option {
  color: #111417;
  background: #fff;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 94px 32px 42px;
  color: #fff;
  background-color: #15191d;
  background-position: center;
  background-size: cover;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 20, 23, 0.96), rgba(17, 20, 23, 0.82));
}

.footer-inner {
  position: relative;
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.55fr) repeat(3, minmax(160px, 0.2fr));
  gap: 42px;
}

.footer-brand strong {
  display: block;
  max-width: 350px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 42px;
  text-transform: uppercase;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 24px;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-bottom {
  position: relative;
  max-width: var(--max);
  margin: 66px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 20px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 50;
  padding: 10px 14px;
  color: #111417;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 18px;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr 220px 1fr;
    padding: 0 22px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a,
  .header-actions a,
  .menu-details summary {
    font-size: 15px;
  }

  .contact-button {
    padding: 0 22px;
  }

  .hero h1 {
    font-size: 60px;
    line-height: 63px;
  }

  .section h2,
  .intro-copy h2 {
    font-size: 62px;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }

  .site-header {
    height: 81px;
    background: rgba(17, 20, 23, 0.86);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: 64px 1fr 92px;
    padding: 0 18px;
  }

  .primary-nav,
  .contact-button,
  .search-link {
    display: none;
  }

  .brand-mark strong {
    width: 92px;
    height: 38px;
    font-size: 23px;
    line-height: 33px;
  }

  .brand-mark span {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .menu-details summary {
    min-width: 60px;
    min-height: 48px;
    font-size: 13px;
  }

  .menu-close {
    display: inline-flex;
  }

  .menu-panel {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 380px);
    max-width: 380px;
    height: 100%;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 84px 26px 32px;
    gap: 4px;
    background: #111417;
    border-top: 0;
    border-left: 5px solid var(--yellow);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .menu-panel a {
    font-size: 17px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding: 122px 26px 70px;
  }

  .hero-frame {
    width: 100%;
  }

  .hero-frame::before {
    left: -15px;
    top: -40px;
    bottom: -130px;
  }

  .hero-box {
    padding: 19px 22px 17px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 45px;
  }

  .hero-copy {
    margin-left: 22px;
    font-size: 19px;
    line-height: 28px;
  }

  .section {
    padding: 76px 24px;
  }

  .section-header,
  .intro-grid,
  .rich-layout,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 18px;
  }

  .section h2,
  .intro-copy h2 {
    font-size: 46px;
    line-height: 0.96;
  }

  .select-grid,
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 42px;
  }

  .media-card,
  .media-card img {
    min-height: 320px;
  }

  .outlined-panel {
    margin: -56px auto 52px;
    padding: 32px 24px;
  }

  .outlined-panel h2,
  .rich-content h2 {
    font-size: 33px;
    line-height: 39px;
  }

  .sidebar-panel {
    position: relative;
    top: auto;
  }

  .feature-card {
    padding: 34px 24px;
  }

  .feature-card h2 {
    font-size: 42px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-button,
  .yellow-button {
    min-height: 48px;
  }

  .gumnr-h-contact-map iframe,
  .gumnr-h-seo-map iframe {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .site-header {
    left: 16px;
    right: 16px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 39px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .select-card {
    padding: 28px 24px;
  }

  .select-card h3 {
    font-size: 31px;
    line-height: 35px;
  }

  .tile-card-content {
    padding: 28px 24px;
  }
}

/* === BRAND-LOGO-IMG (2-tone green+white logo on dark header & footer) === */
.brand-mark--img {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.brand-mark--img strong,
.brand-mark--img span {
  display: none;
}
.brand-logo {
  height: 30px;
  width: auto;
  max-width: 300px;
  display: block;
}
.brand-logo--footer {
  height: 52px;
  max-width: 350px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .brand-logo {
    height: 26px;
  }
  .brand-logo--footer {
    height: 42px;
  }
}
