@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2d2b28;
  --brown: #574f4e;
  --green: #8fa45f;
  --deep-green: #223f35;
  --burgundy: #6c2f37;
  --paper: #f2f5ef;
  --chalk: #fffdf7;
  --mist: #e4eee7;
  --blue-grey: #d4e1df;
  --line: #cbd5c9;
  --muted: #706962;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Neo Sans Std", "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: static;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 118px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 260px;
  color: var(--brown);
  text-decoration: none;
}

.brand-arch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 58px;
  overflow: hidden;
}

.brand-arch img {
  width: 92px;
  max-width: none;
}

.brand-name {
  display: grid;
  gap: 0;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  line-height: 1.04;
}

.brand-name span {
  color: var(--deep-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-name strong {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand.brand-image {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 132px;
}

.brand.brand-image img {
  width: 132px;
  max-width: none;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: var(--deep-green);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--burgundy);
}

.site-nav a[aria-current="page"] {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 7vw, 96px);
  min-height: calc(86vh - 118px);
  padding: clamp(50px, 7vw, 92px) clamp(18px, 6vw, 86px) clamp(48px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(242, 245, 239, 0.98), rgba(242, 245, 239, 0.78)),
    linear-gradient(135deg, var(--mist), var(--blue-grey) 54%, #e9e2d8);
}

.hero::after,
.formats-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--deep-green), var(--green), var(--burgundy));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 1.22rem;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--deep-green);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--deep-green);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.42);
  color: var(--deep-green);
}

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-emblem img {
  width: min(540px, 48vw);
  opacity: 0.92;
}

.hero-emblem span {
  position: absolute;
  margin-top: 58px;
  color: rgba(87, 79, 78, 0.92);
  font-family: var(--serif);
  font-size: clamp(5.8rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 1;
}

.intro,
.day-section,
.partners-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.partners-section p:last-child,
.contact-section p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.principles-section,
.format-section,
.logo-lab {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.principles-grid article,
.format-card,
.lab-notes,
.stationery {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.principles-grid article {
  min-height: 260px;
  padding: 26px;
}

.principles-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border: 1px solid rgba(34, 63, 53, 0.24);
  border-radius: 50%;
  color: var(--deep-green);
  font-family: var(--serif);
  font-weight: 700;
}

.principles-grid p,
.day-list p,
.lab-notes p,
.stationery p {
  margin-bottom: 0;
  color: var(--muted);
}

.day-section {
  background: var(--paper);
}

.day-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.day-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.day-list span {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.partners-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.78)),
    linear-gradient(135deg, var(--blue-grey), var(--mist));
}

.contact-section {
  background: var(--deep-green);
}

.contact-section h2,
.contact-section .section-kicker {
  color: #ffffff;
}

.contact-section p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  text-align: right;
}

.footer-brand {
  min-width: 290px;
}

.formats-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 410px;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(242, 245, 239, 0.98), rgba(242, 245, 239, 0.84)),
    linear-gradient(135deg, var(--mist), #ffffff 58%, #e9e2d8);
  border-bottom: 1px solid var(--line);
}

.formats-hero .lead {
  max-width: 850px;
}

.logo-test-hero h1 {
  max-width: 780px;
}

.format-section.tinted,
.logo-lab.alternate {
  background: var(--paper);
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 18px;
}

.format-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 24px;
}

