:root {
  --black: #030303;
  --white: #f7f7f4;
  --muted: #747474;
  --line: #bfbfbf;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
  padding: 34px 7vw 0;
  color: white;
  pointer-events: none;
}
.site-header a { pointer-events: auto; }
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.06em;
}
.logo span { font-size: clamp(20px, 2vw, 30px); }
.logo small { font-size: 8px; letter-spacing: .16em; align-self: center; margin-top: 5px; }
nav a {
  display: block;
  min-width: 220px;
  padding-bottom: 14px;
  border-bottom: 2px solid currentColor;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: right;
}

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--white); color: var(--black); }
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.stars,
.stars::before,
.stars::after {
  position: absolute;
  inset: -10%;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.65) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(255,255,255,.35) 0 1px, transparent 1.5px);
  background-size: 34px 34px, 97px 97px, 151px 151px;
  animation: drift 14s linear infinite;
}
.stars::before { transform: rotate(7deg); opacity: .65; animation-duration: 22s; }
.stars::after { transform: rotate(-4deg); opacity: .35; animation-duration: 30s; }
@keyframes drift { to { transform: translate3d(-80px, 90px, 0); } }
.hero-content { position: relative; z-index: 1; text-align: center; }
h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 700;
}

.strategy,
.services,
.contact,
.footer {
  padding: clamp(80px, 12vw, 150px) 7vw;
}
.strategy,
.services,
.footer {
  display: grid;
  grid-template-columns: minmax(240px, 38%) 1fr;
  gap: clamp(50px, 8vw, 110px);
  max-width: 100%;
}
.section-intro,
.services-copy,
.footer { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
}
h2 {
  margin: 0 0 34px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.06em;
}
h3 { font-size: 23px; line-height: 1; margin: 0 0 20px; letter-spacing: -.04em; }
p { font-size: 15px; line-height: 1.45; margin: 0; }
.line-link,
.text-link {
  display: inline-block;
  margin-top: 55px;
  font-weight: 600;
  font-size: 14px;
}
.line-link::after {
  content: "";
  display: block;
  width: 135px;
  height: 2px;
  background: currentColor;
  margin-top: 20px;
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 85px 80px;
  align-content: start;
}
.number-row { display: flex; align-items: center; gap: 30px; margin-bottom: 50px; font-weight: 700; font-size: 20px; }
.number-row i { flex: 1; height: 1px; background: currentColor; }
.strategy-grid p { color: #333; max-width: 300px; }

.services { align-items: stretch; }
.services-copy p:not(.eyebrow) { max-width: 420px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
}
.services-grid article {
  min-height: 230px;
  padding: 56px 50px;
  text-align: center;
}
.services-grid article:nth-child(odd) { border-right: 1px solid var(--white); }
.services-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
.services-grid p { color: #e0e0e0; }

.contact { padding-top: 90px; }
.contact-heading { text-align: center; margin-bottom: 70px; }
.contact-heading p { font-size: 14px; }
.contact-form {
  width: min(690px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 42px;
}
label { display: grid; gap: 8px; color: #555; font-size: 14px; }
input, textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #222;
  background: transparent;
  padding: 9px 0;
  font: inherit;
  outline: none;
}
.full { grid-column: 1 / -1; }
button {
  justify-self: start;
  border: 1px solid #111;
  background: #111;
  color: white;
  padding: 14px 24px;
  font: inherit;
  cursor: pointer;
  transition: .2s ease;
}
button:hover { background: transparent; color: #111; }

.footer {
  position: relative;
  padding-top: 55px;
  padding-bottom: 70px;
  grid-template-columns: 1fr .8fr 1fr 1.4fr;
  gap: 80px;
}
.footer h4 { margin: 0 0 22px; font-size: 18px; }
.footer a, .footer p { display: block; margin-bottom: 8px; font-size: 14px; color: var(--white); }
.newsletter input { color: white; border-color: #777; max-width: 210px; }
.newsletter input::placeholder { color: #aaa; }
.copyright {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 780px) {
  .site-header { padding-inline: 24px; }
  nav a { min-width: 150px; font-size: 9px; }
  .strategy,
  .services,
  .footer { grid-template-columns: 1fr; padding-inline: 24px; }
  .strategy-grid,
  .services-grid,
  .contact-form { grid-template-columns: 1fr; }
  .services-grid { border: 0; }
  .services-grid article { border: 1px solid var(--white) !important; }
  .full { grid-column: auto; }
  .footer { gap: 35px; }
  .copyright { position: static; transform: none; margin-top: 20px; }
}


footer.footer{width:100%;max-width:none;margin:0;background:#030303;}
@media (max-width:780px){.section-intro{display:flex;flex-direction:row;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}.section-intro h2{width:100%}}
.site-header.scrolled .header-logo{opacity:1;visibility:visible;}
.site-header.scrolled{background:rgba(0,0,0,.85);backdrop-filter:blur(8px);padding-bottom:12px;}

.logo img,.footer-brand img{height:56px;width:auto;display:block}.footer-brand img{height:72px}

.footer-logo img{max-width:180px;height:auto;display:block}


/* Logo refinements */
.header-logo img{height:88px;width:auto;display:block;}
.footer{align-items:start;}
.footer-logo{display:flex;align-items:flex-start;justify-content:flex-start;padding-top:0;margin-top:0;}
.footer-logo img{width:auto;height:72px;max-width:none;display:block;}
@media (max-width:780px){.header-logo img{height:68px}.footer-logo img{height:64px}}

/* Aggiornamento logo CBB Studios */
.site-header {
  align-items: center;
  padding-top: 22px;
}
.header-logo img {
  width: clamp(230px, 20vw, 360px);
  height: auto;
  max-width: 42vw;
  display: block;
}
.footer {
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 0;
}
.footer-logo img {
  width: clamp(190px, 16vw, 280px);
  height: auto;
  max-width: 100%;
  display: block;
}
@media (max-width: 780px) {
  .site-header {
    align-items: center;
    gap: 18px;
    padding-top: 18px;
  }
  .header-logo img {
    width: 168px;
    max-width: 48vw;
  }
  nav a {
    min-width: 132px;
  }
  .footer-logo img {
    width: 185px;
  }
}

/* Logo: dimensione bilanciata */
.site-header {
  align-items: center;
  padding-top: 24px;
}
.header-logo img {
  height: clamp(58px, 5.2vw, 76px);
  width: auto;
  display: block;
}
.footer-logo {
  align-self: start;
  display: flex;
  align-items: flex-start;
}
.footer-logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 780px) {
  .site-header {
    align-items: center;
    padding-top: 18px;
  }
  .header-logo img {
    height: 52px;
  }
  .footer-logo img {
    width: 135px;
  }
}

/* Header fisso: il logo resta sempre della stessa dimensione durante lo scroll */

/* Form email senza servizi esterni */
.form-note,
.form-status {
  font-size: 12px;
  color: #666;
}
.form-note {
  margin-top: -22px;
}
.form-status {
  margin-top: -30px;
  min-height: 18px;
}
.newsletter {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter input {
  color: white;
  border-color: #777;
  max-width: 210px;
}
.newsletter button {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  font-size: 13px;
}
.newsletter button:hover {
  background: transparent;
  color: var(--white);
}


/* Portfolio */
.portfolio {
  padding: clamp(80px, 12vw, 140px) 7vw;
}
.portfolio-heading {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.portfolio-heading p:not(.eyebrow) {
  color: #555;
}
.portfolio-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.portfolio-card {
  min-height: 290px;
  border: 1px solid var(--black);
  padding: 38px;
  display: flex;
  flex-direction: column;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.portfolio-card:hover,
.portfolio-card:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
}
.portfolio-card span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 42px;
}
.portfolio-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 22px;
}
.portfolio-card p {
  color: #555;
  margin-bottom: 34px;
}
.portfolio-card:hover p,
.portfolio-card:focus-visible p {
  color: #e0e0e0;
}
.portfolio-card em {
  margin-top: auto;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 2px solid currentColor;
  width: fit-content;
  padding-bottom: 10px;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-card {
    min-height: 230px;
  }
}

/* Pagina Portfolio e navigazione multipagina */
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  pointer-events: auto;
}
.site-header nav a {
  min-width: auto;
  white-space: nowrap;
}
.site-header nav a.active {
  opacity: .72;
}
.page-hero {
  min-height: 62vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 7vw 90px;
  text-align: center;
}
.page-hero .hero-content {
  max-width: 850px;
}
.page-hero .hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 0;
  color: #e0e0e0;
  font-size: 18px;
}
#portfolio-page .portfolio {
  padding-top: clamp(80px, 10vw, 120px);
}
#portfolio-page .portfolio-heading {
  display: none;
}
@media (max-width: 780px) {
  .site-header nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  .site-header nav a {
    min-width: auto;
    font-size: 8px;
  }
  .page-hero {
    min-height: 58vh;
    padding: 125px 24px 70px;
  }
  .page-hero .hero-content p:not(.eyebrow) {
    font-size: 15px;
  }
}


/* Fix header mobile: evita overflow orizzontale */
body {
  overflow-x: hidden;
}
.site-header {
  width: 100%;
}
.site-header nav {
  min-width: 0;
}
@media (max-width: 780px) {
  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    padding: 16px 18px 10px;
    gap: 12px;
    align-items: flex-start;
  }
  .header-logo {
    flex: 0 0 auto;
    max-width: 38vw;
  }
  .header-logo img {
    height: 44px;
    width: auto;
    max-width: 100%;
  }
  .site-header nav {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100vw - 36px - 38vw - 12px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
  }
  .site-header nav a {
    width: auto;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: right;
    line-height: 1.15;
    font-size: 8.5px;
    letter-spacing: .08em;
    padding-bottom: 7px;
  }
  .site-header.scrolled {
    padding-bottom: 10px;
  }
}
@media (max-width: 390px) {
  .site-header {
    padding-inline: 14px;
    gap: 10px;
  }
  .header-logo {
    max-width: 36vw;
  }
  .header-logo img {
    height: 40px;
  }
  .site-header nav {
    max-width: calc(100vw - 28px - 36vw - 10px);
  }
  .site-header nav a {
    font-size: 7.5px;
    letter-spacing: .07em;
  }
}


/* Pagina Quanto costa */
.cost-section {
  padding: clamp(80px, 12vw, 140px) 7vw;
}
.cost-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.cost-intro p:not(.eyebrow) {
  color: #555;
}
.cost-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cost-card {
  min-height: 300px;
  border: 1px solid var(--black);
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.cost-card span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 42px;
}
.cost-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 22px;
}
.cost-card p {
  color: #555;
}
.cost-cta {
  max-width: none;
  margin: 0;
  padding: clamp(80px, 10vw, 120px) 7vw;
  display: grid;
  grid-template-columns: minmax(260px, 650px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}
.cost-cta p:not(.eyebrow) {
  color: #e0e0e0;
  max-width: 580px;
}
.cost-cta .line-link {
  color: var(--white);
  margin-top: 0;
  white-space: nowrap;
}

/* Menu aggiornato */
.site-header nav a {
  line-height: 1.15;
}
@media (max-width: 960px) {
  .site-header nav {
    gap: 16px;
  }
  .site-header nav a {
    font-size: 9.5px;
    letter-spacing: .09em;
  }
}
@media (max-width: 900px) {
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .cost-card {
    min-height: 230px;
  }
  .cost-cta {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .site-header nav {
    gap: 7px;
  }
  .site-header nav a {
    font-size: 7.8px;
    letter-spacing: .065em;
    padding-bottom: 6px;
  }
  .page-hero {
    padding-top: 160px;
  }
  .cost-section,
  .cost-cta {
    padding-inline: 24px;
  }
  .cost-intro {
    text-align: left;
  }
  .cost-cta .line-link {
    white-space: normal;
  }
}
@media (max-width: 390px) {
  .site-header nav {
    gap: 6px;
  }
  .site-header nav a {
    font-size: 7px;
    letter-spacing: .055em;
  }
  .page-hero {
    padding-top: 155px;
  }
}

/* Menu: linea solo sulla voce attiva */
.site-header nav a {
  border-bottom-color: transparent;
}
.site-header nav a.active {
  border-bottom-color: currentColor;
}

/* Fix finale logo mobile: più piccolo e proporzionato */
@media (max-width: 780px) {
  .header-logo {
    max-width: 26vw;
  }
  .header-logo img {
    height: 30px;
    width: auto;
    max-width: 100%;
  }
  .site-header nav {
    max-width: calc(100vw - 36px - 26vw - 12px);
  }
}
@media (max-width: 390px) {
  .header-logo {
    max-width: 24vw;
  }
  .header-logo img {
    height: 26px;
  }
  .site-header nav {
    max-width: calc(100vw - 28px - 24vw - 10px);
  }
}

/* CTA menu: evidenzia "Scrivici una mail ora" senza cambiare la linea della voce attiva */
.site-header nav a.menu-cta {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: currentColor;
}
.site-header nav a.menu-cta:hover,
.site-header nav a.menu-cta:focus-visible {
  text-decoration-thickness: 3px;
}


/* Header mobile con hamburger e popup nav */
.menu-toggle {
  display: none;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(3,3,3,.35);
  color: var(--white);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: auto;
  z-index: 70;
}
.menu-toggle:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform .22s ease, opacity .22s ease;
}

@media (max-width: 780px) {
  body.menu-open {
    overflow: hidden;
  }
  .site-header {
    align-items: center;
    padding: 16px 20px 10px;
    gap: 16px;
  }
  .header-logo {
    max-width: none;
    position: relative;
    z-index: 71;
  }
  .header-logo img {
    height: 52px;
    width: auto;
    max-width: 46vw;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .site-header nav.site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    min-width: 0;
    padding: 118px 28px 48px;
    background: rgba(3,3,3,.97);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 60;
  }
  body.menu-open .site-header nav.site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-header nav.site-nav a {
    width: auto;
    max-width: 90vw;
    min-width: 0;
    color: var(--white);
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .12em;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
  }
  .site-header nav.site-nav a.active {
    border-bottom-color: currentColor;
    opacity: 1;
  }
  .site-header nav.site-nav a.menu-cta {
    margin-top: 10px;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
  }
  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .page-hero {
    padding-top: 130px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 16px;
  }
  .header-logo img {
    height: 46px;
    max-width: 50vw;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .site-header nav.site-nav {
    padding-top: 108px;
    gap: 18px;
  }
  .site-header nav.site-nav a {
    font-size: 13.5px;
  }
}

/* Fix definitivo dimensione logo CBB: proporzionato su desktop e mobile */
.site-header .header-logo {
  flex: 0 0 auto;
  max-width: 150px !important;
  line-height: 0;
}
.site-header .header-logo img {
  height: clamp(42px, 3.8vw, 54px) !important;
  width: auto !important;
  max-width: 150px !important;
  display: block;
}
.footer-logo img {
  width: clamp(110px, 9vw, 130px) !important;
  height: auto !important;
  max-width: 100% !important;
}
@media (max-width: 780px) {
  .site-header .header-logo {
    max-width: 34vw !important;
  }
  .site-header .header-logo img {
    height: 38px !important;
    width: auto !important;
    max-width: 34vw !important;
  }
  .footer-logo img {
    width: 108px !important;
  }
}
@media (max-width: 390px) {
  .site-header .header-logo img {
    height: 34px !important;
    max-width: 32vw !important;
  }
  .footer-logo img {
    width: 100px !important;
  }
}

/* Fix home mobile: hamburger identico alle altre pagine */
@media (max-width: 780px) {
  .site-header {
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 20px 10px !important;
    gap: 16px !important;
  }

  .site-header .header-logo {
    position: relative !important;
    z-index: 71 !important;
    flex: 0 0 auto !important;
    max-width: 34vw !important;
  }

  .site-header .header-logo img {
    height: 38px !important;
    width: auto !important;
    max-width: 34vw !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    position: relative !important;
    z-index: 72 !important;
    pointer-events: auto !important;
  }

  .site-header nav.site-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 118px 28px 48px !important;
    background: rgba(3, 3, 3, .97) !important;
    backdrop-filter: blur(14px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-12px) !important;
    pointer-events: none !important;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease !important;
    z-index: 60 !important;
  }

  body.menu-open .site-header nav.site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .site-header nav.site-nav a {
    width: auto !important;
    max-width: 90vw !important;
    min-width: 0 !important;
    color: var(--white) !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    letter-spacing: .12em !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid transparent !important;
  }

  .site-header nav.site-nav a.active {
    border-bottom-color: currentColor !important;
  }
}

@media (max-width: 390px) {
  .site-header .header-logo {
    max-width: 32vw !important;
  }

  .site-header .header-logo img {
    height: 34px !important;
    max-width: 32vw !important;
  }

  .site-header nav.site-nav {
    padding-top: 108px !important;
  }

  .site-header nav.site-nav a {
    font-size: 13.5px !important;
  }
}