.format-card h3 {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.light-preview {
  background:
    linear-gradient(90deg, rgba(212, 201, 186, 0.38) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 201, 186, 0.38) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
}

.wide-preview {
  grid-column: span 1;
  background: #ffffff;
}

.dark-preview,
.dark-lab,
.facade-sign {
  background: var(--deep-green);
}

.dark-preview h3,
.dark-lab h2,
.dark-lab h3,
.dark-lab .section-kicker,
.facade-sign h3 {
  color: #ffffff;
}

.identity-lockup {
  display: grid;
  width: 100%;
  max-width: 700px;
  color: var(--brown);
}

.identity-lockup img {
  width: 160px;
}

.identity-lockup p {
  margin-bottom: 0;
}

.identity-lockup.stacked {
  justify-items: center;
  align-self: center;
  margin: auto;
  text-align: center;
}

.identity-lockup.stacked img {
  width: min(260px, 56vw);
  margin-bottom: -6px;
}

.identity-lockup.stacked span {
  display: block;
  color: var(--deep-green);
  font-size: clamp(1.1rem, 2.1vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.identity-lockup.stacked strong {
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.identity-lockup.horizontal {
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  align-self: center;
  margin: auto;
}

.identity-lockup.horizontal img {
  width: 130px;
  max-width: none;
}

.identity-lockup.horizontal p {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.identity-lockup.horizontal strong {
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.1vw, 2.18rem);
  line-height: 1;
}

.identity-lockup.horizontal span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(0.84rem, 1.4vw, 1.05rem);
}

.identity-lockup.compact {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
}

.identity-lockup.compact img {
  width: 92px;
}

.identity-lockup.compact strong {
  font-size: 1.22rem;
}

.identity-lockup.compact span {
  margin-top: 5px;
  font-size: 0.78rem;
}

.identity-lockup.negative strong,
.identity-lockup.negative span,
.identity-lockup.negative p {
  color: #ffffff;
}

.identity-lockup.negative.horizontal p,
.identity-lockup.negative p {
  border-color: rgba(255, 255, 255, 0.34);
}

.identity-lockup.large {
  max-width: 980px;
}

.identity-lockup.large.stacked img {
  width: min(360px, 70vw);
}

.identity-lockup.large.stacked strong {
  font-size: clamp(3.3rem, 8vw, 7.8rem);
}

.identity-lockup.large.stacked span {
  font-size: clamp(1.3rem, 2.6vw, 2.25rem);
}

.identity-lockup.large.horizontal {
  grid-template-columns: 128px minmax(0, 1fr);
  max-width: 1100px;
}

.identity-lockup.large.horizontal img {
  width: 152px;
}

.identity-lockup.large.horizontal strong {
  font-size: clamp(1.45rem, 3.1vw, 3rem);
}

.school-seal {
  display: grid;
  place-items: center;
  width: min(280px, 76%);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
}

.school-seal img {
  width: 74%;
}

.school-seal span {
  margin-top: -38%;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
}

.icon-card {
  align-content: center;
}

.icon-preview {
  display: grid;
  place-items: center;
  width: min(240px, 74%);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
}

.icon-preview img {
  width: 78%;
}

.banner-card {
  overflow: hidden;
}

.mini-banner {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.mini-banner span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.92;
}

.mini-banner p {
  position: relative;
  z-index: 1;
  color: var(--deep-green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-banner img {
  position: absolute;
  right: -110px;
  bottom: -142px;
  width: 520px;
  opacity: 0.28;
}

.stationery-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.78fr);
  gap: 18px;
}

.stationery {
  min-height: 330px;
  padding: 26px;
}

.paper-sheet {
  grid-row: span 2;
  background: #ffffff;
}

.stationery-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.letter-lines {
  display: grid;
  gap: 18px;
  margin-top: 58px;
}

.letter-lines span {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, rgba(112, 105, 98, 0.22), rgba(112, 105, 98, 0.04));
}

.letter-lines span:nth-child(1) {
  width: 72%;
}

.letter-lines span:nth-child(2) {
  width: 92%;
}

.letter-lines span:nth-child(3) {
  width: 84%;
}

.letter-lines span:nth-child(4) {
  width: 58%;
}

.facade-sign {
  display: grid;
  align-content: center;
}

.facade-sign .identity-lockup.horizontal {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
}

.facade-sign .identity-lockup.horizontal img {
  width: 112px;
}

.facade-sign .identity-lockup.horizontal strong {
  font-size: clamp(1.16rem, 2vw, 1.72rem);
}

.facade-sign .identity-lockup.horizontal span {
  font-size: 0.8rem;
}

.contact-note {
  background:
    linear-gradient(135deg, rgba(230, 236, 228, 0.82), rgba(255, 253, 248, 0.92)),
    var(--paper);
}

.logo-lab {
  background: var(--chalk);
}

.logo-lab.dark-lab {
  background: var(--deep-green);
}

.logo-lab.dark-lab .lab-sample {
  border-color: rgba(255, 255, 255, 0.22);
}

.asset-logo-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background: var(--chalk);
}

.asset-logo-section.alternate {
  background: var(--paper);
}

.asset-logo-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 0.55fr);
  gap: 18px;
}

.asset-logo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.asset-logo-card h3 {
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 1.05rem;
}

.primary-asset,
.asset-notes,
.png-preview-card {
  padding: 24px;
}

.asset-logo-preview {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(203, 213, 201, 0.72);
  background:
    linear-gradient(90deg, rgba(203, 213, 201, 0.32) 1px, transparent 1px),
    linear-gradient(180deg, rgba(203, 213, 201, 0.32) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
}

.alff-master-preview .logo-asset-img {
  width: min(620px, 100%);
}

.horizontal-master-preview {
  min-height: 320px;
}

.horizontal-master-preview .logo-asset-img {
  width: min(880px, 100%);
}

.logo-asset-img {
  display: block;
  height: auto;
}

.asset-notes {
  align-content: center;
  display: grid;
  background: var(--paper);
}

.asset-notes p {
  margin-bottom: 22px;
  color: var(--muted);
}

.asset-file-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.asset-file-list div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.asset-file-list dt {
  color: var(--deep-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-file-list dd {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

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

.png-preview-card {
  display: grid;
  align-content: start;
  min-height: 360px;
}

.png-asset-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.asset-implementation-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  padding: clamp(58px, 8vw, 108px) clamp(18px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
  background: var(--deep-green);
}

.asset-implementation-section h2,
.asset-implementation-section .section-kicker {
  color: #ffffff;
}

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

.implementation-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.implementation-list h3 {
  color: #ffffff;
}

.implementation-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(260px, 0.55fr);
  gap: 18px;
}

.lab-sample,
.lab-notes {
  display: grid;
  min-height: 380px;
  padding: clamp(24px, 4vw, 46px);
}

.lab-sample {
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.lab-notes {
  align-content: center;
}

.lab-sample.full {
  min-height: 440px;
  background: transparent;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .intro,
  .day-section,
  .partners-section,
  .contact-section,
  .asset-logo-grid,
  .asset-implementation-section,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-emblem {
    min-height: 250px;
  }

  .hero-emblem img {
    width: min(460px, 86vw);
  }

  .principles-grid,
  .format-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-grid,
  .png-preview-grid,
  .stationery-grid {
    grid-template-columns: 1fr;
  }

  .paper-sheet {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .brand,
  .footer-brand {
    grid-template-columns: 48px minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .brand-arch {
    width: 48px;
    height: 48px;
  }

  .brand-arch img {
    width: 74px;
  }

  .brand-name strong {
    font-size: 1.12rem;
  }

  .brand-name span {
    font-size: 0.58rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.85rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .button {
    width: 100%;
  }

  .principles-grid,
  .format-grid.two {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 280px;
  }

  .day-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .identity-lockup.horizontal,
  .identity-lockup.large.horizontal,
  .identity-lockup.compact {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .identity-lockup.horizontal p {
    padding-left: 0;
    border-left: 0;
  }

  .identity-lockup.horizontal img,
  .identity-lockup.large.horizontal img,
  .identity-lockup.compact img {
    width: 116px;
  }

  .facade-sign .identity-lockup.horizontal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .facade-sign .identity-lockup.horizontal img {
    width: 132px;
  }

  .facade-sign .identity-lockup.horizontal strong {
    font-size: 1.38rem;
  }

  .identity-lockup.stacked strong {
    font-size: clamp(2.15rem, 13vw, 3.6rem);
  }

  .identity-lockup.stacked span {
    font-size: clamp(0.78rem, 4vw, 1.1rem);
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-top: 18px;
    text-align: left;
  }

  .mini-banner {
    min-height: 280px;
    padding: 24px;
  }

  .mini-banner img {
    right: -180px;
    bottom: -140px;
    width: 470px;
  }

  .asset-logo-preview {
    min-height: 260px;
    padding: 18px;
  }

  .horizontal-master-preview {
    min-height: 180px;
  }

  .primary-asset,
  .asset-notes,
  .png-preview-card {
    padding: 16px;
  }

  .asset-file-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .brand.brand-image {
    width: 112px;
  }

  .brand.brand-image img {
    width: 112px;
  }
}
